myCRED - Version 1.4.1

Version Description

Resolving issues with 1.4

=

Download this release

Release Info

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

Code changes from version 1.4 to 1.4.1

Files changed (47) hide show
  1. abstracts/mycred-abstract-hook.php +2 -2
  2. addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php +2 -2
  3. addons/buy-creds/myCRED-addon-buy-creds.php +14 -2
  4. addons/email-notices/myCRED-addon-email-notices.php +6 -26
  5. addons/gateway/carts/mycred-marketpress.php +4 -4
  6. addons/gateway/carts/mycred-woocommerce.php +6 -6
  7. addons/gateway/carts/mycred-wpecommerce.php +1 -1
  8. addons/gateway/event-booking/mycred-eventespresso3.php +1 -1
  9. addons/gateway/event-booking/mycred-eventsmanager-pro.php +2 -2
  10. addons/gateway/event-booking/mycred-eventsmanager.php +1 -1
  11. addons/notifications/myCRED-addon-notifications.php +5 -6
  12. addons/ranks/myCRED-addon-ranks.php +2 -2
  13. addons/transfer/myCRED-addon-transfer.php +1 -0
  14. includes/importers/mycred-balances.php +287 -0
  15. includes/mycred-functions.php +4 -5
  16. includes/mycred-importer.php +32 -0
  17. includes/mycred-overview.php +3 -1
  18. includes/mycred-shortcodes.php +10 -8
  19. includes/mycred-widgets.php +8 -3
  20. lang/mycred-en_US.mo +0 -0
  21. lang/mycred-en_US.po +487 -527
  22. lang/mycred-fa_IR.mo +0 -0
  23. lang/mycred-fa_IR.po +490 -542
  24. lang/mycred-fr_FR.mo +0 -0
  25. lang/mycred-fr_FR.po +488 -528
  26. lang/mycred-sv_SE.mo +0 -0
  27. lang/mycred-sv_SE.po +705 -705
  28. lang/mycred.pot +486 -526
  29. modules/mycred-module-addons.php +1 -1
  30. modules/mycred-module-hooks.php +28 -35
  31. mycred.php +3 -3
  32. plugins/mycred-hook-badgeOS.php +4 -4
  33. plugins/mycred-hook-bbPress.php +7 -7
  34. plugins/mycred-hook-buddypress-gallery.php +1 -1
  35. plugins/mycred-hook-buddypress-links.php +6 -6
  36. plugins/mycred-hook-buddypress-media.php +6 -6
  37. plugins/mycred-hook-buddypress.php +19 -19
  38. plugins/mycred-hook-contact-form7.php +1 -1
  39. plugins/mycred-hook-events-manager-light.php +2 -2
  40. plugins/mycred-hook-gd-star-rating.php +2 -2
  41. plugins/mycred-hook-gravityforms.php +1 -1
  42. plugins/mycred-hook-invite-anyone.php +2 -2
  43. plugins/mycred-hook-jetpack.php +2 -2
  44. plugins/mycred-hook-simplepress.php +4 -4
  45. plugins/mycred-hook-wp-favorite-posts.php +2 -2
  46. plugins/mycred-hook-wp-polls.php +1 -1
  47. readme.txt +16 -30
abstracts/mycred-abstract-hook.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Hook class
6
  * @see http://mycred.me/classes/mycred_hook/
7
  * @since 0.1
8
- * @version 1.1
9
  */
10
  if ( ! class_exists( 'myCRED_Hook' ) ) {
11
  abstract class myCRED_Hook {
@@ -51,7 +51,7 @@ if ( ! class_exists( 'myCRED_Hook' ) ) {
51
  $this->prefs = $hook_prefs[ $this->id ];
52
 
53
  // Defaults must be set
54
- if ( ! isset( $this->defaults ) || empty( $this->defaults ) )
55
  $this->defaults = array();
56
  }
57
 
5
  * myCRED_Hook class
6
  * @see http://mycred.me/classes/mycred_hook/
7
  * @since 0.1
8
+ * @version 1.1.1
9
  */
10
  if ( ! class_exists( 'myCRED_Hook' ) ) {
11
  abstract class myCRED_Hook {
51
  $this->prefs = $hook_prefs[ $this->id ];
52
 
53
  // Defaults must be set
54
+ if ( ! isset( $this->defaults ) )
55
  $this->defaults = array();
56
  }
57
 
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -1269,7 +1269,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
1269
  /**
1270
  * IPN - Is Valid Sale
1271
  * @since 1.4
1272
- * @version 1.0.1
1273
  */
1274
  function IPN_is_valid_sale( $sales_data_key = '', $cost_key = '', $transactionid_key = '', $method = '' ) {
1275
  $this->new_log_entry( __( 'Validating sale', 'mycred' ) );
@@ -1319,7 +1319,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
1319
  $result = false;
1320
  }
1321
 
1322
- $result = apply_filters( 'mycred_buycred_valid_sale', $result, $this );
1323
 
1324
  if ( $result === true )
1325
  return $decoded_data;
1269
  /**
1270
  * IPN - Is Valid Sale
1271
  * @since 1.4
1272
+ * @version 1.0
1273
  */
1274
  function IPN_is_valid_sale( $sales_data_key = '', $cost_key = '', $transactionid_key = '', $method = '' ) {
1275
  $this->new_log_entry( __( 'Validating sale', 'mycred' ) );
1319
  $result = false;
1320
  }
1321
 
1322
+ $result = apply_filters( 'mycred_buycred_valid_sale', $result, $sales_data_key, $cost_key, $transactionid_key, $method, $this );
1323
 
1324
  if ( $result === true )
1325
  return $decoded_data;
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -66,6 +66,8 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
66
  $this->mycred_type = 'mycred_default';
67
  if ( isset( $this->core->buy_creds['type'] ) )
68
  $this->mycred_type = $this->core->buy_creds['type'];
 
 
69
  }
70
 
71
  public function load() {
@@ -79,6 +81,16 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
79
  add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
80
  }
81
 
 
 
 
 
 
 
 
 
 
 
82
  /**
83
  * Process
84
  * Processes Gateway returns and IPN calls
@@ -453,7 +465,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
453
  /**
454
  * Payment Gateways Page
455
  * @since 0.1
456
- * @version 1.1
457
  */
458
  public function admin_page() {
459
  // Security
@@ -469,7 +481,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
469
  $last_call_entries = maybe_unserialize( $last_call['entries'] ); ?>
470
 
471
  <div class="wrap list" id="myCRED-wrap">
472
- <h2><?php echo sprintf( __( '%s Payment Gateways', 'mycred' ), '<strong>buy</strong>CRED' ); ?> <?php if ( $this->core->buy_creds['custom_log'] ) : ?><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>
473
  <?php
474
  // Updated settings
475
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == true )
66
  $this->mycred_type = 'mycred_default';
67
  if ( isset( $this->core->buy_creds['type'] ) )
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
  public function load() {
81
  add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 90, 3 );
82
  }
83
 
84
+ /**
85
+ * Render Gift Tags
86
+ * @since 1.4.1
87
+ * @version 1.0
88
+ */
89
+ public function render_gift_tags( $content, $log ) {
90
+ if ( substr( $log->ref, 0, 15 ) != 'buy_creds_with_' ) return $content;
91
+ return $this->core->template_tags_user( $content, absint( $log->ref_id ) );
92
+ }
93
+
94
  /**
95
  * Process
96
  * Processes Gateway returns and IPN calls
465
  /**
466
  * Payment Gateways Page
467
  * @since 0.1
468
+ * @version 1.2
469
  */
470
  public function admin_page() {
471
  // Security
481
  $last_call_entries = maybe_unserialize( $last_call['entries'] ); ?>
482
 
483
  <div class="wrap list" id="myCRED-wrap">
484
+ <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>
485
  <?php
486
  // Updated settings
487
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == true )
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -364,10 +364,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
364
  // Do Ranks first
365
  if ( function_exists( 'mycred_get_users_rank' ) ) {
366
  $rank_id = mycred_find_users_rank( $request['user_id'], false, $request['amount'], '' );
367
- if ( $rank_id !== NULL && mycred_user_got_demoted( $user_id, $rank_id ) )
368
  $this->do_email_notices( 'ranks', $event, $request );
369
 
370
- elseif ( $rank_id !== NULL && mycred_user_got_promoted( $user_id, $rank_id ) )
371
  $this->do_email_notices( 'ranks', $event, $request );
372
  }
373
 
@@ -807,9 +807,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
807
  /**
808
  * Template Tags Metabox
809
  * @since 1.1
810
- * @version 1.0
811
  */
812
  public function template_tags( $post ) {
 
813
  echo '
814
  <ul>
815
  <li class="title">' . __( 'Site Related', 'mycred' ) . '</li>
@@ -818,27 +819,6 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
818
  <li><strong>%blog_info%</strong> ' . __( 'Your websites tagline (description)', 'mycred' ) . '.</li>
819
  <li><strong>%admin_email%</strong> ' . __( 'Your websites admin email', 'mycred' ) . '.</li>
820
  <li><strong>%num_members%</strong> ' . __( 'Total number of blog members', 'mycred' ) . '.</li>
821
- <li class="empty">&nbsp;</li>
822
- <li class="title">' . __( 'General', 'mycred' ) . '</li>
823
- <li><strong>%singular%</strong> ' . __( 'Points name in singular format', 'mycred' ) . '.</li>
824
- <li><strong>%plural%</strong> ' . __( 'Points name in plural', 'mycred' ) . '.</li>
825
- <li><strong>%login_url%</strong> ' . __( 'Login URL', 'mycred' ) . '.</li>
826
- </ul>
827
- <ul>
828
- <li class="title">' . __( 'User Related', 'mycred' ) . '</li>
829
- <li><strong>%user_id%</strong> ' . __( 'The users ID', 'mycred' ) . '.</li>
830
- <li><strong>%user_name%</strong> ' . __( 'The users login name (username)', 'mycred' ) . '.</li>
831
- <li><strong>%display_name%</strong> ' . __( 'The users display name', 'mycred' ) . '.</li>
832
- <li><strong>%user_profile_url%</strong> ' . __( 'The users profile address', 'mycred' ) . '.</li>
833
- <li><strong>%user_profile_link%</strong> ' . __( 'Link to the users profile address with their display name as title', 'mycred' ) . '.</li>
834
- <li><strong>%balance%</strong> ' . __( 'The users current balance unformated', 'mycred' ) . '.</li>
835
- <li><strong>%balance_f%</strong> ' . __( 'The users current balance formated', 'mycred' ) . '.</li>
836
- <li class="empty">&nbsp;</li>
837
- <li class="title">' . __( 'Post Related', 'mycred' ) . '</li>
838
- <li><strong>%post_title%</strong> ' . __( 'Post Title', 'mycred' ) . '.</li>
839
- <li><strong>%post_url%</strong> ' . __( 'Post URL address', 'mycred' ) . '.</li>
840
- <li><strong>%link_with_title%</strong> ' . __( 'Link to post Post title', 'mycred' ) . '.</li>
841
- <li><strong>%post_type%</strong> ' . __( 'The post type', 'mycred' ) . '.</li>
842
  </ul>
843
  <div class="clear"></div>';
844
  }
@@ -915,8 +895,8 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
915
  $messages['mycred_email_notice'] = array(
916
  0 => '',
917
  1 => sprintf( __( 'Email Notice Updated. View <a href="%1$s">All Notices</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_email_notice' ) ),
918
- 2 => __( 'Custom field updated', 'mycred' ),
919
- 3 => __( 'Custom filed updated', 'mycred' ),
920
  4 => sprintf( __( 'Email Notice Updated. View <a href="%1$s">All Notices</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_email_notice' ) ),
921
  5 => false,
922
  6 => __( 'Email Notice Activated', 'mycred' ),
364
  // Do Ranks first
365
  if ( function_exists( 'mycred_get_users_rank' ) ) {
366
  $rank_id = mycred_find_users_rank( $request['user_id'], false, $request['amount'], '' );
367
+ if ( $rank_id !== NULL && mycred_user_got_demoted( $request['user_id'], $rank_id ) )
368
  $this->do_email_notices( 'ranks', $event, $request );
369
 
370
+ elseif ( $rank_id !== NULL && mycred_user_got_promoted( $request['user_id'], $rank_id ) )
371
  $this->do_email_notices( 'ranks', $event, $request );
372
  }
373
 
807
  /**
808
  * Template Tags Metabox
809
  * @since 1.1
810
+ * @version 1.1
811
  */
812
  public function template_tags( $post ) {
813
+ echo '<p>' . $this->core->available_template_tags( array( 'general', 'post', 'user', 'amount', 'comment' ) ) . '</p>';
814
  echo '
815
  <ul>
816
  <li class="title">' . __( 'Site Related', 'mycred' ) . '</li>
819
  <li><strong>%blog_info%</strong> ' . __( 'Your websites tagline (description)', 'mycred' ) . '.</li>
820
  <li><strong>%admin_email%</strong> ' . __( 'Your websites admin email', 'mycred' ) . '.</li>
821
  <li><strong>%num_members%</strong> ' . __( 'Total number of blog members', 'mycred' ) . '.</li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  </ul>
823
  <div class="clear"></div>';
824
  }
895
  $messages['mycred_email_notice'] = array(
896
  0 => '',
897
  1 => sprintf( __( 'Email Notice Updated. View <a href="%1$s">All Notices</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_email_notice' ) ),
898
+ 2 => '',
899
+ 3 => '',
900
  4 => sprintf( __( 'Email Notice Updated. View <a href="%1$s">All Notices</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_email_notice' ) ),
901
  5 => false,
902
  6 => __( 'Email Notice Activated', 'mycred' ),
addons/gateway/carts/mycred-marketpress.php CHANGED
@@ -100,7 +100,7 @@ if ( ! function_exists( 'mycred_init_marketpress_gateway' ) ) {
100
 
101
  $settings = get_option( 'mp_settings' );
102
  if ( $this->use_exchange() )
103
- return $this->mycred->apply_exchange_rate( $total, $settings['gateways']['mycred']['exchange'], false );
104
  else
105
  return $this->mycred->number( $total );
106
  }
@@ -179,7 +179,7 @@ if ( ! function_exists( 'mycred_init_marketpress_gateway' ) ) {
179
  $table = '<table class="mycred-cart-cost"><thead><tr><th>' . __( 'Payment', 'mycred' ) . '</th></tr></thead>';
180
  if ( $balance-$total < 0 ) {
181
  $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
182
- $table .= '<tr><td id="mp-mycred-cost" style="color: red; font-weight: bold;"><p>' . $message . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) ) . '</td></tr>';
183
  }
184
  else
185
  $table .= '<tr><td id="mp-mycred-cost" class="mycred-ok">' . $this->mycred->format_creds( $total ) . ' ' . __( 'will be deducted from your account.', 'mycred' ) . '</td></tr>';
@@ -228,7 +228,7 @@ if ( ! function_exists( 'mycred_init_marketpress_gateway' ) ) {
228
  // Low balance or Insolvent
229
  if ( $balance <= $this->mycred->zero() || $balance-$total < $this->mycred->zero() ) {
230
  $mp->cart_checkout_error(
231
- $insolvent . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
232
  );
233
  return;
234
  }
@@ -409,7 +409,7 @@ if ( ! function_exists( 'mycred_init_marketpress_gateway' ) ) {
409
  <tr>
410
  <th scope="row"><label for="mycred-profit-sharing"><?php _e( 'Percentage', 'mycred' ); ?></label></th>
411
  <td>
412
- <span class="description"><?php _e( 'Option to share sales with the product owner. User zero to disable', 'mycred' ); ?></span>
413
  <p><input value="<?php echo esc_attr( $settings['gateways']['mycred']['profit_share_percent'] ); ?>" size="8" name="mp[gateways][mycred][profit_share_percent]" id="mycred-profit-sharing" type="text" /> %</p>
414
  </td>
415
  </tr>
100
 
101
  $settings = get_option( 'mp_settings' );
102
  if ( $this->use_exchange() )
103
+ return $this->mycred->apply_exchange_rate( $total, $settings['gateways']['mycred']['exchange'] );
104
  else
105
  return $this->mycred->number( $total );
106
  }
179
  $table = '<table class="mycred-cart-cost"><thead><tr><th>' . __( 'Payment', 'mycred' ) . '</th></tr></thead>';
180
  if ( $balance-$total < 0 ) {
181
  $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
182
+ $table .= '<tr><td id="mp-mycred-cost" style="color: red; font-weight: bold;"><p>' . $message . ' <a href="' . mp_checkout_step_url( 'checkout' ) . '">' . __( 'Go Back', 'mycred' ) . '</a></td></tr>';
183
  }
184
  else
185
  $table .= '<tr><td id="mp-mycred-cost" class="mycred-ok">' . $this->mycred->format_creds( $total ) . ' ' . __( 'will be deducted from your account.', 'mycred' ) . '</td></tr>';
228
  // Low balance or Insolvent
229
  if ( $balance <= $this->mycred->zero() || $balance-$total < $this->mycred->zero() ) {
230
  $mp->cart_checkout_error(
231
+ $insolvent . ' <a href="' . mp_checkout_step_url( 'checkout' ) . '">' . __( 'Go Back', 'mycred' ) . '</a>'
232
  );
233
  return;
234
  }
409
  <tr>
410
  <th scope="row"><label for="mycred-profit-sharing"><?php _e( 'Percentage', 'mycred' ); ?></label></th>
411
  <td>
412
+ <span class="description"><?php _e( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ); ?></span>
413
  <p><input value="<?php echo esc_attr( $settings['gateways']['mycred']['profit_share_percent'] ); ?>" size="8" name="mp[gateways][mycred][profit_share_percent]" id="mycred-profit-sharing" type="text" /> %</p>
414
  </td>
415
  </tr>
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
7
  * Custom Payment Gateway for WooCommerce.
8
  * @see http://docs.woothemes.com/document/payment-gateway-api/
9
  * @since 0.1
10
- * @version 1.3
11
  */
12
  if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
13
  /**
@@ -156,7 +156,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
156
  $fields['profit_sharing_percent'] = array(
157
  'title' => __( 'Profit Sharing', 'mycred' ),
158
  'type' => 'text',
159
- 'description' => __( 'Option to share a percentage of the sale with the product owner.', 'mycred' ),
160
  'default' => 0,
161
  'desc_tip' => true
162
  );
@@ -225,7 +225,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
225
  $order = new WC_Order( $order_id );
226
 
227
  // Cost
228
- $cost = $this->mycred->apply_exchange_rate( $order->order_total, $this->exchange_rate, false );
229
 
230
  // Check funds
231
  if ( $this->mycred->get_users_cred( $cui, $this->mycred_type ) < $cost ) {
@@ -402,7 +402,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
402
  global $woocommerce;
403
 
404
  // Calculate cost in CREDs
405
- $cost = $mycred->apply_exchange_rate( $mycred->number( $woocommerce->cart->total ), $gateways['mycred']->get_option( 'exchange_rate' ), false );
406
 
407
  // Check if we have enough points
408
  if ( $mycred->get_users_cred( $cui, $type ) < $cost ) {
@@ -424,7 +424,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
424
  function mycred_woo_add_currency( $currencies )
425
  {
426
  $settings = get_option( 'woocommerce_mycred_settings', false );
427
- if ( $settings === false ) return $currency_symbol;
428
 
429
  $type = 'mycred_default';
430
  if ( isset( $settings['point_type'] ) && ! empty( $settings['point_type'] ) )
@@ -504,7 +504,7 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
504
 
505
  // Apply Exchange Rate
506
  $rate = $available_gateways['mycred']->get_option( 'exchange_rate' );
507
- $mycred_cost = $mycred->apply_exchange_rate( $woocommerce->cart->total, $rate, false ); ?>
508
 
509
  <tr class="total">
510
  <th><strong><?php echo $mycred->template_tags_general( $available_gateways['mycred']->get_option( 'total_label' ) ); ?></strong></th>
7
  * Custom Payment Gateway for WooCommerce.
8
  * @see http://docs.woothemes.com/document/payment-gateway-api/
9
  * @since 0.1
10
+ * @version 1.3.1
11
  */
12
  if ( ! function_exists( 'mycred_init_woo_gateway' ) ) {
13
  /**
156
  $fields['profit_sharing_percent'] = array(
157
  'title' => __( 'Profit Sharing', 'mycred' ),
158
  'type' => 'text',
159
+ 'description' => __( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ),
160
  'default' => 0,
161
  'desc_tip' => true
162
  );
225
  $order = new WC_Order( $order_id );
226
 
227
  // Cost
228
+ $cost = $this->mycred->apply_exchange_rate( $order->order_total, $this->exchange_rate );
229
 
230
  // Check funds
231
  if ( $this->mycred->get_users_cred( $cui, $this->mycred_type ) < $cost ) {
402
  global $woocommerce;
403
 
404
  // Calculate cost in CREDs
405
+ $cost = $mycred->apply_exchange_rate( $mycred->number( $woocommerce->cart->total ), $gateways['mycred']->get_option( 'exchange_rate' ) );
406
 
407
  // Check if we have enough points
408
  if ( $mycred->get_users_cred( $cui, $type ) < $cost ) {
424
  function mycred_woo_add_currency( $currencies )
425
  {
426
  $settings = get_option( 'woocommerce_mycred_settings', false );
427
+ if ( $settings === false ) return $currencies;
428
 
429
  $type = 'mycred_default';
430
  if ( isset( $settings['point_type'] ) && ! empty( $settings['point_type'] ) )
504
 
505
  // Apply Exchange Rate
506
  $rate = $available_gateways['mycred']->get_option( 'exchange_rate' );
507
+ $mycred_cost = $mycred->apply_exchange_rate( $woocommerce->cart->total, $rate ); ?>
508
 
509
  <tr class="total">
510
  <th><strong><?php echo $mycred->template_tags_general( $available_gateways['mycred']->get_option( 'total_label' ) ); ?></strong></th>
addons/gateway/carts/mycred-wpecommerce.php CHANGED
@@ -361,7 +361,7 @@ if ( ! function_exists( 'mycred_wpecom_gateway_settings' ) ) {
361
  </tr>
362
  <tr>
363
  <td width="150">' . __( 'Payout', 'mycred' ) . '</td>
364
- <td><input type="text" name="mycred_gateway[share]" value="' . esc_attr( $mycred_wpecom_settings['share'] ) . '" style="width:50px;" /> %<br /><span class="description">' . __( 'Option to share a percentage of the sale with the product owner (post author). User zero to disable.', 'mycred' ) . '</span></td>
365
  </tr>
366
  <tr>
367
  <td width="150">' . __( 'Log Template', 'mycred' ) . '</td>
361
  </tr>
362
  <tr>
363
  <td width="150">' . __( 'Payout', 'mycred' ) . '</td>
364
+ <td><input type="text" name="mycred_gateway[share]" value="' . esc_attr( $mycred_wpecom_settings['share'] ) . '" style="width:50px;" /> %<br /><span class="description">' . __( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ) . '</span></td>
365
  </tr>
366
  <tr>
367
  <td width="150">' . __( 'Log Template', 'mycred' ) . '</td>
addons/gateway/event-booking/mycred-eventespresso3.php CHANGED
@@ -461,7 +461,7 @@ if ( ! class_exists( 'myCRED_Espresso_Gateway' ) ) {
461
  <li id="mycred-event-profit-sharing">
462
  <label for="mycred-prefs-profit-share"><?php _e( 'Profit Sharing', 'mycred' ); ?></label>
463
  <input type="text" name="mycred_prefs[share]" id="mycred-prefs-profit-share" size="5" value="<?php echo $this->prefs['share']; ?>" /> %<br />
464
- <span class="description"><?php _e( 'Option to share sales with the event owner (post author). Use zero to disable.', 'mycred' ); ?></span>
465
  </li>
466
  </ul>
467
  <h4><?php _e( 'Log', 'mycred' ); ?></h4>
461
  <li id="mycred-event-profit-sharing">
462
  <label for="mycred-prefs-profit-share"><?php _e( 'Profit Sharing', 'mycred' ); ?></label>
463
  <input type="text" name="mycred_prefs[share]" id="mycred-prefs-profit-share" size="5" value="<?php echo $this->prefs['share']; ?>" /> %<br />
464
+ <span class="description"><?php _e( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ); ?></span>
465
  </li>
466
  </ul>
467
  <h4><?php _e( 'Log', 'mycred' ); ?></h4>
addons/gateway/event-booking/mycred-eventsmanager-pro.php CHANGED
@@ -483,14 +483,14 @@ if ( ! class_exists( 'EM_Gateway_myCRED' ) ) {
483
  <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
484
  <td>
485
  <input name="mycred_gateway[refund]" type="text" id="mycred-gateway-log-refund" value="<?php echo $this->prefs['refund']; ?>" size="5" /> %<br />
486
- <span class="description"><?php _e( 'The percentage of the paid amount to refund if a user cancells their booking. Use zero for no refunds. No refunds are given to "Rejected" bookings!', 'mycred' ); ?></span>
487
  </td>
488
  </tr>
489
  <tr>
490
  <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
491
  <td>
492
  <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
493
- <span class="description"><?php _e( 'Option to share sales with the event owner (post author). Use zero to disable.', 'mycred' ); ?></span>
494
  </td>
495
  </tr>
496
  </table>
483
  <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
484
  <td>
485
  <input name="mycred_gateway[refund]" type="text" id="mycred-gateway-log-refund" value="<?php echo $this->prefs['refund']; ?>" size="5" /> %<br />
486
+ <span class="description"><?php _e( 'The percentage of the paid amount to refund if a user cancels their booking. Use zero for no refunds. No refunds are given to "Rejected" bookings!', 'mycred' ); ?></span>
487
  </td>
488
  </tr>
489
  <tr>
490
  <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
491
  <td>
492
  <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
493
+ <span class="description"><?php _e( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ); ?></span>
494
  </td>
495
  </tr>
496
  </table>
addons/gateway/event-booking/mycred-eventsmanager.php CHANGED
@@ -569,7 +569,7 @@ jQuery(function($) {
569
  <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
570
  <td>
571
  <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
572
- <span class="description"><?php _e( 'Option to share sales with the event owner (post author). Use zero to disable.', 'mycred' ); ?></span>
573
  </td>
574
  </tr>
575
  </table>
569
  <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
570
  <td>
571
  <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
572
+ <span class="description"><?php _e( 'Option to share sales with the product owner. Use zero to disable.', 'mycred' ); ?></span>
573
  </td>
574
  </tr>
575
  </table>
addons/notifications/myCRED-addon-notifications.php CHANGED
@@ -55,15 +55,14 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
55
  /**
56
  * Load Notice in Footer
57
  * @since 1.2.3
58
- * @version 1.1
59
  */
60
  public function wp_footer() {
61
  $notices = apply_filters( 'mycred_notifications', array() );
 
 
62
  if ( $this->notifications['duration'] == 0 ) $stay = 'true';
63
- else {
64
- echo '<style type="text/css">.notice-item-close{ display: none; display: none !important; }</style>';
65
- $stay = 'false';
66
- }
67
 
68
  do_action_ref_array( 'mycred_before_notifications', array( &$notices ) );
69
 
@@ -229,7 +228,7 @@ if ( ! function_exists( 'mycred_add_new_notice' ) ) {
229
  $data = get_transient( 'mycred_notice_' . $notice['user_id'] );
230
 
231
  // If none exists create a new array
232
- if ( $data === false || !is_array( $data ) )
233
  $notices = array();
234
  else
235
  $notices = $data;
55
  /**
56
  * Load Notice in Footer
57
  * @since 1.2.3
58
+ * @version 1.2
59
  */
60
  public function wp_footer() {
61
  $notices = apply_filters( 'mycred_notifications', array() );
62
+ if ( empty( $notices ) ) return;
63
+
64
  if ( $this->notifications['duration'] == 0 ) $stay = 'true';
65
+ else $stay = 'false';
 
 
 
66
 
67
  do_action_ref_array( 'mycred_before_notifications', array( &$notices ) );
68
 
228
  $data = get_transient( 'mycred_notice_' . $notice['user_id'] );
229
 
230
  // If none exists create a new array
231
+ if ( $data === false || ! is_array( $data ) )
232
  $notices = array();
233
  else
234
  $notices = $data;
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -512,8 +512,8 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
512
  $messages['mycred_rank'] = array(
513
  0 => '',
514
  1 => sprintf( __( 'Rank Updated. View <a href="%1$s">All Ranks</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_rank' ) ),
515
- 2 => __( 'Custom field updated', 'mycred' ),
516
- 3 => __( 'Custom filed updated', 'mycred' ),
517
  4 => sprintf( __( 'Rank Updated. View <a href="%1$s">All Ranks</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_rank' ) ),
518
  5 => false,
519
  6 => __( 'Rank Activated', 'mycred' ),
512
  $messages['mycred_rank'] = array(
513
  0 => '',
514
  1 => sprintf( __( 'Rank Updated. View <a href="%1$s">All Ranks</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_rank' ) ),
515
+ 2 => '',
516
+ 3 => '',
517
  4 => sprintf( __( 'Rank Updated. View <a href="%1$s">All Ranks</a>.', 'mycred' ), admin_url( 'edit.php?post_type=mycred_rank' ) ),
518
  5 => false,
519
  6 => __( 'Rank Activated', 'mycred' ),
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -860,6 +860,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) {
860
  <?php } ?>
861
 
862
  </ol>
 
863
  </div>
864
  <?php
865
  $output = ob_get_contents();
860
  <?php } ?>
861
 
862
  </ol>
863
+ <div class="clear clearfix clr"></div>
864
  </div>
865
  <?php
866
  $output = ob_get_contents();
includes/importers/mycred-balances.php ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
+
4
+ if ( class_exists( 'WP_Importer' ) ) {
5
+ class myCRED_Importer_Balances extends WP_Importer {
6
+
7
+ var $id;
8
+ var $file_url;
9
+ var $import_page;
10
+ var $delimiter;
11
+ var $posts = array();
12
+ var $imported;
13
+ var $skipped;
14
+
15
+ /**
16
+ * Construct
17
+ */
18
+ public function __construct() {
19
+ $this->import_page = 'mycred_import_balance';
20
+ }
21
+
22
+ /**
23
+ * Registered callback function for the WordPress Importer
24
+ * Manages the three separate stages of the CSV import process
25
+ */
26
+ function load() {
27
+ $this->header();
28
+
29
+ if ( ! empty( $_POST['delimiter'] ) )
30
+ $this->delimiter = stripslashes( trim( $_POST['delimiter'] ) );
31
+
32
+ if ( ! $this->delimiter )
33
+ $this->delimiter = ',';
34
+
35
+ $step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
36
+ switch ( $step ) {
37
+ case 0:
38
+ $this->greet();
39
+ break;
40
+ case 1:
41
+ check_admin_referer( 'import-upload' );
42
+ if ( $this->handle_upload() ) {
43
+
44
+ if ( $this->id )
45
+ $file = get_attached_file( $this->id );
46
+ else
47
+ $file = ABSPATH . $this->file_url;
48
+
49
+ add_filter( 'http_request_timeout', array( $this, 'bump_request_timeout' ) );
50
+
51
+ if ( function_exists( 'gc_enable' ) )
52
+ gc_enable();
53
+
54
+ @set_time_limit(0);
55
+ @ob_flush();
56
+ @flush();
57
+
58
+ $this->import( $file );
59
+ }
60
+ break;
61
+ }
62
+ $this->footer();
63
+ }
64
+
65
+ /**
66
+ * format_data_from_csv function.
67
+ */
68
+ function format_data_from_csv( $data, $enc ) {
69
+ return ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
70
+ }
71
+
72
+ /**
73
+ * import function.
74
+ */
75
+ function import( $file ) {
76
+ global $wpdb, $mycred;
77
+
78
+ $this->imported = $this->skipped = 0;
79
+
80
+ if ( ! is_file( $file ) ) {
81
+ echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
82
+ echo __( 'The file does not exist, please try again.', 'mycred' ) . '</p>';
83
+ $this->footer();
84
+ die();
85
+ }
86
+
87
+ ini_set( 'auto_detect_line_endings', '1' );
88
+
89
+ if ( ( $handle = fopen( $file, "r" ) ) !== FALSE ) {
90
+
91
+ $header = fgetcsv( $handle, 0, $this->delimiter );
92
+
93
+ if ( sizeof( $header ) == 2 || sizeof( $header ) == 3 ) {
94
+
95
+ $loop = 0;
96
+
97
+ while ( ( $row = fgetcsv( $handle, 0, $this->delimiter ) ) !== FALSE ) {
98
+
99
+ $log_entry = '';
100
+ if ( sizeof( $header ) == 2 )
101
+ list( $id, $balance ) = $row;
102
+ else
103
+ list( $id, $balance, $log_entry ) = $row;
104
+
105
+ $user = false;
106
+ if ( is_int( $id ) )
107
+ $user = get_userdata( $id );
108
+
109
+ if ( $user === false )
110
+ $user = get_user_by( 'email', $id );
111
+
112
+ if ( $user === false )
113
+ $user = get_user_by( 'login', $id );
114
+
115
+ if ( $user === false ) {
116
+ $this->skipped ++;
117
+ continue;
118
+ }
119
+
120
+ update_user_meta( $user->ID, 'mycred_default', $balance );
121
+
122
+ if ( ! empty( $log_entry ) ) {
123
+ $wpdb->insert(
124
+ $mycred->log_table,
125
+ array(
126
+ 'ref' => 'import',
127
+ 'ref_id' => NULL,
128
+ 'user_id' => $user->ID,
129
+ 'creds' => $mycred->number( $balance ),
130
+ 'ctype' => 'mycred_default',
131
+ 'time' => date_i18n( 'U' ),
132
+ 'entry' => sanitize_text_field( $log_entry ),
133
+ 'data' => ''
134
+ )
135
+ );
136
+ }
137
+
138
+ $loop ++;
139
+ $this->imported++;
140
+ }
141
+
142
+ } else {
143
+
144
+ echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
145
+ echo __( 'The CSV is invalid.', 'mycred' ) . '</p>';
146
+ $this->footer();
147
+ die();
148
+
149
+ }
150
+
151
+ fclose( $handle );
152
+ }
153
+
154
+ // Show Result
155
+ echo '<div class="updated settings-error below-h2"><p>
156
+ '.sprintf( __( 'Import complete - A total of <strong>%d</strong> balances were successfully imported. <strong>%d</strong> was skipped.', 'mycred' ), $this->imported, $this->skipped ).'
157
+ </p></div>';
158
+
159
+ $this->import_end();
160
+ }
161
+
162
+ /**
163
+ * Performs post-import cleanup of files and the cache
164
+ */
165
+ function import_end() {
166
+ echo '<p><a href="' . admin_url( 'admin.php?page=myCRED' ) . '" class="button button-large button-primary">' . __( 'View Log', 'mycred' ) . '</a> <a href="' . admin_url( 'import.php' ) . '" class="button button-large button-primary">' . __( 'Import More', 'mycred' ) . '</a></p>';
167
+
168
+ do_action( 'import_end' );
169
+ }
170
+
171
+ /**
172
+ * Handles the CSV upload and initial parsing of the file to prepare for
173
+ * displaying author import options
174
+ * @return bool False if error uploading or invalid file, true otherwise
175
+ */
176
+ function handle_upload() {
177
+
178
+ if ( empty( $_POST['file_url'] ) ) {
179
+
180
+ $file = wp_import_handle_upload();
181
+
182
+ if ( isset( $file['error'] ) ) {
183
+ echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong><br />';
184
+ echo esc_html( $file['error'] ) . '</p>';
185
+ return false;
186
+ }
187
+
188
+ $this->id = (int) $file['id'];
189
+
190
+ } else {
191
+
192
+ if ( file_exists( ABSPATH . $_POST['file_url'] ) ) {
193
+
194
+ $this->file_url = esc_attr( $_POST['file_url'] );
195
+
196
+ } else {
197
+
198
+ echo '<p><strong>' . __( 'Sorry, there has been an error.', 'mycred' ) . '</strong></p>';
199
+ return false;
200
+
201
+ }
202
+
203
+ }
204
+
205
+ return true;
206
+ }
207
+
208
+ /**
209
+ * header function.
210
+ */
211
+ function header() {
212
+ echo '<div class="wrap"><h2>' . __( 'Import Balances', 'mycred' ) . '</h2>';
213
+ }
214
+
215
+ /**
216
+ * footer function.
217
+ */
218
+ function footer() {
219
+ echo '</div>';
220
+ }
221
+
222
+ /**
223
+ * greet function.
224
+ */
225
+ function greet() {
226
+ global $mycred;
227
+
228
+ echo '<div class="narrow">';
229
+ echo '<p>' . __( 'Import balances from a CSV file.', 'mycred' ).'</p>';
230
+
231
+ $action = 'admin.php?import=mycred_import_balance&step=1';
232
+
233
+ $bytes = apply_filters( 'import_upload_size_limit', wp_max_upload_size() );
234
+ $size = size_format( $bytes );
235
+ $upload_dir = wp_upload_dir();
236
+ if ( ! empty( $upload_dir['error'] ) ) :
237
+ ?><div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'mycred' ); ?></p>
238
+ <p><strong><?php echo $upload_dir['error']; ?></strong></p></div><?php
239
+ else :
240
+ ?>
241
+ <form enctype="multipart/form-data" id="import-upload-form" method="post" action="<?php echo esc_attr( wp_nonce_url( $action, 'import-upload' ) ); ?>">
242
+ <table class="form-table">
243
+ <tbody>
244
+ <tr>
245
+ <th>
246
+ <label for="upload"><?php _e( 'Choose a file from your computer:', 'mycred' ); ?></label>
247
+ </th>
248
+ <td>
249
+ <input type="file" id="upload" name="import" size="25" />
250
+ <input type="hidden" name="action" value="save" />
251
+ <input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
252
+ <small><?php printf( __( 'Maximum size: %s', 'mycred' ), $size ); ?></small>
253
+ </td>
254
+ </tr>
255
+ <tr>
256
+ <th>
257
+ <label for="file_url"><?php _e( 'OR enter path to file:', 'mycred' ); ?></label>
258
+ </th>
259
+ <td>
260
+ <?php echo ' ' . ABSPATH . ' '; ?><input type="text" id="file_url" name="file_url" size="25" />
261
+ </td>
262
+ </tr>
263
+ <tr>
264
+ <th><label><?php _e( 'Delimiter', 'mycred' ); ?></label><br/></th>
265
+ <td><input type="text" name="delimiter" placeholder="," size="2" /></td>
266
+ </tr>
267
+ </tbody>
268
+ </table>
269
+ <p class="submit">
270
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Upload file and import' ); ?>" />
271
+ </p>
272
+ </form>
273
+ <?php
274
+ endif;
275
+
276
+ echo '</div>';
277
+ }
278
+
279
+ /**
280
+ * Added to http_request_timeout filter to force timeout at 60 seconds during import
281
+ * @return int 60
282
+ */
283
+ function bump_request_timeout( $val ) {
284
+ return 60;
285
+ }
286
+ }
287
+ }
includes/mycred-functions.php CHANGED
@@ -262,16 +262,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
262
  * @param $rate (int|float) the exchange rate to devide by
263
  * @param $round (bool) option to round values, defaults to yes.
264
  * @since 0.1
265
- * @version 1.2
266
  */
267
  public function apply_exchange_rate( $amount = 0, $rate = 1, $round = true ) {
268
- $amount = $this->number( $amount );
269
  if ( ! is_numeric( $rate ) || $rate == 1 ) return $amount;
270
 
271
  $exchange = $amount/(float) $rate;
272
  if ( $round ) $exchange = round( $exchange );
273
 
274
- return apply_filters( 'mycred_apply_exchange_rate', $this->number( $exchange ), $amount, $rate, $round );
275
  }
276
 
277
  /**
@@ -975,8 +974,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
975
  // done (string) - "Already done"
976
  elseif ( $execute === 'done' ) {
977
  // Update rankings
978
- if ( $this->frequency['rate'] == 'always' )
979
- $this->update_rankings();
980
 
981
  return true;
982
  }
262
  * @param $rate (int|float) the exchange rate to devide by
263
  * @param $round (bool) option to round values, defaults to yes.
264
  * @since 0.1
265
+ * @version 1.3
266
  */
267
  public function apply_exchange_rate( $amount = 0, $rate = 1, $round = true ) {
 
268
  if ( ! is_numeric( $rate ) || $rate == 1 ) return $amount;
269
 
270
  $exchange = $amount/(float) $rate;
271
  if ( $round ) $exchange = round( $exchange );
272
 
273
+ return apply_filters( 'mycred_apply_exchange_rate', $exchange, $amount, $rate, $round );
274
  }
275
 
276
  /**
974
  // done (string) - "Already done"
975
  elseif ( $execute === 'done' ) {
976
  // Update rankings
977
+ //if ( $this->frequency['rate'] == 'always' )
978
+ // $this->update_rankings();
979
 
980
  return true;
981
  }
includes/mycred-importer.php CHANGED
@@ -33,6 +33,38 @@ function mycred_importer_log_entries() {
33
  $importer->load();
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  /**
37
  * Register Importer: CubePoints
38
  * @since 1.4
33
  $importer->load();
34
  }
35
 
36
+ /**
37
+ * Register Importer: Balances
38
+ * @since 1.4.2
39
+ * @version 1.0
40
+ */
41
+ register_importer(
42
+ 'mycred_import_balance',
43
+ sprintf( __( '%s Balance Import', 'mycred' ), mycred_label() ),
44
+ __( 'Import balances.', 'mycred' ),
45
+ 'mycred_importer_point_balances'
46
+ );
47
+
48
+ /**
49
+ * Load Importer: Point Balances
50
+ * @since 1.4
51
+ * @version 1.0
52
+ */
53
+ function mycred_importer_point_balances() {
54
+ require_once( ABSPATH . 'wp-admin/includes/import.php' );
55
+
56
+ if ( ! class_exists( 'WP_Importer' ) ) {
57
+ $class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
58
+ if ( file_exists( $class_wp_importer ) )
59
+ require $class_wp_importer;
60
+ }
61
+
62
+ require_once( myCRED_INCLUDES_DIR . 'importers/mycred-balances.php' );
63
+
64
+ $importer = new myCRED_Importer_Balances();
65
+ $importer->load();
66
+ }
67
+
68
  /**
69
  * Register Importer: CubePoints
70
  * @since 1.4
includes/mycred-overview.php CHANGED
@@ -7,7 +7,9 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
7
  * @since 1.3.3
8
  * @version 1.2
9
  */
10
- add_action( 'wp_dashboard_setup', array( 'myCRED_Dashboard_Widget_Overview', 'init' ) );
 
 
11
  if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
12
  class myCRED_Dashboard_Widget_Overview {
13
 
7
  * @since 1.3.3
8
  * @version 1.2
9
  */
10
+ if ( function_exists( 'mycred_is_admin' ) && mycred_is_admin() )
11
+ add_action( 'wp_dashboard_setup', array( 'myCRED_Dashboard_Widget_Overview', 'init' ) );
12
+
13
  if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
14
  class myCRED_Dashboard_Widget_Overview {
15
 
includes/mycred-shortcodes.php CHANGED
@@ -136,7 +136,7 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) {
136
  * myCRED Shortcode: mycred_leaderboard
137
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
138
  * @since 0.1
139
- * @version 1.3
140
  */
141
  if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
142
  function mycred_render_leaderboard( $atts, $content = NULL )
@@ -162,11 +162,12 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
162
 
163
  global $wpdb;
164
  $leaderboard = $wpdb->get_results( $wpdb->prepare( apply_filters( 'mycred_ranking_sql', "
165
- SELECT u.ID, um.meta_value AS cred
166
  FROM {$wpdb->users} u
167
- LEFT JOIN {$wpdb->usermeta} um
168
- ON ( u.ID = um.user_id AND um.meta_key = %s )
169
- ORDER BY um.meta_value+1 {$order} {$limit};", $atts ), $type ), 'ARRAY_A' );
 
170
 
171
  $output = '';
172
  $in_list = false;
@@ -245,9 +246,10 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
245
  $full_leaderboard = $wpdb->get_results( $wpdb->prepare( "
246
  SELECT u.ID
247
  FROM {$wpdb->users} u
248
- LEFT JOIN {$wpdb->usermeta} um
249
- ON ( u.ID = um.user_id AND um.meta_key = %s )
250
- ORDER BY um.meta_value+1 {$order};", $type ), 'ARRAY_A' );
 
251
 
252
  if ( ! empty( $full_leaderboard ) ) {
253
 
136
  * myCRED Shortcode: mycred_leaderboard
137
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
138
  * @since 0.1
139
+ * @version 1.3.1
140
  */
141
  if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
142
  function mycred_render_leaderboard( $atts, $content = NULL )
162
 
163
  global $wpdb;
164
  $leaderboard = $wpdb->get_results( $wpdb->prepare( apply_filters( 'mycred_ranking_sql', "
165
+ SELECT DISTINCT u.ID, um.meta_value AS cred
166
  FROM {$wpdb->users} u
167
+ INNER JOIN {$wpdb->usermeta} um
168
+ ON ( u.ID = um.user_id )
169
+ WHERE um.meta_key = %s
170
+ ORDER BY um.meta_value+0 {$order} {$limit};", $atts ), $type ), 'ARRAY_A' );
171
 
172
  $output = '';
173
  $in_list = false;
246
  $full_leaderboard = $wpdb->get_results( $wpdb->prepare( "
247
  SELECT u.ID
248
  FROM {$wpdb->users} u
249
+ INNER JOIN {$wpdb->usermeta} um
250
+ ON ( u.ID = um.user_id )
251
+ WHERE um.meta_key = %s
252
+ ORDER BY um.meta_value+0 {$order};", $type ), 'ARRAY_A' );
253
 
254
  if ( ! empty( $full_leaderboard ) ) {
255
 
includes/mycred-widgets.php CHANGED
@@ -103,7 +103,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) {
103
  foreach ( $log->results as $entry ) {
104
  // Row Layout
105
  $layout = $instance['history_format'];
106
- $layout = str_replace( '%date%', '<span class="date">' . date_i18n( $date_format ) . '</span>', $layout );
107
  $layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
108
 
109
  $layout = $mycred->allowed_tags( $layout );
@@ -459,8 +459,13 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) {
459
 
460
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? $new_instance['show_visitors'] : 0;
461
 
462
- $rank_format = trim( $new_instance['text'] );
463
- $instance['text'] = str_replace( '%rank%', '%ranking%', $rank_format );
 
 
 
 
 
464
 
465
  $instance['offset'] = $new_instance['offset'];
466
  $instance['order'] = $new_instance['order'];
103
  foreach ( $log->results as $entry ) {
104
  // Row Layout
105
  $layout = $instance['history_format'];
106
+ $layout = str_replace( '%date%', '<span class="date">' . date_i18n( $date_format, $entry->time ) . '</span>', $layout );
107
  $layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
108
 
109
  $layout = $mycred->allowed_tags( $layout );
459
 
460
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? $new_instance['show_visitors'] : 0;
461
 
462
+ $template = trim( $new_instance['text'] );
463
+
464
+ // Remove rank tag if the ranks add-on is disabled
465
+ if ( ! function_exists( 'mycred_get_users_rank' ) )
466
+ $instance['text'] = str_replace( '%rank%', '%ranking%', $template );
467
+ else
468
+ $instance['text'] = $template;
469
 
470
  $instance['offset'] = $new_instance['offset'];
471
  $instance['order'] = $new_instance['order'];
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,8 +3,8 @@ 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 Mar 24 2014 18:44:00 GMT+0100 (CET)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,103 +23,103 @@ msgstr ""
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: en_US"
25
 
26
- #: ../mycred.php:395
27
  msgid "Balance"
28
  msgstr ""
29
 
30
- #: ../mycred.php:420
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
- #: ../mycred.php:472
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
- #: ../mycred.php:518
39
  msgid "About %s"
40
  msgstr ""
41
 
42
- #: ../mycred.php:527 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr ""
45
 
46
- #: ../mycred.php:612 ../mycred.php:636 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:881 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:533
47
  msgid "Processing..."
48
  msgstr ""
49
 
50
- #: ../mycred.php:613
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
- #: ../mycred.php:614
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
- #: ../mycred.php:615
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:616
67
  msgid "Done!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:617 ../mycred.php:635 ../mycred.php:653
71
  msgid "Close"
72
  msgstr ""
73
 
74
- #: ../mycred.php:618
75
  msgid "Export users %plural%"
76
  msgstr ""
77
 
78
- #: ../mycred.php:634
79
- msgid "Edit Users %s balance"
80
  msgstr ""
81
 
82
- #: ../mycred.php:652
83
  msgid "Edit Log Entry"
84
  msgstr ""
85
 
86
- #: ../mycred.php:654
87
  msgid "Updating..."
88
  msgstr ""
89
 
90
- #: ../mycred.php:656
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr ""
93
 
94
- #: ../mycred.php:657
95
  msgid "Log entry updated"
96
  msgstr ""
97
 
98
- #: ../mycred.php:709 ../mycred.php:730 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr ""
101
 
102
- #: ../mycred.php:711 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:176 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr ""
105
 
106
- #: ../mycred.php:734 ../modules/mycred-module-addons.php:362
107
  msgid "About"
108
  msgstr ""
109
 
110
- #: ../mycred.php:735
111
  msgid "Tutorials"
112
  msgstr ""
113
 
114
- #: ../mycred.php:736
115
  msgid "Codex"
116
  msgstr ""
117
 
118
- #: ../mycred.php:737
119
  msgid "Store"
120
  msgstr ""
121
 
122
- #: ../mycred.php:751
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
@@ -133,7 +133,7 @@ msgstr ""
133
  msgid "This Hook has no settings"
134
  msgstr ""
135
 
136
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1197
137
  msgid "No limit"
138
  msgstr ""
139
 
@@ -153,7 +153,7 @@ msgstr ""
153
  msgid "Once per day (reset at midnight)"
154
  msgstr ""
155
 
156
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
157
  msgid "Select"
158
  msgstr ""
159
 
@@ -165,19 +165,19 @@ msgstr ""
165
  msgid "Surprise"
166
  msgstr ""
167
 
168
- #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:104
169
  msgid "click to close"
170
  msgstr ""
171
 
172
- #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:105
173
  msgid "click to open"
174
  msgstr ""
175
 
176
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:476
177
  msgid "Settings Updated"
178
  msgstr ""
179
 
180
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:148
181
  msgid "Banking"
182
  msgstr ""
183
 
@@ -203,7 +203,7 @@ msgid ""
203
  "of times you want this payout to run (cycles)."
204
  msgstr ""
205
 
206
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:461 ../addons/buy-creds/myCRED-addon-buy-creds.php:591 ../includes/mycred-network.php:150 ../modules/mycred-module-addons.php:268 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:584 ../modules/mycred-module-settings.php:299
207
  msgid "Access Denied"
208
  msgstr ""
209
 
@@ -211,7 +211,7 @@ msgstr ""
211
  msgid "%s Banking"
212
  msgstr ""
213
 
214
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:149
215
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
216
  msgstr ""
217
 
@@ -223,7 +223,7 @@ msgstr ""
223
  msgid "Warning! This add-on requires WP - Cron to work."
224
  msgstr ""
225
 
226
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:537 ../modules/mycred-module-hooks.php:182
227
  msgid "Enable"
228
  msgstr ""
229
 
@@ -291,7 +291,7 @@ msgstr ""
291
  msgid "The minimum requires balance for interest to apply."
292
  msgstr ""
293
 
294
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:356 ../addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:516 ../modules/mycred-module-hooks.php:1396 ../modules/mycred-module-hooks.php:1736 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
295
  msgid "Log Template"
296
  msgstr ""
297
 
@@ -318,7 +318,7 @@ msgstr ""
318
  msgid "Pay Users"
319
  msgstr ""
320
 
321
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:641 ../addons/buy-creds/myCRED-addon-buy-creds.php:1138 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:345 ../includes/mycred-admin.php:456
322
  msgid "Amount"
323
  msgstr ""
324
 
@@ -326,7 +326,7 @@ msgstr ""
326
  msgid "Can not be zero."
327
  msgstr ""
328
 
329
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1751
330
  msgid "Interval"
331
  msgstr ""
332
 
@@ -367,7 +367,7 @@ msgid ""
367
  "it gets re-activated. Set cycles to zero to reset."
368
  msgstr ""
369
 
370
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:562 ../modules/mycred-module-settings.php:380
371
  msgid "Excludes"
372
  msgstr ""
373
 
@@ -381,239 +381,239 @@ msgstr ""
381
  msgid "Payment Gateways"
382
  msgstr ""
383
 
384
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:176
385
  msgid "buyCRED Purchase Log"
386
  msgstr ""
387
 
388
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:177 ../addons/buy-creds/myCRED-addon-buy-creds.php:405 ../addons/buy-creds/myCRED-addon-buy-creds.php:472
389
  msgid "Purchase Log"
390
  msgstr ""
391
 
392
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
393
  msgid "Payments"
394
  msgstr ""
395
 
396
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:295
397
  msgid "Please login to purchase %_plural%"
398
  msgstr ""
399
 
400
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310
401
  msgid "Gift purchase from %display_name%."
402
  msgstr ""
403
 
404
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326 ../includes/mycred-overview.php:96 ../includes/mycred-overview.php:103 ../modules/mycred-module-addons.php:159
405
  msgid "buyCRED"
406
  msgstr ""
407
 
408
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:328 ../addons/ranks/myCRED-addon-ranks.php:608
409
  msgid "Minimum %plural%"
410
  msgstr ""
411
 
412
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:332
413
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
414
  msgstr ""
415
 
416
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:337 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
417
  msgid "Point Type"
418
  msgstr ""
419
 
420
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349
421
  msgid "Login Template"
422
  msgstr ""
423
 
424
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353
425
  msgid "Content to show when a user is not logged in."
426
  msgstr ""
427
 
428
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:363
429
  msgid "Thank You Page"
430
  msgstr ""
431
 
432
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:366 ../addons/buy-creds/myCRED-addon-buy-creds.php:387
433
  msgid "Custom URL"
434
  msgstr ""
435
 
436
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:371 ../addons/buy-creds/myCRED-addon-buy-creds.php:392
437
  msgid "Page"
438
  msgstr ""
439
 
440
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:384
441
  msgid "Cancellation Page"
442
  msgstr ""
443
 
444
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:407
445
  msgid "Show seperate log for %_plural% purchases."
446
  msgstr ""
447
 
448
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:409
449
  msgid "Gifting"
450
  msgstr ""
451
 
452
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:411
453
  msgid "Allow users to buy %_plural% for other users."
454
  msgstr ""
455
 
456
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:412
457
  msgid "Allow users to buy %_plural% for content authors."
458
  msgstr ""
459
 
460
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472
461
  msgid "%s Payment Gateways"
462
  msgstr ""
463
 
464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472 ../addons/buy-creds/myCRED-addon-buy-creds.php:647
465
  msgid "buyCRED Settings"
466
  msgstr ""
467
 
468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:478
469
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
470
  msgstr ""
471
 
472
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:485
473
  msgid "Last Payment Notification"
474
  msgstr ""
475
 
476
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:487
477
  msgid ""
478
  "Here you can view the last payment confirmation that was sent to buyCRED for "
479
  "processing."
480
  msgstr ""
481
 
482
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
483
  msgid "Details"
484
  msgstr ""
485
 
486
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:493 ../modules/mycred-module-log.php:550
487
  msgid "Time"
488
  msgstr ""
489
 
490
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:638 ../includes/mycred-overview.php:164 ../includes/mycred-overview.php:171 ../modules/mycred-module-addons.php:192
491
  msgid "Gateway"
492
  msgstr ""
493
 
494
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501 ../addons/buy-creds/myCRED-addon-buy-creds.php:643
495
  msgid "Transaction ID"
496
  msgstr ""
497
 
498
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505
499
  msgid "Outcome"
500
  msgstr ""
501
 
502
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509
503
  msgid "Gateway Log"
504
  msgstr ""
505
 
506
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
507
  msgid "No recorded calls found."
508
  msgstr ""
509
 
510
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:530
511
  msgid "Test Mode"
512
  msgstr ""
513
 
514
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:532
515
  msgid "Enabled"
516
  msgstr ""
517
 
518
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:535
519
  msgid "Disabled"
520
  msgstr ""
521
 
522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
523
  msgid "Sandbox Mode"
524
  msgstr ""
525
 
526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
527
  msgid "Enable for test purchases."
528
  msgstr ""
529
 
530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:565
531
  msgid "Update Gateway Settings"
532
  msgstr ""
533
 
534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:639 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:451 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:549
535
  msgid "User"
536
  msgstr ""
537
 
538
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640 ../includes/mycred-log.php:650
539
  msgid "Date"
540
  msgstr ""
541
 
542
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
543
  msgid "Payed"
544
  msgstr ""
545
 
546
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
547
  msgid "<strong>buy</strong>CRED Purchase Log"
548
  msgstr ""
549
 
550
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
551
  msgid "Gateway Settings"
552
  msgstr ""
553
 
554
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651
555
  msgid ""
556
  "Only completed purchases are shown here. Purchases that were cancelled or "
557
  "failed are not logged."
558
  msgstr ""
559
 
560
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:760 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:471
561
  msgid "User Missing"
562
  msgstr ""
563
 
564
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:817 ../addons/sell-content/myCRED-addon-sell-content.php:1110
565
  msgid "No purchases found"
566
  msgstr ""
567
 
568
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:889 ../addons/buy-creds/myCRED-addon-buy-creds.php:986
569
  msgid "This Add-on needs to setup before you can use this shortcode."
570
  msgstr ""
571
 
572
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
573
  msgid "No gateways installed."
574
  msgstr ""
575
 
576
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:908 ../addons/buy-creds/myCRED-addon-buy-creds.php:1005
577
  msgid "Gateway does not exist."
578
  msgstr ""
579
 
580
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:944
581
  msgid "Yourself"
582
  msgstr ""
583
 
584
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1006
585
  msgid "No active gateways found."
586
  msgstr ""
587
 
588
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1007
589
  msgid "The selected gateway is not active."
590
  msgstr ""
591
 
592
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1043
593
  msgid "Buy with %gateway%"
594
  msgstr ""
595
 
596
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1049 ../addons/sell-content/myCRED-addon-sell-content.php:44
597
  msgid "Buy Now"
598
  msgstr ""
599
 
600
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1089
601
  msgid "No users found"
602
  msgstr ""
603
 
604
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1099
605
  msgid "To"
606
  msgstr ""
607
 
608
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1116
609
  msgid "Select Amount"
610
  msgstr ""
611
 
612
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1140
613
  msgid "min."
614
  msgstr ""
615
 
616
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1148
617
  msgid "Select Gateway"
618
  msgstr ""
619
 
@@ -653,11 +653,11 @@ msgstr ""
653
  msgid "Cancel purchase"
654
  msgstr ""
655
 
656
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:338 ../includes/mycred-admin.php:444
657
  msgid "required"
658
  msgstr ""
659
 
660
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:340 ../includes/mycred-admin.php:446
661
  msgid "optional"
662
  msgstr ""
663
 
@@ -765,19 +765,19 @@ msgstr ""
765
  msgid "Validating sale"
766
  msgstr ""
767
 
768
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
769
  msgid "Token mismatch"
770
  msgstr ""
771
 
772
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
773
  msgid "Price mismatch"
774
  msgstr ""
775
 
776
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
777
  msgid "Currency mismatch"
778
  msgstr ""
779
 
780
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
781
  msgid "Duplicate transaction"
782
  msgstr ""
783
 
@@ -887,11 +887,11 @@ msgstr ""
887
  msgid "Full Notifications"
888
  msgstr ""
889
 
890
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:186 ../includes/mycred-network.php:200
891
  msgid "No"
892
  msgstr ""
893
 
894
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:182 ../includes/mycred-network.php:196
895
  msgid "Yes"
896
  msgstr ""
897
 
@@ -1049,7 +1049,7 @@ msgstr ""
1049
  msgid "Checkout Page"
1050
  msgstr ""
1051
 
1052
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:751 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:582 ../modules/mycred-module-hooks.php:2296
1053
  msgid "Title"
1054
  msgstr ""
1055
 
@@ -1134,7 +1134,7 @@ msgid ""
1134
  "address and click validate."
1135
  msgstr ""
1136
 
1137
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:186 ../includes/mycred-overview.php:193 ../modules/mycred-module-addons.php:170
1138
  msgid "Coupons"
1139
  msgstr ""
1140
 
@@ -1170,7 +1170,7 @@ msgstr ""
1170
  msgid "No coupons found in Trash"
1171
  msgstr ""
1172
 
1173
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:181
1174
  msgid "Email Notices"
1175
  msgstr ""
1176
 
@@ -1206,7 +1206,7 @@ msgstr ""
1206
  msgid "Usage"
1207
  msgstr ""
1208
 
1209
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1111 ../modules/mycred-module-hooks.php:1403
1210
  msgid "Limits"
1211
  msgstr ""
1212
 
@@ -1218,7 +1218,7 @@ msgstr ""
1218
  msgid "not yet used"
1219
  msgstr ""
1220
 
1221
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1841
1222
  msgid "Total"
1223
  msgstr ""
1224
 
@@ -1402,7 +1402,7 @@ msgstr ""
1402
  msgid "No email notices found in Trash"
1403
  msgstr ""
1404
 
1405
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/email-notices/myCRED-addon-email-notices.php:822 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:590
1406
  msgid "General"
1407
  msgstr ""
1408
 
@@ -1618,137 +1618,65 @@ msgstr ""
1618
  msgid "CSS Styling"
1619
  msgstr ""
1620
 
1621
- #: ../addons/email-notices/myCRED-addon-email-notices.php:815
1622
  msgid "Site Related"
1623
  msgstr ""
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1626
  msgid "Your websites title"
1627
  msgstr ""
1628
 
1629
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1630
  msgid "Your websites address"
1631
  msgstr ""
1632
 
1633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1634
  msgid "Your websites tagline (description)"
1635
  msgstr ""
1636
 
1637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1638
  msgid "Your websites admin email"
1639
  msgstr ""
1640
 
1641
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1642
  msgid "Total number of blog members"
1643
  msgstr ""
1644
 
1645
- #: ../addons/email-notices/myCRED-addon-email-notices.php:823
1646
- msgid "Points name in singular format"
1647
- msgstr ""
1648
-
1649
- #: ../addons/email-notices/myCRED-addon-email-notices.php:824
1650
- msgid "Points name in plural"
1651
- msgstr ""
1652
-
1653
- #: ../addons/email-notices/myCRED-addon-email-notices.php:825
1654
- msgid "Login URL"
1655
- msgstr ""
1656
-
1657
- #: ../addons/email-notices/myCRED-addon-email-notices.php:828 ../includes/mycred-functions.php:597
1658
- msgid "User Related"
1659
- msgstr ""
1660
-
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:829
1662
- msgid "The users ID"
1663
- msgstr ""
1664
-
1665
- #: ../addons/email-notices/myCRED-addon-email-notices.php:830
1666
- msgid "The users login name (username)"
1667
- msgstr ""
1668
-
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:831
1670
- msgid "The users display name"
1671
- msgstr ""
1672
-
1673
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
1674
- msgid "The users profile address"
1675
- msgstr ""
1676
-
1677
- #: ../addons/email-notices/myCRED-addon-email-notices.php:833
1678
- msgid "Link to the users profile address with their display name as title"
1679
- msgstr ""
1680
-
1681
- #: ../addons/email-notices/myCRED-addon-email-notices.php:834
1682
- msgid "The users current balance unformated"
1683
- msgstr ""
1684
-
1685
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
1686
- msgid "The users current balance formated"
1687
- msgstr ""
1688
-
1689
- #: ../addons/email-notices/myCRED-addon-email-notices.php:837 ../includes/mycred-functions.php:604
1690
- msgid "Post Related"
1691
- msgstr ""
1692
-
1693
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
1694
- msgid "Post Title"
1695
- msgstr ""
1696
-
1697
- #: ../addons/email-notices/myCRED-addon-email-notices.php:839
1698
- msgid "Post URL address"
1699
- msgstr ""
1700
-
1701
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
1702
- msgid "Link to post Post title"
1703
- msgstr ""
1704
-
1705
- #: ../addons/email-notices/myCRED-addon-email-notices.php:841
1706
- msgid "The post type"
1707
- msgstr ""
1708
-
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917 ../addons/email-notices/myCRED-addon-email-notices.php:920
1710
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1711
  msgstr ""
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:918 ../addons/ranks/myCRED-addon-ranks.php:513
1714
- msgid "Custom field updated"
1715
- msgstr ""
1716
-
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:919 ../addons/ranks/myCRED-addon-ranks.php:514
1718
- msgid "Custom filed updated"
1719
- msgstr ""
1720
-
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:922
1722
  msgid "Email Notice Activated"
1723
  msgstr ""
1724
 
1725
- #: ../addons/email-notices/myCRED-addon-email-notices.php:923
1726
  msgid "Email Notice Saved"
1727
  msgstr ""
1728
 
1729
- #: ../addons/email-notices/myCRED-addon-email-notices.php:924
1730
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1731
  msgstr ""
1732
 
1733
- #: ../addons/email-notices/myCRED-addon-email-notices.php:926
1734
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1735
  msgstr ""
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:945
1738
  msgid ""
1739
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1740
  "not yet ready to use this email notice!"
1741
  msgstr ""
1742
 
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1744
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1745
  msgstr ""
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:949
1748
  msgid "This email notice is active."
1749
  msgstr ""
1750
 
1751
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:452
1752
  msgid "Current Balance"
1753
  msgstr ""
1754
 
@@ -1761,7 +1689,7 @@ msgid "Balance After Purchase"
1761
  msgstr ""
1762
 
1763
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1764
- msgid "<a href=\"%s\">Go Back</a>"
1765
  msgstr ""
1766
 
1767
  #: ../addons/gateway/carts/mycred-marketpress.php:185
@@ -1778,7 +1706,7 @@ msgstr ""
1778
  msgid "Paid"
1779
  msgstr ""
1780
 
1781
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:52 ../includes/mycred-network.php:53 ../plugins/mycred-hook-badgeOS.php:81
1782
  msgid "myCRED"
1783
  msgstr ""
1784
 
@@ -1852,8 +1780,8 @@ msgstr ""
1852
  msgid "Percentage"
1853
  msgstr ""
1854
 
1855
- #: ../addons/gateway/carts/mycred-marketpress.php:412
1856
- msgid "Option to share sales with the product owner. User zero to disable"
1857
  msgstr ""
1858
 
1859
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
@@ -1966,7 +1894,7 @@ msgstr ""
1966
  msgid "Show in Cart and on Checkout Page"
1967
  msgstr ""
1968
 
1969
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:471 ../modules/mycred-module-settings.php:490 ../modules/mycred-module-settings.php:513
1970
  msgid "Label"
1971
  msgstr ""
1972
 
@@ -1974,10 +1902,6 @@ msgstr ""
1974
  msgid "Order Total in %_plural%"
1975
  msgstr ""
1976
 
1977
- #: ../addons/gateway/carts/mycred-woocommerce.php:159
1978
- msgid "Option to share a percentage of the sale with the product owner."
1979
- msgstr ""
1980
-
1981
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1982
  msgid "Log entry template for profit sharing."
1983
  msgstr ""
@@ -2053,12 +1977,6 @@ msgstr ""
2053
  msgid "Payout"
2054
  msgstr ""
2055
 
2056
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2057
- msgid ""
2058
- "Option to share a percentage of the sale with the product owner (post author). "
2059
- "User zero to disable."
2060
- msgstr ""
2061
-
2062
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2063
  msgid "Instructions"
2064
  msgstr ""
@@ -2145,15 +2063,11 @@ msgstr ""
2145
  msgid "Users must be logged in to use this gateway!"
2146
  msgstr ""
2147
 
2148
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2149
- msgid "Option to share sales with the event owner (post author). Use zero to disable."
2150
- msgstr ""
2151
-
2152
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2153
  msgid "Log"
2154
  msgstr ""
2155
 
2156
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:457
2157
  msgid "Log Entry"
2158
  msgstr ""
2159
 
@@ -2183,7 +2097,7 @@ msgstr ""
2183
  msgid "Message to show visitors (users not logged in) on the payment page."
2184
  msgstr ""
2185
 
2186
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:527
2187
  msgid "Update Settings"
2188
  msgstr ""
2189
 
@@ -2227,7 +2141,7 @@ msgstr ""
2227
  msgid "Reject"
2228
  msgstr ""
2229
 
2230
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:509 ../modules/mycred-module-settings.php:475 ../modules/mycred-module-settings.php:494
2231
  msgid "Delete"
2232
  msgstr ""
2233
 
@@ -2253,7 +2167,7 @@ msgstr ""
2253
 
2254
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2255
  msgid ""
2256
- "The percentage of the paid amount to refund if a user cancells their booking. "
2257
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2258
  msgstr ""
2259
 
@@ -2313,7 +2227,7 @@ msgid ""
2313
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2314
  msgstr ""
2315
 
2316
- #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:203
2317
  msgid "Notifications"
2318
  msgstr ""
2319
 
@@ -2361,11 +2275,11 @@ msgstr ""
2361
  msgid "Are you sure you want to re-assign user ranks?"
2362
  msgstr ""
2363
 
2364
- #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:746 ../addons/ranks/myCRED-addon-ranks.php:942 ../modules/mycred-module-addons.php:215
2365
  msgid "Ranks"
2366
  msgstr ""
2367
 
2368
- #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:441 ../addons/ranks/myCRED-addon-ranks.php:457 ../addons/ranks/myCRED-addon-ranks.php:552
2369
  msgid "Rank"
2370
  msgstr ""
2371
 
@@ -2397,233 +2311,233 @@ msgstr ""
2397
  msgid "No ranks found in Trash"
2398
  msgstr ""
2399
 
2400
- #: ../addons/ranks/myCRED-addon-ranks.php:316
2401
  msgid "Completed - Total of %d users effected"
2402
  msgstr ""
2403
 
2404
- #: ../addons/ranks/myCRED-addon-ranks.php:318
2405
  msgid "Log is Empty"
2406
  msgstr ""
2407
 
2408
- #: ../addons/ranks/myCRED-addon-ranks.php:512 ../addons/ranks/myCRED-addon-ranks.php:515
2409
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2410
  msgstr ""
2411
 
2412
- #: ../addons/ranks/myCRED-addon-ranks.php:517
2413
  msgid "Rank Activated"
2414
  msgstr ""
2415
 
2416
- #: ../addons/ranks/myCRED-addon-ranks.php:518
2417
  msgid "Rank Saved"
2418
  msgstr ""
2419
 
2420
- #: ../addons/ranks/myCRED-addon-ranks.php:519
2421
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2422
  msgstr ""
2423
 
2424
- #: ../addons/ranks/myCRED-addon-ranks.php:521
2425
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2426
  msgstr ""
2427
 
2428
- #: ../addons/ranks/myCRED-addon-ranks.php:578 ../addons/ranks/myCRED-addon-ranks.php:631
2429
  msgid "Rank Title"
2430
  msgstr ""
2431
 
2432
- #: ../addons/ranks/myCRED-addon-ranks.php:579
2433
  msgid "Logo"
2434
  msgstr ""
2435
 
2436
- #: ../addons/ranks/myCRED-addon-ranks.php:580
2437
  msgid "Requirement"
2438
  msgstr ""
2439
 
2440
- #: ../addons/ranks/myCRED-addon-ranks.php:581 ../modules/mycred-module-settings.php:438
2441
  msgid "Users"
2442
  msgstr ""
2443
 
2444
- #: ../addons/ranks/myCRED-addon-ranks.php:597
2445
  msgid "No Logo Set"
2446
  msgstr ""
2447
 
2448
- #: ../addons/ranks/myCRED-addon-ranks.php:606 ../addons/ranks/myCRED-addon-ranks.php:611
2449
  msgid "Any Value"
2450
  msgstr ""
2451
 
2452
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2453
  msgid "Maximum %plural%"
2454
  msgstr ""
2455
 
2456
- #: ../addons/ranks/myCRED-addon-ranks.php:644
2457
  msgid "Rank Settings"
2458
  msgstr ""
2459
 
2460
- #: ../addons/ranks/myCRED-addon-ranks.php:666
2461
  msgid "Minimum %plural% to reach this rank"
2462
  msgstr ""
2463
 
2464
- #: ../addons/ranks/myCRED-addon-ranks.php:670
2465
  msgid "Maximum %plural% to be included in this rank"
2466
  msgstr ""
2467
 
2468
- #: ../addons/ranks/myCRED-addon-ranks.php:677
2469
  msgid "All Published Ranks"
2470
  msgstr ""
2471
 
2472
- #: ../addons/ranks/myCRED-addon-ranks.php:683 ../addons/ranks/myCRED-addon-ranks.php:685
2473
  msgid "Not Set"
2474
  msgstr ""
2475
 
2476
- #: ../addons/ranks/myCRED-addon-ranks.php:690
2477
  msgid "No Ranks found"
2478
  msgstr ""
2479
 
2480
- #: ../addons/ranks/myCRED-addon-ranks.php:748
2481
  msgid "Rank Features"
2482
  msgstr ""
2483
 
2484
- #: ../addons/ranks/myCRED-addon-ranks.php:752
2485
  msgid "%plural% requirement"
2486
  msgstr ""
2487
 
2488
- #: ../addons/ranks/myCRED-addon-ranks.php:753
2489
  msgid "Featured Image (Logo)"
2490
  msgstr ""
2491
 
2492
- #: ../addons/ranks/myCRED-addon-ranks.php:754
2493
  msgid "Content"
2494
  msgstr ""
2495
 
2496
- #: ../addons/ranks/myCRED-addon-ranks.php:755
2497
  msgid "Excerpt"
2498
  msgstr ""
2499
 
2500
- #: ../addons/ranks/myCRED-addon-ranks.php:756
2501
  msgid "Comments"
2502
  msgstr ""
2503
 
2504
- #: ../addons/ranks/myCRED-addon-ranks.php:757
2505
  msgid "Page Attributes"
2506
  msgstr ""
2507
 
2508
- #: ../addons/ranks/myCRED-addon-ranks.php:758
2509
  msgid "Custom Fields"
2510
  msgstr ""
2511
 
2512
- #: ../addons/ranks/myCRED-addon-ranks.php:761
2513
  msgid "Public"
2514
  msgstr ""
2515
 
2516
- #: ../addons/ranks/myCRED-addon-ranks.php:765
2517
  msgid ""
2518
  "If you want to create a template archive for each rank, you must select to have "
2519
  "ranks public. Defaults to disabled."
2520
  msgstr ""
2521
 
2522
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2523
  msgid "Rank Basis"
2524
  msgstr ""
2525
 
2526
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2527
  msgid "Users are ranked according to their current balance."
2528
  msgstr ""
2529
 
2530
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2531
  msgid ""
2532
  "Users are ranked according to the total amount of %_plural% they have "
2533
  "accumulated."
2534
  msgstr ""
2535
 
2536
- #: ../addons/ranks/myCRED-addon-ranks.php:778 ../addons/ranks/myCRED-addon-ranks.php:783
2537
  msgid "Calculate Totals"
2538
  msgstr ""
2539
 
2540
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2541
  msgid ""
2542
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2543
  "the users current balance will be used as a starting point."
2544
  msgstr ""
2545
 
2546
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2547
  msgid ""
2548
  "Once a users total has been calculated, they will be assigned to their "
2549
  "appropriate roles. For this reason, it is highly recommended that you first "
2550
  "setup your ranks!"
2551
  msgstr ""
2552
 
2553
- #: ../addons/ranks/myCRED-addon-ranks.php:782
2554
  msgid ""
2555
  "Depending on your log size and number of users this process may take a while. "
2556
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2557
  "is completed!"
2558
  msgstr ""
2559
 
2560
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2561
  msgid "Archive URL"
2562
  msgstr ""
2563
 
2564
- #: ../addons/ranks/myCRED-addon-ranks.php:791
2565
  msgid "Ignored if Ranks are not public"
2566
  msgstr ""
2567
 
2568
- #: ../addons/ranks/myCRED-addon-ranks.php:794
2569
  msgid "Display Order"
2570
  msgstr ""
2571
 
2572
- #: ../addons/ranks/myCRED-addon-ranks.php:801
2573
  msgid "Ascending - Lowest rank to highest"
2574
  msgstr ""
2575
 
2576
- #: ../addons/ranks/myCRED-addon-ranks.php:802
2577
  msgid "Descending - Highest rank to lowest"
2578
  msgstr ""
2579
 
2580
- #: ../addons/ranks/myCRED-addon-ranks.php:811
2581
  msgid ""
2582
  "Select in what order ranks should be displayed in your admin area and/or front "
2583
  "if ranks are \"Public\""
2584
  msgstr ""
2585
 
2586
- #: ../addons/ranks/myCRED-addon-ranks.php:821 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2587
  msgid "Do not show."
2588
  msgstr ""
2589
 
2590
- #: ../addons/ranks/myCRED-addon-ranks.php:822 ../modules/mycred-module-buddypress.php:365
2591
  msgid "Include in Profile Header."
2592
  msgstr ""
2593
 
2594
- #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:366
2595
  msgid "Include under the \"Profile\" tab"
2596
  msgstr ""
2597
 
2598
- #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:367
2599
  msgid "Include under the \"Profile\" tab and Profile Header."
2600
  msgstr ""
2601
 
2602
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2603
  msgid "Rank in BuddyPress"
2604
  msgstr ""
2605
 
2606
- #: ../addons/ranks/myCRED-addon-ranks.php:895
2607
  msgid "Script Communication Error"
2608
  msgstr ""
2609
 
2610
- #: ../addons/ranks/myCRED-addon-ranks.php:945
2611
  msgid "Rank Post Type"
2612
  msgstr ""
2613
 
2614
- #: ../addons/ranks/myCRED-addon-ranks.php:949
2615
  msgid "No. of ranks"
2616
  msgstr ""
2617
 
2618
- #: ../addons/ranks/myCRED-addon-ranks.php:953 ../modules/mycred-module-log.php:370 ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.php:442
2619
  msgid "Actions"
2620
  msgstr ""
2621
 
2622
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2623
  msgid "Remove All Ranks"
2624
  msgstr ""
2625
 
2626
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2627
  msgid "Assign Ranks to Users"
2628
  msgstr ""
2629
 
@@ -2639,7 +2553,7 @@ msgstr ""
2639
  msgid "No users found with this rank"
2640
  msgstr ""
2641
 
2642
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:415 ../includes/mycred-shortcodes.php:476 ../includes/mycred-shortcodes.php:480 ../includes/mycred-shortcodes.php:484
2643
  msgid "error"
2644
  msgstr ""
2645
 
@@ -2675,7 +2589,7 @@ msgstr ""
2675
  msgid "Pay Content Author."
2676
  msgstr ""
2677
 
2678
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:139 ../includes/mycred-overview.php:146 ../modules/mycred-module-addons.php:226
2679
  msgid "Sell Content"
2680
  msgstr ""
2681
 
@@ -2857,7 +2771,7 @@ msgstr ""
2857
  msgid "Transfer %plural%"
2858
  msgstr ""
2859
 
2860
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:588 ../modules/mycred-module-settings.php:456
2861
  msgid "Point Types"
2862
  msgstr ""
2863
 
@@ -3043,67 +2957,83 @@ msgid ""
3043
  "href=\"%s\">website</a>."
3044
  msgstr ""
3045
 
3046
- #: ../includes/mycred-admin.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3047
  msgid "User is excluded"
3048
  msgstr ""
3049
 
3050
- #: ../includes/mycred-admin.php:78
3051
  msgid "Log Entry can not be empty"
3052
  msgstr ""
3053
 
3054
- #: ../includes/mycred-admin.php:82
3055
  msgid "Amount can not be zero"
3056
  msgstr ""
3057
 
3058
- #: ../includes/mycred-admin.php:105
3059
  msgid "Failed to update this uses balance."
3060
  msgstr ""
3061
 
3062
- #: ../includes/mycred-admin.php:240
3063
  msgid "Excluded"
3064
  msgstr ""
3065
 
3066
- #: ../includes/mycred-admin.php:253 ../modules/mycred-module-log.php:252 ../modules/mycred-module-log.php:253
3067
  msgid "History"
3068
  msgstr ""
3069
 
3070
- #: ../includes/mycred-admin.php:254
3071
  msgid "Adjust"
3072
  msgstr ""
3073
 
3074
- #: ../includes/mycred-admin.php:309 ../includes/mycred-admin.php:368
3075
  msgid "%singular% balance"
3076
  msgstr ""
3077
 
3078
- #: ../includes/mycred-admin.php:333
3079
  msgid "Adjust Your Balance"
3080
  msgstr ""
3081
 
3082
- #: ../includes/mycred-admin.php:335
3083
  msgid "Adjust Users Balance"
3084
  msgstr ""
3085
 
3086
- #: ../includes/mycred-admin.php:346
3087
  msgid "Log description for adjustment"
3088
  msgstr ""
3089
 
3090
- #: ../includes/mycred-admin.php:349
3091
  msgid "Update"
3092
  msgstr ""
3093
 
3094
- #: ../includes/mycred-admin.php:350
3095
  msgid "Description is required!"
3096
  msgstr ""
3097
 
3098
- #: ../includes/mycred-admin.php:450
3099
  msgid "ID"
3100
  msgstr ""
3101
 
3102
- #: ../includes/mycred-admin.php:456
3103
  msgid "A positive or negative value"
3104
  msgstr ""
3105
 
3106
- #: ../includes/mycred-admin.php:458
3107
  msgid "Update Balance"
3108
  msgstr ""
3109
 
@@ -3115,67 +3045,75 @@ msgstr ""
3115
  msgid "Points"
3116
  msgstr ""
3117
 
3118
- #: ../includes/mycred-functions.php:396
3119
  msgid "Deleted"
3120
  msgstr ""
3121
 
3122
- #: ../includes/mycred-functions.php:533
3123
  msgid "Deleted Item"
3124
  msgstr ""
3125
 
3126
- #: ../includes/mycred-functions.php:611
 
 
 
 
 
 
 
 
3127
  msgid "Comment Related"
3128
  msgstr ""
3129
 
3130
- #: ../includes/mycred-functions.php:618
3131
  msgid "Widget Related"
3132
  msgstr ""
3133
 
3134
- #: ../includes/mycred-functions.php:625
3135
  msgid "Amount Related"
3136
  msgstr ""
3137
 
3138
- #: ../includes/mycred-functions.php:632
3139
  msgid "Video Related"
3140
  msgstr ""
3141
 
3142
- #: ../includes/mycred-functions.php:643
3143
  msgid "and"
3144
  msgstr ""
3145
 
3146
- #: ../includes/mycred-functions.php:645
3147
  msgid "Available Template Tags:"
3148
  msgstr ""
3149
 
3150
- #: ../includes/mycred-functions.php:1568
3151
  msgid "Entire Log"
3152
  msgstr ""
3153
 
3154
- #: ../includes/mycred-functions.php:1573 ../includes/mycred-functions.php:1574
3155
  msgid "Displayed Rows"
3156
  msgstr ""
3157
 
3158
- #: ../includes/mycred-functions.php:1578
3159
  msgid "Search Results"
3160
  msgstr ""
3161
 
3162
- #: ../includes/mycred-functions.php:1579
3163
  msgid "My Entire Log"
3164
  msgstr ""
3165
 
3166
- #: ../includes/mycred-functions.php:1699
3167
  msgid "ref empty"
3168
  msgstr ""
3169
 
3170
- #: ../includes/mycred-functions.php:1707
3171
  msgid "incorrect user id format"
3172
  msgstr ""
3173
 
3174
- #: ../includes/mycred-functions.php:1720
3175
  msgid "incorrect unix timestamp (from):"
3176
  msgstr ""
3177
 
3178
- #: ../includes/mycred-functions.php:1729
3179
  msgid "incorrect unix timestamp (to):"
3180
  msgstr ""
3181
 
@@ -3188,14 +3126,22 @@ msgid "Import log entries via a CSV file."
3188
  msgstr ""
3189
 
3190
  #: ../includes/mycred-importer.php:43
 
 
 
 
 
 
 
 
3191
  msgid "%s CubePoints Import"
3192
  msgstr ""
3193
 
3194
- #: ../includes/mycred-importer.php:44 ../includes/importers/mycred-cubepoints.php:344
3195
  msgid "Import CubePoints log entries and / or balances."
3196
  msgstr ""
3197
 
3198
- #: ../includes/mycred-importer.php:60
3199
  msgid "No CubePoints log exists."
3200
  msgstr ""
3201
 
@@ -3217,140 +3163,140 @@ msgid ""
3217
  "for running myCRED. The following errors were given:"
3218
  msgstr ""
3219
 
3220
- #: ../includes/mycred-install.php:246
3221
  msgid "myCRED needs your attention."
3222
  msgstr ""
3223
 
3224
- #: ../includes/mycred-install.php:246
3225
  msgid "Run Setup"
3226
  msgstr ""
3227
 
3228
- #: ../includes/mycred-install.php:258 ../includes/mycred-install.php:259
3229
  msgid "myCRED Setup"
3230
  msgstr ""
3231
 
3232
- #: ../includes/mycred-install.php:388
3233
  msgid "%s Setup"
3234
  msgstr ""
3235
 
3236
- #: ../includes/mycred-install.php:390
3237
  msgid "Step"
3238
  msgstr ""
3239
 
3240
- #: ../includes/mycred-install.php:414
3241
  msgid ""
3242
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3243
  "format, layout and security settings."
3244
  msgstr ""
3245
 
3246
- #: ../includes/mycred-install.php:415
3247
  msgid "Begin Setup"
3248
  msgstr ""
3249
 
3250
- #: ../includes/mycred-install.php:470
3251
  msgid "Select the format you want to use for your points."
3252
  msgstr ""
3253
 
3254
- #: ../includes/mycred-install.php:471 ../includes/mycred-widgets.php:223
3255
  msgid "Format"
3256
  msgstr ""
3257
 
3258
- #: ../includes/mycred-install.php:474
3259
  msgid "Separators"
3260
  msgstr ""
3261
 
3262
- #: ../includes/mycred-install.php:484
3263
  msgid "Decimals"
3264
  msgstr ""
3265
 
3266
- #: ../includes/mycred-install.php:486
3267
  msgid "Use zero for no decimals."
3268
  msgstr ""
3269
 
3270
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3271
  msgid "Presentation"
3272
  msgstr ""
3273
 
3274
- #: ../includes/mycred-install.php:492 ../modules/mycred-module-settings.php:330
3275
  msgid "Name (Singular)"
3276
  msgstr ""
3277
 
3278
- #: ../includes/mycred-install.php:496 ../modules/mycred-module-settings.php:335
3279
  msgid "Name (Plural)"
3280
  msgstr ""
3281
 
3282
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:346
3283
  msgid "Prefix"
3284
  msgstr ""
3285
 
3286
- #: ../includes/mycred-install.php:510 ../modules/mycred-module-settings.php:354
3287
  msgid "Suffix"
3288
  msgstr ""
3289
 
3290
- #: ../includes/mycred-install.php:514
3291
  msgid "Cancel Setup"
3292
  msgstr ""
3293
 
3294
- #: ../includes/mycred-install.php:514
3295
  msgid "Cancel"
3296
  msgstr ""
3297
 
3298
- #: ../includes/mycred-install.php:514 ../includes/mycred-install.php:584
3299
  msgid "Next"
3300
  msgstr ""
3301
 
3302
- #: ../includes/mycred-install.php:546 ../modules/mycred-module-settings.php:362
3303
  msgid "Security"
3304
  msgstr ""
3305
 
3306
- #: ../includes/mycred-install.php:549
3307
  msgid "Edit Settings Capability"
3308
  msgstr ""
3309
 
3310
- #: ../includes/mycred-install.php:553
3311
  msgid "Edit Users %plural% Capability"
3312
  msgstr ""
3313
 
3314
- #: ../includes/mycred-install.php:557 ../modules/mycred-module-settings.php:375
3315
  msgid "Maximum %plural% payouts"
3316
  msgstr ""
3317
 
3318
- #: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:377
3319
  msgid ""
3320
  "As an added security, you can set the maximum amount a user can gain or loose "
3321
  "in a single instance. If used, make sure this is the maximum amount a user "
3322
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3323
  msgstr ""
3324
 
3325
- #: ../includes/mycred-install.php:566 ../modules/mycred-module-settings.php:384
3326
  msgid "Exclude those who can \"Edit Settings\"."
3327
  msgstr ""
3328
 
3329
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:388
3330
  msgid "Exclude those who can \"Edit Users %plural%\"."
3331
  msgstr ""
3332
 
3333
- #: ../includes/mycred-install.php:573 ../modules/mycred-module-settings.php:392
3334
  msgid "Exclude the following user IDs:"
3335
  msgstr ""
3336
 
3337
- #: ../includes/mycred-install.php:577 ../modules/mycred-module-settings.php:397
3338
  msgid "User Deletions"
3339
  msgstr ""
3340
 
3341
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:400
3342
  msgid "Delete log entries when user is deleted."
3343
  msgstr ""
3344
 
3345
- #: ../includes/mycred-install.php:602
3346
  msgid "Ready"
3347
  msgstr ""
3348
 
3349
- #: ../includes/mycred-install.php:603
3350
  msgid "Almost done! Click the button below to finish this setup."
3351
  msgstr ""
3352
 
3353
- #: ../includes/mycred-install.php:604
3354
  msgid "Install & Run"
3355
  msgstr ""
3356
 
@@ -3393,7 +3339,7 @@ msgstr ""
3393
  msgid "Show all references"
3394
  msgstr ""
3395
 
3396
- #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:540
3397
  msgid "User ID"
3398
  msgstr ""
3399
 
@@ -3459,77 +3405,77 @@ msgstr ""
3459
  msgid "This Month"
3460
  msgstr ""
3461
 
3462
- #: ../includes/mycred-network.php:61 ../includes/mycred-network.php:62
3463
  msgid "Network Settings"
3464
  msgstr ""
3465
 
3466
- #: ../includes/mycred-network.php:159
3467
  msgid "%s Network"
3468
  msgstr ""
3469
 
3470
- #: ../includes/mycred-network.php:165
3471
  msgid "Note! %s has not yet been setup."
3472
  msgstr ""
3473
 
3474
- #: ../includes/mycred-network.php:169
3475
  msgid "Network Settings Updated"
3476
  msgstr ""
3477
 
3478
- #: ../includes/mycred-network.php:171
3479
  msgid "Configure network settings for %s."
3480
  msgstr ""
3481
 
3482
- #: ../includes/mycred-network.php:178
3483
  msgid "Master Template"
3484
  msgstr ""
3485
 
3486
- #: ../includes/mycred-network.php:189
3487
  msgid ""
3488
  "If enabled, %s will use your main site's settings for all other sites in your "
3489
  "network."
3490
  msgstr ""
3491
 
3492
- #: ../includes/mycred-network.php:192
3493
  msgid "Central Logging"
3494
  msgstr ""
3495
 
3496
- #: ../includes/mycred-network.php:203
3497
  msgid "If enabled, %s will log all site actions in your main site's log."
3498
  msgstr ""
3499
 
3500
- #: ../includes/mycred-network.php:206
3501
  msgid "Site Block"
3502
  msgstr ""
3503
 
3504
- #: ../includes/mycred-network.php:210
3505
  msgid "Comma separated list of blog ids where %s is to be disabled."
3506
  msgstr ""
3507
 
3508
- #: ../includes/mycred-network.php:219
3509
  msgid "Save Network Settings"
3510
  msgstr ""
3511
 
3512
- #: ../includes/mycred-overview.php:23
3513
  msgid "%s Overview"
3514
  msgstr ""
3515
 
3516
- #: ../includes/mycred-overview.php:76
3517
  msgid "Total amount in circulation"
3518
  msgstr ""
3519
 
3520
- #: ../includes/mycred-overview.php:79
3521
  msgid "Awarded"
3522
  msgstr ""
3523
 
3524
- #: ../includes/mycred-overview.php:82
3525
  msgid "Deducted"
3526
  msgstr ""
3527
 
3528
- #: ../includes/mycred-overview.php:118 ../includes/mycred-overview.php:125 ../modules/mycred-module-addons.php:237
3529
  msgid "Transfers"
3530
  msgstr ""
3531
 
3532
- #: ../includes/mycred-overview.php:206
3533
  msgid "Manual"
3534
  msgstr ""
3535
 
@@ -3601,31 +3547,31 @@ msgstr ""
3601
  msgid "Leaderboard is empty."
3602
  msgstr ""
3603
 
3604
- #: ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:476
3605
  msgid "Amount missing!"
3606
  msgstr ""
3607
 
3608
- #: ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:484
3609
  msgid "Log Template Missing!"
3610
  msgstr ""
3611
 
3612
- #: ../includes/mycred-shortcodes.php:415
3613
  msgid "Anchor missing URL!"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-shortcodes.php:480
3617
  msgid "User ID missing for recipient."
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-shortcodes.php:534
3621
  msgid "Sent"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-shortcodes.php:535
3625
  msgid "Error - Try Again"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-shortcodes.php:643
3629
  msgid "A video ID is required for this shortcode"
3630
  msgstr ""
3631
 
@@ -3645,7 +3591,7 @@ msgstr ""
3645
  msgid "%plural% History"
3646
  msgstr ""
3647
 
3648
- #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:578
3649
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3650
  msgstr ""
3651
 
@@ -3677,11 +3623,11 @@ msgstr ""
3677
  msgid "Row layout"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:602
3681
  msgid "Show message when not logged in"
3682
  msgstr ""
3683
 
3684
- #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:603
3685
  msgid "Message"
3686
  msgstr ""
3687
 
@@ -3727,19 +3673,19 @@ msgid ""
3727
  "at the end with their current position."
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-widgets.php:490
3731
  msgid "Shows the current users balances for each point type."
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-widgets.php:492
3735
  msgid "(%s) Wallet"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-widgets.php:572
3739
  msgid "My Wallet"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-widgets.php:594
3743
  msgid "Row Layout"
3744
  msgstr ""
3745
 
@@ -3757,11 +3703,11 @@ msgid ""
3757
  "imported. <strong>%d</strong> was skipped."
3758
  msgstr ""
3759
 
3760
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3761
  msgid "View Log"
3762
  msgstr ""
3763
 
3764
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3765
  msgid "Import More"
3766
  msgstr ""
3767
 
@@ -3801,15 +3747,15 @@ msgstr ""
3801
  msgid "Import Log"
3802
  msgstr ""
3803
 
3804
- #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
3805
  msgid "Sorry, there has been an error."
3806
  msgstr ""
3807
 
3808
- #: ../includes/importers/mycred-log-entries.php:82
3809
  msgid "The file does not exist, please try again."
3810
  msgstr ""
3811
 
3812
- #: ../includes/importers/mycred-log-entries.php:127
3813
  msgid "The CSV is invalid."
3814
  msgstr ""
3815
 
@@ -3821,132 +3767,146 @@ msgstr ""
3821
  msgid "Import log entries from a CSV file."
3822
  msgstr ""
3823
 
3824
- #: ../includes/importers/mycred-log-entries.php:219
3825
  msgid ""
3826
  "Before you can upload your import file, you will need to fix the following "
3827
  "error:"
3828
  msgstr ""
3829
 
3830
- #: ../includes/importers/mycred-log-entries.php:228
3831
  msgid "Choose a file from your computer:"
3832
  msgstr ""
3833
 
3834
- #: ../includes/importers/mycred-log-entries.php:234
3835
  msgid "Maximum size: %s"
3836
  msgstr ""
3837
 
3838
- #: ../includes/importers/mycred-log-entries.php:239
3839
  msgid "OR enter path to file:"
3840
  msgstr ""
3841
 
3842
- #: ../includes/importers/mycred-log-entries.php:246
3843
  msgid "Delimiter"
3844
  msgstr ""
3845
 
3846
- #: ../includes/importers/mycred-log-entries.php:252
3847
  msgid "Upload file and import"
3848
  msgstr ""
3849
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3850
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3851
  msgid "Add-ons"
3852
  msgstr ""
3853
 
3854
- #: ../modules/mycred-module-addons.php:160
3855
  msgid ""
3856
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3857
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3858
  "let your users buy points for other members."
3859
  msgstr ""
3860
 
3861
- #: ../modules/mycred-module-addons.php:171
3862
  msgid ""
3863
- "The coupons add-on allows you you to create coupons that users can use to add "
3864
  "points to their accounts."
3865
  msgstr ""
3866
 
3867
- #: ../modules/mycred-module-addons.php:182
3868
  msgid "Create email notices for any type of myCRED instance."
3869
  msgstr ""
3870
 
3871
- #: ../modules/mycred-module-addons.php:193
3872
  msgid ""
3873
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3874
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3875
  "Bookings: Event Espresso and Events Manager (free & pro)."
3876
  msgstr ""
3877
 
3878
- #: ../modules/mycred-module-addons.php:204
3879
  msgid "Create pop-up notifications for when users gain or loose points."
3880
  msgstr ""
3881
 
3882
- #: ../modules/mycred-module-addons.php:216
3883
  msgid ""
3884
  "Create ranks for users reaching a certain number of %_plural% with the option "
3885
  "to add logos for each rank."
3886
  msgstr ""
3887
 
3888
- #: ../modules/mycred-module-addons.php:227
3889
  msgid ""
3890
  "This add-on allows you to sell posts, pages or any public post types on your "
3891
  "website. You can either sell the entire content or using our shortcode, sell "
3892
  "parts of your content allowing you to offer \"teasers\"."
3893
  msgstr ""
3894
 
3895
- #: ../modules/mycred-module-addons.php:238
3896
  msgid ""
3897
  "Allow your users to send or \"donate\" points to other members by either using "
3898
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3899
  msgstr ""
3900
 
3901
- #: ../modules/mycred-module-addons.php:274
3902
  msgid "%s Add-ons"
3903
  msgstr ""
3904
 
3905
- #: ../modules/mycred-module-addons.php:280
3906
  msgid "Add-on Activated"
3907
  msgstr ""
3908
 
3909
- #: ../modules/mycred-module-addons.php:283
3910
  msgid "Add-on Deactivated"
3911
  msgstr ""
3912
 
3913
- #: ../modules/mycred-module-addons.php:287
3914
  msgid "Add-ons can expand your current installation with further features."
3915
  msgstr ""
3916
 
3917
- #: ../modules/mycred-module-addons.php:308
3918
  msgid "You can find more add-ons in our %s."
3919
  msgstr ""
3920
 
3921
- #: ../modules/mycred-module-addons.php:308
3922
  msgid "online store"
3923
  msgstr ""
3924
 
3925
- #: ../modules/mycred-module-addons.php:329
3926
  msgid "Deactivate Add-on"
3927
  msgstr ""
3928
 
3929
- #: ../modules/mycred-module-addons.php:330
3930
  msgid "Deactivate"
3931
  msgstr ""
3932
 
3933
- #: ../modules/mycred-module-addons.php:337
3934
  msgid "Activate Add-on"
3935
  msgstr ""
3936
 
3937
- #: ../modules/mycred-module-addons.php:338
3938
  msgid "Activate"
3939
  msgstr ""
3940
 
3941
- #: ../modules/mycred-module-addons.php:354
3942
  msgid "Version"
3943
  msgstr ""
3944
 
3945
- #: ../modules/mycred-module-addons.php:358
3946
  msgid "By"
3947
  msgstr ""
3948
 
3949
- #: ../modules/mycred-module-addons.php:366
3950
  msgid "Get Pro"
3951
  msgstr ""
3952
 
@@ -4104,467 +4064,467 @@ msgid ""
4104
  "depending on their actions around your website."
4105
  msgstr ""
4106
 
4107
- #: ../modules/mycred-module-hooks.php:321 ../modules/mycred-module-hooks.php:643 ../modules/mycred-module-hooks.php:656 ../modules/mycred-module-hooks.php:692 ../modules/mycred-module-hooks.php:1072 ../modules/mycred-module-hooks.php:1089 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:2206 ../modules/mycred-module-hooks.php:2235 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4108
  msgid "Log template"
4109
  msgstr ""
4110
 
4111
- #: ../modules/mycred-module-hooks.php:523 ../modules/mycred-module-hooks.php:2214 ../modules/mycred-module-hooks.php:2243 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4112
  msgid "Limit"
4113
  msgstr ""
4114
 
4115
- #: ../modules/mycred-module-hooks.php:637
4116
  msgid "%plural% for Posts"
4117
  msgstr ""
4118
 
4119
- #: ../modules/mycred-module-hooks.php:650
4120
  msgid "%plural% for Pages"
4121
  msgstr ""
4122
 
4123
- #: ../modules/mycred-module-hooks.php:686
4124
  msgid "%plural% for %s"
4125
  msgstr ""
4126
 
4127
- #: ../modules/mycred-module-hooks.php:1058
4128
  msgid ""
4129
  "%plural% are only awarded when your website has been synced with the Disqus "
4130
  "server!"
4131
  msgstr ""
4132
 
4133
- #: ../modules/mycred-module-hooks.php:1060
4134
  msgid "Approved Comment"
4135
  msgstr ""
4136
 
4137
- #: ../modules/mycred-module-hooks.php:1063 ../modules/mycred-module-hooks.php:1080 ../modules/mycred-module-hooks.php:1097
4138
  msgid "Comment Author"
4139
  msgstr ""
4140
 
4141
- #: ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101
4142
  msgid "Content Author"
4143
  msgstr ""
4144
 
4145
- #: ../modules/mycred-module-hooks.php:1077
4146
  msgid "Comment Marked SPAM"
4147
  msgstr ""
4148
 
4149
- #: ../modules/mycred-module-hooks.php:1094
4150
  msgid "Trashed / Unapproved Comments"
4151
  msgstr ""
4152
 
4153
- #: ../modules/mycred-module-hooks.php:1114
4154
  msgid "Limit per post"
4155
  msgstr ""
4156
 
4157
- #: ../modules/mycred-module-hooks.php:1116
4158
  msgid ""
4159
  "The number of comments per post that grants %_plural% to the comment author. "
4160
  "Use zero for unlimited."
4161
  msgstr ""
4162
 
4163
- #: ../modules/mycred-module-hooks.php:1120
4164
  msgid "Limit per day"
4165
  msgstr ""
4166
 
4167
- #: ../modules/mycred-module-hooks.php:1122
4168
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4169
  msgstr ""
4170
 
4171
- #: ../modules/mycred-module-hooks.php:1127
4172
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4173
  msgstr ""
4174
 
4175
- #: ../modules/mycred-module-hooks.php:1198
4176
  msgid "Once for each unique URL"
4177
  msgstr ""
4178
 
4179
- #: ../modules/mycred-module-hooks.php:1199
4180
  msgid "Once for each unique link id"
4181
  msgstr ""
4182
 
4183
- #: ../modules/mycred-module-hooks.php:1393
4184
  msgid ""
4185
  "The default amount to award for clicking on links. You can override this in the "
4186
  "shortcode."
4187
  msgstr ""
4188
 
4189
- #: ../modules/mycred-module-hooks.php:1400
4190
  msgid "Custom tags: %url%, %title% or %id%."
4191
  msgstr ""
4192
 
4193
- #: ../modules/mycred-module-hooks.php:1411 ../modules/mycred-module-hooks.php:2317
4194
  msgid "Note!"
4195
  msgstr ""
4196
 
4197
- #: ../modules/mycred-module-hooks.php:1411
4198
  msgid ""
4199
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4200
  "generate one automatically based on the value set under href. If you are using "
4201
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4202
  msgstr ""
4203
 
4204
- #: ../modules/mycred-module-hooks.php:1413 ../modules/mycred-module-hooks.php:1769
4205
  msgid "Available Shortcode"
4206
  msgstr ""
4207
 
4208
- #: ../modules/mycred-module-hooks.php:1733
4209
  msgid "Amount to award for viewing videos."
4210
  msgstr ""
4211
 
4212
- #: ../modules/mycred-module-hooks.php:1743
4213
  msgid "Award Logic"
4214
  msgstr ""
4215
 
4216
- #: ../modules/mycred-module-hooks.php:1745
4217
  msgid "Select when %_plural% should be awarded or deducted."
4218
  msgstr ""
4219
 
4220
- #: ../modules/mycred-module-hooks.php:1746
4221
  msgid "Play - As soon as video starts playing."
4222
  msgstr ""
4223
 
4224
- #: ../modules/mycred-module-hooks.php:1747
4225
  msgid "Full - First when the entire video has played."
4226
  msgstr ""
4227
 
4228
- #: ../modules/mycred-module-hooks.php:1748
4229
  msgid "Interval - For each x number of seconds watched."
4230
  msgstr ""
4231
 
4232
- #: ../modules/mycred-module-hooks.php:1753
4233
  msgid "Number of seconds"
4234
  msgstr ""
4235
 
4236
- #: ../modules/mycred-module-hooks.php:1760
4237
  msgid "Leniency"
4238
  msgstr ""
4239
 
4240
- #: ../modules/mycred-module-hooks.php:1762
4241
  msgid ""
4242
  "The maximum percentage a users view of a movie can differ from the actual "
4243
  "length."
4244
  msgstr ""
4245
 
4246
- #: ../modules/mycred-module-hooks.php:1765
4247
  msgid ""
4248
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4249
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4250
  "play back errors."
4251
  msgstr ""
4252
 
4253
- #: ../modules/mycred-module-hooks.php:1833
4254
  msgid "Affiliate Program"
4255
  msgstr ""
4256
 
4257
- #: ../modules/mycred-module-hooks.php:1842
4258
  msgid "Per Day"
4259
  msgstr ""
4260
 
4261
- #: ../modules/mycred-module-hooks.php:1949
4262
  msgid "Link"
4263
  msgstr ""
4264
 
4265
- #: ../modules/mycred-module-hooks.php:2200
4266
  msgid "Referring Visitors"
4267
  msgstr ""
4268
 
4269
- #: ../modules/mycred-module-hooks.php:2224 ../modules/mycred-module-hooks.php:2253
4270
  msgid "The number of referrals each member can make. Use zero for unlimited."
4271
  msgstr ""
4272
 
4273
- #: ../modules/mycred-module-hooks.php:2228 ../modules/mycred-module-hooks.php:2257
4274
  msgid "Referring Signups"
4275
  msgstr ""
4276
 
4277
- #: ../modules/mycred-module-hooks.php:2232
4278
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4279
  msgstr ""
4280
 
4281
- #: ../modules/mycred-module-hooks.php:2259
4282
  msgid "Registrations are disabled."
4283
  msgstr ""
4284
 
4285
- #: ../modules/mycred-module-hooks.php:2266
4286
  msgid "Referral Links"
4287
  msgstr ""
4288
 
4289
- #: ../modules/mycred-module-hooks.php:2270
4290
  msgid "Assign numeric referral IDs to each user."
4291
  msgstr ""
4292
 
4293
- #: ../modules/mycred-module-hooks.php:2271 ../modules/mycred-module-hooks.php:2277
4294
  msgid "Example"
4295
  msgstr ""
4296
 
4297
- #: ../modules/mycred-module-hooks.php:2276
4298
  msgid "Assign usernames as IDs for each user."
4299
  msgstr ""
4300
 
4301
- #: ../modules/mycred-module-hooks.php:2280
4302
  msgid "IP Limit"
4303
  msgstr ""
4304
 
4305
- #: ../modules/mycred-module-hooks.php:2284
4306
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4307
  msgstr ""
4308
 
4309
- #: ../modules/mycred-module-hooks.php:2288 ../modules/mycred-module-hooks.php:2321
4310
  msgid "BuddyPress Profile"
4311
  msgstr ""
4312
 
4313
- #: ../modules/mycred-module-hooks.php:2291
4314
  msgid "Insert Link in users Profile"
4315
  msgstr ""
4316
 
4317
- #: ../modules/mycred-module-hooks.php:2292
4318
  msgid ""
4319
  "Option to inser the referral link in users profiles. Links will only be visible "
4320
  "to users viewing their own profiles or administrators."
4321
  msgstr ""
4322
 
4323
- #: ../modules/mycred-module-hooks.php:2298
4324
  msgid "Leave empty to hide."
4325
  msgstr ""
4326
 
4327
- #: ../modules/mycred-module-hooks.php:2301
4328
  msgid "Description"
4329
  msgstr ""
4330
 
4331
- #: ../modules/mycred-module-hooks.php:2302
4332
  msgid "Optional description to insert under the link."
4333
  msgstr ""
4334
 
4335
- #: ../modules/mycred-module-hooks.php:2314
4336
  msgid "Profile Positioning"
4337
  msgstr ""
4338
 
4339
- #: ../modules/mycred-module-hooks.php:2316
4340
  msgid ""
4341
  "You can move around the referral link on your users profile by changing the "
4342
- "position. Increase to move up, decrese to move down."
4343
  msgstr ""
4344
 
4345
- #: ../modules/mycred-module-hooks.php:2317
4346
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4347
  msgstr ""
4348
 
4349
- #: ../modules/mycred-module-hooks.php:2323
4350
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4351
  msgstr ""
4352
 
4353
- #: ../modules/mycred-module-hooks.php:2331
4354
  msgid "Available Shortcodes"
4355
  msgstr ""
4356
 
4357
- #: ../modules/mycred-module-log.php:183 ../modules/mycred-module-log.php:204 ../modules/mycred-module-settings.php:60 ../modules/mycred-module-settings.php:101
4358
  msgid "Access denied for this action"
4359
  msgstr ""
4360
 
4361
- #: ../modules/mycred-module-log.php:190
4362
  msgid "Row Deleted"
4363
  msgstr ""
4364
 
4365
- #: ../modules/mycred-module-log.php:217
4366
  msgid "Log entry not found"
4367
  msgstr ""
4368
 
4369
- #: ../modules/mycred-module-log.php:230
4370
  msgid "Entry Updated"
4371
  msgstr ""
4372
 
4373
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:423
4374
  msgid "Entries"
4375
  msgstr ""
4376
 
4377
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:390 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:557
4378
  msgid "Export"
4379
  msgstr ""
4380
 
4381
- #: ../modules/mycred-module-log.php:309
4382
  msgid "Search results for"
4383
  msgstr ""
4384
 
4385
- #: ../modules/mycred-module-log.php:384
4386
  msgid "%s Log"
4387
  msgstr ""
4388
 
4389
- #: ../modules/mycred-module-log.php:509
4390
  msgid "Edit"
4391
  msgstr ""
4392
 
4393
- #: ../modules/mycred-module-log.php:554
4394
  msgid "Current Log Entry"
4395
  msgstr ""
4396
 
4397
- #: ../modules/mycred-module-log.php:556
4398
  msgid "The current saved log entry"
4399
  msgstr ""
4400
 
4401
- #: ../modules/mycred-module-log.php:559
4402
  msgid "Adjust Log Entry"
4403
  msgstr ""
4404
 
4405
- #: ../modules/mycred-module-log.php:561
4406
  msgid "The new log entry"
4407
  msgstr ""
4408
 
4409
- #: ../modules/mycred-module-log.php:564
4410
  msgid "Update Log Entry"
4411
  msgstr ""
4412
 
4413
- #: ../modules/mycred-module-log.php:596
4414
  msgid "My %s History"
4415
  msgstr ""
4416
 
4417
- #: ../modules/mycred-module-settings.php:63 ../modules/mycred-module-settings.php:104
4418
  msgid "Missing point type"
4419
  msgstr ""
4420
 
4421
- #: ../modules/mycred-module-settings.php:127
4422
  msgid "Accounts successfully reset"
4423
  msgstr ""
4424
 
4425
- #: ../modules/mycred-module-settings.php:167
4426
  msgid "No users found to export"
4427
  msgstr ""
4428
 
4429
- #: ../modules/mycred-module-settings.php:313
4430
  msgid "Facebook"
4431
  msgstr ""
4432
 
4433
- #: ../modules/mycred-module-settings.php:314
4434
  msgid "Google Plus"
4435
  msgstr ""
4436
 
4437
- #: ../modules/mycred-module-settings.php:317
4438
  msgid "%s Settings"
4439
  msgstr ""
4440
 
4441
- #: ../modules/mycred-module-settings.php:320
4442
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4443
  msgstr ""
4444
 
4445
- #: ../modules/mycred-module-settings.php:325
4446
  msgid "Core Settings"
4447
  msgstr ""
4448
 
4449
- #: ../modules/mycred-module-settings.php:327
4450
  msgid "Name"
4451
  msgstr ""
4452
 
4453
- #: ../modules/mycred-module-settings.php:332
4454
  msgid "Accessible though the %singular% template tag."
4455
  msgstr ""
4456
 
4457
- #: ../modules/mycred-module-settings.php:337
4458
  msgid "Accessible though the %plural% template tag."
4459
  msgstr ""
4460
 
4461
- #: ../modules/mycred-module-settings.php:340
4462
  msgid "Tip"
4463
  msgstr ""
4464
 
4465
- #: ../modules/mycred-module-settings.php:340
4466
  msgid ""
4467
  "Adding an underscore at the beginning of template tag for names will return "
4468
  "them in lowercase. i.e. %_singular%"
4469
  msgstr ""
4470
 
4471
- #: ../modules/mycred-module-settings.php:358
4472
  msgid "Separator"
4473
  msgid_plural "Separators"
4474
  msgstr[0] ""
4475
  msgstr[1] ""
4476
 
4477
- #: ../modules/mycred-module-settings.php:365
4478
  msgid "Edit Settings"
4479
  msgstr ""
4480
 
4481
- #: ../modules/mycred-module-settings.php:367 ../modules/mycred-module-settings.php:372
4482
  msgid "Capability to check for."
4483
  msgstr ""
4484
 
4485
- #: ../modules/mycred-module-settings.php:370
4486
  msgid "Edit Users %plural%"
4487
  msgstr ""
4488
 
4489
- #: ../modules/mycred-module-settings.php:394
4490
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4491
  msgstr ""
4492
 
4493
- #: ../modules/mycred-module-settings.php:414
4494
  msgid "Management"
4495
  msgstr ""
4496
 
4497
- #: ../modules/mycred-module-settings.php:416
4498
  msgid "The Log"
4499
  msgstr ""
4500
 
4501
- #: ../modules/mycred-module-settings.php:419
4502
  msgid "Table Name"
4503
  msgstr ""
4504
 
4505
- #: ../modules/mycred-module-settings.php:428
4506
  msgid "Empty Log"
4507
  msgstr ""
4508
 
4509
- #: ../modules/mycred-module-settings.php:434
4510
  msgid "User Meta Key"
4511
  msgstr ""
4512
 
4513
- #: ../modules/mycred-module-settings.php:443
4514
  msgid "Set all to zero"
4515
  msgstr ""
4516
 
4517
- #: ../modules/mycred-module-settings.php:443
4518
  msgid "CSV Export"
4519
  msgstr ""
4520
 
4521
- #: ../modules/mycred-module-settings.php:464
4522
  msgid "Default"
4523
  msgstr ""
4524
 
4525
- #: ../modules/mycred-module-settings.php:467 ../modules/mycred-module-settings.php:486 ../modules/mycred-module-settings.php:508
4526
  msgid "Meta Key"
4527
  msgstr ""
4528
 
4529
- #: ../modules/mycred-module-settings.php:505
4530
  msgid "Add New Type"
4531
  msgstr ""
4532
 
4533
- #: ../modules/mycred-module-settings.php:510
4534
  msgid "A unique ID for this type."
4535
  msgstr ""
4536
 
4537
- #: ../modules/mycred-module-settings.php:515
4538
  msgid "Menu and page title."
4539
  msgstr ""
4540
 
4541
- #: ../modules/mycred-module-settings.php:518
4542
  msgid "The meta key will define where your users balances are saved."
4543
  msgstr ""
4544
 
4545
- #: ../modules/mycred-module-settings.php:535
4546
  msgid "Identify users by"
4547
  msgstr ""
4548
 
4549
- #: ../modules/mycred-module-settings.php:541
4550
  msgid "User Email"
4551
  msgstr ""
4552
 
4553
- #: ../modules/mycred-module-settings.php:542
4554
  msgid "User Login"
4555
  msgstr ""
4556
 
4557
- #: ../modules/mycred-module-settings.php:549
4558
  msgid ""
4559
  "Use ID if you intend to use this export as a backup of your current site while "
4560
  "Email is recommended if you want to export to a different site."
4561
  msgstr ""
4562
 
4563
- #: ../modules/mycred-module-settings.php:552
4564
  msgid "Import Log Entry"
4565
  msgstr ""
4566
 
4567
- #: ../modules/mycred-module-settings.php:554
4568
  msgid ""
4569
  "Optional log entry to use if you intend to import this file in a different %s "
4570
  "installation."
@@ -4773,7 +4733,7 @@ msgid "%plural% for Profile Updates"
4773
  msgstr ""
4774
 
4775
  #: ../plugins/mycred-hook-buddypress.php:377
4776
- msgid "Daily limit. User zero for unlimited."
4777
  msgstr ""
4778
 
4779
  #: ../plugins/mycred-hook-buddypress.php:387
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 16 2014 13:04:38 GMT+0200 (CEST)\n"
7
+ "Last-Translator: unimatrix0 <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: en_US"
25
 
26
+ #: ../mycred.php:397
27
  msgid "Balance"
28
  msgstr ""
29
 
30
+ #: ../mycred.php:422
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
+ #: ../mycred.php:474
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
+ #: ../mycred.php:520
39
  msgid "About %s"
40
  msgstr ""
41
 
42
+ #: ../mycred.php:529 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr ""
45
 
46
+ #: ../mycred.php:614 ../mycred.php:638 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:883 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
47
  msgid "Processing..."
48
  msgstr ""
49
 
50
+ #: ../mycred.php:615
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
+ #: ../mycred.php:616
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
+ #: ../mycred.php:617
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
 
66
+ #: ../mycred.php:618
67
  msgid "Done!"
68
  msgstr ""
69
 
70
+ #: ../mycred.php:619 ../mycred.php:637 ../mycred.php:655
71
  msgid "Close"
72
  msgstr ""
73
 
74
+ #: ../mycred.php:620
75
  msgid "Export users %plural%"
76
  msgstr ""
77
 
78
+ #: ../mycred.php:636
79
+ msgid "Edit Users Balance"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:654
83
  msgid "Edit Log Entry"
84
  msgstr ""
85
 
86
+ #: ../mycred.php:656
87
  msgid "Updating..."
88
  msgstr ""
89
 
90
+ #: ../mycred.php:658
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr ""
93
 
94
+ #: ../mycred.php:659
95
  msgid "Log entry updated"
96
  msgstr ""
97
 
98
+ #: ../mycred.php:711 ../mycred.php:732 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr ""
101
 
102
+ #: ../mycred.php:713 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr ""
105
 
106
+ #: ../mycred.php:736 ../modules/mycred-module-addons.php:360
107
  msgid "About"
108
  msgstr ""
109
 
110
+ #: ../mycred.php:737
111
  msgid "Tutorials"
112
  msgstr ""
113
 
114
+ #: ../mycred.php:738
115
  msgid "Codex"
116
  msgstr ""
117
 
118
+ #: ../mycred.php:739
119
  msgid "Store"
120
  msgstr ""
121
 
122
+ #: ../mycred.php:753
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
133
  msgid "This Hook has no settings"
134
  msgstr ""
135
 
136
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
137
  msgid "No limit"
138
  msgstr ""
139
 
153
  msgid "Once per day (reset at midnight)"
154
  msgstr ""
155
 
156
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
157
  msgid "Select"
158
  msgstr ""
159
 
165
  msgid "Surprise"
166
  msgstr ""
167
 
168
+ #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:118
169
  msgid "click to close"
170
  msgstr ""
171
 
172
+ #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:119
173
  msgid "click to open"
174
  msgstr ""
175
 
176
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
177
  msgid "Settings Updated"
178
  msgstr ""
179
 
180
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
181
  msgid "Banking"
182
  msgstr ""
183
 
203
  "of times you want this payout to run (cycles)."
204
  msgstr ""
205
 
206
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:586 ../modules/mycred-module-settings.php:300
207
  msgid "Access Denied"
208
  msgstr ""
209
 
211
  msgid "%s Banking"
212
  msgstr ""
213
 
214
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
215
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
216
  msgstr ""
217
 
223
  msgid "Warning! This add-on requires WP - Cron to work."
224
  msgstr ""
225
 
226
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
227
  msgid "Enable"
228
  msgstr ""
229
 
291
  msgid "The minimum requires balance for interest to apply."
292
  msgstr ""
293
 
294
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
295
  msgid "Log Template"
296
  msgstr ""
297
 
318
  msgid "Pay Users"
319
  msgstr ""
320
 
321
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:367 ../includes/mycred-admin.php:478
322
  msgid "Amount"
323
  msgstr ""
324
 
326
  msgid "Can not be zero."
327
  msgstr ""
328
 
329
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
330
  msgid "Interval"
331
  msgstr ""
332
 
367
  "it gets re-activated. Set cycles to zero to reset."
368
  msgstr ""
369
 
370
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:381
371
  msgid "Excludes"
372
  msgstr ""
373
 
381
  msgid "Payment Gateways"
382
  msgstr ""
383
 
384
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
385
  msgid "buyCRED Purchase Log"
386
  msgstr ""
387
 
388
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
389
  msgid "Purchase Log"
390
  msgstr ""
391
 
392
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
393
  msgid "Payments"
394
  msgstr ""
395
 
396
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
397
  msgid "Please login to purchase %_plural%"
398
  msgstr ""
399
 
400
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
401
  msgid "Gift purchase from %display_name%."
402
  msgstr ""
403
 
404
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:338 ../includes/mycred-overview.php:98 ../includes/mycred-overview.php:105 ../modules/mycred-module-addons.php:157
405
  msgid "buyCRED"
406
  msgstr ""
407
 
408
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:610
409
  msgid "Minimum %plural%"
410
  msgstr ""
411
 
412
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
413
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
414
  msgstr ""
415
 
416
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
417
  msgid "Point Type"
418
  msgstr ""
419
 
420
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
421
  msgid "Login Template"
422
  msgstr ""
423
 
424
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
425
  msgid "Content to show when a user is not logged in."
426
  msgstr ""
427
 
428
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
429
  msgid "Thank You Page"
430
  msgstr ""
431
 
432
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
433
  msgid "Custom URL"
434
  msgstr ""
435
 
436
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
437
  msgid "Page"
438
  msgstr ""
439
 
440
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
441
  msgid "Cancellation Page"
442
  msgstr ""
443
 
444
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
445
  msgid "Show seperate log for %_plural% purchases."
446
  msgstr ""
447
 
448
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
449
  msgid "Gifting"
450
  msgstr ""
451
 
452
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
453
  msgid "Allow users to buy %_plural% for other users."
454
  msgstr ""
455
 
456
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
457
  msgid "Allow users to buy %_plural% for content authors."
458
  msgstr ""
459
 
460
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
461
  msgid "%s Payment Gateways"
462
  msgstr ""
463
 
464
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
465
  msgid "buyCRED Settings"
466
  msgstr ""
467
 
468
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
469
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
470
  msgstr ""
471
 
472
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
473
  msgid "Last Payment Notification"
474
  msgstr ""
475
 
476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
477
  msgid ""
478
  "Here you can view the last payment confirmation that was sent to buyCRED for "
479
  "processing."
480
  msgstr ""
481
 
482
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
483
  msgid "Details"
484
  msgstr ""
485
 
486
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:552
487
  msgid "Time"
488
  msgstr ""
489
 
490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
491
  msgid "Gateway"
492
  msgstr ""
493
 
494
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
495
  msgid "Transaction ID"
496
  msgstr ""
497
 
498
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
499
  msgid "Outcome"
500
  msgstr ""
501
 
502
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
503
  msgid "Gateway Log"
504
  msgstr ""
505
 
506
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
507
  msgid "No recorded calls found."
508
  msgstr ""
509
 
510
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
511
  msgid "Test Mode"
512
  msgstr ""
513
 
514
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
515
  msgid "Enabled"
516
  msgstr ""
517
 
518
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
519
  msgid "Disabled"
520
  msgstr ""
521
 
522
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
523
  msgid "Sandbox Mode"
524
  msgstr ""
525
 
526
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
527
  msgid "Enable for test purchases."
528
  msgstr ""
529
 
530
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
531
  msgid "Update Gateway Settings"
532
  msgstr ""
533
 
534
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:473 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:551
535
  msgid "User"
536
  msgstr ""
537
 
538
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:650
539
  msgid "Date"
540
  msgstr ""
541
 
542
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
543
  msgid "Payed"
544
  msgstr ""
545
 
546
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
547
  msgid "<strong>buy</strong>CRED Purchase Log"
548
  msgstr ""
549
 
550
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
551
  msgid "Gateway Settings"
552
  msgstr ""
553
 
554
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
555
  msgid ""
556
  "Only completed purchases are shown here. Purchases that were cancelled or "
557
  "failed are not logged."
558
  msgstr ""
559
 
560
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:473
561
  msgid "User Missing"
562
  msgstr ""
563
 
564
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1110
565
  msgid "No purchases found"
566
  msgstr ""
567
 
568
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
569
  msgid "This Add-on needs to setup before you can use this shortcode."
570
  msgstr ""
571
 
572
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
573
  msgid "No gateways installed."
574
  msgstr ""
575
 
576
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
577
  msgid "Gateway does not exist."
578
  msgstr ""
579
 
580
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
581
  msgid "Yourself"
582
  msgstr ""
583
 
584
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
585
  msgid "No active gateways found."
586
  msgstr ""
587
 
588
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
589
  msgid "The selected gateway is not active."
590
  msgstr ""
591
 
592
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
593
  msgid "Buy with %gateway%"
594
  msgstr ""
595
 
596
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
597
  msgid "Buy Now"
598
  msgstr ""
599
 
600
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
601
  msgid "No users found"
602
  msgstr ""
603
 
604
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
605
  msgid "To"
606
  msgstr ""
607
 
608
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
609
  msgid "Select Amount"
610
  msgstr ""
611
 
612
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
613
  msgid "min."
614
  msgstr ""
615
 
616
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
617
  msgid "Select Gateway"
618
  msgstr ""
619
 
653
  msgid "Cancel purchase"
654
  msgstr ""
655
 
656
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:360 ../includes/mycred-admin.php:466
657
  msgid "required"
658
  msgstr ""
659
 
660
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:362 ../includes/mycred-admin.php:468
661
  msgid "optional"
662
  msgstr ""
663
 
765
  msgid "Validating sale"
766
  msgstr ""
767
 
768
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1289
769
  msgid "Token mismatch"
770
  msgstr ""
771
 
772
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1301
773
  msgid "Price mismatch"
774
  msgstr ""
775
 
776
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1306
777
  msgid "Currency mismatch"
778
  msgstr ""
779
 
780
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
781
  msgid "Duplicate transaction"
782
  msgstr ""
783
 
887
  msgid "Full Notifications"
888
  msgstr ""
889
 
890
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
891
  msgid "No"
892
  msgstr ""
893
 
894
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
895
  msgid "Yes"
896
  msgstr ""
897
 
1049
  msgid "Checkout Page"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:753 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2289
1053
  msgid "Title"
1054
  msgstr ""
1055
 
1134
  "address and click validate."
1135
  msgstr ""
1136
 
1137
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
1138
  msgid "Coupons"
1139
  msgstr ""
1140
 
1170
  msgid "No coupons found in Trash"
1171
  msgstr ""
1172
 
1173
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
1174
  msgid "Email Notices"
1175
  msgstr ""
1176
 
1206
  msgid "Usage"
1207
  msgstr ""
1208
 
1209
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
1210
  msgid "Limits"
1211
  msgstr ""
1212
 
1218
  msgid "not yet used"
1219
  msgstr ""
1220
 
1221
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
1222
  msgid "Total"
1223
  msgstr ""
1224
 
1402
  msgid "No email notices found in Trash"
1403
  msgstr ""
1404
 
1405
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
1406
  msgid "General"
1407
  msgstr ""
1408
 
1618
  msgid "CSS Styling"
1619
  msgstr ""
1620
 
1621
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1622
  msgid "Site Related"
1623
  msgstr ""
1624
 
1625
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1626
  msgid "Your websites title"
1627
  msgstr ""
1628
 
1629
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1630
  msgid "Your websites address"
1631
  msgstr ""
1632
 
1633
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1634
  msgid "Your websites tagline (description)"
1635
  msgstr ""
1636
 
1637
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1638
  msgid "Your websites admin email"
1639
  msgstr ""
1640
 
1641
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1642
  msgid "Total number of blog members"
1643
  msgstr ""
1644
 
1645
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1646
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1647
  msgstr ""
1648
 
1649
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902
 
 
 
 
 
 
 
 
1650
  msgid "Email Notice Activated"
1651
  msgstr ""
1652
 
1653
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1654
  msgid "Email Notice Saved"
1655
  msgstr ""
1656
 
1657
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1658
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1659
  msgstr ""
1660
 
1661
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:906
1662
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1663
  msgstr ""
1664
 
1665
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1666
  msgid ""
1667
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1668
  "not yet ready to use this email notice!"
1669
  msgstr ""
1670
 
1671
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
1672
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1673
  msgstr ""
1674
 
1675
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1676
  msgid "This email notice is active."
1677
  msgstr ""
1678
 
1679
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:474
1680
  msgid "Current Balance"
1681
  msgstr ""
1682
 
1689
  msgstr ""
1690
 
1691
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1692
+ msgid "Go Back"
1693
  msgstr ""
1694
 
1695
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1706
  msgid "Paid"
1707
  msgstr ""
1708
 
1709
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1710
  msgid "myCRED"
1711
  msgstr ""
1712
 
1780
  msgid "Percentage"
1781
  msgstr ""
1782
 
1783
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
1784
+ msgid "Option to share sales with the product owner. Use zero to disable."
1785
  msgstr ""
1786
 
1787
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1894
  msgid "Show in Cart and on Checkout Page"
1895
  msgstr ""
1896
 
1897
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:472 ../modules/mycred-module-settings.php:491 ../modules/mycred-module-settings.php:514
1898
  msgid "Label"
1899
  msgstr ""
1900
 
1902
  msgid "Order Total in %_plural%"
1903
  msgstr ""
1904
 
 
 
 
 
1905
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1906
  msgid "Log entry template for profit sharing."
1907
  msgstr ""
1977
  msgid "Payout"
1978
  msgstr ""
1979
 
 
 
 
 
 
 
1980
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
1981
  msgid "Instructions"
1982
  msgstr ""
2063
  msgid "Users must be logged in to use this gateway!"
2064
  msgstr ""
2065
 
 
 
 
 
2066
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2067
  msgid "Log"
2068
  msgstr ""
2069
 
2070
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:479
2071
  msgid "Log Entry"
2072
  msgstr ""
2073
 
2097
  msgid "Message to show visitors (users not logged in) on the payment page."
2098
  msgstr ""
2099
 
2100
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:528
2101
  msgid "Update Settings"
2102
  msgstr ""
2103
 
2141
  msgid "Reject"
2142
  msgstr ""
2143
 
2144
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:511 ../modules/mycred-module-settings.php:476 ../modules/mycred-module-settings.php:495
2145
  msgid "Delete"
2146
  msgstr ""
2147
 
2167
 
2168
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2169
  msgid ""
2170
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2171
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2172
  msgstr ""
2173
 
2227
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2228
  msgstr ""
2229
 
2230
+ #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:201
2231
  msgid "Notifications"
2232
  msgstr ""
2233
 
2275
  msgid "Are you sure you want to re-assign user ranks?"
2276
  msgstr ""
2277
 
2278
+ #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:748 ../addons/ranks/myCRED-addon-ranks.php:944 ../modules/mycred-module-addons.php:213
2279
  msgid "Ranks"
2280
  msgstr ""
2281
 
2282
+ #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-addon-ranks.php:459 ../addons/ranks/myCRED-addon-ranks.php:554
2283
  msgid "Rank"
2284
  msgstr ""
2285
 
2311
  msgid "No ranks found in Trash"
2312
  msgstr ""
2313
 
2314
+ #: ../addons/ranks/myCRED-addon-ranks.php:318
2315
  msgid "Completed - Total of %d users effected"
2316
  msgstr ""
2317
 
2318
+ #: ../addons/ranks/myCRED-addon-ranks.php:320
2319
  msgid "Log is Empty"
2320
  msgstr ""
2321
 
2322
+ #: ../addons/ranks/myCRED-addon-ranks.php:514 ../addons/ranks/myCRED-addon-ranks.php:517
2323
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2324
  msgstr ""
2325
 
2326
+ #: ../addons/ranks/myCRED-addon-ranks.php:519
2327
  msgid "Rank Activated"
2328
  msgstr ""
2329
 
2330
+ #: ../addons/ranks/myCRED-addon-ranks.php:520
2331
  msgid "Rank Saved"
2332
  msgstr ""
2333
 
2334
+ #: ../addons/ranks/myCRED-addon-ranks.php:521
2335
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2336
  msgstr ""
2337
 
2338
+ #: ../addons/ranks/myCRED-addon-ranks.php:523
2339
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2340
  msgstr ""
2341
 
2342
+ #: ../addons/ranks/myCRED-addon-ranks.php:580 ../addons/ranks/myCRED-addon-ranks.php:633
2343
  msgid "Rank Title"
2344
  msgstr ""
2345
 
2346
+ #: ../addons/ranks/myCRED-addon-ranks.php:581
2347
  msgid "Logo"
2348
  msgstr ""
2349
 
2350
+ #: ../addons/ranks/myCRED-addon-ranks.php:582
2351
  msgid "Requirement"
2352
  msgstr ""
2353
 
2354
+ #: ../addons/ranks/myCRED-addon-ranks.php:583 ../modules/mycred-module-settings.php:439
2355
  msgid "Users"
2356
  msgstr ""
2357
 
2358
+ #: ../addons/ranks/myCRED-addon-ranks.php:599
2359
  msgid "No Logo Set"
2360
  msgstr ""
2361
 
2362
+ #: ../addons/ranks/myCRED-addon-ranks.php:608 ../addons/ranks/myCRED-addon-ranks.php:613
2363
  msgid "Any Value"
2364
  msgstr ""
2365
 
2366
+ #: ../addons/ranks/myCRED-addon-ranks.php:615
2367
  msgid "Maximum %plural%"
2368
  msgstr ""
2369
 
2370
+ #: ../addons/ranks/myCRED-addon-ranks.php:646
2371
  msgid "Rank Settings"
2372
  msgstr ""
2373
 
2374
+ #: ../addons/ranks/myCRED-addon-ranks.php:668
2375
  msgid "Minimum %plural% to reach this rank"
2376
  msgstr ""
2377
 
2378
+ #: ../addons/ranks/myCRED-addon-ranks.php:672
2379
  msgid "Maximum %plural% to be included in this rank"
2380
  msgstr ""
2381
 
2382
+ #: ../addons/ranks/myCRED-addon-ranks.php:679
2383
  msgid "All Published Ranks"
2384
  msgstr ""
2385
 
2386
+ #: ../addons/ranks/myCRED-addon-ranks.php:685 ../addons/ranks/myCRED-addon-ranks.php:687
2387
  msgid "Not Set"
2388
  msgstr ""
2389
 
2390
+ #: ../addons/ranks/myCRED-addon-ranks.php:692
2391
  msgid "No Ranks found"
2392
  msgstr ""
2393
 
2394
+ #: ../addons/ranks/myCRED-addon-ranks.php:750
2395
  msgid "Rank Features"
2396
  msgstr ""
2397
 
2398
+ #: ../addons/ranks/myCRED-addon-ranks.php:754
2399
  msgid "%plural% requirement"
2400
  msgstr ""
2401
 
2402
+ #: ../addons/ranks/myCRED-addon-ranks.php:755
2403
  msgid "Featured Image (Logo)"
2404
  msgstr ""
2405
 
2406
+ #: ../addons/ranks/myCRED-addon-ranks.php:756
2407
  msgid "Content"
2408
  msgstr ""
2409
 
2410
+ #: ../addons/ranks/myCRED-addon-ranks.php:757
2411
  msgid "Excerpt"
2412
  msgstr ""
2413
 
2414
+ #: ../addons/ranks/myCRED-addon-ranks.php:758
2415
  msgid "Comments"
2416
  msgstr ""
2417
 
2418
+ #: ../addons/ranks/myCRED-addon-ranks.php:759
2419
  msgid "Page Attributes"
2420
  msgstr ""
2421
 
2422
+ #: ../addons/ranks/myCRED-addon-ranks.php:760
2423
  msgid "Custom Fields"
2424
  msgstr ""
2425
 
2426
+ #: ../addons/ranks/myCRED-addon-ranks.php:763
2427
  msgid "Public"
2428
  msgstr ""
2429
 
2430
+ #: ../addons/ranks/myCRED-addon-ranks.php:767
2431
  msgid ""
2432
  "If you want to create a template archive for each rank, you must select to have "
2433
  "ranks public. Defaults to disabled."
2434
  msgstr ""
2435
 
2436
+ #: ../addons/ranks/myCRED-addon-ranks.php:770
2437
  msgid "Rank Basis"
2438
  msgstr ""
2439
 
2440
+ #: ../addons/ranks/myCRED-addon-ranks.php:773
2441
  msgid "Users are ranked according to their current balance."
2442
  msgstr ""
2443
 
2444
+ #: ../addons/ranks/myCRED-addon-ranks.php:776
2445
  msgid ""
2446
  "Users are ranked according to the total amount of %_plural% they have "
2447
  "accumulated."
2448
  msgstr ""
2449
 
2450
+ #: ../addons/ranks/myCRED-addon-ranks.php:780 ../addons/ranks/myCRED-addon-ranks.php:785
2451
  msgid "Calculate Totals"
2452
  msgstr ""
2453
 
2454
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2455
  msgid ""
2456
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2457
  "the users current balance will be used as a starting point."
2458
  msgstr ""
2459
 
2460
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2461
  msgid ""
2462
  "Once a users total has been calculated, they will be assigned to their "
2463
  "appropriate roles. For this reason, it is highly recommended that you first "
2464
  "setup your ranks!"
2465
  msgstr ""
2466
 
2467
+ #: ../addons/ranks/myCRED-addon-ranks.php:784
2468
  msgid ""
2469
  "Depending on your log size and number of users this process may take a while. "
2470
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2471
  "is completed!"
2472
  msgstr ""
2473
 
2474
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2475
  msgid "Archive URL"
2476
  msgstr ""
2477
 
2478
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2479
  msgid "Ignored if Ranks are not public"
2480
  msgstr ""
2481
 
2482
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2483
  msgid "Display Order"
2484
  msgstr ""
2485
 
2486
+ #: ../addons/ranks/myCRED-addon-ranks.php:803
2487
  msgid "Ascending - Lowest rank to highest"
2488
  msgstr ""
2489
 
2490
+ #: ../addons/ranks/myCRED-addon-ranks.php:804
2491
  msgid "Descending - Highest rank to lowest"
2492
  msgstr ""
2493
 
2494
+ #: ../addons/ranks/myCRED-addon-ranks.php:813
2495
  msgid ""
2496
  "Select in what order ranks should be displayed in your admin area and/or front "
2497
  "if ranks are \"Public\""
2498
  msgstr ""
2499
 
2500
+ #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2501
  msgid "Do not show."
2502
  msgstr ""
2503
 
2504
+ #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:365
2505
  msgid "Include in Profile Header."
2506
  msgstr ""
2507
 
2508
+ #: ../addons/ranks/myCRED-addon-ranks.php:825 ../modules/mycred-module-buddypress.php:366
2509
  msgid "Include under the \"Profile\" tab"
2510
  msgstr ""
2511
 
2512
+ #: ../addons/ranks/myCRED-addon-ranks.php:826 ../modules/mycred-module-buddypress.php:367
2513
  msgid "Include under the \"Profile\" tab and Profile Header."
2514
  msgstr ""
2515
 
2516
+ #: ../addons/ranks/myCRED-addon-ranks.php:829
2517
  msgid "Rank in BuddyPress"
2518
  msgstr ""
2519
 
2520
+ #: ../addons/ranks/myCRED-addon-ranks.php:897
2521
  msgid "Script Communication Error"
2522
  msgstr ""
2523
 
2524
+ #: ../addons/ranks/myCRED-addon-ranks.php:947
2525
  msgid "Rank Post Type"
2526
  msgstr ""
2527
 
2528
+ #: ../addons/ranks/myCRED-addon-ranks.php:951
2529
  msgid "No. of ranks"
2530
  msgstr ""
2531
 
2532
+ #: ../addons/ranks/myCRED-addon-ranks.php:955 ../modules/mycred-module-log.php:372 ../modules/mycred-module-settings.php:428 ../modules/mycred-module-settings.php:443
2533
  msgid "Actions"
2534
  msgstr ""
2535
 
2536
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2537
  msgid "Remove All Ranks"
2538
  msgstr ""
2539
 
2540
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2541
  msgid "Assign Ranks to Users"
2542
  msgstr ""
2543
 
2553
  msgid "No users found with this rank"
2554
  msgstr ""
2555
 
2556
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2557
  msgid "error"
2558
  msgstr ""
2559
 
2589
  msgid "Pay Content Author."
2590
  msgstr ""
2591
 
2592
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
2593
  msgid "Sell Content"
2594
  msgstr ""
2595
 
2771
  msgid "Transfer %plural%"
2772
  msgstr ""
2773
 
2774
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:457
2775
  msgid "Point Types"
2776
  msgstr ""
2777
 
2957
  "href=\"%s\">website</a>."
2958
  msgstr ""
2959
 
2960
+ #: ../includes/mycred-admin.php:63
2961
+ msgid ""
2962
+ "Re-save your myCRED Settings & all myCRED widget settings that you are "
2963
+ "currently using."
2964
+ msgstr ""
2965
+
2966
+ #: ../includes/mycred-admin.php:67
2967
+ msgid "Re-save your myCRED Hook Settings."
2968
+ msgstr ""
2969
+
2970
+ #: ../includes/mycred-admin.php:71
2971
+ msgid ""
2972
+ "Please complete the following tasks in order to finish updating myCRED to "
2973
+ "version 1.4:"
2974
+ msgstr ""
2975
+
2976
+ #: ../includes/mycred-admin.php:97
2977
  msgid "User is excluded"
2978
  msgstr ""
2979
 
2980
+ #: ../includes/mycred-admin.php:102
2981
  msgid "Log Entry can not be empty"
2982
  msgstr ""
2983
 
2984
+ #: ../includes/mycred-admin.php:106
2985
  msgid "Amount can not be zero"
2986
  msgstr ""
2987
 
2988
+ #: ../includes/mycred-admin.php:127
2989
  msgid "Failed to update this uses balance."
2990
  msgstr ""
2991
 
2992
+ #: ../includes/mycred-admin.php:262
2993
  msgid "Excluded"
2994
  msgstr ""
2995
 
2996
+ #: ../includes/mycred-admin.php:275 ../modules/mycred-module-log.php:254 ../modules/mycred-module-log.php:255
2997
  msgid "History"
2998
  msgstr ""
2999
 
3000
+ #: ../includes/mycred-admin.php:276
3001
  msgid "Adjust"
3002
  msgstr ""
3003
 
3004
+ #: ../includes/mycred-admin.php:331 ../includes/mycred-admin.php:390
3005
  msgid "%singular% balance"
3006
  msgstr ""
3007
 
3008
+ #: ../includes/mycred-admin.php:355
3009
  msgid "Adjust Your Balance"
3010
  msgstr ""
3011
 
3012
+ #: ../includes/mycred-admin.php:357
3013
  msgid "Adjust Users Balance"
3014
  msgstr ""
3015
 
3016
+ #: ../includes/mycred-admin.php:368
3017
  msgid "Log description for adjustment"
3018
  msgstr ""
3019
 
3020
+ #: ../includes/mycred-admin.php:371
3021
  msgid "Update"
3022
  msgstr ""
3023
 
3024
+ #: ../includes/mycred-admin.php:372
3025
  msgid "Description is required!"
3026
  msgstr ""
3027
 
3028
+ #: ../includes/mycred-admin.php:472
3029
  msgid "ID"
3030
  msgstr ""
3031
 
3032
+ #: ../includes/mycred-admin.php:478
3033
  msgid "A positive or negative value"
3034
  msgstr ""
3035
 
3036
+ #: ../includes/mycred-admin.php:480
3037
  msgid "Update Balance"
3038
  msgstr ""
3039
 
3045
  msgid "Points"
3046
  msgstr ""
3047
 
3048
+ #: ../includes/mycred-functions.php:395
3049
  msgid "Deleted"
3050
  msgstr ""
3051
 
3052
+ #: ../includes/mycred-functions.php:532
3053
  msgid "Deleted Item"
3054
  msgstr ""
3055
 
3056
+ #: ../includes/mycred-functions.php:596
3057
+ msgid "User Related"
3058
+ msgstr ""
3059
+
3060
+ #: ../includes/mycred-functions.php:603
3061
+ msgid "Post Related"
3062
+ msgstr ""
3063
+
3064
+ #: ../includes/mycred-functions.php:610
3065
  msgid "Comment Related"
3066
  msgstr ""
3067
 
3068
+ #: ../includes/mycred-functions.php:617
3069
  msgid "Widget Related"
3070
  msgstr ""
3071
 
3072
+ #: ../includes/mycred-functions.php:624
3073
  msgid "Amount Related"
3074
  msgstr ""
3075
 
3076
+ #: ../includes/mycred-functions.php:631
3077
  msgid "Video Related"
3078
  msgstr ""
3079
 
3080
+ #: ../includes/mycred-functions.php:642
3081
  msgid "and"
3082
  msgstr ""
3083
 
3084
+ #: ../includes/mycred-functions.php:644
3085
  msgid "Available Template Tags:"
3086
  msgstr ""
3087
 
3088
+ #: ../includes/mycred-functions.php:1565
3089
  msgid "Entire Log"
3090
  msgstr ""
3091
 
3092
+ #: ../includes/mycred-functions.php:1570 ../includes/mycred-functions.php:1571
3093
  msgid "Displayed Rows"
3094
  msgstr ""
3095
 
3096
+ #: ../includes/mycred-functions.php:1575
3097
  msgid "Search Results"
3098
  msgstr ""
3099
 
3100
+ #: ../includes/mycred-functions.php:1576
3101
  msgid "My Entire Log"
3102
  msgstr ""
3103
 
3104
+ #: ../includes/mycred-functions.php:1696
3105
  msgid "ref empty"
3106
  msgstr ""
3107
 
3108
+ #: ../includes/mycred-functions.php:1704
3109
  msgid "incorrect user id format"
3110
  msgstr ""
3111
 
3112
+ #: ../includes/mycred-functions.php:1717
3113
  msgid "incorrect unix timestamp (from):"
3114
  msgstr ""
3115
 
3116
+ #: ../includes/mycred-functions.php:1726
3117
  msgid "incorrect unix timestamp (to):"
3118
  msgstr ""
3119
 
3126
  msgstr ""
3127
 
3128
  #: ../includes/mycred-importer.php:43
3129
+ msgid "%s Balance Import"
3130
+ msgstr ""
3131
+
3132
+ #: ../includes/mycred-importer.php:44
3133
+ msgid "Import balances."
3134
+ msgstr ""
3135
+
3136
+ #: ../includes/mycred-importer.php:75
3137
  msgid "%s CubePoints Import"
3138
  msgstr ""
3139
 
3140
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
3141
  msgid "Import CubePoints log entries and / or balances."
3142
  msgstr ""
3143
 
3144
+ #: ../includes/mycred-importer.php:92
3145
  msgid "No CubePoints log exists."
3146
  msgstr ""
3147
 
3163
  "for running myCRED. The following errors were given:"
3164
  msgstr ""
3165
 
3166
+ #: ../includes/mycred-install.php:243
3167
  msgid "myCRED needs your attention."
3168
  msgstr ""
3169
 
3170
+ #: ../includes/mycred-install.php:243
3171
  msgid "Run Setup"
3172
  msgstr ""
3173
 
3174
+ #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3175
  msgid "myCRED Setup"
3176
  msgstr ""
3177
 
3178
+ #: ../includes/mycred-install.php:385
3179
  msgid "%s Setup"
3180
  msgstr ""
3181
 
3182
+ #: ../includes/mycred-install.php:387
3183
  msgid "Step"
3184
  msgstr ""
3185
 
3186
+ #: ../includes/mycred-install.php:411
3187
  msgid ""
3188
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3189
  "format, layout and security settings."
3190
  msgstr ""
3191
 
3192
+ #: ../includes/mycred-install.php:412
3193
  msgid "Begin Setup"
3194
  msgstr ""
3195
 
3196
+ #: ../includes/mycred-install.php:467
3197
  msgid "Select the format you want to use for your points."
3198
  msgstr ""
3199
 
3200
+ #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3201
  msgid "Format"
3202
  msgstr ""
3203
 
3204
+ #: ../includes/mycred-install.php:471
3205
  msgid "Separators"
3206
  msgstr ""
3207
 
3208
+ #: ../includes/mycred-install.php:481
3209
  msgid "Decimals"
3210
  msgstr ""
3211
 
3212
+ #: ../includes/mycred-install.php:483
3213
  msgid "Use zero for no decimals."
3214
  msgstr ""
3215
 
3216
+ #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:344
3217
  msgid "Presentation"
3218
  msgstr ""
3219
 
3220
+ #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:331
3221
  msgid "Name (Singular)"
3222
  msgstr ""
3223
 
3224
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:336
3225
  msgid "Name (Plural)"
3226
  msgstr ""
3227
 
3228
+ #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:347
3229
  msgid "Prefix"
3230
  msgstr ""
3231
 
3232
+ #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:355
3233
  msgid "Suffix"
3234
  msgstr ""
3235
 
3236
+ #: ../includes/mycred-install.php:511
3237
  msgid "Cancel Setup"
3238
  msgstr ""
3239
 
3240
+ #: ../includes/mycred-install.php:511
3241
  msgid "Cancel"
3242
  msgstr ""
3243
 
3244
+ #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3245
  msgid "Next"
3246
  msgstr ""
3247
 
3248
+ #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:363
3249
  msgid "Security"
3250
  msgstr ""
3251
 
3252
+ #: ../includes/mycred-install.php:546
3253
  msgid "Edit Settings Capability"
3254
  msgstr ""
3255
 
3256
+ #: ../includes/mycred-install.php:550
3257
  msgid "Edit Users %plural% Capability"
3258
  msgstr ""
3259
 
3260
+ #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:376
3261
  msgid "Maximum %plural% payouts"
3262
  msgstr ""
3263
 
3264
+ #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:378
3265
  msgid ""
3266
  "As an added security, you can set the maximum amount a user can gain or loose "
3267
  "in a single instance. If used, make sure this is the maximum amount a user "
3268
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3269
  msgstr ""
3270
 
3271
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:385
3272
  msgid "Exclude those who can \"Edit Settings\"."
3273
  msgstr ""
3274
 
3275
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:389
3276
  msgid "Exclude those who can \"Edit Users %plural%\"."
3277
  msgstr ""
3278
 
3279
+ #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:393
3280
  msgid "Exclude the following user IDs:"
3281
  msgstr ""
3282
 
3283
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:398
3284
  msgid "User Deletions"
3285
  msgstr ""
3286
 
3287
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:401
3288
  msgid "Delete log entries when user is deleted."
3289
  msgstr ""
3290
 
3291
+ #: ../includes/mycred-install.php:599
3292
  msgid "Ready"
3293
  msgstr ""
3294
 
3295
+ #: ../includes/mycred-install.php:600
3296
  msgid "Almost done! Click the button below to finish this setup."
3297
  msgstr ""
3298
 
3299
+ #: ../includes/mycred-install.php:601
3300
  msgid "Install & Run"
3301
  msgstr ""
3302
 
3339
  msgid "Show all references"
3340
  msgstr ""
3341
 
3342
+ #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:541
3343
  msgid "User ID"
3344
  msgstr ""
3345
 
3405
  msgid "This Month"
3406
  msgstr ""
3407
 
3408
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
3409
  msgid "Network Settings"
3410
  msgstr ""
3411
 
3412
+ #: ../includes/mycred-network.php:169
3413
  msgid "%s Network"
3414
  msgstr ""
3415
 
3416
+ #: ../includes/mycred-network.php:175
3417
  msgid "Note! %s has not yet been setup."
3418
  msgstr ""
3419
 
3420
+ #: ../includes/mycred-network.php:179
3421
  msgid "Network Settings Updated"
3422
  msgstr ""
3423
 
3424
+ #: ../includes/mycred-network.php:181
3425
  msgid "Configure network settings for %s."
3426
  msgstr ""
3427
 
3428
+ #: ../includes/mycred-network.php:188
3429
  msgid "Master Template"
3430
  msgstr ""
3431
 
3432
+ #: ../includes/mycred-network.php:199
3433
  msgid ""
3434
  "If enabled, %s will use your main site's settings for all other sites in your "
3435
  "network."
3436
  msgstr ""
3437
 
3438
+ #: ../includes/mycred-network.php:202
3439
  msgid "Central Logging"
3440
  msgstr ""
3441
 
3442
+ #: ../includes/mycred-network.php:213
3443
  msgid "If enabled, %s will log all site actions in your main site's log."
3444
  msgstr ""
3445
 
3446
+ #: ../includes/mycred-network.php:216
3447
  msgid "Site Block"
3448
  msgstr ""
3449
 
3450
+ #: ../includes/mycred-network.php:220
3451
  msgid "Comma separated list of blog ids where %s is to be disabled."
3452
  msgstr ""
3453
 
3454
+ #: ../includes/mycred-network.php:229
3455
  msgid "Save Network Settings"
3456
  msgstr ""
3457
 
3458
+ #: ../includes/mycred-overview.php:25
3459
  msgid "%s Overview"
3460
  msgstr ""
3461
 
3462
+ #: ../includes/mycred-overview.php:78
3463
  msgid "Total amount in circulation"
3464
  msgstr ""
3465
 
3466
+ #: ../includes/mycred-overview.php:81
3467
  msgid "Awarded"
3468
  msgstr ""
3469
 
3470
+ #: ../includes/mycred-overview.php:84
3471
  msgid "Deducted"
3472
  msgstr ""
3473
 
3474
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
3475
  msgid "Transfers"
3476
  msgstr ""
3477
 
3478
+ #: ../includes/mycred-overview.php:208
3479
  msgid "Manual"
3480
  msgstr ""
3481
 
3547
  msgid "Leaderboard is empty."
3548
  msgstr ""
3549
 
3550
+ #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3551
  msgid "Amount missing!"
3552
  msgstr ""
3553
 
3554
+ #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3555
  msgid "Log Template Missing!"
3556
  msgstr ""
3557
 
3558
+ #: ../includes/mycred-shortcodes.php:417
3559
  msgid "Anchor missing URL!"
3560
  msgstr ""
3561
 
3562
+ #: ../includes/mycred-shortcodes.php:482
3563
  msgid "User ID missing for recipient."
3564
  msgstr ""
3565
 
3566
+ #: ../includes/mycred-shortcodes.php:536
3567
  msgid "Sent"
3568
  msgstr ""
3569
 
3570
+ #: ../includes/mycred-shortcodes.php:537
3571
  msgid "Error - Try Again"
3572
  msgstr ""
3573
 
3574
+ #: ../includes/mycred-shortcodes.php:645
3575
  msgid "A video ID is required for this shortcode"
3576
  msgstr ""
3577
 
3591
  msgid "%plural% History"
3592
  msgstr ""
3593
 
3594
+ #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3595
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3596
  msgstr ""
3597
 
3623
  msgid "Row layout"
3624
  msgstr ""
3625
 
3626
+ #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:607
3627
  msgid "Show message when not logged in"
3628
  msgstr ""
3629
 
3630
+ #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:608
3631
  msgid "Message"
3632
  msgstr ""
3633
 
3673
  "at the end with their current position."
3674
  msgstr ""
3675
 
3676
+ #: ../includes/mycred-widgets.php:495
3677
  msgid "Shows the current users balances for each point type."
3678
  msgstr ""
3679
 
3680
+ #: ../includes/mycred-widgets.php:497
3681
  msgid "(%s) Wallet"
3682
  msgstr ""
3683
 
3684
+ #: ../includes/mycred-widgets.php:577
3685
  msgid "My Wallet"
3686
  msgstr ""
3687
 
3688
+ #: ../includes/mycred-widgets.php:599
3689
  msgid "Row Layout"
3690
  msgstr ""
3691
 
3703
  "imported. <strong>%d</strong> was skipped."
3704
  msgstr ""
3705
 
3706
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3707
  msgid "View Log"
3708
  msgstr ""
3709
 
3710
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3711
  msgid "Import More"
3712
  msgstr ""
3713
 
3747
  msgid "Import Log"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180 ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:144 ../includes/importers/mycred-balances.php:183 ../includes/importers/mycred-balances.php:198
3751
  msgid "Sorry, there has been an error."
3752
  msgstr ""
3753
 
3754
+ #: ../includes/importers/mycred-log-entries.php:82 ../includes/importers/mycred-balances.php:82
3755
  msgid "The file does not exist, please try again."
3756
  msgstr ""
3757
 
3758
+ #: ../includes/importers/mycred-log-entries.php:127 ../includes/importers/mycred-balances.php:145
3759
  msgid "The CSV is invalid."
3760
  msgstr ""
3761
 
3767
  msgid "Import log entries from a CSV file."
3768
  msgstr ""
3769
 
3770
+ #: ../includes/importers/mycred-log-entries.php:219 ../includes/importers/mycred-balances.php:237
3771
  msgid ""
3772
  "Before you can upload your import file, you will need to fix the following "
3773
  "error:"
3774
  msgstr ""
3775
 
3776
+ #: ../includes/importers/mycred-log-entries.php:228 ../includes/importers/mycred-balances.php:246
3777
  msgid "Choose a file from your computer:"
3778
  msgstr ""
3779
 
3780
+ #: ../includes/importers/mycred-log-entries.php:234 ../includes/importers/mycred-balances.php:252
3781
  msgid "Maximum size: %s"
3782
  msgstr ""
3783
 
3784
+ #: ../includes/importers/mycred-log-entries.php:239 ../includes/importers/mycred-balances.php:257
3785
  msgid "OR enter path to file:"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/importers/mycred-log-entries.php:246 ../includes/importers/mycred-balances.php:264
3789
  msgid "Delimiter"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/importers/mycred-log-entries.php:252 ../includes/importers/mycred-balances.php:270
3793
  msgid "Upload file and import"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/importers/mycred-balances.php:156
3797
+ msgid ""
3798
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3799
+ "imported. <strong>%d</strong> was skipped."
3800
+ msgstr ""
3801
+
3802
+ #: ../includes/importers/mycred-balances.php:212
3803
+ msgid "Import Balances"
3804
+ msgstr ""
3805
+
3806
+ #: ../includes/importers/mycred-balances.php:229
3807
+ msgid "Import balances from a CSV file."
3808
+ msgstr ""
3809
+
3810
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3811
  msgid "Add-ons"
3812
  msgstr ""
3813
 
3814
+ #: ../modules/mycred-module-addons.php:158
3815
  msgid ""
3816
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3817
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3818
  "let your users buy points for other members."
3819
  msgstr ""
3820
 
3821
+ #: ../modules/mycred-module-addons.php:169
3822
  msgid ""
3823
+ "The coupons add-on allows you to create coupons that users can use to add "
3824
  "points to their accounts."
3825
  msgstr ""
3826
 
3827
+ #: ../modules/mycred-module-addons.php:180
3828
  msgid "Create email notices for any type of myCRED instance."
3829
  msgstr ""
3830
 
3831
+ #: ../modules/mycred-module-addons.php:191
3832
  msgid ""
3833
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3834
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3835
  "Bookings: Event Espresso and Events Manager (free & pro)."
3836
  msgstr ""
3837
 
3838
+ #: ../modules/mycred-module-addons.php:202
3839
  msgid "Create pop-up notifications for when users gain or loose points."
3840
  msgstr ""
3841
 
3842
+ #: ../modules/mycred-module-addons.php:214
3843
  msgid ""
3844
  "Create ranks for users reaching a certain number of %_plural% with the option "
3845
  "to add logos for each rank."
3846
  msgstr ""
3847
 
3848
+ #: ../modules/mycred-module-addons.php:225
3849
  msgid ""
3850
  "This add-on allows you to sell posts, pages or any public post types on your "
3851
  "website. You can either sell the entire content or using our shortcode, sell "
3852
  "parts of your content allowing you to offer \"teasers\"."
3853
  msgstr ""
3854
 
3855
+ #: ../modules/mycred-module-addons.php:236
3856
  msgid ""
3857
  "Allow your users to send or \"donate\" points to other members by either using "
3858
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3859
  msgstr ""
3860
 
3861
+ #: ../modules/mycred-module-addons.php:272
3862
  msgid "%s Add-ons"
3863
  msgstr ""
3864
 
3865
+ #: ../modules/mycred-module-addons.php:278
3866
  msgid "Add-on Activated"
3867
  msgstr ""
3868
 
3869
+ #: ../modules/mycred-module-addons.php:281
3870
  msgid "Add-on Deactivated"
3871
  msgstr ""
3872
 
3873
+ #: ../modules/mycred-module-addons.php:285
3874
  msgid "Add-ons can expand your current installation with further features."
3875
  msgstr ""
3876
 
3877
+ #: ../modules/mycred-module-addons.php:306
3878
  msgid "You can find more add-ons in our %s."
3879
  msgstr ""
3880
 
3881
+ #: ../modules/mycred-module-addons.php:306
3882
  msgid "online store"
3883
  msgstr ""
3884
 
3885
+ #: ../modules/mycred-module-addons.php:327
3886
  msgid "Deactivate Add-on"
3887
  msgstr ""
3888
 
3889
+ #: ../modules/mycred-module-addons.php:328
3890
  msgid "Deactivate"
3891
  msgstr ""
3892
 
3893
+ #: ../modules/mycred-module-addons.php:335
3894
  msgid "Activate Add-on"
3895
  msgstr ""
3896
 
3897
+ #: ../modules/mycred-module-addons.php:336
3898
  msgid "Activate"
3899
  msgstr ""
3900
 
3901
+ #: ../modules/mycred-module-addons.php:352
3902
  msgid "Version"
3903
  msgstr ""
3904
 
3905
+ #: ../modules/mycred-module-addons.php:356
3906
  msgid "By"
3907
  msgstr ""
3908
 
3909
+ #: ../modules/mycred-module-addons.php:364
3910
  msgid "Get Pro"
3911
  msgstr ""
3912
 
4064
  "depending on their actions around your website."
4065
  msgstr ""
4066
 
4067
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2199 ../modules/mycred-module-hooks.php:2228 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4068
  msgid "Log template"
4069
  msgstr ""
4070
 
4071
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2207 ../modules/mycred-module-hooks.php:2236 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4072
  msgid "Limit"
4073
  msgstr ""
4074
 
4075
+ #: ../modules/mycred-module-hooks.php:632
4076
  msgid "%plural% for Posts"
4077
  msgstr ""
4078
 
4079
+ #: ../modules/mycred-module-hooks.php:645
4080
  msgid "%plural% for Pages"
4081
  msgstr ""
4082
 
4083
+ #: ../modules/mycred-module-hooks.php:681
4084
  msgid "%plural% for %s"
4085
  msgstr ""
4086
 
4087
+ #: ../modules/mycred-module-hooks.php:1053
4088
  msgid ""
4089
  "%plural% are only awarded when your website has been synced with the Disqus "
4090
  "server!"
4091
  msgstr ""
4092
 
4093
+ #: ../modules/mycred-module-hooks.php:1055
4094
  msgid "Approved Comment"
4095
  msgstr ""
4096
 
4097
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
4098
  msgid "Comment Author"
4099
  msgstr ""
4100
 
4101
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
4102
  msgid "Content Author"
4103
  msgstr ""
4104
 
4105
+ #: ../modules/mycred-module-hooks.php:1072
4106
  msgid "Comment Marked SPAM"
4107
  msgstr ""
4108
 
4109
+ #: ../modules/mycred-module-hooks.php:1089
4110
  msgid "Trashed / Unapproved Comments"
4111
  msgstr ""
4112
 
4113
+ #: ../modules/mycred-module-hooks.php:1109
4114
  msgid "Limit per post"
4115
  msgstr ""
4116
 
4117
+ #: ../modules/mycred-module-hooks.php:1111
4118
  msgid ""
4119
  "The number of comments per post that grants %_plural% to the comment author. "
4120
  "Use zero for unlimited."
4121
  msgstr ""
4122
 
4123
+ #: ../modules/mycred-module-hooks.php:1115
4124
  msgid "Limit per day"
4125
  msgstr ""
4126
 
4127
+ #: ../modules/mycred-module-hooks.php:1117
4128
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4129
  msgstr ""
4130
 
4131
+ #: ../modules/mycred-module-hooks.php:1122
4132
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4133
  msgstr ""
4134
 
4135
+ #: ../modules/mycred-module-hooks.php:1193
4136
  msgid "Once for each unique URL"
4137
  msgstr ""
4138
 
4139
+ #: ../modules/mycred-module-hooks.php:1194
4140
  msgid "Once for each unique link id"
4141
  msgstr ""
4142
 
4143
+ #: ../modules/mycred-module-hooks.php:1386
4144
  msgid ""
4145
  "The default amount to award for clicking on links. You can override this in the "
4146
  "shortcode."
4147
  msgstr ""
4148
 
4149
+ #: ../modules/mycred-module-hooks.php:1393
4150
  msgid "Custom tags: %url%, %title% or %id%."
4151
  msgstr ""
4152
 
4153
+ #: ../modules/mycred-module-hooks.php:1404 ../modules/mycred-module-hooks.php:2310
4154
  msgid "Note!"
4155
  msgstr ""
4156
 
4157
+ #: ../modules/mycred-module-hooks.php:1404
4158
  msgid ""
4159
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4160
  "generate one automatically based on the value set under href. If you are using "
4161
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4162
  msgstr ""
4163
 
4164
+ #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4165
  msgid "Available Shortcode"
4166
  msgstr ""
4167
 
4168
+ #: ../modules/mycred-module-hooks.php:1726
4169
  msgid "Amount to award for viewing videos."
4170
  msgstr ""
4171
 
4172
+ #: ../modules/mycred-module-hooks.php:1736
4173
  msgid "Award Logic"
4174
  msgstr ""
4175
 
4176
+ #: ../modules/mycred-module-hooks.php:1738
4177
  msgid "Select when %_plural% should be awarded or deducted."
4178
  msgstr ""
4179
 
4180
+ #: ../modules/mycred-module-hooks.php:1739
4181
  msgid "Play - As soon as video starts playing."
4182
  msgstr ""
4183
 
4184
+ #: ../modules/mycred-module-hooks.php:1740
4185
  msgid "Full - First when the entire video has played."
4186
  msgstr ""
4187
 
4188
+ #: ../modules/mycred-module-hooks.php:1741
4189
  msgid "Interval - For each x number of seconds watched."
4190
  msgstr ""
4191
 
4192
+ #: ../modules/mycred-module-hooks.php:1746
4193
  msgid "Number of seconds"
4194
  msgstr ""
4195
 
4196
+ #: ../modules/mycred-module-hooks.php:1753
4197
  msgid "Leniency"
4198
  msgstr ""
4199
 
4200
+ #: ../modules/mycred-module-hooks.php:1755
4201
  msgid ""
4202
  "The maximum percentage a users view of a movie can differ from the actual "
4203
  "length."
4204
  msgstr ""
4205
 
4206
+ #: ../modules/mycred-module-hooks.php:1758
4207
  msgid ""
4208
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4209
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4210
  "play back errors."
4211
  msgstr ""
4212
 
4213
+ #: ../modules/mycred-module-hooks.php:1826
4214
  msgid "Affiliate Program"
4215
  msgstr ""
4216
 
4217
+ #: ../modules/mycred-module-hooks.php:1835
4218
  msgid "Per Day"
4219
  msgstr ""
4220
 
4221
+ #: ../modules/mycred-module-hooks.php:1942
4222
  msgid "Link"
4223
  msgstr ""
4224
 
4225
+ #: ../modules/mycred-module-hooks.php:2193
4226
  msgid "Referring Visitors"
4227
  msgstr ""
4228
 
4229
+ #: ../modules/mycred-module-hooks.php:2217 ../modules/mycred-module-hooks.php:2246
4230
  msgid "The number of referrals each member can make. Use zero for unlimited."
4231
  msgstr ""
4232
 
4233
+ #: ../modules/mycred-module-hooks.php:2221 ../modules/mycred-module-hooks.php:2250
4234
  msgid "Referring Signups"
4235
  msgstr ""
4236
 
4237
+ #: ../modules/mycred-module-hooks.php:2225
4238
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4239
  msgstr ""
4240
 
4241
+ #: ../modules/mycred-module-hooks.php:2252
4242
  msgid "Registrations are disabled."
4243
  msgstr ""
4244
 
4245
+ #: ../modules/mycred-module-hooks.php:2259
4246
  msgid "Referral Links"
4247
  msgstr ""
4248
 
4249
+ #: ../modules/mycred-module-hooks.php:2263
4250
  msgid "Assign numeric referral IDs to each user."
4251
  msgstr ""
4252
 
4253
+ #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:2270
4254
  msgid "Example"
4255
  msgstr ""
4256
 
4257
+ #: ../modules/mycred-module-hooks.php:2269
4258
  msgid "Assign usernames as IDs for each user."
4259
  msgstr ""
4260
 
4261
+ #: ../modules/mycred-module-hooks.php:2273
4262
  msgid "IP Limit"
4263
  msgstr ""
4264
 
4265
+ #: ../modules/mycred-module-hooks.php:2277
4266
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4267
  msgstr ""
4268
 
4269
+ #: ../modules/mycred-module-hooks.php:2281 ../modules/mycred-module-hooks.php:2314
4270
  msgid "BuddyPress Profile"
4271
  msgstr ""
4272
 
4273
+ #: ../modules/mycred-module-hooks.php:2284
4274
  msgid "Insert Link in users Profile"
4275
  msgstr ""
4276
 
4277
+ #: ../modules/mycred-module-hooks.php:2285
4278
  msgid ""
4279
  "Option to inser the referral link in users profiles. Links will only be visible "
4280
  "to users viewing their own profiles or administrators."
4281
  msgstr ""
4282
 
4283
+ #: ../modules/mycred-module-hooks.php:2291
4284
  msgid "Leave empty to hide."
4285
  msgstr ""
4286
 
4287
+ #: ../modules/mycred-module-hooks.php:2294
4288
  msgid "Description"
4289
  msgstr ""
4290
 
4291
+ #: ../modules/mycred-module-hooks.php:2295
4292
  msgid "Optional description to insert under the link."
4293
  msgstr ""
4294
 
4295
+ #: ../modules/mycred-module-hooks.php:2307
4296
  msgid "Profile Positioning"
4297
  msgstr ""
4298
 
4299
+ #: ../modules/mycred-module-hooks.php:2309
4300
  msgid ""
4301
  "You can move around the referral link on your users profile by changing the "
4302
+ "position. Increase to move up, decrease to move down."
4303
  msgstr ""
4304
 
4305
+ #: ../modules/mycred-module-hooks.php:2310
4306
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4307
  msgstr ""
4308
 
4309
+ #: ../modules/mycred-module-hooks.php:2316
4310
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4311
  msgstr ""
4312
 
4313
+ #: ../modules/mycred-module-hooks.php:2324
4314
  msgid "Available Shortcodes"
4315
  msgstr ""
4316
 
4317
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4318
  msgid "Access denied for this action"
4319
  msgstr ""
4320
 
4321
+ #: ../modules/mycred-module-log.php:192
4322
  msgid "Row Deleted"
4323
  msgstr ""
4324
 
4325
+ #: ../modules/mycred-module-log.php:219
4326
  msgid "Log entry not found"
4327
  msgstr ""
4328
 
4329
+ #: ../modules/mycred-module-log.php:232
4330
  msgid "Entry Updated"
4331
  msgstr ""
4332
 
4333
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:424
4334
  msgid "Entries"
4335
  msgstr ""
4336
 
4337
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:392 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:558
4338
  msgid "Export"
4339
  msgstr ""
4340
 
4341
+ #: ../modules/mycred-module-log.php:311
4342
  msgid "Search results for"
4343
  msgstr ""
4344
 
4345
+ #: ../modules/mycred-module-log.php:386
4346
  msgid "%s Log"
4347
  msgstr ""
4348
 
4349
+ #: ../modules/mycred-module-log.php:511
4350
  msgid "Edit"
4351
  msgstr ""
4352
 
4353
+ #: ../modules/mycred-module-log.php:556
4354
  msgid "Current Log Entry"
4355
  msgstr ""
4356
 
4357
+ #: ../modules/mycred-module-log.php:558
4358
  msgid "The current saved log entry"
4359
  msgstr ""
4360
 
4361
+ #: ../modules/mycred-module-log.php:561
4362
  msgid "Adjust Log Entry"
4363
  msgstr ""
4364
 
4365
+ #: ../modules/mycred-module-log.php:563
4366
  msgid "The new log entry"
4367
  msgstr ""
4368
 
4369
+ #: ../modules/mycred-module-log.php:566
4370
  msgid "Update Log Entry"
4371
  msgstr ""
4372
 
4373
+ #: ../modules/mycred-module-log.php:598
4374
  msgid "My %s History"
4375
  msgstr ""
4376
 
4377
+ #: ../modules/mycred-module-settings.php:64 ../modules/mycred-module-settings.php:105
4378
  msgid "Missing point type"
4379
  msgstr ""
4380
 
4381
+ #: ../modules/mycred-module-settings.php:128
4382
  msgid "Accounts successfully reset"
4383
  msgstr ""
4384
 
4385
+ #: ../modules/mycred-module-settings.php:168
4386
  msgid "No users found to export"
4387
  msgstr ""
4388
 
4389
+ #: ../modules/mycred-module-settings.php:314
4390
  msgid "Facebook"
4391
  msgstr ""
4392
 
4393
+ #: ../modules/mycred-module-settings.php:315
4394
  msgid "Google Plus"
4395
  msgstr ""
4396
 
4397
+ #: ../modules/mycred-module-settings.php:318
4398
  msgid "%s Settings"
4399
  msgstr ""
4400
 
4401
+ #: ../modules/mycred-module-settings.php:321
4402
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4403
  msgstr ""
4404
 
4405
+ #: ../modules/mycred-module-settings.php:326
4406
  msgid "Core Settings"
4407
  msgstr ""
4408
 
4409
+ #: ../modules/mycred-module-settings.php:328
4410
  msgid "Name"
4411
  msgstr ""
4412
 
4413
+ #: ../modules/mycred-module-settings.php:333
4414
  msgid "Accessible though the %singular% template tag."
4415
  msgstr ""
4416
 
4417
+ #: ../modules/mycred-module-settings.php:338
4418
  msgid "Accessible though the %plural% template tag."
4419
  msgstr ""
4420
 
4421
+ #: ../modules/mycred-module-settings.php:341
4422
  msgid "Tip"
4423
  msgstr ""
4424
 
4425
+ #: ../modules/mycred-module-settings.php:341
4426
  msgid ""
4427
  "Adding an underscore at the beginning of template tag for names will return "
4428
  "them in lowercase. i.e. %_singular%"
4429
  msgstr ""
4430
 
4431
+ #: ../modules/mycred-module-settings.php:359
4432
  msgid "Separator"
4433
  msgid_plural "Separators"
4434
  msgstr[0] ""
4435
  msgstr[1] ""
4436
 
4437
+ #: ../modules/mycred-module-settings.php:366
4438
  msgid "Edit Settings"
4439
  msgstr ""
4440
 
4441
+ #: ../modules/mycred-module-settings.php:368 ../modules/mycred-module-settings.php:373
4442
  msgid "Capability to check for."
4443
  msgstr ""
4444
 
4445
+ #: ../modules/mycred-module-settings.php:371
4446
  msgid "Edit Users %plural%"
4447
  msgstr ""
4448
 
4449
+ #: ../modules/mycred-module-settings.php:395
4450
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4451
  msgstr ""
4452
 
4453
+ #: ../modules/mycred-module-settings.php:415
4454
  msgid "Management"
4455
  msgstr ""
4456
 
4457
+ #: ../modules/mycred-module-settings.php:417
4458
  msgid "The Log"
4459
  msgstr ""
4460
 
4461
+ #: ../modules/mycred-module-settings.php:420
4462
  msgid "Table Name"
4463
  msgstr ""
4464
 
4465
+ #: ../modules/mycred-module-settings.php:429
4466
  msgid "Empty Log"
4467
  msgstr ""
4468
 
4469
+ #: ../modules/mycred-module-settings.php:435
4470
  msgid "User Meta Key"
4471
  msgstr ""
4472
 
4473
+ #: ../modules/mycred-module-settings.php:444
4474
  msgid "Set all to zero"
4475
  msgstr ""
4476
 
4477
+ #: ../modules/mycred-module-settings.php:444
4478
  msgid "CSV Export"
4479
  msgstr ""
4480
 
4481
+ #: ../modules/mycred-module-settings.php:465
4482
  msgid "Default"
4483
  msgstr ""
4484
 
4485
+ #: ../modules/mycred-module-settings.php:468 ../modules/mycred-module-settings.php:487 ../modules/mycred-module-settings.php:509
4486
  msgid "Meta Key"
4487
  msgstr ""
4488
 
4489
+ #: ../modules/mycred-module-settings.php:506
4490
  msgid "Add New Type"
4491
  msgstr ""
4492
 
4493
+ #: ../modules/mycred-module-settings.php:511
4494
  msgid "A unique ID for this type."
4495
  msgstr ""
4496
 
4497
+ #: ../modules/mycred-module-settings.php:516
4498
  msgid "Menu and page title."
4499
  msgstr ""
4500
 
4501
+ #: ../modules/mycred-module-settings.php:519
4502
  msgid "The meta key will define where your users balances are saved."
4503
  msgstr ""
4504
 
4505
+ #: ../modules/mycred-module-settings.php:536
4506
  msgid "Identify users by"
4507
  msgstr ""
4508
 
4509
+ #: ../modules/mycred-module-settings.php:542
4510
  msgid "User Email"
4511
  msgstr ""
4512
 
4513
+ #: ../modules/mycred-module-settings.php:543
4514
  msgid "User Login"
4515
  msgstr ""
4516
 
4517
+ #: ../modules/mycred-module-settings.php:550
4518
  msgid ""
4519
  "Use ID if you intend to use this export as a backup of your current site while "
4520
  "Email is recommended if you want to export to a different site."
4521
  msgstr ""
4522
 
4523
+ #: ../modules/mycred-module-settings.php:553
4524
  msgid "Import Log Entry"
4525
  msgstr ""
4526
 
4527
+ #: ../modules/mycred-module-settings.php:555
4528
  msgid ""
4529
  "Optional log entry to use if you intend to import this file in a different %s "
4530
  "installation."
4733
  msgstr ""
4734
 
4735
  #: ../plugins/mycred-hook-buddypress.php:377
4736
+ msgid "Daily limit. Use zero for unlimited."
4737
  msgstr ""
4738
 
4739
  #: ../plugins/mycred-hook-buddypress.php:387
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2013-12-18 10:46+0100\n"
6
- "PO-Revision-Date: Mon Mar 24 2014 18:44:21 GMT+0100 (CET)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
10
  "Plural-Forms: nplurals=1; plural=n!=1\n"
@@ -23,105 +23,105 @@ msgstr ""
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: fa_IR"
25
 
26
- #: ../mycred.php:395
27
  msgid "Balance"
28
  msgstr ""
29
 
30
- #: ../mycred.php:420
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
- #: ../mycred.php:472
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
- #: ../mycred.php:518
39
  msgid "About %s"
40
  msgstr "درباره %s"
41
 
42
- #: ../mycred.php:527 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr "\"اعتبار من\""
45
 
46
- #: ../mycred.php:612 ../mycred.php:636 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:881 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:533
47
  msgid "Processing..."
48
  msgstr "در حال پردازش ..."
49
 
50
- #: ../mycred.php:613
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
- #: ../mycred.php:614
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
- #: ../mycred.php:615
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
66
  "غیرقابل بازگشت می باشد !"
67
 
68
- #: ../mycred.php:616
69
  msgid "Done!"
70
  msgstr "انجام شد !"
71
 
72
- #: ../mycred.php:617 ../mycred.php:635 ../mycred.php:653
73
  msgid "Close"
74
  msgstr "بستن"
75
 
76
- #: ../mycred.php:618
77
  msgid "Export users %plural%"
78
  msgstr "خروجی گرفتن از %plural% کاربران"
79
 
80
- #: ../mycred.php:634
81
- msgid "Edit Users %s balance"
82
- msgstr "ویرایش میزان امتیازات %s کاربران"
83
 
84
- #: ../mycred.php:652
85
  msgid "Edit Log Entry"
86
  msgstr ""
87
 
88
- #: ../mycred.php:654
89
  msgid "Updating..."
90
  msgstr ""
91
 
92
- #: ../mycred.php:656
93
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
94
  msgstr ""
95
 
96
- #: ../mycred.php:657
97
  msgid "Log entry updated"
98
  msgstr ""
99
 
100
- #: ../mycred.php:709 ../mycred.php:730 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr "نصب"
103
 
104
- #: ../mycred.php:711 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:176 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
105
  msgid "Settings"
106
  msgstr "تنظیمات"
107
 
108
- #: ../mycred.php:734 ../modules/mycred-module-addons.php:362
109
  msgid "About"
110
  msgstr "درباره"
111
 
112
- #: ../mycred.php:735
113
  msgid "Tutorials"
114
  msgstr "آموزش ها"
115
 
116
- #: ../mycred.php:736
117
  msgid "Codex"
118
  msgstr "مجموعه قوانین و دست نوشت ها"
119
 
120
- #: ../mycred.php:737
121
  msgid "Store"
122
  msgstr "فروشگاه"
123
 
124
- #: ../mycred.php:751
125
  msgid ""
126
  "Make sure to backup your database and files before updating, in case anything "
127
  "goes wrong!"
@@ -135,7 +135,7 @@ msgstr "تابع myCRED_Hook::run() باید در کلاس زیرین ، تنظ
135
  msgid "This Hook has no settings"
136
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1197
139
  msgid "No limit"
140
  msgstr "بدون محدودیت"
141
 
@@ -155,7 +155,7 @@ msgstr "یک بار در هر 7 روز"
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "انتخاب"
161
 
@@ -167,19 +167,19 @@ msgstr "خطای myCRED_Module() . شناسه طرح لازم است !"
167
  msgid "Surprise"
168
  msgstr "غافلگیری"
169
 
170
- #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:104
171
  msgid "click to close"
172
  msgstr "برای بستن کلیک کنید ."
173
 
174
- #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:105
175
  msgid "click to open"
176
  msgstr "برای باز شدن کلیک کنید ."
177
 
178
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:476
179
  msgid "Settings Updated"
180
  msgstr "تنظیمات به روز شد"
181
 
182
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:148
183
  msgid "Banking"
184
  msgstr "بانکداری"
185
 
@@ -210,7 +210,7 @@ msgstr ""
210
  "به کاربران خود بر پایه ی دوره های زمانی معینی %_plural% دهید . همچنین این "
211
  "قابلیت را خواهید داشت که تعیین کنید چند بار این دوره ی زمانی تکرار شود ."
212
 
213
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:461 ../addons/buy-creds/myCRED-addon-buy-creds.php:591 ../includes/mycred-network.php:150 ../modules/mycred-module-addons.php:268 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:584 ../modules/mycred-module-settings.php:299
214
  msgid "Access Denied"
215
  msgstr "دسترسی غیرمجاز می باشد"
216
 
@@ -218,7 +218,7 @@ msgstr "دسترسی غیرمجاز می باشد"
218
  msgid "%s Banking"
219
  msgstr "بانکداری %s"
220
 
221
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:149
222
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
223
  msgstr ""
224
 
@@ -233,7 +233,7 @@ msgstr ""
233
  "چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به مدیر "
234
  "سایت می دهد"
235
 
236
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:537 ../modules/mycred-module-hooks.php:182
237
  msgid "Enable"
238
  msgstr "فعالسازی"
239
 
@@ -301,7 +301,7 @@ msgstr "کمترین میزان"
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
303
 
304
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:356 ../addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:516 ../modules/mycred-module-hooks.php:1396 ../modules/mycred-module-hooks.php:1736 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "نمونه لیست گزارش ( لوگ )"
307
 
@@ -333,7 +333,7 @@ msgstr "هنوز اجرا نشده است"
333
  msgid "Pay Users"
334
  msgstr "پرداخت به کاربران :"
335
 
336
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:641 ../addons/buy-creds/myCRED-addon-buy-creds.php:1138 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:345 ../includes/mycred-admin.php:456
337
  msgid "Amount"
338
  msgstr "مقدار"
339
 
@@ -341,7 +341,7 @@ msgstr "مقدار"
341
  msgid "Can not be zero."
342
  msgstr "عدد صفر مجاز نیست"
343
 
344
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1751
345
  msgid "Interval"
346
  msgstr "فاصله زمانی"
347
 
@@ -398,7 +398,7 @@ msgstr ""
398
  "زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن تعداد دوره ها هم "
399
  "می توانید عدد صفر را وارد فرمایید"
400
 
401
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:562 ../modules/mycred-module-settings.php:380
402
  msgid "Excludes"
403
  msgstr "کاربران استثنا"
404
 
@@ -414,247 +414,247 @@ msgstr ""
414
  msgid "Payment Gateways"
415
  msgstr "درگاه های پرداخت"
416
 
417
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:176
418
  msgid "buyCRED Purchase Log"
419
  msgstr ""
420
 
421
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:177 ../addons/buy-creds/myCRED-addon-buy-creds.php:405 ../addons/buy-creds/myCRED-addon-buy-creds.php:472
422
  msgid "Purchase Log"
423
  msgstr ""
424
 
425
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
426
  msgid "Payments"
427
  msgstr "پرداخت ها"
428
 
429
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:295
430
  msgid "Please login to purchase %_plural%"
431
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
432
 
433
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310
434
  msgid "Gift purchase from %display_name%."
435
  msgstr "خرید هدیه توسط %display_name% ."
436
 
437
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326 ../includes/mycred-overview.php:96 ../includes/mycred-overview.php:103 ../modules/mycred-module-addons.php:159
438
  msgid "buyCRED"
439
  msgstr "خرید سکه یا امتیاز"
440
 
441
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:328 ../addons/ranks/myCRED-addon-ranks.php:608
442
  msgid "Minimum %plural%"
443
  msgstr "کمترین مفدار %plural%"
444
 
445
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:332
446
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
447
  msgstr ""
448
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض روی "
449
  "عدد یک تنظیم شده است ."
450
 
451
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:337 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
452
  msgid "Point Type"
453
  msgstr ""
454
 
455
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349
456
  msgid "Login Template"
457
  msgstr "نمونه طرح ورود به سایت"
458
 
459
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353
460
  msgid "Content to show when a user is not logged in."
461
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
462
 
463
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:363
464
  msgid "Thank You Page"
465
  msgstr "صفحه ی تشکر بابت خرید"
466
 
467
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:366 ../addons/buy-creds/myCRED-addon-buy-creds.php:387
468
  msgid "Custom URL"
469
  msgstr "نشانی اینترنتی متفاوت"
470
 
471
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:371 ../addons/buy-creds/myCRED-addon-buy-creds.php:392
472
  msgid "Page"
473
  msgstr "صفحه"
474
 
475
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:384
476
  msgid "Cancellation Page"
477
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
478
 
479
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:407
480
  msgid "Show seperate log for %_plural% purchases."
481
  msgstr ""
482
 
483
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:409
484
  msgid "Gifting"
485
  msgstr "هدیه دادن"
486
 
487
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:411
488
  msgid "Allow users to buy %_plural% for other users."
489
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
490
 
491
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:412
492
  msgid "Allow users to buy %_plural% for content authors."
493
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
494
 
495
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472
496
  msgid "%s Payment Gateways"
497
  msgstr "درگاه های پرداخت %s"
498
 
499
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472 ../addons/buy-creds/myCRED-addon-buy-creds.php:647
500
  msgid "buyCRED Settings"
501
  msgstr ""
502
 
503
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:478
504
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
505
  msgstr ""
506
  "درگاه پرداختی را که می خواهید کاربرانتان از طریق آن %plural% بخرند را انتخاب "
507
  "کنید ."
508
 
509
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:485
510
  msgid "Last Payment Notification"
511
  msgstr ""
512
 
513
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:487
514
  msgid ""
515
  "Here you can view the last payment confirmation that was sent to buyCRED for "
516
  "processing."
517
  msgstr ""
518
 
519
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
520
  msgid "Details"
521
  msgstr ""
522
 
523
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:493 ../modules/mycred-module-log.php:550
524
  msgid "Time"
525
  msgstr ""
526
 
527
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:638 ../includes/mycred-overview.php:164 ../includes/mycred-overview.php:171 ../modules/mycred-module-addons.php:192
528
  msgid "Gateway"
529
  msgstr "درگاه"
530
 
531
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501 ../addons/buy-creds/myCRED-addon-buy-creds.php:643
532
  msgid "Transaction ID"
533
  msgstr ""
534
 
535
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505
536
  msgid "Outcome"
537
  msgstr ""
538
 
539
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509
540
  msgid "Gateway Log"
541
  msgstr ""
542
 
543
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
544
  msgid "No recorded calls found."
545
  msgstr ""
546
 
547
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:530
548
  msgid "Test Mode"
549
  msgstr "حالت آزمایشی ( تست )"
550
 
551
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:532
552
  msgid "Enabled"
553
  msgstr "فعال شد"
554
 
555
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:535
556
  msgid "Disabled"
557
  msgstr "غیرفعال شد"
558
 
559
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
560
  msgid "Sandbox Mode"
561
  msgstr ""
562
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر نمی "
563
  "گردد )"
564
 
565
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
566
  msgid "Enable for test purchases."
567
  msgstr ""
568
 
569
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:565
570
  msgid "Update Gateway Settings"
571
  msgstr "به روزرسانی تنظیمات درگاه"
572
 
573
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:639 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:451 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:549
574
  msgid "User"
575
  msgstr "کاربر"
576
 
577
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640 ../includes/mycred-log.php:650
578
  msgid "Date"
579
  msgstr "تاریخ"
580
 
581
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
582
  msgid "Payed"
583
  msgstr ""
584
 
585
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
586
  msgid "<strong>buy</strong>CRED Purchase Log"
587
  msgstr ""
588
 
589
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
590
  msgid "Gateway Settings"
591
  msgstr "تنظیمات درگاه پرداخت"
592
 
593
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651
594
  msgid ""
595
  "Only completed purchases are shown here. Purchases that were cancelled or "
596
  "failed are not logged."
597
  msgstr ""
598
 
599
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:760 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:471
600
  msgid "User Missing"
601
  msgstr "یافت نشدن کاربر"
602
 
603
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:817 ../addons/sell-content/myCRED-addon-sell-content.php:1110
604
  msgid "No purchases found"
605
  msgstr "خریدی یافت نشد"
606
 
607
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:889 ../addons/buy-creds/myCRED-addon-buy-creds.php:986
608
  msgid "This Add-on needs to setup before you can use this shortcode."
609
  msgstr ""
610
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
611
  "جانبی را راه اندازی کنید ."
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
614
  msgid "No gateways installed."
615
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
616
 
617
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:908 ../addons/buy-creds/myCRED-addon-buy-creds.php:1005
618
  msgid "Gateway does not exist."
619
  msgstr "درگاه موجود نیست ."
620
 
621
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:944
622
  msgid "Yourself"
623
  msgstr "خودتان"
624
 
625
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1006
626
  msgid "No active gateways found."
627
  msgstr "درگاه پرداخت فعالی یافت نشد ."
628
 
629
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1007
630
  msgid "The selected gateway is not active."
631
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
632
 
633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1043
634
  msgid "Buy with %gateway%"
635
  msgstr ""
636
 
637
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1049 ../addons/sell-content/myCRED-addon-sell-content.php:44
638
  msgid "Buy Now"
639
  msgstr "همین الان بخرید"
640
 
641
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1089
642
  msgid "No users found"
643
  msgstr "کاربری یافت نشد"
644
 
645
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1099
646
  msgid "To"
647
  msgstr "به"
648
 
649
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1116
650
  msgid "Select Amount"
651
  msgstr "مقدار را انتخاب کنید"
652
 
653
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1140
654
  msgid "min."
655
  msgstr "حداقل"
656
 
657
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1148
658
  msgid "Select Gateway"
659
  msgstr "درگاه پرداخت را انتخاب کنید"
660
 
@@ -694,11 +694,11 @@ msgstr "پرداخت"
694
  msgid "Cancel purchase"
695
  msgstr ""
696
 
697
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:338 ../includes/mycred-admin.php:444
698
  msgid "required"
699
  msgstr "ضروری"
700
 
701
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:340 ../includes/mycred-admin.php:446
702
  msgid "optional"
703
  msgstr "اختیاری"
704
 
@@ -806,19 +806,19 @@ msgstr ""
806
  msgid "Validating sale"
807
  msgstr ""
808
 
809
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
810
  msgid "Token mismatch"
811
  msgstr ""
812
 
813
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
814
  msgid "Price mismatch"
815
  msgstr ""
816
 
817
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
818
  msgid "Currency mismatch"
819
  msgstr ""
820
 
821
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
822
  msgid "Duplicate transaction"
823
  msgstr ""
824
 
@@ -928,11 +928,11 @@ msgstr ""
928
  msgid "Full Notifications"
929
  msgstr ""
930
 
931
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:186 ../includes/mycred-network.php:200
932
  msgid "No"
933
  msgstr "خیر"
934
 
935
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:182 ../includes/mycred-network.php:196
936
  msgid "Yes"
937
  msgstr "بلی"
938
 
@@ -1103,7 +1103,7 @@ msgstr ""
1103
  msgid "Checkout Page"
1104
  msgstr "صفحه تسویه حساب"
1105
 
1106
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:751 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:582 ../modules/mycred-module-hooks.php:2296
1107
  msgid "Title"
1108
  msgstr "عنوان"
1109
 
@@ -1205,7 +1205,7 @@ msgstr ""
1205
  "برای اینکه این درگاه به خوبی عمل کند ، باید وارد حساب خود در سامانه Zombaio شده "
1206
  "و آدرس Postback را مطابق آدرس بالا وارد کرده و سپس تایید را بزنید ."
1207
 
1208
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:186 ../includes/mycred-overview.php:193 ../modules/mycred-module-addons.php:170
1209
  msgid "Coupons"
1210
  msgstr ""
1211
 
@@ -1241,7 +1241,7 @@ msgstr ""
1241
  msgid "No coupons found in Trash"
1242
  msgstr ""
1243
 
1244
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:181
1245
  msgid "Email Notices"
1246
  msgstr "اطلاعیه های ایمیلی"
1247
 
@@ -1277,7 +1277,7 @@ msgstr ""
1277
  msgid "Usage"
1278
  msgstr ""
1279
 
1280
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1111 ../modules/mycred-module-hooks.php:1403
1281
  msgid "Limits"
1282
  msgstr "محدودیت ها"
1283
 
@@ -1289,7 +1289,7 @@ msgstr ""
1289
  msgid "not yet used"
1290
  msgstr ""
1291
 
1292
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1841
1293
  msgid "Total"
1294
  msgstr ""
1295
 
@@ -1473,7 +1473,7 @@ msgstr "هیچ اطلاعیه ای یافت نشد"
1473
  msgid "No email notices found in Trash"
1474
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1475
 
1476
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/email-notices/myCRED-addon-email-notices.php:822 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:590
1477
  msgid "General"
1478
  msgstr "بخش عمومی"
1479
 
@@ -1704,129 +1704,55 @@ msgstr "ذخیره"
1704
  msgid "CSS Styling"
1705
  msgstr "صفحه آرایی با CSS"
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:815
1708
  msgid "Site Related"
1709
  msgstr "مرتبط با سایت"
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1712
  msgid "Your websites title"
1713
  msgstr "عنوان وبسایت شما"
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1716
  msgid "Your websites address"
1717
  msgstr "آدرس وبسایت شما"
1718
 
1719
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1720
  msgid "Your websites tagline (description)"
1721
  msgstr "شرح وبسایت شما"
1722
 
1723
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1724
  msgid "Your websites admin email"
1725
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1726
 
1727
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1728
  msgid "Total number of blog members"
1729
  msgstr "تعداد کل کاربران سایت شما"
1730
 
1731
- #: ../addons/email-notices/myCRED-addon-email-notices.php:823
1732
- msgid "Points name in singular format"
1733
- msgstr "نام امتیازات در حالت مفرد ( مثال : سکه )"
1734
-
1735
- #: ../addons/email-notices/myCRED-addon-email-notices.php:824
1736
- msgid "Points name in plural"
1737
- msgstr "نام امتیازات در حالت جمع ( مثال : سکه ها )"
1738
-
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:825
1740
- msgid "Login URL"
1741
- msgstr "آدرس اینترنتی صفحه ورود"
1742
-
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:828 ../includes/mycred-functions.php:597
1744
- msgid "User Related"
1745
- msgstr "مرتبط با کاربر"
1746
-
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:829
1748
- msgid "The users ID"
1749
- msgstr "شناسه ی کاربران"
1750
-
1751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:830
1752
- msgid "The users login name (username)"
1753
- msgstr "نام لوگین شده ی کاربران ( همان نام کاربری است ! )"
1754
-
1755
- #: ../addons/email-notices/myCRED-addon-email-notices.php:831
1756
- msgid "The users display name"
1757
- msgstr "نام نمایشی کاربران ( با نام کاربری متفاوت است )"
1758
-
1759
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
1760
- msgid "The users profile address"
1761
- msgstr "آدرس پروفایل کاربران"
1762
-
1763
- #: ../addons/email-notices/myCRED-addon-email-notices.php:833
1764
- msgid "Link to the users profile address with their display name as title"
1765
- msgstr ""
1766
- "لینک دادن به آدرس پروفایل کاربران با این خصوصیت که نام نمایشی آن ها به جای "
1767
- "عنوان صفحه نمایش داده شود"
1768
-
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:834
1770
- msgid "The users current balance unformated"
1771
- msgstr "میزان امتیاز فعلی کاربران بدون نوع و آرایش"
1772
-
1773
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
1774
- msgid "The users current balance formated"
1775
- msgstr "میزان امتیاز فعلی کاربران با توجه به نوع و آرایش"
1776
-
1777
- #: ../addons/email-notices/myCRED-addon-email-notices.php:837 ../includes/mycred-functions.php:604
1778
- msgid "Post Related"
1779
- msgstr "مرتبط با پست"
1780
-
1781
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
1782
- msgid "Post Title"
1783
- msgstr "نام پست"
1784
-
1785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:839
1786
- msgid "Post URL address"
1787
- msgstr "آدرس اینترنتی پست"
1788
-
1789
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
1790
- msgid "Link to post Post title"
1791
- msgstr "لینک دادن به عنوان پستِ مطلب"
1792
-
1793
- #: ../addons/email-notices/myCRED-addon-email-notices.php:841
1794
- msgid "The post type"
1795
- msgstr "نوع پست"
1796
-
1797
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917 ../addons/email-notices/myCRED-addon-email-notices.php:920
1798
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1799
  msgstr ""
1800
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1801
  "href=\"%1$s\">کلیک فرمایید</a>"
1802
 
1803
- #: ../addons/email-notices/myCRED-addon-email-notices.php:918 ../addons/ranks/myCRED-addon-ranks.php:513
1804
- msgid "Custom field updated"
1805
- msgstr "فیلدهای سفارشی به روز رسانی شدند"
1806
-
1807
- #: ../addons/email-notices/myCRED-addon-email-notices.php:919 ../addons/ranks/myCRED-addon-ranks.php:514
1808
- msgid "Custom filed updated"
1809
- msgstr "فایل های سفارشی به روزرسانی شدند"
1810
-
1811
- #: ../addons/email-notices/myCRED-addon-email-notices.php:922
1812
  msgid "Email Notice Activated"
1813
  msgstr "اطلاعیه فعال شد"
1814
 
1815
- #: ../addons/email-notices/myCRED-addon-email-notices.php:923
1816
  msgid "Email Notice Saved"
1817
  msgstr "اطلاعیه ذخیره شد"
1818
 
1819
- #: ../addons/email-notices/myCRED-addon-email-notices.php:924
1820
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1821
  msgstr ""
1822
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1823
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1824
 
1825
- #: ../addons/email-notices/myCRED-addon-email-notices.php:926
1826
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1827
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
1828
 
1829
- #: ../addons/email-notices/myCRED-addon-email-notices.php:945
1830
  msgid ""
1831
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1832
  "not yet ready to use this email notice!"
@@ -1834,15 +1760,15 @@ msgstr ""
1834
  "به محض اینکه اطلاعیه ای \"انتشار\" یابد ، فعال می شود ! اگر هنوز آماده ی استفاده "
1835
  "از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می گردد ."
1836
 
1837
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1838
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1839
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
1840
 
1841
- #: ../addons/email-notices/myCRED-addon-email-notices.php:949
1842
  msgid "This email notice is active."
1843
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
1844
 
1845
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:452
1846
  msgid "Current Balance"
1847
  msgstr "میزان امتیازات اخیر"
1848
 
@@ -1855,8 +1781,8 @@ msgid "Balance After Purchase"
1855
  msgstr "میزان امتیاز بعد از خرید"
1856
 
1857
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1858
- msgid "<a href=\"%s\">Go Back</a>"
1859
- msgstr "<a href=\"%s\">بازگشت</a>"
1860
 
1861
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1862
  msgid "will be deducted from your account."
@@ -1874,7 +1800,7 @@ msgstr ""
1874
  msgid "Paid"
1875
  msgstr "پرداخت شده"
1876
 
1877
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:52 ../includes/mycred-network.php:53 ../plugins/mycred-hook-badgeOS.php:81
1878
  msgid "myCRED"
1879
  msgstr "افزونه \"اعتبار من\""
1880
 
@@ -1961,11 +1887,9 @@ msgstr "سهم سود"
1961
  msgid "Percentage"
1962
  msgstr "درصد"
1963
 
1964
- #: ../addons/gateway/carts/mycred-marketpress.php:412
1965
- msgid "Option to share sales with the product owner. User zero to disable"
1966
  msgstr ""
1967
- "حق انتخابِ تقسیم مبلغ فروش با صاحب خود محصول . ( یه جورایی می شه گفت همکاری در "
1968
- "فروش ) از عدد صفر برای غیرفعالسازی این امکان استفاده فرمایید ."
1969
 
1970
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1971
  msgid "Messages"
@@ -2093,7 +2017,7 @@ msgstr "نمایش در صفحه ی تسویه حساب"
2093
  msgid "Show in Cart and on Checkout Page"
2094
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2095
 
2096
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:471 ../modules/mycred-module-settings.php:490 ../modules/mycred-module-settings.php:513
2097
  msgid "Label"
2098
  msgstr "برچسب ( اتیکت )"
2099
 
@@ -2101,10 +2025,6 @@ msgstr "برچسب ( اتیکت )"
2101
  msgid "Order Total in %_plural%"
2102
  msgstr "سفارش کل به واحد %_plural%"
2103
 
2104
- #: ../addons/gateway/carts/mycred-woocommerce.php:159
2105
- msgid "Option to share a percentage of the sale with the product owner."
2106
- msgstr "امکان تقسیم درصد فروش با صاحب محصول ."
2107
-
2108
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
2109
  msgid "Log entry template for profit sharing."
2110
  msgstr ""
@@ -2186,14 +2106,6 @@ msgstr "هر 1 %s معادل چند %s است ؟"
2186
  msgid "Payout"
2187
  msgstr "پرداخت"
2188
 
2189
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2190
- msgid ""
2191
- "Option to share a percentage of the sale with the product owner (post author). "
2192
- "User zero to disable."
2193
- msgstr ""
2194
- "امکان تقسیم درصد فروش با صاحب محصول ( نویسنده ی پست ) . برای غیرفعال کردن این "
2195
- "ویژگی از عدد صفر استفاده فرمایید ."
2196
-
2197
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2198
  msgid "Instructions"
2199
  msgstr "دستورالعمل ها"
@@ -2286,17 +2198,11 @@ msgstr ""
2286
  msgid "Users must be logged in to use this gateway!"
2287
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2288
 
2289
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2290
- msgid "Option to share sales with the event owner (post author). Use zero to disable."
2291
- msgstr ""
2292
- "امکان تقسیم سهم فروش با صاحب رویداد ( نویسنده ی پست ) . از عدد صفر برای "
2293
- "غیرفعالسازی این ویژگی استفاده کنید ."
2294
-
2295
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2296
  msgid "Log"
2297
  msgstr "لیست گزارش ( لوگ )"
2298
 
2299
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:457
2300
  msgid "Log Entry"
2301
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2302
 
@@ -2326,7 +2232,7 @@ msgstr ""
2326
  msgid "Message to show visitors (users not logged in) on the payment page."
2327
  msgstr ""
2328
 
2329
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:527
2330
  msgid "Update Settings"
2331
  msgstr "به روزرسانی تنظیمات"
2332
 
@@ -2372,7 +2278,7 @@ msgstr "شما قادر به پرداخت توسط این درگاه نیستی
2372
  msgid "Reject"
2373
  msgstr "رد کردن"
2374
 
2375
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:509 ../modules/mycred-module-settings.php:475 ../modules/mycred-module-settings.php:494
2376
  msgid "Delete"
2377
  msgstr "پاک کردن"
2378
 
@@ -2400,13 +2306,9 @@ msgstr "استردادی ها"
2400
 
2401
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2402
  msgid ""
2403
- "The percentage of the paid amount to refund if a user cancells their booking. "
2404
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2405
  msgstr ""
2406
- " به هنگامی که کاربر بلیت رزو شده ی خود را کنسل کند ، درصدی از وجه پرداخت شده "
2407
- "برای استرداد در نظر گرفته می شود . از عدد صفر برای عدم استفاده از ویژگی استرداد "
2408
- "بلیت استفاده کنید . هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت "
2409
- "نمی شود ."
2410
 
2411
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
2412
  msgid "Log Templates"
@@ -2469,7 +2371,7 @@ msgstr ""
2469
  "گرفته می شود . از عدد صفر برای عدم استفاده از ویژگی استرداد بلیت استفاده کنید . "
2470
  "هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
2471
 
2472
- #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:203
2473
  msgid "Notifications"
2474
  msgstr "آگاه سازها"
2475
 
@@ -2522,11 +2424,11 @@ msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! ای
2522
  msgid "Are you sure you want to re-assign user ranks?"
2523
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
2524
 
2525
- #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:746 ../addons/ranks/myCRED-addon-ranks.php:942 ../modules/mycred-module-addons.php:215
2526
  msgid "Ranks"
2527
  msgstr "رنک و مدال ها"
2528
 
2529
- #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:441 ../addons/ranks/myCRED-addon-ranks.php:457 ../addons/ranks/myCRED-addon-ranks.php:552
2530
  msgid "Rank"
2531
  msgstr "رنک و مدال"
2532
 
@@ -2558,125 +2460,125 @@ msgstr "هیچ مدالی یافت نشد"
2558
  msgid "No ranks found in Trash"
2559
  msgstr "هیچ رنکی در زباله دان یافت نشد"
2560
 
2561
- #: ../addons/ranks/myCRED-addon-ranks.php:316
2562
  msgid "Completed - Total of %d users effected"
2563
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
2564
 
2565
- #: ../addons/ranks/myCRED-addon-ranks.php:318
2566
  msgid "Log is Empty"
2567
  msgstr "لیست گزارش ( لوگ ) خالیست !"
2568
 
2569
- #: ../addons/ranks/myCRED-addon-ranks.php:512 ../addons/ranks/myCRED-addon-ranks.php:515
2570
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2571
  msgstr "مدال به روزرسانی شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک کنید</a> ."
2572
 
2573
- #: ../addons/ranks/myCRED-addon-ranks.php:517
2574
  msgid "Rank Activated"
2575
  msgstr "مدال فعال شد"
2576
 
2577
- #: ../addons/ranks/myCRED-addon-ranks.php:518
2578
  msgid "Rank Saved"
2579
  msgstr "مدال ذخیره شد"
2580
 
2581
- #: ../addons/ranks/myCRED-addon-ranks.php:519
2582
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2583
  msgstr ""
2584
  "مدال ، برای تایید ، ثبت شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک "
2585
  "کنید</a> ."
2586
 
2587
- #: ../addons/ranks/myCRED-addon-ranks.php:521
2588
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2589
  msgstr "مدال برنامه ریزی شد برای : <strong>%1$s</strong>"
2590
 
2591
- #: ../addons/ranks/myCRED-addon-ranks.php:578 ../addons/ranks/myCRED-addon-ranks.php:631
2592
  msgid "Rank Title"
2593
  msgstr "عنوان مدال"
2594
 
2595
- #: ../addons/ranks/myCRED-addon-ranks.php:579
2596
  msgid "Logo"
2597
  msgstr "لوگو"
2598
 
2599
- #: ../addons/ranks/myCRED-addon-ranks.php:580
2600
  msgid "Requirement"
2601
  msgstr "پیش نیاز"
2602
 
2603
- #: ../addons/ranks/myCRED-addon-ranks.php:581 ../modules/mycred-module-settings.php:438
2604
  msgid "Users"
2605
  msgstr "کاربران"
2606
 
2607
- #: ../addons/ranks/myCRED-addon-ranks.php:597
2608
  msgid "No Logo Set"
2609
  msgstr "لوگویی ست نشده است"
2610
 
2611
- #: ../addons/ranks/myCRED-addon-ranks.php:606 ../addons/ranks/myCRED-addon-ranks.php:611
2612
  msgid "Any Value"
2613
  msgstr "هر مقداری"
2614
 
2615
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2616
  msgid "Maximum %plural%"
2617
  msgstr "بیشترین مقدار %plural%"
2618
 
2619
- #: ../addons/ranks/myCRED-addon-ranks.php:644
2620
  msgid "Rank Settings"
2621
  msgstr "تنظیمات مدال"
2622
 
2623
- #: ../addons/ranks/myCRED-addon-ranks.php:666
2624
  msgid "Minimum %plural% to reach this rank"
2625
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
2626
 
2627
- #: ../addons/ranks/myCRED-addon-ranks.php:670
2628
  msgid "Maximum %plural% to be included in this rank"
2629
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
2630
 
2631
- #: ../addons/ranks/myCRED-addon-ranks.php:677
2632
  msgid "All Published Ranks"
2633
  msgstr "همه ی مدال های منتشر شده"
2634
 
2635
- #: ../addons/ranks/myCRED-addon-ranks.php:683 ../addons/ranks/myCRED-addon-ranks.php:685
2636
  msgid "Not Set"
2637
  msgstr "تنظیم نشده"
2638
 
2639
- #: ../addons/ranks/myCRED-addon-ranks.php:690
2640
  msgid "No Ranks found"
2641
  msgstr "مدالی پیدا نشد"
2642
 
2643
- #: ../addons/ranks/myCRED-addon-ranks.php:748
2644
  msgid "Rank Features"
2645
  msgstr "ویژگی های مدال"
2646
 
2647
- #: ../addons/ranks/myCRED-addon-ranks.php:752
2648
  msgid "%plural% requirement"
2649
  msgstr "پیش نیاز %plural%"
2650
 
2651
- #: ../addons/ranks/myCRED-addon-ranks.php:753
2652
  msgid "Featured Image (Logo)"
2653
  msgstr "عکس شاخص ( لوگو )"
2654
 
2655
- #: ../addons/ranks/myCRED-addon-ranks.php:754
2656
  msgid "Content"
2657
  msgstr "محتوا"
2658
 
2659
- #: ../addons/ranks/myCRED-addon-ranks.php:755
2660
  msgid "Excerpt"
2661
  msgstr "توضیح کوتاه ( نقل قول )"
2662
 
2663
- #: ../addons/ranks/myCRED-addon-ranks.php:756
2664
  msgid "Comments"
2665
  msgstr "دیدگاه ها"
2666
 
2667
- #: ../addons/ranks/myCRED-addon-ranks.php:757
2668
  msgid "Page Attributes"
2669
  msgstr "خصوصیت های صفحه"
2670
 
2671
- #: ../addons/ranks/myCRED-addon-ranks.php:758
2672
  msgid "Custom Fields"
2673
  msgstr "فیلدهای اضافی"
2674
 
2675
- #: ../addons/ranks/myCRED-addon-ranks.php:761
2676
  msgid "Public"
2677
  msgstr "عمومی"
2678
 
2679
- #: ../addons/ranks/myCRED-addon-ranks.php:765
2680
  msgid ""
2681
  "If you want to create a template archive for each rank, you must select to have "
2682
  "ranks public. Defaults to disabled."
@@ -2684,25 +2586,25 @@ msgstr ""
2684
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال ها "
2685
  "عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
2686
 
2687
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2688
  msgid "Rank Basis"
2689
  msgstr "روش مدال دهی"
2690
 
2691
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2692
  msgid "Users are ranked according to their current balance."
2693
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
2694
 
2695
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2696
  msgid ""
2697
  "Users are ranked according to the total amount of %_plural% they have "
2698
  "accumulated."
2699
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
2700
 
2701
- #: ../addons/ranks/myCRED-addon-ranks.php:778 ../addons/ranks/myCRED-addon-ranks.php:783
2702
  msgid "Calculate Totals"
2703
  msgstr "محاسبه ی کل امتیازها"
2704
 
2705
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2706
  msgid ""
2707
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2708
  "the users current balance will be used as a starting point."
@@ -2711,7 +2613,7 @@ msgstr ""
2711
  "اگر از این کلید استفاده نکنید ، مبنای امتیازات ، همین امتیاز فعلی کاربران می "
2712
  "باشد ."
2713
 
2714
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2715
  msgid ""
2716
  "Once a users total has been calculated, they will be assigned to their "
2717
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -2721,7 +2623,7 @@ msgstr ""
2721
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا مدال "
2722
  "های خودتان را پیاده سازی کنید ."
2723
 
2724
- #: ../addons/ranks/myCRED-addon-ranks.php:782
2725
  msgid ""
2726
  "Depending on your log size and number of users this process may take a while. "
2727
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
@@ -2731,27 +2633,27 @@ msgstr ""
2731
  "بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر روی \"به "
2732
  "روزرسانی تنظیمات\" کلیک نفرمایید ."
2733
 
2734
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2735
  msgid "Archive URL"
2736
  msgstr "نشانی اینترنتی آرشیو"
2737
 
2738
- #: ../addons/ranks/myCRED-addon-ranks.php:791
2739
  msgid "Ignored if Ranks are not public"
2740
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
2741
 
2742
- #: ../addons/ranks/myCRED-addon-ranks.php:794
2743
  msgid "Display Order"
2744
  msgstr "ترتیب نمایش"
2745
 
2746
- #: ../addons/ranks/myCRED-addon-ranks.php:801
2747
  msgid "Ascending - Lowest rank to highest"
2748
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
2749
 
2750
- #: ../addons/ranks/myCRED-addon-ranks.php:802
2751
  msgid "Descending - Highest rank to lowest"
2752
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
2753
 
2754
- #: ../addons/ranks/myCRED-addon-ranks.php:811
2755
  msgid ""
2756
  "Select in what order ranks should be displayed in your admin area and/or front "
2757
  "if ranks are \"Public\""
@@ -2759,47 +2661,47 @@ msgstr ""
2759
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش داده "
2760
  "شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
2761
 
2762
- #: ../addons/ranks/myCRED-addon-ranks.php:821 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2763
  msgid "Do not show."
2764
  msgstr "عدم نمایش"
2765
 
2766
- #: ../addons/ranks/myCRED-addon-ranks.php:822 ../modules/mycred-module-buddypress.php:365
2767
  msgid "Include in Profile Header."
2768
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
2769
 
2770
- #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:366
2771
  msgid "Include under the \"Profile\" tab"
2772
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
2773
 
2774
- #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:367
2775
  msgid "Include under the \"Profile\" tab and Profile Header."
2776
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
2777
 
2778
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2779
  msgid "Rank in BuddyPress"
2780
  msgstr "مدال در بادی پرس"
2781
 
2782
- #: ../addons/ranks/myCRED-addon-ranks.php:895
2783
  msgid "Script Communication Error"
2784
  msgstr "خطا در ارتباط با اسکریپت"
2785
 
2786
- #: ../addons/ranks/myCRED-addon-ranks.php:945
2787
  msgid "Rank Post Type"
2788
  msgstr "نوع پست مدال"
2789
 
2790
- #: ../addons/ranks/myCRED-addon-ranks.php:949
2791
  msgid "No. of ranks"
2792
  msgstr "تعداد مدال ها"
2793
 
2794
- #: ../addons/ranks/myCRED-addon-ranks.php:953 ../modules/mycred-module-log.php:370 ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.php:442
2795
  msgid "Actions"
2796
  msgstr "عملیات ها"
2797
 
2798
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2799
  msgid "Remove All Ranks"
2800
  msgstr "پاکسازی همه ی مدال ها"
2801
 
2802
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2803
  msgid "Assign Ranks to Users"
2804
  msgstr "تخصیص دادن مدال به کاربران"
2805
 
@@ -2815,7 +2717,7 @@ msgstr "مدالی یافت نشد"
2815
  msgid "No users found with this rank"
2816
  msgstr "کاربری با این مدال یافت نشد"
2817
 
2818
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:415 ../includes/mycred-shortcodes.php:476 ../includes/mycred-shortcodes.php:480 ../includes/mycred-shortcodes.php:484
2819
  msgid "error"
2820
  msgstr "خطا"
2821
 
@@ -2851,7 +2753,7 @@ msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز ان
2851
  msgid "Pay Content Author."
2852
  msgstr "پرداخت به نویسنده ی محتوا"
2853
 
2854
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:139 ../includes/mycred-overview.php:146 ../modules/mycred-module-addons.php:226
2855
  msgid "Sell Content"
2856
  msgstr "فروش محتوا"
2857
 
@@ -3043,7 +2945,7 @@ msgstr "ایمیل کاربر ( user_email )"
3043
  msgid "Transfer %plural%"
3044
  msgstr "جابجایی %plural%"
3045
 
3046
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:588 ../modules/mycred-module-settings.php:456
3047
  msgid "Point Types"
3048
  msgstr ""
3049
 
@@ -3257,67 +3159,83 @@ msgstr ""
3257
  "ایمیل های زیر به اطلاع بنده برسونید .<br>mani@dragon-age."
3258
  "ir<br>ashk_ghoghnoos_2011@yahoo.com<br><br>با احترام / مانی اختر"
3259
 
3260
- #: ../includes/mycred-admin.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3261
  msgid "User is excluded"
3262
  msgstr "کاربر بن شد !"
3263
 
3264
- #: ../includes/mycred-admin.php:78
3265
  msgid "Log Entry can not be empty"
3266
  msgstr "داده های لیست گزارش نباید خالی باشد"
3267
 
3268
- #: ../includes/mycred-admin.php:82
3269
  msgid "Amount can not be zero"
3270
  msgstr "این مقدار نباید صفر باشد"
3271
 
3272
- #: ../includes/mycred-admin.php:105
3273
  msgid "Failed to update this uses balance."
3274
  msgstr ""
3275
 
3276
- #: ../includes/mycred-admin.php:240
3277
  msgid "Excluded"
3278
  msgstr "بن شده ( محروم شده )"
3279
 
3280
- #: ../includes/mycred-admin.php:253 ../modules/mycred-module-log.php:252 ../modules/mycred-module-log.php:253
3281
  msgid "History"
3282
  msgstr "لیست تغییرات"
3283
 
3284
- #: ../includes/mycred-admin.php:254
3285
  msgid "Adjust"
3286
  msgstr "تطبیق"
3287
 
3288
- #: ../includes/mycred-admin.php:309 ../includes/mycred-admin.php:368
3289
  msgid "%singular% balance"
3290
  msgstr ""
3291
 
3292
- #: ../includes/mycred-admin.php:333
3293
  msgid "Adjust Your Balance"
3294
  msgstr "میزان امتیازتان را تنظیم کنید ( تطبیق دهید )"
3295
 
3296
- #: ../includes/mycred-admin.php:335
3297
  msgid "Adjust Users Balance"
3298
  msgstr "تطبیق دادن میزان امتیاز کاربران"
3299
 
3300
- #: ../includes/mycred-admin.php:346
3301
  msgid "Log description for adjustment"
3302
  msgstr "شرح لیست گزارش برای تطبیق"
3303
 
3304
- #: ../includes/mycred-admin.php:349
3305
  msgid "Update"
3306
  msgstr "به روزرسانی"
3307
 
3308
- #: ../includes/mycred-admin.php:350
3309
  msgid "Description is required!"
3310
  msgstr "شرح ضروری ست !"
3311
 
3312
- #: ../includes/mycred-admin.php:450
3313
  msgid "ID"
3314
  msgstr "شناسه"
3315
 
3316
- #: ../includes/mycred-admin.php:456
3317
  msgid "A positive or negative value"
3318
  msgstr "مقدار مثبت یا منفی"
3319
 
3320
- #: ../includes/mycred-admin.php:458
3321
  msgid "Update Balance"
3322
  msgstr "به روزرسانی میزان امتیاز"
3323
 
@@ -3329,67 +3247,75 @@ msgstr "امتیاز"
3329
  msgid "Points"
3330
  msgstr "امتیازها"
3331
 
3332
- #: ../includes/mycred-functions.php:396
3333
  msgid "Deleted"
3334
  msgstr "پاک شده"
3335
 
3336
- #: ../includes/mycred-functions.php:533
3337
  msgid "Deleted Item"
3338
  msgstr "موردهای پاک شده"
3339
 
3340
- #: ../includes/mycred-functions.php:611
 
 
 
 
 
 
 
 
3341
  msgid "Comment Related"
3342
  msgstr ""
3343
 
3344
- #: ../includes/mycred-functions.php:618
3345
  msgid "Widget Related"
3346
  msgstr ""
3347
 
3348
- #: ../includes/mycred-functions.php:625
3349
  msgid "Amount Related"
3350
  msgstr ""
3351
 
3352
- #: ../includes/mycred-functions.php:632
3353
  msgid "Video Related"
3354
  msgstr ""
3355
 
3356
- #: ../includes/mycred-functions.php:643
3357
  msgid "and"
3358
  msgstr ""
3359
 
3360
- #: ../includes/mycred-functions.php:645
3361
  msgid "Available Template Tags:"
3362
  msgstr ""
3363
 
3364
- #: ../includes/mycred-functions.php:1568
3365
  msgid "Entire Log"
3366
  msgstr ""
3367
 
3368
- #: ../includes/mycred-functions.php:1573 ../includes/mycred-functions.php:1574
3369
  msgid "Displayed Rows"
3370
  msgstr ""
3371
 
3372
- #: ../includes/mycred-functions.php:1578
3373
  msgid "Search Results"
3374
  msgstr ""
3375
 
3376
- #: ../includes/mycred-functions.php:1579
3377
  msgid "My Entire Log"
3378
  msgstr ""
3379
 
3380
- #: ../includes/mycred-functions.php:1699
3381
  msgid "ref empty"
3382
  msgstr "ارجاع ( استرداد ) خالی می باشد"
3383
 
3384
- #: ../includes/mycred-functions.php:1707
3385
  msgid "incorrect user id format"
3386
  msgstr "فرمت نامعتبر شناسه ی کاربر"
3387
 
3388
- #: ../includes/mycred-functions.php:1720
3389
  msgid "incorrect unix timestamp (from):"
3390
  msgstr ""
3391
 
3392
- #: ../includes/mycred-functions.php:1729
3393
  msgid "incorrect unix timestamp (to):"
3394
  msgstr ""
3395
 
@@ -3402,14 +3328,22 @@ msgid "Import log entries via a CSV file."
3402
  msgstr ""
3403
 
3404
  #: ../includes/mycred-importer.php:43
 
 
 
 
 
 
 
 
3405
  msgid "%s CubePoints Import"
3406
  msgstr ""
3407
 
3408
- #: ../includes/mycred-importer.php:44 ../includes/importers/mycred-cubepoints.php:344
3409
  msgid "Import CubePoints log entries and / or balances."
3410
  msgstr ""
3411
 
3412
- #: ../includes/mycred-importer.php:60
3413
  msgid "No CubePoints log exists."
3414
  msgstr ""
3415
 
@@ -3433,27 +3367,27 @@ msgstr ""
3433
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3434
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
3435
 
3436
- #: ../includes/mycred-install.php:246
3437
  msgid "myCRED needs your attention."
3438
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
3439
 
3440
- #: ../includes/mycred-install.php:246
3441
  msgid "Run Setup"
3442
  msgstr "اجرای نصب"
3443
 
3444
- #: ../includes/mycred-install.php:258 ../includes/mycred-install.php:259
3445
  msgid "myCRED Setup"
3446
  msgstr "راه اندازی \"اعتبار من\""
3447
 
3448
- #: ../includes/mycred-install.php:388
3449
  msgid "%s Setup"
3450
  msgstr ""
3451
 
3452
- #: ../includes/mycred-install.php:390
3453
  msgid "Step"
3454
  msgstr "گام"
3455
 
3456
- #: ../includes/mycred-install.php:414
3457
  msgid ""
3458
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3459
  "format, layout and security settings."
@@ -3461,79 +3395,79 @@ msgstr ""
3461
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید بود "
3462
  "تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3463
 
3464
- #: ../includes/mycred-install.php:415
3465
  msgid "Begin Setup"
3466
  msgstr "آغاز نصب"
3467
 
3468
- #: ../includes/mycred-install.php:470
3469
  msgid "Select the format you want to use for your points."
3470
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
3471
 
3472
- #: ../includes/mycred-install.php:471 ../includes/mycred-widgets.php:223
3473
  msgid "Format"
3474
  msgstr "طرح ( فرمت )"
3475
 
3476
- #: ../includes/mycred-install.php:474
3477
  msgid "Separators"
3478
  msgstr "جداکننده ها"
3479
 
3480
- #: ../includes/mycred-install.php:484
3481
  msgid "Decimals"
3482
  msgstr "اعداد اعشاری"
3483
 
3484
- #: ../includes/mycred-install.php:486
3485
  msgid "Use zero for no decimals."
3486
  msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
3487
 
3488
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3489
  msgid "Presentation"
3490
  msgstr "چگونگی نمایش امتیازها"
3491
 
3492
- #: ../includes/mycred-install.php:492 ../modules/mycred-module-settings.php:330
3493
  msgid "Name (Singular)"
3494
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
3495
 
3496
- #: ../includes/mycred-install.php:496 ../modules/mycred-module-settings.php:335
3497
  msgid "Name (Plural)"
3498
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
3499
 
3500
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:346
3501
  msgid "Prefix"
3502
  msgstr "پیشوند"
3503
 
3504
- #: ../includes/mycred-install.php:510 ../modules/mycred-module-settings.php:354
3505
  msgid "Suffix"
3506
  msgstr "پسوند"
3507
 
3508
- #: ../includes/mycred-install.php:514
3509
  msgid "Cancel Setup"
3510
  msgstr "لغو عملیات راه اندازی"
3511
 
3512
- #: ../includes/mycred-install.php:514
3513
  msgid "Cancel"
3514
  msgstr "لغو"
3515
 
3516
- #: ../includes/mycred-install.php:514 ../includes/mycred-install.php:584
3517
  msgid "Next"
3518
  msgstr "گام بعدی"
3519
 
3520
- #: ../includes/mycred-install.php:546 ../modules/mycred-module-settings.php:362
3521
  msgid "Security"
3522
  msgstr "امنیت"
3523
 
3524
- #: ../includes/mycred-install.php:549
3525
  msgid "Edit Settings Capability"
3526
  msgstr "ویرایش تنظیمات ظرفیتی"
3527
 
3528
- #: ../includes/mycred-install.php:553
3529
  msgid "Edit Users %plural% Capability"
3530
  msgstr "ویرایش ظرفیت %plural% کاربر"
3531
 
3532
- #: ../includes/mycred-install.php:557 ../modules/mycred-module-settings.php:375
3533
  msgid "Maximum %plural% payouts"
3534
  msgstr "بیشترین پرداخت %plural%"
3535
 
3536
- #: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:377
3537
  msgid ""
3538
  "As an added security, you can set the maximum amount a user can gain or loose "
3539
  "in a single instance. If used, make sure this is the maximum amount a user "
@@ -3545,43 +3479,43 @@ msgstr ""
3545
  "که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم تعیین بکنید ."
3546
  " برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3547
 
3548
- #: ../includes/mycred-install.php:566 ../modules/mycred-module-settings.php:384
3549
  msgid "Exclude those who can \"Edit Settings\"."
3550
  msgstr ""
3551
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می خواهید "
3552
  "از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی آن ها را "
3553
  "در این کادر وارد فرمایید . )"
3554
 
3555
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:388
3556
  msgid "Exclude those who can \"Edit Users %plural%\"."
3557
  msgstr ""
3558
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( اگر "
3559
  "می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3560
  "آن ها را در این کادر وارد فرمایید . )"
3561
 
3562
- #: ../includes/mycred-install.php:573 ../modules/mycred-module-settings.php:392
3563
  msgid "Exclude the following user IDs:"
3564
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
3565
 
3566
- #: ../includes/mycred-install.php:577 ../modules/mycred-module-settings.php:397
3567
  msgid "User Deletions"
3568
  msgstr ""
3569
 
3570
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:400
3571
  msgid "Delete log entries when user is deleted."
3572
  msgstr ""
3573
 
3574
- #: ../includes/mycred-install.php:602
3575
  msgid "Ready"
3576
  msgstr "آماده"
3577
 
3578
- #: ../includes/mycred-install.php:603
3579
  msgid "Almost done! Click the button below to finish this setup."
3580
  msgstr ""
3581
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
3582
  "پایان ببرید ."
3583
 
3584
- #: ../includes/mycred-install.php:604
3585
  msgid "Install & Run"
3586
  msgstr "نصب و راه اندازی"
3587
 
@@ -3622,7 +3556,7 @@ msgstr ""
3622
  msgid "Show all references"
3623
  msgstr "نمایش تمام منابع"
3624
 
3625
- #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:540
3626
  msgid "User ID"
3627
  msgstr "شناسه کاربر"
3628
 
@@ -3688,31 +3622,31 @@ msgstr "این هفته"
3688
  msgid "This Month"
3689
  msgstr "این ماه"
3690
 
3691
- #: ../includes/mycred-network.php:61 ../includes/mycred-network.php:62
3692
  msgid "Network Settings"
3693
  msgstr "تنظیمات ظبکه"
3694
 
3695
- #: ../includes/mycred-network.php:159
3696
  msgid "%s Network"
3697
  msgstr "شبکه %s"
3698
 
3699
- #: ../includes/mycred-network.php:165
3700
  msgid "Note! %s has not yet been setup."
3701
  msgstr "توجه ! %s هنوز نصب نشده است ."
3702
 
3703
- #: ../includes/mycred-network.php:169
3704
  msgid "Network Settings Updated"
3705
  msgstr "تنظیمات شبکه به روزرسانی شد"
3706
 
3707
- #: ../includes/mycred-network.php:171
3708
  msgid "Configure network settings for %s."
3709
  msgstr "ویرایش تنظیمات شبکه برای %s ."
3710
 
3711
- #: ../includes/mycred-network.php:178
3712
  msgid "Master Template"
3713
  msgstr "الگوی اصلی"
3714
 
3715
- #: ../includes/mycred-network.php:189
3716
  msgid ""
3717
  "If enabled, %s will use your main site's settings for all other sites in your "
3718
  "network."
@@ -3720,49 +3654,49 @@ msgstr ""
3720
  "اگر فعال باشد ، %s از تنظیمات سایت اصلی شما برای دیگر سایت های درون شبکه تان "
3721
  "استفاده خواهد کرد ."
3722
 
3723
- #: ../includes/mycred-network.php:192
3724
  msgid "Central Logging"
3725
  msgstr "تهیه لیست گزارش مرکزی"
3726
 
3727
- #: ../includes/mycred-network.php:203
3728
  msgid "If enabled, %s will log all site actions in your main site's log."
3729
  msgstr "اگر فعال باشد ، %s تمام اعمال انجام شده ی سایت ها را در سایت مرکزی لیست می کند ."
3730
 
3731
- #: ../includes/mycred-network.php:206
3732
  msgid "Site Block"
3733
  msgstr "مسدود کردن سایت"
3734
 
3735
- #: ../includes/mycred-network.php:210
3736
  msgid "Comma separated list of blog ids where %s is to be disabled."
3737
  msgstr ""
3738
  "لیستی از شناسه ی سایت هایی که با ویرگول از هم جدا شده و %s آن ها را غیرفعال می "
3739
  "کند ."
3740
 
3741
- #: ../includes/mycred-network.php:219
3742
  msgid "Save Network Settings"
3743
  msgstr "ذخیره تنظیمات شبکه"
3744
 
3745
- #: ../includes/mycred-overview.php:23
3746
  msgid "%s Overview"
3747
  msgstr ""
3748
 
3749
- #: ../includes/mycred-overview.php:76
3750
  msgid "Total amount in circulation"
3751
  msgstr ""
3752
 
3753
- #: ../includes/mycred-overview.php:79
3754
  msgid "Awarded"
3755
  msgstr ""
3756
 
3757
- #: ../includes/mycred-overview.php:82
3758
  msgid "Deducted"
3759
  msgstr ""
3760
 
3761
- #: ../includes/mycred-overview.php:118 ../includes/mycred-overview.php:125 ../modules/mycred-module-addons.php:237
3762
  msgid "Transfers"
3763
  msgstr ""
3764
 
3765
- #: ../includes/mycred-overview.php:206
3766
  msgid "Manual"
3767
  msgstr ""
3768
 
@@ -3843,31 +3777,31 @@ msgstr ""
3843
  msgid "Leaderboard is empty."
3844
  msgstr "لیست برترین ها خالیست"
3845
 
3846
- #: ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:476
3847
  msgid "Amount missing!"
3848
  msgstr "مقدار موجود نیست"
3849
 
3850
- #: ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:484
3851
  msgid "Log Template Missing!"
3852
  msgstr "نمونه لوگ موجود نیست"
3853
 
3854
- #: ../includes/mycred-shortcodes.php:415
3855
  msgid "Anchor missing URL!"
3856
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
3857
 
3858
- #: ../includes/mycred-shortcodes.php:480
3859
  msgid "User ID missing for recipient."
3860
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
3861
 
3862
- #: ../includes/mycred-shortcodes.php:534
3863
  msgid "Sent"
3864
  msgstr "ارسال شده"
3865
 
3866
- #: ../includes/mycred-shortcodes.php:535
3867
  msgid "Error - Try Again"
3868
  msgstr "خطا - لطفا مجددا تلاش کنید"
3869
 
3870
- #: ../includes/mycred-shortcodes.php:643
3871
  msgid "A video ID is required for this shortcode"
3872
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
3873
 
@@ -3887,7 +3821,7 @@ msgstr "میزان امتیازات من"
3887
  msgid "%plural% History"
3888
  msgstr "گزارش جابجایی %plural%"
3889
 
3890
- #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:578
3891
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3892
  msgstr "برای دیدن میزان امتیازات خود ، لطفا <a href=\"%login_url_here%\">وارد</a> شوید ."
3893
 
@@ -3919,11 +3853,11 @@ msgstr "تعداد یکپارچه سازی ها"
3919
  msgid "Row layout"
3920
  msgstr "طرح ردیف ( سطر )"
3921
 
3922
- #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:602
3923
  msgid "Show message when not logged in"
3924
  msgstr "نمایش پیام در زمان هایی که کاربر لوگین نکرده باشد"
3925
 
3926
- #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:603
3927
  msgid "Message"
3928
  msgstr "پیام"
3929
 
@@ -3971,19 +3905,19 @@ msgid ""
3971
  "at the end with their current position."
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-widgets.php:490
3975
  msgid "Shows the current users balances for each point type."
3976
  msgstr ""
3977
 
3978
- #: ../includes/mycred-widgets.php:492
3979
  msgid "(%s) Wallet"
3980
  msgstr ""
3981
 
3982
- #: ../includes/mycred-widgets.php:572
3983
  msgid "My Wallet"
3984
  msgstr ""
3985
 
3986
- #: ../includes/mycred-widgets.php:594
3987
  msgid "Row Layout"
3988
  msgstr ""
3989
 
@@ -4001,11 +3935,11 @@ msgid ""
4001
  "imported. <strong>%d</strong> was skipped."
4002
  msgstr ""
4003
 
4004
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4005
  msgid "View Log"
4006
  msgstr ""
4007
 
4008
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4009
  msgid "Import More"
4010
  msgstr ""
4011
 
@@ -4045,15 +3979,15 @@ msgstr ""
4045
  msgid "Import Log"
4046
  msgstr ""
4047
 
4048
- #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
4049
  msgid "Sorry, there has been an error."
4050
  msgstr ""
4051
 
4052
- #: ../includes/importers/mycred-log-entries.php:82
4053
  msgid "The file does not exist, please try again."
4054
  msgstr ""
4055
 
4056
- #: ../includes/importers/mycred-log-entries.php:127
4057
  msgid "The CSV is invalid."
4058
  msgstr ""
4059
 
@@ -4065,37 +3999,51 @@ msgstr ""
4065
  msgid "Import log entries from a CSV file."
4066
  msgstr ""
4067
 
4068
- #: ../includes/importers/mycred-log-entries.php:219
4069
  msgid ""
4070
  "Before you can upload your import file, you will need to fix the following "
4071
  "error:"
4072
  msgstr ""
4073
 
4074
- #: ../includes/importers/mycred-log-entries.php:228
4075
  msgid "Choose a file from your computer:"
4076
  msgstr ""
4077
 
4078
- #: ../includes/importers/mycred-log-entries.php:234
4079
  msgid "Maximum size: %s"
4080
  msgstr ""
4081
 
4082
- #: ../includes/importers/mycred-log-entries.php:239
4083
  msgid "OR enter path to file:"
4084
  msgstr ""
4085
 
4086
- #: ../includes/importers/mycred-log-entries.php:246
4087
  msgid "Delimiter"
4088
  msgstr ""
4089
 
4090
- #: ../includes/importers/mycred-log-entries.php:252
4091
  msgid "Upload file and import"
4092
  msgstr ""
4093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4094
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
4095
  msgid "Add-ons"
4096
  msgstr "افزونه های جانبی"
4097
 
4098
- #: ../modules/mycred-module-addons.php:160
4099
  msgid ""
4100
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4101
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
@@ -4107,34 +4055,34 @@ msgstr ""
4107
  "کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای ایگرگ "
4108
  "امتیاز بخرد ! )"
4109
 
4110
- #: ../modules/mycred-module-addons.php:171
4111
  msgid ""
4112
- "The coupons add-on allows you you to create coupons that users can use to add "
4113
  "points to their accounts."
4114
  msgstr ""
4115
 
4116
- #: ../modules/mycred-module-addons.php:182
4117
  msgid "Create email notices for any type of myCRED instance."
4118
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
4119
 
4120
- #: ../modules/mycred-module-addons.php:193
4121
  msgid ""
4122
  "Let your users pay using their <strong>my</strong>CRED points balance. "
4123
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
4124
  "Bookings: Event Espresso and Events Manager (free & pro)."
4125
  msgstr ""
4126
 
4127
- #: ../modules/mycred-module-addons.php:204
4128
  msgid "Create pop-up notifications for when users gain or loose points."
4129
  msgstr ""
4130
 
4131
- #: ../modules/mycred-module-addons.php:216
4132
  msgid ""
4133
  "Create ranks for users reaching a certain number of %_plural% with the option "
4134
  "to add logos for each rank."
4135
  msgstr ""
4136
 
4137
- #: ../modules/mycred-module-addons.php:227
4138
  msgid ""
4139
  "This add-on allows you to sell posts, pages or any public post types on your "
4140
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -4146,7 +4094,7 @@ msgstr ""
4146
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، مثل "
4147
  "\"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
4148
 
4149
- #: ../modules/mycred-module-addons.php:238
4150
  msgid ""
4151
  "Allow your users to send or \"donate\" points to other members by either using "
4152
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -4155,57 +4103,57 @@ msgstr ""
4155
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
4156
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
4157
 
4158
- #: ../modules/mycred-module-addons.php:274
4159
  msgid "%s Add-ons"
4160
  msgstr "افزونه های جانبی %s"
4161
 
4162
- #: ../modules/mycred-module-addons.php:280
4163
  msgid "Add-on Activated"
4164
  msgstr "افزونه جانبی فعال شد"
4165
 
4166
- #: ../modules/mycred-module-addons.php:283
4167
  msgid "Add-on Deactivated"
4168
  msgstr "افزونه جانبی غیرفعال شد"
4169
 
4170
- #: ../modules/mycred-module-addons.php:287
4171
  msgid "Add-ons can expand your current installation with further features."
4172
  msgstr ""
4173
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
4174
  "ببخشند ."
4175
 
4176
- #: ../modules/mycred-module-addons.php:308
4177
  msgid "You can find more add-ons in our %s."
4178
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
4179
 
4180
- #: ../modules/mycred-module-addons.php:308
4181
  msgid "online store"
4182
  msgstr "فروشگاه آنلاین"
4183
 
4184
- #: ../modules/mycred-module-addons.php:329
4185
  msgid "Deactivate Add-on"
4186
  msgstr "غیرفعال کردن افزونه ی جانبی"
4187
 
4188
- #: ../modules/mycred-module-addons.php:330
4189
  msgid "Deactivate"
4190
  msgstr "غیرفعالسازی"
4191
 
4192
- #: ../modules/mycred-module-addons.php:337
4193
  msgid "Activate Add-on"
4194
  msgstr "فعال کردن افزونه جانبی"
4195
 
4196
- #: ../modules/mycred-module-addons.php:338
4197
  msgid "Activate"
4198
  msgstr "فعالسازی"
4199
 
4200
- #: ../modules/mycred-module-addons.php:354
4201
  msgid "Version"
4202
  msgstr "نسخه"
4203
 
4204
- #: ../modules/mycred-module-addons.php:358
4205
  msgid "By"
4206
  msgstr "توسط"
4207
 
4208
- #: ../modules/mycred-module-addons.php:366
4209
  msgid "Get Pro"
4210
  msgstr ""
4211
 
@@ -4378,57 +4326,57 @@ msgstr ""
4378
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر اساس "
4379
  "انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
4380
 
4381
- #: ../modules/mycred-module-hooks.php:321 ../modules/mycred-module-hooks.php:643 ../modules/mycred-module-hooks.php:656 ../modules/mycred-module-hooks.php:692 ../modules/mycred-module-hooks.php:1072 ../modules/mycred-module-hooks.php:1089 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:2206 ../modules/mycred-module-hooks.php:2235 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4382
  msgid "Log template"
4383
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4384
 
4385
- #: ../modules/mycred-module-hooks.php:523 ../modules/mycred-module-hooks.php:2214 ../modules/mycred-module-hooks.php:2243 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4386
  msgid "Limit"
4387
  msgstr "محدوده"
4388
 
4389
- #: ../modules/mycred-module-hooks.php:637
4390
  msgid "%plural% for Posts"
4391
  msgstr "اهدای %plural% برای پست ها"
4392
 
4393
- #: ../modules/mycred-module-hooks.php:650
4394
  msgid "%plural% for Pages"
4395
  msgstr "اهدای %plural% برای ایجاد صفحات"
4396
 
4397
- #: ../modules/mycred-module-hooks.php:686
4398
  msgid "%plural% for %s"
4399
  msgstr "اهدای %plural% برای %s"
4400
 
4401
- #: ../modules/mycred-module-hooks.php:1058
4402
  msgid ""
4403
  "%plural% are only awarded when your website has been synced with the Disqus "
4404
  "server!"
4405
  msgstr ""
4406
 
4407
- #: ../modules/mycred-module-hooks.php:1060
4408
  msgid "Approved Comment"
4409
  msgstr "نظرات تایید شده"
4410
 
4411
- #: ../modules/mycred-module-hooks.php:1063 ../modules/mycred-module-hooks.php:1080 ../modules/mycred-module-hooks.php:1097
4412
  msgid "Comment Author"
4413
  msgstr "نویسنده ی دیدگاه"
4414
 
4415
- #: ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101
4416
  msgid "Content Author"
4417
  msgstr "نویسنده ی مطلب"
4418
 
4419
- #: ../modules/mycred-module-hooks.php:1077
4420
  msgid "Comment Marked SPAM"
4421
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
4422
 
4423
- #: ../modules/mycred-module-hooks.php:1094
4424
  msgid "Trashed / Unapproved Comments"
4425
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
4426
 
4427
- #: ../modules/mycred-module-hooks.php:1114
4428
  msgid "Limit per post"
4429
  msgstr "محدودیت برای هر پست"
4430
 
4431
- #: ../modules/mycred-module-hooks.php:1116
4432
  msgid ""
4433
  "The number of comments per post that grants %_plural% to the comment author. "
4434
  "Use zero for unlimited."
@@ -4436,31 +4384,31 @@ msgstr ""
4436
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد شد . "
4437
  "برای برداشتن این محدودیت عدد صفر را وارد کنید ."
4438
 
4439
- #: ../modules/mycred-module-hooks.php:1120
4440
  msgid "Limit per day"
4441
  msgstr "محدودیت هر روزه"
4442
 
4443
- #: ../modules/mycred-module-hooks.php:1122
4444
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4445
  msgstr ""
4446
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
4447
  "این محدودیت عدد صفر را وارد کنید ."
4448
 
4449
- #: ../modules/mycred-module-hooks.php:1127
4450
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4451
  msgstr ""
4452
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای تو "
4453
  "در تو )"
4454
 
4455
- #: ../modules/mycred-module-hooks.php:1198
4456
  msgid "Once for each unique URL"
4457
  msgstr "یک بار برای هر لینک یکتا"
4458
 
4459
- #: ../modules/mycred-module-hooks.php:1199
4460
  msgid "Once for each unique link id"
4461
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
4462
 
4463
- #: ../modules/mycred-module-hooks.php:1393
4464
  msgid ""
4465
  "The default amount to award for clicking on links. You can override this in the "
4466
  "shortcode."
@@ -4468,15 +4416,15 @@ msgstr ""
4468
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این مقدار "
4469
  "را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
4470
 
4471
- #: ../modules/mycred-module-hooks.php:1400
4472
  msgid "Custom tags: %url%, %title% or %id%."
4473
  msgstr ""
4474
 
4475
- #: ../modules/mycred-module-hooks.php:1411 ../modules/mycred-module-hooks.php:2317
4476
  msgid "Note!"
4477
  msgstr "نکته !"
4478
 
4479
- #: ../modules/mycred-module-hooks.php:1411
4480
  msgid ""
4481
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4482
  "generate one automatically based on the value set under href. If you are using "
@@ -4487,43 +4435,43 @@ msgstr ""
4487
  "، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا استفاده "
4488
  "می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
4489
 
4490
- #: ../modules/mycred-module-hooks.php:1413 ../modules/mycred-module-hooks.php:1769
4491
  msgid "Available Shortcode"
4492
  msgstr ""
4493
 
4494
- #: ../modules/mycred-module-hooks.php:1733
4495
  msgid "Amount to award for viewing videos."
4496
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
4497
 
4498
- #: ../modules/mycred-module-hooks.php:1743
4499
  msgid "Award Logic"
4500
  msgstr "منطق اهدای امتیازات"
4501
 
4502
- #: ../modules/mycred-module-hooks.php:1745
4503
  msgid "Select when %_plural% should be awarded or deducted."
4504
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
4505
 
4506
- #: ../modules/mycred-module-hooks.php:1746
4507
  msgid "Play - As soon as video starts playing."
4508
  msgstr "پخش - به محض شروع به پخش ویدیو"
4509
 
4510
- #: ../modules/mycred-module-hooks.php:1747
4511
  msgid "Full - First when the entire video has played."
4512
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
4513
 
4514
- #: ../modules/mycred-module-hooks.php:1748
4515
  msgid "Interval - For each x number of seconds watched."
4516
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
4517
 
4518
- #: ../modules/mycred-module-hooks.php:1753
4519
  msgid "Number of seconds"
4520
  msgstr "تعداد ثانیه ها"
4521
 
4522
- #: ../modules/mycred-module-hooks.php:1760
4523
  msgid "Leniency"
4524
  msgstr "نرمی و ملایمت"
4525
 
4526
- #: ../modules/mycred-module-hooks.php:1762
4527
  msgid ""
4528
  "The maximum percentage a users view of a movie can differ from the actual "
4529
  "length."
@@ -4531,7 +4479,7 @@ msgstr ""
4531
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده می "
4532
  "شه ، تفاوت پیدا کنه"
4533
 
4534
- #: ../modules/mycred-module-hooks.php:1765
4535
  msgid ""
4536
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4537
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
@@ -4542,219 +4490,219 @@ msgstr ""
4542
  "طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( روی "
4543
  "ثانیه شمار ویدیو تغییر ایجاد کنه )"
4544
 
4545
- #: ../modules/mycred-module-hooks.php:1833
4546
  msgid "Affiliate Program"
4547
  msgstr ""
4548
 
4549
- #: ../modules/mycred-module-hooks.php:1842
4550
  msgid "Per Day"
4551
  msgstr ""
4552
 
4553
- #: ../modules/mycred-module-hooks.php:1949
4554
  msgid "Link"
4555
  msgstr ""
4556
 
4557
- #: ../modules/mycred-module-hooks.php:2200
4558
  msgid "Referring Visitors"
4559
  msgstr ""
4560
 
4561
- #: ../modules/mycred-module-hooks.php:2224 ../modules/mycred-module-hooks.php:2253
4562
  msgid "The number of referrals each member can make. Use zero for unlimited."
4563
  msgstr ""
4564
 
4565
- #: ../modules/mycred-module-hooks.php:2228 ../modules/mycred-module-hooks.php:2257
4566
  msgid "Referring Signups"
4567
  msgstr ""
4568
 
4569
- #: ../modules/mycred-module-hooks.php:2232
4570
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4571
  msgstr ""
4572
 
4573
- #: ../modules/mycred-module-hooks.php:2259
4574
  msgid "Registrations are disabled."
4575
  msgstr ""
4576
 
4577
- #: ../modules/mycred-module-hooks.php:2266
4578
  msgid "Referral Links"
4579
  msgstr ""
4580
 
4581
- #: ../modules/mycred-module-hooks.php:2270
4582
  msgid "Assign numeric referral IDs to each user."
4583
  msgstr ""
4584
 
4585
- #: ../modules/mycred-module-hooks.php:2271 ../modules/mycred-module-hooks.php:2277
4586
  msgid "Example"
4587
  msgstr ""
4588
 
4589
- #: ../modules/mycred-module-hooks.php:2276
4590
  msgid "Assign usernames as IDs for each user."
4591
  msgstr ""
4592
 
4593
- #: ../modules/mycred-module-hooks.php:2280
4594
  msgid "IP Limit"
4595
  msgstr ""
4596
 
4597
- #: ../modules/mycred-module-hooks.php:2284
4598
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4599
  msgstr ""
4600
 
4601
- #: ../modules/mycred-module-hooks.php:2288 ../modules/mycred-module-hooks.php:2321
4602
  msgid "BuddyPress Profile"
4603
  msgstr ""
4604
 
4605
- #: ../modules/mycred-module-hooks.php:2291
4606
  msgid "Insert Link in users Profile"
4607
  msgstr ""
4608
 
4609
- #: ../modules/mycred-module-hooks.php:2292
4610
  msgid ""
4611
  "Option to inser the referral link in users profiles. Links will only be visible "
4612
  "to users viewing their own profiles or administrators."
4613
  msgstr ""
4614
 
4615
- #: ../modules/mycred-module-hooks.php:2298
4616
  msgid "Leave empty to hide."
4617
  msgstr ""
4618
 
4619
- #: ../modules/mycred-module-hooks.php:2301
4620
  msgid "Description"
4621
  msgstr ""
4622
 
4623
- #: ../modules/mycred-module-hooks.php:2302
4624
  msgid "Optional description to insert under the link."
4625
  msgstr ""
4626
 
4627
- #: ../modules/mycred-module-hooks.php:2314
4628
  msgid "Profile Positioning"
4629
  msgstr ""
4630
 
4631
- #: ../modules/mycred-module-hooks.php:2316
4632
  msgid ""
4633
  "You can move around the referral link on your users profile by changing the "
4634
- "position. Increase to move up, decrese to move down."
4635
  msgstr ""
4636
 
4637
- #: ../modules/mycred-module-hooks.php:2317
4638
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4639
  msgstr ""
4640
 
4641
- #: ../modules/mycred-module-hooks.php:2323
4642
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4643
  msgstr ""
4644
 
4645
- #: ../modules/mycred-module-hooks.php:2331
4646
  msgid "Available Shortcodes"
4647
  msgstr ""
4648
 
4649
- #: ../modules/mycred-module-log.php:183 ../modules/mycred-module-log.php:204 ../modules/mycred-module-settings.php:60 ../modules/mycred-module-settings.php:101
4650
  msgid "Access denied for this action"
4651
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
4652
 
4653
- #: ../modules/mycred-module-log.php:190
4654
  msgid "Row Deleted"
4655
  msgstr ""
4656
 
4657
- #: ../modules/mycred-module-log.php:217
4658
  msgid "Log entry not found"
4659
  msgstr ""
4660
 
4661
- #: ../modules/mycred-module-log.php:230
4662
  msgid "Entry Updated"
4663
  msgstr ""
4664
 
4665
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:423
4666
  msgid "Entries"
4667
  msgstr "داده های ورودی"
4668
 
4669
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:390 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:557
4670
  msgid "Export"
4671
  msgstr "خروجی گرفتن"
4672
 
4673
- #: ../modules/mycred-module-log.php:309
4674
  msgid "Search results for"
4675
  msgstr "نتایج جستجو برای عبارت"
4676
 
4677
- #: ../modules/mycred-module-log.php:384
4678
  msgid "%s Log"
4679
  msgstr ""
4680
 
4681
- #: ../modules/mycred-module-log.php:509
4682
  msgid "Edit"
4683
  msgstr ""
4684
 
4685
- #: ../modules/mycred-module-log.php:554
4686
  msgid "Current Log Entry"
4687
  msgstr ""
4688
 
4689
- #: ../modules/mycred-module-log.php:556
4690
  msgid "The current saved log entry"
4691
  msgstr ""
4692
 
4693
- #: ../modules/mycred-module-log.php:559
4694
  msgid "Adjust Log Entry"
4695
  msgstr ""
4696
 
4697
- #: ../modules/mycred-module-log.php:561
4698
  msgid "The new log entry"
4699
  msgstr ""
4700
 
4701
- #: ../modules/mycred-module-log.php:564
4702
  msgid "Update Log Entry"
4703
  msgstr ""
4704
 
4705
- #: ../modules/mycred-module-log.php:596
4706
  msgid "My %s History"
4707
  msgstr ""
4708
 
4709
- #: ../modules/mycred-module-settings.php:63 ../modules/mycred-module-settings.php:104
4710
  msgid "Missing point type"
4711
  msgstr ""
4712
 
4713
- #: ../modules/mycred-module-settings.php:127
4714
  msgid "Accounts successfully reset"
4715
  msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
4716
 
4717
- #: ../modules/mycred-module-settings.php:167
4718
  msgid "No users found to export"
4719
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
4720
 
4721
- #: ../modules/mycred-module-settings.php:313
4722
  msgid "Facebook"
4723
  msgstr "فیس بوک"
4724
 
4725
- #: ../modules/mycred-module-settings.php:314
4726
  msgid "Google Plus"
4727
  msgstr "گوگل پلاس"
4728
 
4729
- #: ../modules/mycred-module-settings.php:317
4730
  msgid "%s Settings"
4731
  msgstr "تنظیمات %s"
4732
 
4733
- #: ../modules/mycred-module-settings.php:320
4734
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4735
  msgstr ""
4736
 
4737
- #: ../modules/mycred-module-settings.php:325
4738
  msgid "Core Settings"
4739
  msgstr "تنظیمات اصلی"
4740
 
4741
- #: ../modules/mycred-module-settings.php:327
4742
  msgid "Name"
4743
  msgstr "نام"
4744
 
4745
- #: ../modules/mycred-module-settings.php:332
4746
  msgid "Accessible though the %singular% template tag."
4747
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
4748
 
4749
- #: ../modules/mycred-module-settings.php:337
4750
  msgid "Accessible though the %plural% template tag."
4751
  msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
4752
 
4753
- #: ../modules/mycred-module-settings.php:340
4754
  msgid "Tip"
4755
  msgstr "نکته"
4756
 
4757
- #: ../modules/mycred-module-settings.php:340
4758
  msgid ""
4759
  "Adding an underscore at the beginning of template tag for names will return "
4760
  "them in lowercase. i.e. %_singular%"
@@ -4762,93 +4710,93 @@ msgstr ""
4762
  "اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
4763
  "شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
4764
 
4765
- #: ../modules/mycred-module-settings.php:358
4766
  msgid "Separator"
4767
  msgstr "جدا کننده"
4768
 
4769
- #: ../modules/mycred-module-settings.php:365
4770
  msgid "Edit Settings"
4771
  msgstr "تنظیم مجدد"
4772
 
4773
- #: ../modules/mycred-module-settings.php:367 ../modules/mycred-module-settings.php:372
4774
  msgid "Capability to check for."
4775
  msgstr "توانایی بررسی"
4776
 
4777
- #: ../modules/mycred-module-settings.php:370
4778
  msgid "Edit Users %plural%"
4779
  msgstr "ویرایش %plural% کاربران"
4780
 
4781
- #: ../modules/mycred-module-settings.php:394
4782
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4783
  msgstr ""
4784
  "برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
4785
  "استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
4786
 
4787
- #: ../modules/mycred-module-settings.php:414
4788
  msgid "Management"
4789
  msgstr "مدیریت"
4790
 
4791
- #: ../modules/mycred-module-settings.php:416
4792
  msgid "The Log"
4793
  msgstr "لیست گزارش ( لوگ )"
4794
 
4795
- #: ../modules/mycred-module-settings.php:419
4796
  msgid "Table Name"
4797
  msgstr "نام جدول"
4798
 
4799
- #: ../modules/mycred-module-settings.php:428
4800
  msgid "Empty Log"
4801
  msgstr "لیست گزارشات ( لوگ ) خالی"
4802
 
4803
- #: ../modules/mycred-module-settings.php:434
4804
  msgid "User Meta Key"
4805
  msgstr "کلید اطلاعات کاربر ( Meta key ("
4806
 
4807
- #: ../modules/mycred-module-settings.php:443
4808
  msgid "Set all to zero"
4809
  msgstr "تغییر تمام داده ها به عدد صفر"
4810
 
4811
- #: ../modules/mycred-module-settings.php:443
4812
  msgid "CSV Export"
4813
  msgstr "خروجی گرفتن به صورت فایل CVS"
4814
 
4815
- #: ../modules/mycred-module-settings.php:464
4816
  msgid "Default"
4817
  msgstr ""
4818
 
4819
- #: ../modules/mycred-module-settings.php:467 ../modules/mycred-module-settings.php:486 ../modules/mycred-module-settings.php:508
4820
  msgid "Meta Key"
4821
  msgstr "کلید اطلاعات"
4822
 
4823
- #: ../modules/mycred-module-settings.php:505
4824
  msgid "Add New Type"
4825
  msgstr ""
4826
 
4827
- #: ../modules/mycred-module-settings.php:510
4828
  msgid "A unique ID for this type."
4829
  msgstr ""
4830
 
4831
- #: ../modules/mycred-module-settings.php:515
4832
  msgid "Menu and page title."
4833
  msgstr ""
4834
 
4835
- #: ../modules/mycred-module-settings.php:518
4836
  msgid "The meta key will define where your users balances are saved."
4837
  msgstr ""
4838
 
4839
- #: ../modules/mycred-module-settings.php:535
4840
  msgid "Identify users by"
4841
  msgstr "تایید هویت کاربر به وسیله ی"
4842
 
4843
- #: ../modules/mycred-module-settings.php:541
4844
  msgid "User Email"
4845
  msgstr "ایمیل کاربر"
4846
 
4847
- #: ../modules/mycred-module-settings.php:542
4848
  msgid "User Login"
4849
  msgstr "ورود کاربر"
4850
 
4851
- #: ../modules/mycred-module-settings.php:549
4852
  msgid ""
4853
  "Use ID if you intend to use this export as a backup of your current site while "
4854
  "Email is recommended if you want to export to a different site."
@@ -4857,11 +4805,11 @@ msgstr ""
4857
  "( ID ) استفاده فرمایید . اما اگر می خواهید این تنظیمات را برای سایت دیگری خروجی "
4858
  "بگیرید ، ایمیل پیشنهاد می گردد ."
4859
 
4860
- #: ../modules/mycred-module-settings.php:552
4861
  msgid "Import Log Entry"
4862
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
4863
 
4864
- #: ../modules/mycred-module-settings.php:554
4865
  msgid ""
4866
  "Optional log entry to use if you intend to import this file in a different %s "
4867
  "installation."
@@ -5078,8 +5026,8 @@ msgid "%plural% for Profile Updates"
5078
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
5079
 
5080
  #: ../plugins/mycred-hook-buddypress.php:377
5081
- msgid "Daily limit. User zero for unlimited."
5082
- msgstr "محدودیت روزانه . از عدد صفر برای برداشتن محدودیت استفاده کنید ."
5083
 
5084
  #: ../plugins/mycred-hook-buddypress.php:387
5085
  msgid "%plural% for New Avatar"
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2013-12-18 10:46+0100\n"
6
+ "PO-Revision-Date: Wed Apr 16 2014 13:05:49 GMT+0200 (CEST)\n"
7
+ "Last-Translator: unimatrix0 <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
10
  "Plural-Forms: nplurals=1; plural=n!=1\n"
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: fa_IR"
25
 
26
+ #: ../mycred.php:397
27
  msgid "Balance"
28
  msgstr ""
29
 
30
+ #: ../mycred.php:422
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
+ #: ../mycred.php:474
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
+ #: ../mycred.php:520
39
  msgid "About %s"
40
  msgstr "درباره %s"
41
 
42
+ #: ../mycred.php:529 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr "\"اعتبار من\""
45
 
46
+ #: ../mycred.php:614 ../mycred.php:638 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:883 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
47
  msgid "Processing..."
48
  msgstr "در حال پردازش ..."
49
 
50
+ #: ../mycred.php:615
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
+ #: ../mycred.php:616
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
+ #: ../mycred.php:617
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
66
  "غیرقابل بازگشت می باشد !"
67
 
68
+ #: ../mycred.php:618
69
  msgid "Done!"
70
  msgstr "انجام شد !"
71
 
72
+ #: ../mycred.php:619 ../mycred.php:637 ../mycred.php:655
73
  msgid "Close"
74
  msgstr "بستن"
75
 
76
+ #: ../mycred.php:620
77
  msgid "Export users %plural%"
78
  msgstr "خروجی گرفتن از %plural% کاربران"
79
 
80
+ #: ../mycred.php:636
81
+ msgid "Edit Users Balance"
82
+ msgstr ""
83
 
84
+ #: ../mycred.php:654
85
  msgid "Edit Log Entry"
86
  msgstr ""
87
 
88
+ #: ../mycred.php:656
89
  msgid "Updating..."
90
  msgstr ""
91
 
92
+ #: ../mycred.php:658
93
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
94
  msgstr ""
95
 
96
+ #: ../mycred.php:659
97
  msgid "Log entry updated"
98
  msgstr ""
99
 
100
+ #: ../mycred.php:711 ../mycred.php:732 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr "نصب"
103
 
104
+ #: ../mycred.php:713 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
105
  msgid "Settings"
106
  msgstr "تنظیمات"
107
 
108
+ #: ../mycred.php:736 ../modules/mycred-module-addons.php:360
109
  msgid "About"
110
  msgstr "درباره"
111
 
112
+ #: ../mycred.php:737
113
  msgid "Tutorials"
114
  msgstr "آموزش ها"
115
 
116
+ #: ../mycred.php:738
117
  msgid "Codex"
118
  msgstr "مجموعه قوانین و دست نوشت ها"
119
 
120
+ #: ../mycred.php:739
121
  msgid "Store"
122
  msgstr "فروشگاه"
123
 
124
+ #: ../mycred.php:753
125
  msgid ""
126
  "Make sure to backup your database and files before updating, in case anything "
127
  "goes wrong!"
135
  msgid "This Hook has no settings"
136
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
139
  msgid "No limit"
140
  msgstr "بدون محدودیت"
141
 
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
157
 
158
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "انتخاب"
161
 
167
  msgid "Surprise"
168
  msgstr "غافلگیری"
169
 
170
+ #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:118
171
  msgid "click to close"
172
  msgstr "برای بستن کلیک کنید ."
173
 
174
+ #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:119
175
  msgid "click to open"
176
  msgstr "برای باز شدن کلیک کنید ."
177
 
178
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
179
  msgid "Settings Updated"
180
  msgstr "تنظیمات به روز شد"
181
 
182
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
183
  msgid "Banking"
184
  msgstr "بانکداری"
185
 
210
  "به کاربران خود بر پایه ی دوره های زمانی معینی %_plural% دهید . همچنین این "
211
  "قابلیت را خواهید داشت که تعیین کنید چند بار این دوره ی زمانی تکرار شود ."
212
 
213
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:586 ../modules/mycred-module-settings.php:300
214
  msgid "Access Denied"
215
  msgstr "دسترسی غیرمجاز می باشد"
216
 
218
  msgid "%s Banking"
219
  msgstr "بانکداری %s"
220
 
221
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
222
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
223
  msgstr ""
224
 
233
  "چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به مدیر "
234
  "سایت می دهد"
235
 
236
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
237
  msgid "Enable"
238
  msgstr "فعالسازی"
239
 
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
303
 
304
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "نمونه لیست گزارش ( لوگ )"
307
 
333
  msgid "Pay Users"
334
  msgstr "پرداخت به کاربران :"
335
 
336
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:367 ../includes/mycred-admin.php:478
337
  msgid "Amount"
338
  msgstr "مقدار"
339
 
341
  msgid "Can not be zero."
342
  msgstr "عدد صفر مجاز نیست"
343
 
344
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
345
  msgid "Interval"
346
  msgstr "فاصله زمانی"
347
 
398
  "زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن تعداد دوره ها هم "
399
  "می توانید عدد صفر را وارد فرمایید"
400
 
401
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:381
402
  msgid "Excludes"
403
  msgstr "کاربران استثنا"
404
 
414
  msgid "Payment Gateways"
415
  msgstr "درگاه های پرداخت"
416
 
417
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
418
  msgid "buyCRED Purchase Log"
419
  msgstr ""
420
 
421
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
422
  msgid "Purchase Log"
423
  msgstr ""
424
 
425
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
426
  msgid "Payments"
427
  msgstr "پرداخت ها"
428
 
429
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
430
  msgid "Please login to purchase %_plural%"
431
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
432
 
433
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
434
  msgid "Gift purchase from %display_name%."
435
  msgstr "خرید هدیه توسط %display_name% ."
436
 
437
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:338 ../includes/mycred-overview.php:98 ../includes/mycred-overview.php:105 ../modules/mycred-module-addons.php:157
438
  msgid "buyCRED"
439
  msgstr "خرید سکه یا امتیاز"
440
 
441
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:610
442
  msgid "Minimum %plural%"
443
  msgstr "کمترین مفدار %plural%"
444
 
445
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
446
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
447
  msgstr ""
448
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض روی "
449
  "عدد یک تنظیم شده است ."
450
 
451
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
452
  msgid "Point Type"
453
  msgstr ""
454
 
455
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
456
  msgid "Login Template"
457
  msgstr "نمونه طرح ورود به سایت"
458
 
459
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
460
  msgid "Content to show when a user is not logged in."
461
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
462
 
463
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
464
  msgid "Thank You Page"
465
  msgstr "صفحه ی تشکر بابت خرید"
466
 
467
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
468
  msgid "Custom URL"
469
  msgstr "نشانی اینترنتی متفاوت"
470
 
471
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
472
  msgid "Page"
473
  msgstr "صفحه"
474
 
475
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
476
  msgid "Cancellation Page"
477
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
478
 
479
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
480
  msgid "Show seperate log for %_plural% purchases."
481
  msgstr ""
482
 
483
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
484
  msgid "Gifting"
485
  msgstr "هدیه دادن"
486
 
487
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
488
  msgid "Allow users to buy %_plural% for other users."
489
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
490
 
491
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
492
  msgid "Allow users to buy %_plural% for content authors."
493
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
494
 
495
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
496
  msgid "%s Payment Gateways"
497
  msgstr "درگاه های پرداخت %s"
498
 
499
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
500
  msgid "buyCRED Settings"
501
  msgstr ""
502
 
503
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
504
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
505
  msgstr ""
506
  "درگاه پرداختی را که می خواهید کاربرانتان از طریق آن %plural% بخرند را انتخاب "
507
  "کنید ."
508
 
509
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
510
  msgid "Last Payment Notification"
511
  msgstr ""
512
 
513
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
514
  msgid ""
515
  "Here you can view the last payment confirmation that was sent to buyCRED for "
516
  "processing."
517
  msgstr ""
518
 
519
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
520
  msgid "Details"
521
  msgstr ""
522
 
523
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:552
524
  msgid "Time"
525
  msgstr ""
526
 
527
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
528
  msgid "Gateway"
529
  msgstr "درگاه"
530
 
531
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
532
  msgid "Transaction ID"
533
  msgstr ""
534
 
535
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
536
  msgid "Outcome"
537
  msgstr ""
538
 
539
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
540
  msgid "Gateway Log"
541
  msgstr ""
542
 
543
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
544
  msgid "No recorded calls found."
545
  msgstr ""
546
 
547
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
548
  msgid "Test Mode"
549
  msgstr "حالت آزمایشی ( تست )"
550
 
551
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
552
  msgid "Enabled"
553
  msgstr "فعال شد"
554
 
555
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
556
  msgid "Disabled"
557
  msgstr "غیرفعال شد"
558
 
559
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
560
  msgid "Sandbox Mode"
561
  msgstr ""
562
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر نمی "
563
  "گردد )"
564
 
565
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
566
  msgid "Enable for test purchases."
567
  msgstr ""
568
 
569
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
570
  msgid "Update Gateway Settings"
571
  msgstr "به روزرسانی تنظیمات درگاه"
572
 
573
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:473 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:551
574
  msgid "User"
575
  msgstr "کاربر"
576
 
577
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:650
578
  msgid "Date"
579
  msgstr "تاریخ"
580
 
581
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
582
  msgid "Payed"
583
  msgstr ""
584
 
585
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
586
  msgid "<strong>buy</strong>CRED Purchase Log"
587
  msgstr ""
588
 
589
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
590
  msgid "Gateway Settings"
591
  msgstr "تنظیمات درگاه پرداخت"
592
 
593
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
594
  msgid ""
595
  "Only completed purchases are shown here. Purchases that were cancelled or "
596
  "failed are not logged."
597
  msgstr ""
598
 
599
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:473
600
  msgid "User Missing"
601
  msgstr "یافت نشدن کاربر"
602
 
603
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1110
604
  msgid "No purchases found"
605
  msgstr "خریدی یافت نشد"
606
 
607
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
608
  msgid "This Add-on needs to setup before you can use this shortcode."
609
  msgstr ""
610
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
611
  "جانبی را راه اندازی کنید ."
612
 
613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
614
  msgid "No gateways installed."
615
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
616
 
617
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
618
  msgid "Gateway does not exist."
619
  msgstr "درگاه موجود نیست ."
620
 
621
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
622
  msgid "Yourself"
623
  msgstr "خودتان"
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
626
  msgid "No active gateways found."
627
  msgstr "درگاه پرداخت فعالی یافت نشد ."
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
630
  msgid "The selected gateway is not active."
631
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
634
  msgid "Buy with %gateway%"
635
  msgstr ""
636
 
637
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
638
  msgid "Buy Now"
639
  msgstr "همین الان بخرید"
640
 
641
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
642
  msgid "No users found"
643
  msgstr "کاربری یافت نشد"
644
 
645
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
646
  msgid "To"
647
  msgstr "به"
648
 
649
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
650
  msgid "Select Amount"
651
  msgstr "مقدار را انتخاب کنید"
652
 
653
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
654
  msgid "min."
655
  msgstr "حداقل"
656
 
657
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
658
  msgid "Select Gateway"
659
  msgstr "درگاه پرداخت را انتخاب کنید"
660
 
694
  msgid "Cancel purchase"
695
  msgstr ""
696
 
697
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:360 ../includes/mycred-admin.php:466
698
  msgid "required"
699
  msgstr "ضروری"
700
 
701
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:362 ../includes/mycred-admin.php:468
702
  msgid "optional"
703
  msgstr "اختیاری"
704
 
806
  msgid "Validating sale"
807
  msgstr ""
808
 
809
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1289
810
  msgid "Token mismatch"
811
  msgstr ""
812
 
813
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1301
814
  msgid "Price mismatch"
815
  msgstr ""
816
 
817
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1306
818
  msgid "Currency mismatch"
819
  msgstr ""
820
 
821
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
822
  msgid "Duplicate transaction"
823
  msgstr ""
824
 
928
  msgid "Full Notifications"
929
  msgstr ""
930
 
931
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
932
  msgid "No"
933
  msgstr "خیر"
934
 
935
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
936
  msgid "Yes"
937
  msgstr "بلی"
938
 
1103
  msgid "Checkout Page"
1104
  msgstr "صفحه تسویه حساب"
1105
 
1106
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:753 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2289
1107
  msgid "Title"
1108
  msgstr "عنوان"
1109
 
1205
  "برای اینکه این درگاه به خوبی عمل کند ، باید وارد حساب خود در سامانه Zombaio شده "
1206
  "و آدرس Postback را مطابق آدرس بالا وارد کرده و سپس تایید را بزنید ."
1207
 
1208
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
1209
  msgid "Coupons"
1210
  msgstr ""
1211
 
1241
  msgid "No coupons found in Trash"
1242
  msgstr ""
1243
 
1244
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
1245
  msgid "Email Notices"
1246
  msgstr "اطلاعیه های ایمیلی"
1247
 
1277
  msgid "Usage"
1278
  msgstr ""
1279
 
1280
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
1281
  msgid "Limits"
1282
  msgstr "محدودیت ها"
1283
 
1289
  msgid "not yet used"
1290
  msgstr ""
1291
 
1292
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
1293
  msgid "Total"
1294
  msgstr ""
1295
 
1473
  msgid "No email notices found in Trash"
1474
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1475
 
1476
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
1477
  msgid "General"
1478
  msgstr "بخش عمومی"
1479
 
1704
  msgid "CSS Styling"
1705
  msgstr "صفحه آرایی با CSS"
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1708
  msgid "Site Related"
1709
  msgstr "مرتبط با سایت"
1710
 
1711
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1712
  msgid "Your websites title"
1713
  msgstr "عنوان وبسایت شما"
1714
 
1715
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1716
  msgid "Your websites address"
1717
  msgstr "آدرس وبسایت شما"
1718
 
1719
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1720
  msgid "Your websites tagline (description)"
1721
  msgstr "شرح وبسایت شما"
1722
 
1723
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1724
  msgid "Your websites admin email"
1725
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1726
 
1727
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1728
  msgid "Total number of blog members"
1729
  msgstr "تعداد کل کاربران سایت شما"
1730
 
1731
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1732
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1733
  msgstr ""
1734
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1735
  "href=\"%1$s\">کلیک فرمایید</a>"
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902
 
 
 
 
 
 
 
 
1738
  msgid "Email Notice Activated"
1739
  msgstr "اطلاعیه فعال شد"
1740
 
1741
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1742
  msgid "Email Notice Saved"
1743
  msgstr "اطلاعیه ذخیره شد"
1744
 
1745
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1746
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1747
  msgstr ""
1748
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1749
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1750
 
1751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:906
1752
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1753
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
1754
 
1755
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1756
  msgid ""
1757
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1758
  "not yet ready to use this email notice!"
1760
  "به محض اینکه اطلاعیه ای \"انتشار\" یابد ، فعال می شود ! اگر هنوز آماده ی استفاده "
1761
  "از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می گردد ."
1762
 
1763
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
1764
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1765
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
1766
 
1767
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1768
  msgid "This email notice is active."
1769
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
1770
 
1771
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:474
1772
  msgid "Current Balance"
1773
  msgstr "میزان امتیازات اخیر"
1774
 
1781
  msgstr "میزان امتیاز بعد از خرید"
1782
 
1783
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1784
+ msgid "Go Back"
1785
+ msgstr ""
1786
 
1787
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1788
  msgid "will be deducted from your account."
1800
  msgid "Paid"
1801
  msgstr "پرداخت شده"
1802
 
1803
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1804
  msgid "myCRED"
1805
  msgstr "افزونه \"اعتبار من\""
1806
 
1887
  msgid "Percentage"
1888
  msgstr "درصد"
1889
 
1890
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
1891
+ msgid "Option to share sales with the product owner. Use zero to disable."
1892
  msgstr ""
 
 
1893
 
1894
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1895
  msgid "Messages"
2017
  msgid "Show in Cart and on Checkout Page"
2018
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2019
 
2020
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:472 ../modules/mycred-module-settings.php:491 ../modules/mycred-module-settings.php:514
2021
  msgid "Label"
2022
  msgstr "برچسب ( اتیکت )"
2023
 
2025
  msgid "Order Total in %_plural%"
2026
  msgstr "سفارش کل به واحد %_plural%"
2027
 
 
 
 
 
2028
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
2029
  msgid "Log entry template for profit sharing."
2030
  msgstr ""
2106
  msgid "Payout"
2107
  msgstr "پرداخت"
2108
 
 
 
 
 
 
 
 
 
2109
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2110
  msgid "Instructions"
2111
  msgstr "دستورالعمل ها"
2198
  msgid "Users must be logged in to use this gateway!"
2199
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2200
 
 
 
 
 
 
 
2201
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2202
  msgid "Log"
2203
  msgstr "لیست گزارش ( لوگ )"
2204
 
2205
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:479
2206
  msgid "Log Entry"
2207
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2208
 
2232
  msgid "Message to show visitors (users not logged in) on the payment page."
2233
  msgstr ""
2234
 
2235
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:528
2236
  msgid "Update Settings"
2237
  msgstr "به روزرسانی تنظیمات"
2238
 
2278
  msgid "Reject"
2279
  msgstr "رد کردن"
2280
 
2281
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:511 ../modules/mycred-module-settings.php:476 ../modules/mycred-module-settings.php:495
2282
  msgid "Delete"
2283
  msgstr "پاک کردن"
2284
 
2306
 
2307
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2308
  msgid ""
2309
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2310
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2311
  msgstr ""
 
 
 
 
2312
 
2313
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
2314
  msgid "Log Templates"
2371
  "گرفته می شود . از عدد صفر برای عدم استفاده از ویژگی استرداد بلیت استفاده کنید . "
2372
  "هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
2373
 
2374
+ #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:201
2375
  msgid "Notifications"
2376
  msgstr "آگاه سازها"
2377
 
2424
  msgid "Are you sure you want to re-assign user ranks?"
2425
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
2426
 
2427
+ #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:748 ../addons/ranks/myCRED-addon-ranks.php:944 ../modules/mycred-module-addons.php:213
2428
  msgid "Ranks"
2429
  msgstr "رنک و مدال ها"
2430
 
2431
+ #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-addon-ranks.php:459 ../addons/ranks/myCRED-addon-ranks.php:554
2432
  msgid "Rank"
2433
  msgstr "رنک و مدال"
2434
 
2460
  msgid "No ranks found in Trash"
2461
  msgstr "هیچ رنکی در زباله دان یافت نشد"
2462
 
2463
+ #: ../addons/ranks/myCRED-addon-ranks.php:318
2464
  msgid "Completed - Total of %d users effected"
2465
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
2466
 
2467
+ #: ../addons/ranks/myCRED-addon-ranks.php:320
2468
  msgid "Log is Empty"
2469
  msgstr "لیست گزارش ( لوگ ) خالیست !"
2470
 
2471
+ #: ../addons/ranks/myCRED-addon-ranks.php:514 ../addons/ranks/myCRED-addon-ranks.php:517
2472
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2473
  msgstr "مدال به روزرسانی شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک کنید</a> ."
2474
 
2475
+ #: ../addons/ranks/myCRED-addon-ranks.php:519
2476
  msgid "Rank Activated"
2477
  msgstr "مدال فعال شد"
2478
 
2479
+ #: ../addons/ranks/myCRED-addon-ranks.php:520
2480
  msgid "Rank Saved"
2481
  msgstr "مدال ذخیره شد"
2482
 
2483
+ #: ../addons/ranks/myCRED-addon-ranks.php:521
2484
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2485
  msgstr ""
2486
  "مدال ، برای تایید ، ثبت شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک "
2487
  "کنید</a> ."
2488
 
2489
+ #: ../addons/ranks/myCRED-addon-ranks.php:523
2490
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2491
  msgstr "مدال برنامه ریزی شد برای : <strong>%1$s</strong>"
2492
 
2493
+ #: ../addons/ranks/myCRED-addon-ranks.php:580 ../addons/ranks/myCRED-addon-ranks.php:633
2494
  msgid "Rank Title"
2495
  msgstr "عنوان مدال"
2496
 
2497
+ #: ../addons/ranks/myCRED-addon-ranks.php:581
2498
  msgid "Logo"
2499
  msgstr "لوگو"
2500
 
2501
+ #: ../addons/ranks/myCRED-addon-ranks.php:582
2502
  msgid "Requirement"
2503
  msgstr "پیش نیاز"
2504
 
2505
+ #: ../addons/ranks/myCRED-addon-ranks.php:583 ../modules/mycred-module-settings.php:439
2506
  msgid "Users"
2507
  msgstr "کاربران"
2508
 
2509
+ #: ../addons/ranks/myCRED-addon-ranks.php:599
2510
  msgid "No Logo Set"
2511
  msgstr "لوگویی ست نشده است"
2512
 
2513
+ #: ../addons/ranks/myCRED-addon-ranks.php:608 ../addons/ranks/myCRED-addon-ranks.php:613
2514
  msgid "Any Value"
2515
  msgstr "هر مقداری"
2516
 
2517
+ #: ../addons/ranks/myCRED-addon-ranks.php:615
2518
  msgid "Maximum %plural%"
2519
  msgstr "بیشترین مقدار %plural%"
2520
 
2521
+ #: ../addons/ranks/myCRED-addon-ranks.php:646
2522
  msgid "Rank Settings"
2523
  msgstr "تنظیمات مدال"
2524
 
2525
+ #: ../addons/ranks/myCRED-addon-ranks.php:668
2526
  msgid "Minimum %plural% to reach this rank"
2527
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
2528
 
2529
+ #: ../addons/ranks/myCRED-addon-ranks.php:672
2530
  msgid "Maximum %plural% to be included in this rank"
2531
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
2532
 
2533
+ #: ../addons/ranks/myCRED-addon-ranks.php:679
2534
  msgid "All Published Ranks"
2535
  msgstr "همه ی مدال های منتشر شده"
2536
 
2537
+ #: ../addons/ranks/myCRED-addon-ranks.php:685 ../addons/ranks/myCRED-addon-ranks.php:687
2538
  msgid "Not Set"
2539
  msgstr "تنظیم نشده"
2540
 
2541
+ #: ../addons/ranks/myCRED-addon-ranks.php:692
2542
  msgid "No Ranks found"
2543
  msgstr "مدالی پیدا نشد"
2544
 
2545
+ #: ../addons/ranks/myCRED-addon-ranks.php:750
2546
  msgid "Rank Features"
2547
  msgstr "ویژگی های مدال"
2548
 
2549
+ #: ../addons/ranks/myCRED-addon-ranks.php:754
2550
  msgid "%plural% requirement"
2551
  msgstr "پیش نیاز %plural%"
2552
 
2553
+ #: ../addons/ranks/myCRED-addon-ranks.php:755
2554
  msgid "Featured Image (Logo)"
2555
  msgstr "عکس شاخص ( لوگو )"
2556
 
2557
+ #: ../addons/ranks/myCRED-addon-ranks.php:756
2558
  msgid "Content"
2559
  msgstr "محتوا"
2560
 
2561
+ #: ../addons/ranks/myCRED-addon-ranks.php:757
2562
  msgid "Excerpt"
2563
  msgstr "توضیح کوتاه ( نقل قول )"
2564
 
2565
+ #: ../addons/ranks/myCRED-addon-ranks.php:758
2566
  msgid "Comments"
2567
  msgstr "دیدگاه ها"
2568
 
2569
+ #: ../addons/ranks/myCRED-addon-ranks.php:759
2570
  msgid "Page Attributes"
2571
  msgstr "خصوصیت های صفحه"
2572
 
2573
+ #: ../addons/ranks/myCRED-addon-ranks.php:760
2574
  msgid "Custom Fields"
2575
  msgstr "فیلدهای اضافی"
2576
 
2577
+ #: ../addons/ranks/myCRED-addon-ranks.php:763
2578
  msgid "Public"
2579
  msgstr "عمومی"
2580
 
2581
+ #: ../addons/ranks/myCRED-addon-ranks.php:767
2582
  msgid ""
2583
  "If you want to create a template archive for each rank, you must select to have "
2584
  "ranks public. Defaults to disabled."
2586
  "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال ها "
2587
  "عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
2588
 
2589
+ #: ../addons/ranks/myCRED-addon-ranks.php:770
2590
  msgid "Rank Basis"
2591
  msgstr "روش مدال دهی"
2592
 
2593
+ #: ../addons/ranks/myCRED-addon-ranks.php:773
2594
  msgid "Users are ranked according to their current balance."
2595
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
2596
 
2597
+ #: ../addons/ranks/myCRED-addon-ranks.php:776
2598
  msgid ""
2599
  "Users are ranked according to the total amount of %_plural% they have "
2600
  "accumulated."
2601
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
2602
 
2603
+ #: ../addons/ranks/myCRED-addon-ranks.php:780 ../addons/ranks/myCRED-addon-ranks.php:785
2604
  msgid "Calculate Totals"
2605
  msgstr "محاسبه ی کل امتیازها"
2606
 
2607
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2608
  msgid ""
2609
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2610
  "the users current balance will be used as a starting point."
2613
  "اگر از این کلید استفاده نکنید ، مبنای امتیازات ، همین امتیاز فعلی کاربران می "
2614
  "باشد ."
2615
 
2616
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2617
  msgid ""
2618
  "Once a users total has been calculated, they will be assigned to their "
2619
  "appropriate roles. For this reason, it is highly recommended that you first "
2623
  "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا مدال "
2624
  "های خودتان را پیاده سازی کنید ."
2625
 
2626
+ #: ../addons/ranks/myCRED-addon-ranks.php:784
2627
  msgid ""
2628
  "Depending on your log size and number of users this process may take a while. "
2629
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2633
  "بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر روی \"به "
2634
  "روزرسانی تنظیمات\" کلیک نفرمایید ."
2635
 
2636
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2637
  msgid "Archive URL"
2638
  msgstr "نشانی اینترنتی آرشیو"
2639
 
2640
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2641
  msgid "Ignored if Ranks are not public"
2642
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
2643
 
2644
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2645
  msgid "Display Order"
2646
  msgstr "ترتیب نمایش"
2647
 
2648
+ #: ../addons/ranks/myCRED-addon-ranks.php:803
2649
  msgid "Ascending - Lowest rank to highest"
2650
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
2651
 
2652
+ #: ../addons/ranks/myCRED-addon-ranks.php:804
2653
  msgid "Descending - Highest rank to lowest"
2654
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
2655
 
2656
+ #: ../addons/ranks/myCRED-addon-ranks.php:813
2657
  msgid ""
2658
  "Select in what order ranks should be displayed in your admin area and/or front "
2659
  "if ranks are \"Public\""
2661
  "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش داده "
2662
  "شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
2663
 
2664
+ #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2665
  msgid "Do not show."
2666
  msgstr "عدم نمایش"
2667
 
2668
+ #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:365
2669
  msgid "Include in Profile Header."
2670
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
2671
 
2672
+ #: ../addons/ranks/myCRED-addon-ranks.php:825 ../modules/mycred-module-buddypress.php:366
2673
  msgid "Include under the \"Profile\" tab"
2674
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
2675
 
2676
+ #: ../addons/ranks/myCRED-addon-ranks.php:826 ../modules/mycred-module-buddypress.php:367
2677
  msgid "Include under the \"Profile\" tab and Profile Header."
2678
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
2679
 
2680
+ #: ../addons/ranks/myCRED-addon-ranks.php:829
2681
  msgid "Rank in BuddyPress"
2682
  msgstr "مدال در بادی پرس"
2683
 
2684
+ #: ../addons/ranks/myCRED-addon-ranks.php:897
2685
  msgid "Script Communication Error"
2686
  msgstr "خطا در ارتباط با اسکریپت"
2687
 
2688
+ #: ../addons/ranks/myCRED-addon-ranks.php:947
2689
  msgid "Rank Post Type"
2690
  msgstr "نوع پست مدال"
2691
 
2692
+ #: ../addons/ranks/myCRED-addon-ranks.php:951
2693
  msgid "No. of ranks"
2694
  msgstr "تعداد مدال ها"
2695
 
2696
+ #: ../addons/ranks/myCRED-addon-ranks.php:955 ../modules/mycred-module-log.php:372 ../modules/mycred-module-settings.php:428 ../modules/mycred-module-settings.php:443
2697
  msgid "Actions"
2698
  msgstr "عملیات ها"
2699
 
2700
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2701
  msgid "Remove All Ranks"
2702
  msgstr "پاکسازی همه ی مدال ها"
2703
 
2704
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2705
  msgid "Assign Ranks to Users"
2706
  msgstr "تخصیص دادن مدال به کاربران"
2707
 
2717
  msgid "No users found with this rank"
2718
  msgstr "کاربری با این مدال یافت نشد"
2719
 
2720
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2721
  msgid "error"
2722
  msgstr "خطا"
2723
 
2753
  msgid "Pay Content Author."
2754
  msgstr "پرداخت به نویسنده ی محتوا"
2755
 
2756
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
2757
  msgid "Sell Content"
2758
  msgstr "فروش محتوا"
2759
 
2945
  msgid "Transfer %plural%"
2946
  msgstr "جابجایی %plural%"
2947
 
2948
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:457
2949
  msgid "Point Types"
2950
  msgstr ""
2951
 
3159
  "ایمیل های زیر به اطلاع بنده برسونید .<br>mani@dragon-age."
3160
  "ir<br>ashk_ghoghnoos_2011@yahoo.com<br><br>با احترام / مانی اختر"
3161
 
3162
+ #: ../includes/mycred-admin.php:63
3163
+ msgid ""
3164
+ "Re-save your myCRED Settings & all myCRED widget settings that you are "
3165
+ "currently using."
3166
+ msgstr ""
3167
+
3168
+ #: ../includes/mycred-admin.php:67
3169
+ msgid "Re-save your myCRED Hook Settings."
3170
+ msgstr ""
3171
+
3172
+ #: ../includes/mycred-admin.php:71
3173
+ msgid ""
3174
+ "Please complete the following tasks in order to finish updating myCRED to "
3175
+ "version 1.4:"
3176
+ msgstr ""
3177
+
3178
+ #: ../includes/mycred-admin.php:97
3179
  msgid "User is excluded"
3180
  msgstr "کاربر بن شد !"
3181
 
3182
+ #: ../includes/mycred-admin.php:102
3183
  msgid "Log Entry can not be empty"
3184
  msgstr "داده های لیست گزارش نباید خالی باشد"
3185
 
3186
+ #: ../includes/mycred-admin.php:106
3187
  msgid "Amount can not be zero"
3188
  msgstr "این مقدار نباید صفر باشد"
3189
 
3190
+ #: ../includes/mycred-admin.php:127
3191
  msgid "Failed to update this uses balance."
3192
  msgstr ""
3193
 
3194
+ #: ../includes/mycred-admin.php:262
3195
  msgid "Excluded"
3196
  msgstr "بن شده ( محروم شده )"
3197
 
3198
+ #: ../includes/mycred-admin.php:275 ../modules/mycred-module-log.php:254 ../modules/mycred-module-log.php:255
3199
  msgid "History"
3200
  msgstr "لیست تغییرات"
3201
 
3202
+ #: ../includes/mycred-admin.php:276
3203
  msgid "Adjust"
3204
  msgstr "تطبیق"
3205
 
3206
+ #: ../includes/mycred-admin.php:331 ../includes/mycred-admin.php:390
3207
  msgid "%singular% balance"
3208
  msgstr ""
3209
 
3210
+ #: ../includes/mycred-admin.php:355
3211
  msgid "Adjust Your Balance"
3212
  msgstr "میزان امتیازتان را تنظیم کنید ( تطبیق دهید )"
3213
 
3214
+ #: ../includes/mycred-admin.php:357
3215
  msgid "Adjust Users Balance"
3216
  msgstr "تطبیق دادن میزان امتیاز کاربران"
3217
 
3218
+ #: ../includes/mycred-admin.php:368
3219
  msgid "Log description for adjustment"
3220
  msgstr "شرح لیست گزارش برای تطبیق"
3221
 
3222
+ #: ../includes/mycred-admin.php:371
3223
  msgid "Update"
3224
  msgstr "به روزرسانی"
3225
 
3226
+ #: ../includes/mycred-admin.php:372
3227
  msgid "Description is required!"
3228
  msgstr "شرح ضروری ست !"
3229
 
3230
+ #: ../includes/mycred-admin.php:472
3231
  msgid "ID"
3232
  msgstr "شناسه"
3233
 
3234
+ #: ../includes/mycred-admin.php:478
3235
  msgid "A positive or negative value"
3236
  msgstr "مقدار مثبت یا منفی"
3237
 
3238
+ #: ../includes/mycred-admin.php:480
3239
  msgid "Update Balance"
3240
  msgstr "به روزرسانی میزان امتیاز"
3241
 
3247
  msgid "Points"
3248
  msgstr "امتیازها"
3249
 
3250
+ #: ../includes/mycred-functions.php:395
3251
  msgid "Deleted"
3252
  msgstr "پاک شده"
3253
 
3254
+ #: ../includes/mycred-functions.php:532
3255
  msgid "Deleted Item"
3256
  msgstr "موردهای پاک شده"
3257
 
3258
+ #: ../includes/mycred-functions.php:596
3259
+ msgid "User Related"
3260
+ msgstr "مرتبط با کاربر"
3261
+
3262
+ #: ../includes/mycred-functions.php:603
3263
+ msgid "Post Related"
3264
+ msgstr "مرتبط با پست"
3265
+
3266
+ #: ../includes/mycred-functions.php:610
3267
  msgid "Comment Related"
3268
  msgstr ""
3269
 
3270
+ #: ../includes/mycred-functions.php:617
3271
  msgid "Widget Related"
3272
  msgstr ""
3273
 
3274
+ #: ../includes/mycred-functions.php:624
3275
  msgid "Amount Related"
3276
  msgstr ""
3277
 
3278
+ #: ../includes/mycred-functions.php:631
3279
  msgid "Video Related"
3280
  msgstr ""
3281
 
3282
+ #: ../includes/mycred-functions.php:642
3283
  msgid "and"
3284
  msgstr ""
3285
 
3286
+ #: ../includes/mycred-functions.php:644
3287
  msgid "Available Template Tags:"
3288
  msgstr ""
3289
 
3290
+ #: ../includes/mycred-functions.php:1565
3291
  msgid "Entire Log"
3292
  msgstr ""
3293
 
3294
+ #: ../includes/mycred-functions.php:1570 ../includes/mycred-functions.php:1571
3295
  msgid "Displayed Rows"
3296
  msgstr ""
3297
 
3298
+ #: ../includes/mycred-functions.php:1575
3299
  msgid "Search Results"
3300
  msgstr ""
3301
 
3302
+ #: ../includes/mycred-functions.php:1576
3303
  msgid "My Entire Log"
3304
  msgstr ""
3305
 
3306
+ #: ../includes/mycred-functions.php:1696
3307
  msgid "ref empty"
3308
  msgstr "ارجاع ( استرداد ) خالی می باشد"
3309
 
3310
+ #: ../includes/mycred-functions.php:1704
3311
  msgid "incorrect user id format"
3312
  msgstr "فرمت نامعتبر شناسه ی کاربر"
3313
 
3314
+ #: ../includes/mycred-functions.php:1717
3315
  msgid "incorrect unix timestamp (from):"
3316
  msgstr ""
3317
 
3318
+ #: ../includes/mycred-functions.php:1726
3319
  msgid "incorrect unix timestamp (to):"
3320
  msgstr ""
3321
 
3328
  msgstr ""
3329
 
3330
  #: ../includes/mycred-importer.php:43
3331
+ msgid "%s Balance Import"
3332
+ msgstr ""
3333
+
3334
+ #: ../includes/mycred-importer.php:44
3335
+ msgid "Import balances."
3336
+ msgstr ""
3337
+
3338
+ #: ../includes/mycred-importer.php:75
3339
  msgid "%s CubePoints Import"
3340
  msgstr ""
3341
 
3342
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
3343
  msgid "Import CubePoints log entries and / or balances."
3344
  msgstr ""
3345
 
3346
+ #: ../includes/mycred-importer.php:92
3347
  msgid "No CubePoints log exists."
3348
  msgstr ""
3349
 
3367
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3368
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
3369
 
3370
+ #: ../includes/mycred-install.php:243
3371
  msgid "myCRED needs your attention."
3372
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
3373
 
3374
+ #: ../includes/mycred-install.php:243
3375
  msgid "Run Setup"
3376
  msgstr "اجرای نصب"
3377
 
3378
+ #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3379
  msgid "myCRED Setup"
3380
  msgstr "راه اندازی \"اعتبار من\""
3381
 
3382
+ #: ../includes/mycred-install.php:385
3383
  msgid "%s Setup"
3384
  msgstr ""
3385
 
3386
+ #: ../includes/mycred-install.php:387
3387
  msgid "Step"
3388
  msgstr "گام"
3389
 
3390
+ #: ../includes/mycred-install.php:411
3391
  msgid ""
3392
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3393
  "format, layout and security settings."
3395
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید بود "
3396
  "تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3397
 
3398
+ #: ../includes/mycred-install.php:412
3399
  msgid "Begin Setup"
3400
  msgstr "آغاز نصب"
3401
 
3402
+ #: ../includes/mycred-install.php:467
3403
  msgid "Select the format you want to use for your points."
3404
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
3405
 
3406
+ #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3407
  msgid "Format"
3408
  msgstr "طرح ( فرمت )"
3409
 
3410
+ #: ../includes/mycred-install.php:471
3411
  msgid "Separators"
3412
  msgstr "جداکننده ها"
3413
 
3414
+ #: ../includes/mycred-install.php:481
3415
  msgid "Decimals"
3416
  msgstr "اعداد اعشاری"
3417
 
3418
+ #: ../includes/mycred-install.php:483
3419
  msgid "Use zero for no decimals."
3420
  msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
3421
 
3422
+ #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:344
3423
  msgid "Presentation"
3424
  msgstr "چگونگی نمایش امتیازها"
3425
 
3426
+ #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:331
3427
  msgid "Name (Singular)"
3428
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
3429
 
3430
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:336
3431
  msgid "Name (Plural)"
3432
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
3433
 
3434
+ #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:347
3435
  msgid "Prefix"
3436
  msgstr "پیشوند"
3437
 
3438
+ #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:355
3439
  msgid "Suffix"
3440
  msgstr "پسوند"
3441
 
3442
+ #: ../includes/mycred-install.php:511
3443
  msgid "Cancel Setup"
3444
  msgstr "لغو عملیات راه اندازی"
3445
 
3446
+ #: ../includes/mycred-install.php:511
3447
  msgid "Cancel"
3448
  msgstr "لغو"
3449
 
3450
+ #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3451
  msgid "Next"
3452
  msgstr "گام بعدی"
3453
 
3454
+ #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:363
3455
  msgid "Security"
3456
  msgstr "امنیت"
3457
 
3458
+ #: ../includes/mycred-install.php:546
3459
  msgid "Edit Settings Capability"
3460
  msgstr "ویرایش تنظیمات ظرفیتی"
3461
 
3462
+ #: ../includes/mycred-install.php:550
3463
  msgid "Edit Users %plural% Capability"
3464
  msgstr "ویرایش ظرفیت %plural% کاربر"
3465
 
3466
+ #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:376
3467
  msgid "Maximum %plural% payouts"
3468
  msgstr "بیشترین پرداخت %plural%"
3469
 
3470
+ #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:378
3471
  msgid ""
3472
  "As an added security, you can set the maximum amount a user can gain or loose "
3473
  "in a single instance. If used, make sure this is the maximum amount a user "
3479
  "که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم تعیین بکنید ."
3480
  " برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3481
 
3482
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:385
3483
  msgid "Exclude those who can \"Edit Settings\"."
3484
  msgstr ""
3485
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می خواهید "
3486
  "از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی آن ها را "
3487
  "در این کادر وارد فرمایید . )"
3488
 
3489
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:389
3490
  msgid "Exclude those who can \"Edit Users %plural%\"."
3491
  msgstr ""
3492
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( اگر "
3493
  "می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3494
  "آن ها را در این کادر وارد فرمایید . )"
3495
 
3496
+ #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:393
3497
  msgid "Exclude the following user IDs:"
3498
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
3499
 
3500
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:398
3501
  msgid "User Deletions"
3502
  msgstr ""
3503
 
3504
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:401
3505
  msgid "Delete log entries when user is deleted."
3506
  msgstr ""
3507
 
3508
+ #: ../includes/mycred-install.php:599
3509
  msgid "Ready"
3510
  msgstr "آماده"
3511
 
3512
+ #: ../includes/mycred-install.php:600
3513
  msgid "Almost done! Click the button below to finish this setup."
3514
  msgstr ""
3515
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
3516
  "پایان ببرید ."
3517
 
3518
+ #: ../includes/mycred-install.php:601
3519
  msgid "Install & Run"
3520
  msgstr "نصب و راه اندازی"
3521
 
3556
  msgid "Show all references"
3557
  msgstr "نمایش تمام منابع"
3558
 
3559
+ #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:541
3560
  msgid "User ID"
3561
  msgstr "شناسه کاربر"
3562
 
3622
  msgid "This Month"
3623
  msgstr "این ماه"
3624
 
3625
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
3626
  msgid "Network Settings"
3627
  msgstr "تنظیمات ظبکه"
3628
 
3629
+ #: ../includes/mycred-network.php:169
3630
  msgid "%s Network"
3631
  msgstr "شبکه %s"
3632
 
3633
+ #: ../includes/mycred-network.php:175
3634
  msgid "Note! %s has not yet been setup."
3635
  msgstr "توجه ! %s هنوز نصب نشده است ."
3636
 
3637
+ #: ../includes/mycred-network.php:179
3638
  msgid "Network Settings Updated"
3639
  msgstr "تنظیمات شبکه به روزرسانی شد"
3640
 
3641
+ #: ../includes/mycred-network.php:181
3642
  msgid "Configure network settings for %s."
3643
  msgstr "ویرایش تنظیمات شبکه برای %s ."
3644
 
3645
+ #: ../includes/mycred-network.php:188
3646
  msgid "Master Template"
3647
  msgstr "الگوی اصلی"
3648
 
3649
+ #: ../includes/mycred-network.php:199
3650
  msgid ""
3651
  "If enabled, %s will use your main site's settings for all other sites in your "
3652
  "network."
3654
  "اگر فعال باشد ، %s از تنظیمات سایت اصلی شما برای دیگر سایت های درون شبکه تان "
3655
  "استفاده خواهد کرد ."
3656
 
3657
+ #: ../includes/mycred-network.php:202
3658
  msgid "Central Logging"
3659
  msgstr "تهیه لیست گزارش مرکزی"
3660
 
3661
+ #: ../includes/mycred-network.php:213
3662
  msgid "If enabled, %s will log all site actions in your main site's log."
3663
  msgstr "اگر فعال باشد ، %s تمام اعمال انجام شده ی سایت ها را در سایت مرکزی لیست می کند ."
3664
 
3665
+ #: ../includes/mycred-network.php:216
3666
  msgid "Site Block"
3667
  msgstr "مسدود کردن سایت"
3668
 
3669
+ #: ../includes/mycred-network.php:220
3670
  msgid "Comma separated list of blog ids where %s is to be disabled."
3671
  msgstr ""
3672
  "لیستی از شناسه ی سایت هایی که با ویرگول از هم جدا شده و %s آن ها را غیرفعال می "
3673
  "کند ."
3674
 
3675
+ #: ../includes/mycred-network.php:229
3676
  msgid "Save Network Settings"
3677
  msgstr "ذخیره تنظیمات شبکه"
3678
 
3679
+ #: ../includes/mycred-overview.php:25
3680
  msgid "%s Overview"
3681
  msgstr ""
3682
 
3683
+ #: ../includes/mycred-overview.php:78
3684
  msgid "Total amount in circulation"
3685
  msgstr ""
3686
 
3687
+ #: ../includes/mycred-overview.php:81
3688
  msgid "Awarded"
3689
  msgstr ""
3690
 
3691
+ #: ../includes/mycred-overview.php:84
3692
  msgid "Deducted"
3693
  msgstr ""
3694
 
3695
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
3696
  msgid "Transfers"
3697
  msgstr ""
3698
 
3699
+ #: ../includes/mycred-overview.php:208
3700
  msgid "Manual"
3701
  msgstr ""
3702
 
3777
  msgid "Leaderboard is empty."
3778
  msgstr "لیست برترین ها خالیست"
3779
 
3780
+ #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3781
  msgid "Amount missing!"
3782
  msgstr "مقدار موجود نیست"
3783
 
3784
+ #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3785
  msgid "Log Template Missing!"
3786
  msgstr "نمونه لوگ موجود نیست"
3787
 
3788
+ #: ../includes/mycred-shortcodes.php:417
3789
  msgid "Anchor missing URL!"
3790
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
3791
 
3792
+ #: ../includes/mycred-shortcodes.php:482
3793
  msgid "User ID missing for recipient."
3794
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
3795
 
3796
+ #: ../includes/mycred-shortcodes.php:536
3797
  msgid "Sent"
3798
  msgstr "ارسال شده"
3799
 
3800
+ #: ../includes/mycred-shortcodes.php:537
3801
  msgid "Error - Try Again"
3802
  msgstr "خطا - لطفا مجددا تلاش کنید"
3803
 
3804
+ #: ../includes/mycred-shortcodes.php:645
3805
  msgid "A video ID is required for this shortcode"
3806
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
3807
 
3821
  msgid "%plural% History"
3822
  msgstr "گزارش جابجایی %plural%"
3823
 
3824
+ #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3825
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3826
  msgstr "برای دیدن میزان امتیازات خود ، لطفا <a href=\"%login_url_here%\">وارد</a> شوید ."
3827
 
3853
  msgid "Row layout"
3854
  msgstr "طرح ردیف ( سطر )"
3855
 
3856
+ #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:607
3857
  msgid "Show message when not logged in"
3858
  msgstr "نمایش پیام در زمان هایی که کاربر لوگین نکرده باشد"
3859
 
3860
+ #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:608
3861
  msgid "Message"
3862
  msgstr "پیام"
3863
 
3905
  "at the end with their current position."
3906
  msgstr ""
3907
 
3908
+ #: ../includes/mycred-widgets.php:495
3909
  msgid "Shows the current users balances for each point type."
3910
  msgstr ""
3911
 
3912
+ #: ../includes/mycred-widgets.php:497
3913
  msgid "(%s) Wallet"
3914
  msgstr ""
3915
 
3916
+ #: ../includes/mycred-widgets.php:577
3917
  msgid "My Wallet"
3918
  msgstr ""
3919
 
3920
+ #: ../includes/mycred-widgets.php:599
3921
  msgid "Row Layout"
3922
  msgstr ""
3923
 
3935
  "imported. <strong>%d</strong> was skipped."
3936
  msgstr ""
3937
 
3938
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3939
  msgid "View Log"
3940
  msgstr ""
3941
 
3942
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3943
  msgid "Import More"
3944
  msgstr ""
3945
 
3979
  msgid "Import Log"
3980
  msgstr ""
3981
 
3982
+ #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180 ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:144 ../includes/importers/mycred-balances.php:183 ../includes/importers/mycred-balances.php:198
3983
  msgid "Sorry, there has been an error."
3984
  msgstr ""
3985
 
3986
+ #: ../includes/importers/mycred-log-entries.php:82 ../includes/importers/mycred-balances.php:82
3987
  msgid "The file does not exist, please try again."
3988
  msgstr ""
3989
 
3990
+ #: ../includes/importers/mycred-log-entries.php:127 ../includes/importers/mycred-balances.php:145
3991
  msgid "The CSV is invalid."
3992
  msgstr ""
3993
 
3999
  msgid "Import log entries from a CSV file."
4000
  msgstr ""
4001
 
4002
+ #: ../includes/importers/mycred-log-entries.php:219 ../includes/importers/mycred-balances.php:237
4003
  msgid ""
4004
  "Before you can upload your import file, you will need to fix the following "
4005
  "error:"
4006
  msgstr ""
4007
 
4008
+ #: ../includes/importers/mycred-log-entries.php:228 ../includes/importers/mycred-balances.php:246
4009
  msgid "Choose a file from your computer:"
4010
  msgstr ""
4011
 
4012
+ #: ../includes/importers/mycred-log-entries.php:234 ../includes/importers/mycred-balances.php:252
4013
  msgid "Maximum size: %s"
4014
  msgstr ""
4015
 
4016
+ #: ../includes/importers/mycred-log-entries.php:239 ../includes/importers/mycred-balances.php:257
4017
  msgid "OR enter path to file:"
4018
  msgstr ""
4019
 
4020
+ #: ../includes/importers/mycred-log-entries.php:246 ../includes/importers/mycred-balances.php:264
4021
  msgid "Delimiter"
4022
  msgstr ""
4023
 
4024
+ #: ../includes/importers/mycred-log-entries.php:252 ../includes/importers/mycred-balances.php:270
4025
  msgid "Upload file and import"
4026
  msgstr ""
4027
 
4028
+ #: ../includes/importers/mycred-balances.php:156
4029
+ msgid ""
4030
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
4031
+ "imported. <strong>%d</strong> was skipped."
4032
+ msgstr ""
4033
+
4034
+ #: ../includes/importers/mycred-balances.php:212
4035
+ msgid "Import Balances"
4036
+ msgstr ""
4037
+
4038
+ #: ../includes/importers/mycred-balances.php:229
4039
+ msgid "Import balances from a CSV file."
4040
+ msgstr ""
4041
+
4042
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
4043
  msgid "Add-ons"
4044
  msgstr "افزونه های جانبی"
4045
 
4046
+ #: ../modules/mycred-module-addons.php:158
4047
  msgid ""
4048
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4049
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
4055
  "کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای ایگرگ "
4056
  "امتیاز بخرد ! )"
4057
 
4058
+ #: ../modules/mycred-module-addons.php:169
4059
  msgid ""
4060
+ "The coupons add-on allows you to create coupons that users can use to add "
4061
  "points to their accounts."
4062
  msgstr ""
4063
 
4064
+ #: ../modules/mycred-module-addons.php:180
4065
  msgid "Create email notices for any type of myCRED instance."
4066
  msgstr "برای هر یک از بخش های \"اعتبار من\" ، اطلاعیه ایمیلی بسازید ."
4067
 
4068
+ #: ../modules/mycred-module-addons.php:191
4069
  msgid ""
4070
  "Let your users pay using their <strong>my</strong>CRED points balance. "
4071
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
4072
  "Bookings: Event Espresso and Events Manager (free & pro)."
4073
  msgstr ""
4074
 
4075
+ #: ../modules/mycred-module-addons.php:202
4076
  msgid "Create pop-up notifications for when users gain or loose points."
4077
  msgstr ""
4078
 
4079
+ #: ../modules/mycred-module-addons.php:214
4080
  msgid ""
4081
  "Create ranks for users reaching a certain number of %_plural% with the option "
4082
  "to add logos for each rank."
4083
  msgstr ""
4084
 
4085
+ #: ../modules/mycred-module-addons.php:225
4086
  msgid ""
4087
  "This add-on allows you to sell posts, pages or any public post types on your "
4088
  "website. You can either sell the entire content or using our shortcode, sell "
4094
  "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، مثل "
4095
  "\"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
4096
 
4097
+ #: ../modules/mycred-module-addons.php:236
4098
  msgid ""
4099
  "Allow your users to send or \"donate\" points to other members by either using "
4100
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4103
  "\"اهدا\" کنند . از دو طریق می توان این کار را انجام داد ، استفاده از کد "
4104
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
4105
 
4106
+ #: ../modules/mycred-module-addons.php:272
4107
  msgid "%s Add-ons"
4108
  msgstr "افزونه های جانبی %s"
4109
 
4110
+ #: ../modules/mycred-module-addons.php:278
4111
  msgid "Add-on Activated"
4112
  msgstr "افزونه جانبی فعال شد"
4113
 
4114
+ #: ../modules/mycred-module-addons.php:281
4115
  msgid "Add-on Deactivated"
4116
  msgstr "افزونه جانبی غیرفعال شد"
4117
 
4118
+ #: ../modules/mycred-module-addons.php:285
4119
  msgid "Add-ons can expand your current installation with further features."
4120
  msgstr ""
4121
  "افزونه های جانبی می توانند قابلیت های جدید و مفیدی را به افزونه ی فعلی شما "
4122
  "ببخشند ."
4123
 
4124
+ #: ../modules/mycred-module-addons.php:306
4125
  msgid "You can find more add-ons in our %s."
4126
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
4127
 
4128
+ #: ../modules/mycred-module-addons.php:306
4129
  msgid "online store"
4130
  msgstr "فروشگاه آنلاین"
4131
 
4132
+ #: ../modules/mycred-module-addons.php:327
4133
  msgid "Deactivate Add-on"
4134
  msgstr "غیرفعال کردن افزونه ی جانبی"
4135
 
4136
+ #: ../modules/mycred-module-addons.php:328
4137
  msgid "Deactivate"
4138
  msgstr "غیرفعالسازی"
4139
 
4140
+ #: ../modules/mycred-module-addons.php:335
4141
  msgid "Activate Add-on"
4142
  msgstr "فعال کردن افزونه جانبی"
4143
 
4144
+ #: ../modules/mycred-module-addons.php:336
4145
  msgid "Activate"
4146
  msgstr "فعالسازی"
4147
 
4148
+ #: ../modules/mycred-module-addons.php:352
4149
  msgid "Version"
4150
  msgstr "نسخه"
4151
 
4152
+ #: ../modules/mycred-module-addons.php:356
4153
  msgid "By"
4154
  msgstr "توسط"
4155
 
4156
+ #: ../modules/mycred-module-addons.php:364
4157
  msgid "Get Pro"
4158
  msgstr ""
4159
 
4326
  "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر اساس "
4327
  "انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
4328
 
4329
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2199 ../modules/mycred-module-hooks.php:2228 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4330
  msgid "Log template"
4331
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4332
 
4333
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2207 ../modules/mycred-module-hooks.php:2236 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4334
  msgid "Limit"
4335
  msgstr "محدوده"
4336
 
4337
+ #: ../modules/mycred-module-hooks.php:632
4338
  msgid "%plural% for Posts"
4339
  msgstr "اهدای %plural% برای پست ها"
4340
 
4341
+ #: ../modules/mycred-module-hooks.php:645
4342
  msgid "%plural% for Pages"
4343
  msgstr "اهدای %plural% برای ایجاد صفحات"
4344
 
4345
+ #: ../modules/mycred-module-hooks.php:681
4346
  msgid "%plural% for %s"
4347
  msgstr "اهدای %plural% برای %s"
4348
 
4349
+ #: ../modules/mycred-module-hooks.php:1053
4350
  msgid ""
4351
  "%plural% are only awarded when your website has been synced with the Disqus "
4352
  "server!"
4353
  msgstr ""
4354
 
4355
+ #: ../modules/mycred-module-hooks.php:1055
4356
  msgid "Approved Comment"
4357
  msgstr "نظرات تایید شده"
4358
 
4359
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
4360
  msgid "Comment Author"
4361
  msgstr "نویسنده ی دیدگاه"
4362
 
4363
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
4364
  msgid "Content Author"
4365
  msgstr "نویسنده ی مطلب"
4366
 
4367
+ #: ../modules/mycred-module-hooks.php:1072
4368
  msgid "Comment Marked SPAM"
4369
  msgstr "دیدگاه هایی که به عنوان اسپم نشانه گذاری شده اند"
4370
 
4371
+ #: ../modules/mycred-module-hooks.php:1089
4372
  msgid "Trashed / Unapproved Comments"
4373
  msgstr "دیدگاه ها تایید نشده یا منتقل شده به زباله دان"
4374
 
4375
+ #: ../modules/mycred-module-hooks.php:1109
4376
  msgid "Limit per post"
4377
  msgstr "محدودیت برای هر پست"
4378
 
4379
+ #: ../modules/mycred-module-hooks.php:1111
4380
  msgid ""
4381
  "The number of comments per post that grants %_plural% to the comment author. "
4382
  "Use zero for unlimited."
4384
  "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد شد . "
4385
  "برای برداشتن این محدودیت عدد صفر را وارد کنید ."
4386
 
4387
+ #: ../modules/mycred-module-hooks.php:1115
4388
  msgid "Limit per day"
4389
  msgstr "محدودیت هر روزه"
4390
 
4391
+ #: ../modules/mycred-module-hooks.php:1117
4392
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4393
  msgstr ""
4394
  "تعداد دیدگاه های مجاز در روز ، که باعث کسب %_plural% خواهد شد . برای برداشتن "
4395
  "این محدودیت عدد صفر را وارد کنید ."
4396
 
4397
+ #: ../modules/mycred-module-hooks.php:1122
4398
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4399
  msgstr ""
4400
  "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای تو "
4401
  "در تو )"
4402
 
4403
+ #: ../modules/mycred-module-hooks.php:1193
4404
  msgid "Once for each unique URL"
4405
  msgstr "یک بار برای هر لینک یکتا"
4406
 
4407
+ #: ../modules/mycred-module-hooks.php:1194
4408
  msgid "Once for each unique link id"
4409
  msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
4410
 
4411
+ #: ../modules/mycred-module-hooks.php:1386
4412
  msgid ""
4413
  "The default amount to award for clicking on links. You can override this in the "
4414
  "shortcode."
4416
  "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این مقدار "
4417
  "را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
4418
 
4419
+ #: ../modules/mycred-module-hooks.php:1393
4420
  msgid "Custom tags: %url%, %title% or %id%."
4421
  msgstr ""
4422
 
4423
+ #: ../modules/mycred-module-hooks.php:1404 ../modules/mycred-module-hooks.php:2310
4424
  msgid "Note!"
4425
  msgstr "نکته !"
4426
 
4427
+ #: ../modules/mycred-module-hooks.php:1404
4428
  msgid ""
4429
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4430
  "generate one automatically based on the value set under href. If you are using "
4435
  "، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا استفاده "
4436
  "می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
4437
 
4438
+ #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4439
  msgid "Available Shortcode"
4440
  msgstr ""
4441
 
4442
+ #: ../modules/mycred-module-hooks.php:1726
4443
  msgid "Amount to award for viewing videos."
4444
  msgstr "مقداری که به ازای تماشای ویدیوها به کاربر اهدا می گردد ."
4445
 
4446
+ #: ../modules/mycred-module-hooks.php:1736
4447
  msgid "Award Logic"
4448
  msgstr "منطق اهدای امتیازات"
4449
 
4450
+ #: ../modules/mycred-module-hooks.php:1738
4451
  msgid "Select when %_plural% should be awarded or deducted."
4452
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
4453
 
4454
+ #: ../modules/mycred-module-hooks.php:1739
4455
  msgid "Play - As soon as video starts playing."
4456
  msgstr "پخش - به محض شروع به پخش ویدیو"
4457
 
4458
+ #: ../modules/mycred-module-hooks.php:1740
4459
  msgid "Full - First when the entire video has played."
4460
  msgstr "کامل - بعد از اینکه کل ویدیو به صورت کامل پخش بشود"
4461
 
4462
+ #: ../modules/mycred-module-hooks.php:1741
4463
  msgid "Interval - For each x number of seconds watched."
4464
  msgstr "بازه ای - برای هر تعداد ثانیه ی مشخصی از ویدیو که تماشا می شود ."
4465
 
4466
+ #: ../modules/mycred-module-hooks.php:1746
4467
  msgid "Number of seconds"
4468
  msgstr "تعداد ثانیه ها"
4469
 
4470
+ #: ../modules/mycred-module-hooks.php:1753
4471
  msgid "Leniency"
4472
  msgstr "نرمی و ملایمت"
4473
 
4474
+ #: ../modules/mycred-module-hooks.php:1755
4475
  msgid ""
4476
  "The maximum percentage a users view of a movie can differ from the actual "
4477
  "length."
4479
  "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده می "
4480
  "شه ، تفاوت پیدا کنه"
4481
 
4482
+ #: ../modules/mycred-module-hooks.php:1758
4483
  msgid ""
4484
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4485
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4490
  "طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( روی "
4491
  "ثانیه شمار ویدیو تغییر ایجاد کنه )"
4492
 
4493
+ #: ../modules/mycred-module-hooks.php:1826
4494
  msgid "Affiliate Program"
4495
  msgstr ""
4496
 
4497
+ #: ../modules/mycred-module-hooks.php:1835
4498
  msgid "Per Day"
4499
  msgstr ""
4500
 
4501
+ #: ../modules/mycred-module-hooks.php:1942
4502
  msgid "Link"
4503
  msgstr ""
4504
 
4505
+ #: ../modules/mycred-module-hooks.php:2193
4506
  msgid "Referring Visitors"
4507
  msgstr ""
4508
 
4509
+ #: ../modules/mycred-module-hooks.php:2217 ../modules/mycred-module-hooks.php:2246
4510
  msgid "The number of referrals each member can make. Use zero for unlimited."
4511
  msgstr ""
4512
 
4513
+ #: ../modules/mycred-module-hooks.php:2221 ../modules/mycred-module-hooks.php:2250
4514
  msgid "Referring Signups"
4515
  msgstr ""
4516
 
4517
+ #: ../modules/mycred-module-hooks.php:2225
4518
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4519
  msgstr ""
4520
 
4521
+ #: ../modules/mycred-module-hooks.php:2252
4522
  msgid "Registrations are disabled."
4523
  msgstr ""
4524
 
4525
+ #: ../modules/mycred-module-hooks.php:2259
4526
  msgid "Referral Links"
4527
  msgstr ""
4528
 
4529
+ #: ../modules/mycred-module-hooks.php:2263
4530
  msgid "Assign numeric referral IDs to each user."
4531
  msgstr ""
4532
 
4533
+ #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:2270
4534
  msgid "Example"
4535
  msgstr ""
4536
 
4537
+ #: ../modules/mycred-module-hooks.php:2269
4538
  msgid "Assign usernames as IDs for each user."
4539
  msgstr ""
4540
 
4541
+ #: ../modules/mycred-module-hooks.php:2273
4542
  msgid "IP Limit"
4543
  msgstr ""
4544
 
4545
+ #: ../modules/mycred-module-hooks.php:2277
4546
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4547
  msgstr ""
4548
 
4549
+ #: ../modules/mycred-module-hooks.php:2281 ../modules/mycred-module-hooks.php:2314
4550
  msgid "BuddyPress Profile"
4551
  msgstr ""
4552
 
4553
+ #: ../modules/mycred-module-hooks.php:2284
4554
  msgid "Insert Link in users Profile"
4555
  msgstr ""
4556
 
4557
+ #: ../modules/mycred-module-hooks.php:2285
4558
  msgid ""
4559
  "Option to inser the referral link in users profiles. Links will only be visible "
4560
  "to users viewing their own profiles or administrators."
4561
  msgstr ""
4562
 
4563
+ #: ../modules/mycred-module-hooks.php:2291
4564
  msgid "Leave empty to hide."
4565
  msgstr ""
4566
 
4567
+ #: ../modules/mycred-module-hooks.php:2294
4568
  msgid "Description"
4569
  msgstr ""
4570
 
4571
+ #: ../modules/mycred-module-hooks.php:2295
4572
  msgid "Optional description to insert under the link."
4573
  msgstr ""
4574
 
4575
+ #: ../modules/mycred-module-hooks.php:2307
4576
  msgid "Profile Positioning"
4577
  msgstr ""
4578
 
4579
+ #: ../modules/mycred-module-hooks.php:2309
4580
  msgid ""
4581
  "You can move around the referral link on your users profile by changing the "
4582
+ "position. Increase to move up, decrease to move down."
4583
  msgstr ""
4584
 
4585
+ #: ../modules/mycred-module-hooks.php:2310
4586
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4587
  msgstr ""
4588
 
4589
+ #: ../modules/mycred-module-hooks.php:2316
4590
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4591
  msgstr ""
4592
 
4593
+ #: ../modules/mycred-module-hooks.php:2324
4594
  msgid "Available Shortcodes"
4595
  msgstr ""
4596
 
4597
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4598
  msgid "Access denied for this action"
4599
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
4600
 
4601
+ #: ../modules/mycred-module-log.php:192
4602
  msgid "Row Deleted"
4603
  msgstr ""
4604
 
4605
+ #: ../modules/mycred-module-log.php:219
4606
  msgid "Log entry not found"
4607
  msgstr ""
4608
 
4609
+ #: ../modules/mycred-module-log.php:232
4610
  msgid "Entry Updated"
4611
  msgstr ""
4612
 
4613
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:424
4614
  msgid "Entries"
4615
  msgstr "داده های ورودی"
4616
 
4617
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:392 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:558
4618
  msgid "Export"
4619
  msgstr "خروجی گرفتن"
4620
 
4621
+ #: ../modules/mycred-module-log.php:311
4622
  msgid "Search results for"
4623
  msgstr "نتایج جستجو برای عبارت"
4624
 
4625
+ #: ../modules/mycred-module-log.php:386
4626
  msgid "%s Log"
4627
  msgstr ""
4628
 
4629
+ #: ../modules/mycred-module-log.php:511
4630
  msgid "Edit"
4631
  msgstr ""
4632
 
4633
+ #: ../modules/mycred-module-log.php:556
4634
  msgid "Current Log Entry"
4635
  msgstr ""
4636
 
4637
+ #: ../modules/mycred-module-log.php:558
4638
  msgid "The current saved log entry"
4639
  msgstr ""
4640
 
4641
+ #: ../modules/mycred-module-log.php:561
4642
  msgid "Adjust Log Entry"
4643
  msgstr ""
4644
 
4645
+ #: ../modules/mycred-module-log.php:563
4646
  msgid "The new log entry"
4647
  msgstr ""
4648
 
4649
+ #: ../modules/mycred-module-log.php:566
4650
  msgid "Update Log Entry"
4651
  msgstr ""
4652
 
4653
+ #: ../modules/mycred-module-log.php:598
4654
  msgid "My %s History"
4655
  msgstr ""
4656
 
4657
+ #: ../modules/mycred-module-settings.php:64 ../modules/mycred-module-settings.php:105
4658
  msgid "Missing point type"
4659
  msgstr ""
4660
 
4661
+ #: ../modules/mycred-module-settings.php:128
4662
  msgid "Accounts successfully reset"
4663
  msgstr "اکانت ها با موفقیت تنظیم مجدد ( ریست ) شدند"
4664
 
4665
+ #: ../modules/mycred-module-settings.php:168
4666
  msgid "No users found to export"
4667
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
4668
 
4669
+ #: ../modules/mycred-module-settings.php:314
4670
  msgid "Facebook"
4671
  msgstr "فیس بوک"
4672
 
4673
+ #: ../modules/mycred-module-settings.php:315
4674
  msgid "Google Plus"
4675
  msgstr "گوگل پلاس"
4676
 
4677
+ #: ../modules/mycred-module-settings.php:318
4678
  msgid "%s Settings"
4679
  msgstr "تنظیمات %s"
4680
 
4681
+ #: ../modules/mycred-module-settings.php:321
4682
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4683
  msgstr ""
4684
 
4685
+ #: ../modules/mycred-module-settings.php:326
4686
  msgid "Core Settings"
4687
  msgstr "تنظیمات اصلی"
4688
 
4689
+ #: ../modules/mycred-module-settings.php:328
4690
  msgid "Name"
4691
  msgstr "نام"
4692
 
4693
+ #: ../modules/mycred-module-settings.php:333
4694
  msgid "Accessible though the %singular% template tag."
4695
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
4696
 
4697
+ #: ../modules/mycred-module-settings.php:338
4698
  msgid "Accessible though the %plural% template tag."
4699
  msgstr "از بخش نمونه تگ های %plural% نیز قابل استفاده می باشد"
4700
 
4701
+ #: ../modules/mycred-module-settings.php:341
4702
  msgid "Tip"
4703
  msgstr "نکته"
4704
 
4705
+ #: ../modules/mycred-module-settings.php:341
4706
  msgid ""
4707
  "Adding an underscore at the beginning of template tag for names will return "
4708
  "them in lowercase. i.e. %_singular%"
4710
  "اضافه کردن آندرلاین در ابتدای نمونه تگ های مورد استفاده برای اسامی ، باعث می "
4711
  "شود آن ها به صورت حروف کوچک چاپ شوند . مثال : %_singular%"
4712
 
4713
+ #: ../modules/mycred-module-settings.php:359
4714
  msgid "Separator"
4715
  msgstr "جدا کننده"
4716
 
4717
+ #: ../modules/mycred-module-settings.php:366
4718
  msgid "Edit Settings"
4719
  msgstr "تنظیم مجدد"
4720
 
4721
+ #: ../modules/mycred-module-settings.php:368 ../modules/mycred-module-settings.php:373
4722
  msgid "Capability to check for."
4723
  msgstr "توانایی بررسی"
4724
 
4725
+ #: ../modules/mycred-module-settings.php:371
4726
  msgid "Edit Users %plural%"
4727
  msgstr "ویرایش %plural% کاربران"
4728
 
4729
+ #: ../modules/mycred-module-settings.php:395
4730
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4731
  msgstr ""
4732
  "برای جدا کردن شناسه ی کاربران در لیست ، به منظور محروم کردنشان ، از ویرگول "
4733
  "استفاده نمایید . استفاده از فاصله ( اسپیس ) مجاز نمی باشد !"
4734
 
4735
+ #: ../modules/mycred-module-settings.php:415
4736
  msgid "Management"
4737
  msgstr "مدیریت"
4738
 
4739
+ #: ../modules/mycred-module-settings.php:417
4740
  msgid "The Log"
4741
  msgstr "لیست گزارش ( لوگ )"
4742
 
4743
+ #: ../modules/mycred-module-settings.php:420
4744
  msgid "Table Name"
4745
  msgstr "نام جدول"
4746
 
4747
+ #: ../modules/mycred-module-settings.php:429
4748
  msgid "Empty Log"
4749
  msgstr "لیست گزارشات ( لوگ ) خالی"
4750
 
4751
+ #: ../modules/mycred-module-settings.php:435
4752
  msgid "User Meta Key"
4753
  msgstr "کلید اطلاعات کاربر ( Meta key ("
4754
 
4755
+ #: ../modules/mycred-module-settings.php:444
4756
  msgid "Set all to zero"
4757
  msgstr "تغییر تمام داده ها به عدد صفر"
4758
 
4759
+ #: ../modules/mycred-module-settings.php:444
4760
  msgid "CSV Export"
4761
  msgstr "خروجی گرفتن به صورت فایل CVS"
4762
 
4763
+ #: ../modules/mycred-module-settings.php:465
4764
  msgid "Default"
4765
  msgstr ""
4766
 
4767
+ #: ../modules/mycred-module-settings.php:468 ../modules/mycred-module-settings.php:487 ../modules/mycred-module-settings.php:509
4768
  msgid "Meta Key"
4769
  msgstr "کلید اطلاعات"
4770
 
4771
+ #: ../modules/mycred-module-settings.php:506
4772
  msgid "Add New Type"
4773
  msgstr ""
4774
 
4775
+ #: ../modules/mycred-module-settings.php:511
4776
  msgid "A unique ID for this type."
4777
  msgstr ""
4778
 
4779
+ #: ../modules/mycred-module-settings.php:516
4780
  msgid "Menu and page title."
4781
  msgstr ""
4782
 
4783
+ #: ../modules/mycred-module-settings.php:519
4784
  msgid "The meta key will define where your users balances are saved."
4785
  msgstr ""
4786
 
4787
+ #: ../modules/mycred-module-settings.php:536
4788
  msgid "Identify users by"
4789
  msgstr "تایید هویت کاربر به وسیله ی"
4790
 
4791
+ #: ../modules/mycred-module-settings.php:542
4792
  msgid "User Email"
4793
  msgstr "ایمیل کاربر"
4794
 
4795
+ #: ../modules/mycred-module-settings.php:543
4796
  msgid "User Login"
4797
  msgstr "ورود کاربر"
4798
 
4799
+ #: ../modules/mycred-module-settings.php:550
4800
  msgid ""
4801
  "Use ID if you intend to use this export as a backup of your current site while "
4802
  "Email is recommended if you want to export to a different site."
4805
  "( ID ) استفاده فرمایید . اما اگر می خواهید این تنظیمات را برای سایت دیگری خروجی "
4806
  "بگیرید ، ایمیل پیشنهاد می گردد ."
4807
 
4808
+ #: ../modules/mycred-module-settings.php:553
4809
  msgid "Import Log Entry"
4810
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
4811
 
4812
+ #: ../modules/mycred-module-settings.php:555
4813
  msgid ""
4814
  "Optional log entry to use if you intend to import this file in a different %s "
4815
  "installation."
5026
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
5027
 
5028
  #: ../plugins/mycred-hook-buddypress.php:377
5029
+ msgid "Daily limit. Use zero for unlimited."
5030
+ msgstr ""
5031
 
5032
  #: ../plugins/mycred-hook-buddypress.php:387
5033
  msgid "%plural% for New Avatar"
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: myCRED 1.2.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-08-14 22:26+0100\n"
6
- "PO-Revision-Date: Mon Mar 24 2014 18:44:40 GMT+0100 (CET)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: Dan <danco38@gmail.com>\n"
9
  "Language: French\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
@@ -23,103 +23,103 @@ msgstr ""
23
  "X-Loco-Target-Locale: fr_FR\n"
24
  "X-Generator: Loco - https://localise.biz/"
25
 
26
- #: ../mycred.php:395
27
  msgid "Balance"
28
  msgstr ""
29
 
30
- #: ../mycred.php:420
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
- #: ../mycred.php:472
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
- #: ../mycred.php:518
39
  msgid "About %s"
40
  msgstr ""
41
 
42
- #: ../mycred.php:527 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr ""
45
 
46
- #: ../mycred.php:612 ../mycred.php:636 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:881 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:533
47
  msgid "Processing..."
48
  msgstr "Chargement en cours..."
49
 
50
- #: ../mycred.php:613
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
- #: ../mycred.php:614
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
- #: ../mycred.php:615
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:616
67
  msgid "Done!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:617 ../mycred.php:635 ../mycred.php:653
71
  msgid "Close"
72
  msgstr ""
73
 
74
- #: ../mycred.php:618
75
  msgid "Export users %plural%"
76
  msgstr ""
77
 
78
- #: ../mycred.php:634
79
- msgid "Edit Users %s balance"
80
  msgstr ""
81
 
82
- #: ../mycred.php:652
83
  msgid "Edit Log Entry"
84
  msgstr ""
85
 
86
- #: ../mycred.php:654
87
  msgid "Updating..."
88
  msgstr ""
89
 
90
- #: ../mycred.php:656
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr ""
93
 
94
- #: ../mycred.php:657
95
  msgid "Log entry updated"
96
  msgstr ""
97
 
98
- #: ../mycred.php:709 ../mycred.php:730 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Configuration"
101
 
102
- #: ../mycred.php:711 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:176 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr "Configuration"
105
 
106
- #: ../mycred.php:734 ../modules/mycred-module-addons.php:362
107
  msgid "About"
108
  msgstr ""
109
 
110
- #: ../mycred.php:735
111
  msgid "Tutorials"
112
  msgstr ""
113
 
114
- #: ../mycred.php:736
115
  msgid "Codex"
116
  msgstr ""
117
 
118
- #: ../mycred.php:737
119
  msgid "Store"
120
  msgstr ""
121
 
122
- #: ../mycred.php:751
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
@@ -135,7 +135,7 @@ msgstr ""
135
  msgid "This Hook has no settings"
136
  msgstr "Ce hook n'a pas de paramètre."
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1197
139
  msgid "No limit"
140
  msgstr "Illimité"
141
 
@@ -155,7 +155,7 @@ msgstr "Une fois tous les 7 jours"
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "Une fois par jour (remise à zéro à minuit)"
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "sélectionnez"
161
 
@@ -167,19 +167,19 @@ msgstr ""
167
  msgid "Surprise"
168
  msgstr ""
169
 
170
- #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:104
171
  msgid "click to close"
172
  msgstr "cliquez pour fermer"
173
 
174
- #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:105
175
  msgid "click to open"
176
  msgstr "cliquez pour ouvrir"
177
 
178
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:476
179
  msgid "Settings Updated"
180
  msgstr "Configuration mise à jour"
181
 
182
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:148
183
  msgid "Banking"
184
  msgstr "Banque"
185
 
@@ -211,7 +211,7 @@ msgstr ""
211
  "Attribuez régulièrement des %_plural% à vos utilisateurs, en fixant le cycle de "
212
  "répétition pour les créditer."
213
 
214
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:461 ../addons/buy-creds/myCRED-addon-buy-creds.php:591 ../includes/mycred-network.php:150 ../modules/mycred-module-addons.php:268 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:584 ../modules/mycred-module-settings.php:299
215
  msgid "Access Denied"
216
  msgstr "Accès refusé"
217
 
@@ -219,7 +219,7 @@ msgstr "Accès refusé"
219
  msgid "%s Banking"
220
  msgstr ""
221
 
222
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:149
223
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
224
  msgstr ""
225
 
@@ -231,7 +231,7 @@ msgstr ""
231
  msgid "Warning! This add-on requires WP - Cron to work."
232
  msgstr ""
233
 
234
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:537 ../modules/mycred-module-hooks.php:182
235
  msgid "Enable"
236
  msgstr "Activer"
237
 
@@ -301,7 +301,7 @@ msgstr "Solde minimum"
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "Le solde minimum pour l'application d'intérêts"
303
 
304
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:356 ../addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:516 ../modules/mycred-module-hooks.php:1396 ../modules/mycred-module-hooks.php:1736 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "Texte à afficher"
307
 
@@ -328,7 +328,7 @@ msgstr "N'est pas en service"
328
  msgid "Pay Users"
329
  msgstr "Payer les Utilisateurs"
330
 
331
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:641 ../addons/buy-creds/myCRED-addon-buy-creds.php:1138 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:345 ../includes/mycred-admin.php:456
332
  msgid "Amount"
333
  msgstr "Montant"
334
 
@@ -336,7 +336,7 @@ msgstr "Montant"
336
  msgid "Can not be zero."
337
  msgstr "Ne peut être zéro."
338
 
339
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1751
340
  msgid "Interval"
341
  msgstr "Intervalle"
342
 
@@ -389,7 +389,7 @@ msgstr ""
389
  "reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour faire une "
390
  "remise à zéro des cycles."
391
 
392
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:562 ../modules/mycred-module-settings.php:380
393
  msgid "Excludes"
394
  msgstr "Exclure"
395
 
@@ -405,243 +405,243 @@ msgstr ""
405
  msgid "Payment Gateways"
406
  msgstr "Services de paiement"
407
 
408
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:176
409
  msgid "buyCRED Purchase Log"
410
  msgstr ""
411
 
412
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:177 ../addons/buy-creds/myCRED-addon-buy-creds.php:405 ../addons/buy-creds/myCRED-addon-buy-creds.php:472
413
  msgid "Purchase Log"
414
  msgstr ""
415
 
416
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
417
  msgid "Payments"
418
  msgstr "Paiements"
419
 
420
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:295
421
  msgid "Please login to purchase %_plural%"
422
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
423
 
424
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310
425
  msgid "Gift purchase from %display_name%."
426
  msgstr "Achat de cadeau par %display_name%."
427
 
428
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326 ../includes/mycred-overview.php:96 ../includes/mycred-overview.php:103 ../modules/mycred-module-addons.php:159
429
  msgid "buyCRED"
430
  msgstr "achatCRED"
431
 
432
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:328 ../addons/ranks/myCRED-addon-ranks.php:608
433
  msgid "Minimum %plural%"
434
  msgstr "%plural% minimum"
435
 
436
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:332
437
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
438
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
439
 
440
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:337 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
441
  msgid "Point Type"
442
  msgstr ""
443
 
444
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349
445
  msgid "Login Template"
446
  msgstr "Template de connexion"
447
 
448
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353
449
  msgid "Content to show when a user is not logged in."
450
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
451
 
452
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:363
453
  msgid "Thank You Page"
454
  msgstr "Page de remerciement"
455
 
456
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:366 ../addons/buy-creds/myCRED-addon-buy-creds.php:387
457
  msgid "Custom URL"
458
  msgstr "URL personnalisée"
459
 
460
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:371 ../addons/buy-creds/myCRED-addon-buy-creds.php:392
461
  msgid "Page"
462
  msgstr ""
463
 
464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:384
465
  msgid "Cancellation Page"
466
  msgstr "Page d'annulation"
467
 
468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:407
469
  msgid "Show seperate log for %_plural% purchases."
470
  msgstr ""
471
 
472
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:409
473
  msgid "Gifting"
474
  msgstr "Remise de cadeaux"
475
 
476
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:411
477
  msgid "Allow users to buy %_plural% for other users."
478
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
479
 
480
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:412
481
  msgid "Allow users to buy %_plural% for content authors."
482
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
483
 
484
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472
485
  msgid "%s Payment Gateways"
486
  msgstr ""
487
 
488
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472 ../addons/buy-creds/myCRED-addon-buy-creds.php:647
489
  msgid "buyCRED Settings"
490
  msgstr ""
491
 
492
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:478
493
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
494
  msgstr ""
495
  "S&eacute;lectionnez le syst&egrave;me de paiement de %plural% que vous voulez "
496
  "mettre &agrave; la disposition de vos membres."
497
 
498
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:485
499
  msgid "Last Payment Notification"
500
  msgstr ""
501
 
502
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:487
503
  msgid ""
504
  "Here you can view the last payment confirmation that was sent to buyCRED for "
505
  "processing."
506
  msgstr ""
507
 
508
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
509
  msgid "Details"
510
  msgstr ""
511
 
512
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:493 ../modules/mycred-module-log.php:550
513
  msgid "Time"
514
  msgstr ""
515
 
516
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:638 ../includes/mycred-overview.php:164 ../includes/mycred-overview.php:171 ../modules/mycred-module-addons.php:192
517
  msgid "Gateway"
518
  msgstr ""
519
 
520
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501 ../addons/buy-creds/myCRED-addon-buy-creds.php:643
521
  msgid "Transaction ID"
522
  msgstr ""
523
 
524
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505
525
  msgid "Outcome"
526
  msgstr ""
527
 
528
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509
529
  msgid "Gateway Log"
530
  msgstr ""
531
 
532
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
533
  msgid "No recorded calls found."
534
  msgstr ""
535
 
536
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:530
537
  msgid "Test Mode"
538
  msgstr ""
539
 
540
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:532
541
  msgid "Enabled"
542
  msgstr ""
543
 
544
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:535
545
  msgid "Disabled"
546
  msgstr ""
547
 
548
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
549
  msgid "Sandbox Mode"
550
  msgstr "Mode bac à sable"
551
 
552
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
553
  msgid "Enable for test purchases."
554
  msgstr ""
555
 
556
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:565
557
  msgid "Update Gateway Settings"
558
  msgstr "Mettre à jour la configuration du service de paiement"
559
 
560
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:639 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:451 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:549
561
  msgid "User"
562
  msgstr "Utilisateur"
563
 
564
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640 ../includes/mycred-log.php:650
565
  msgid "Date"
566
  msgstr ""
567
 
568
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
569
  msgid "Payed"
570
  msgstr ""
571
 
572
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
573
  msgid "<strong>buy</strong>CRED Purchase Log"
574
  msgstr ""
575
 
576
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
577
  msgid "Gateway Settings"
578
  msgstr "Configuration du service de paiement"
579
 
580
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651
581
  msgid ""
582
  "Only completed purchases are shown here. Purchases that were cancelled or "
583
  "failed are not logged."
584
  msgstr ""
585
 
586
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:760 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:471
587
  msgid "User Missing"
588
  msgstr "Utilisateur inexistant"
589
 
590
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:817 ../addons/sell-content/myCRED-addon-sell-content.php:1110
591
  msgid "No purchases found"
592
  msgstr "Aucun achat trouvé"
593
 
594
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:889 ../addons/buy-creds/myCRED-addon-buy-creds.php:986
595
  msgid "This Add-on needs to setup before you can use this shortcode."
596
  msgstr ""
597
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
598
  "shortcode."
599
 
600
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
601
  msgid "No gateways installed."
602
  msgstr "Aucun systme de paiement n'est installé."
603
 
604
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:908 ../addons/buy-creds/myCRED-addon-buy-creds.php:1005
605
  msgid "Gateway does not exist."
606
  msgstr "Le service de paiement n'existe pas."
607
 
608
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:944
609
  msgid "Yourself"
610
  msgstr "Vous-même"
611
 
612
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1006
613
  msgid "No active gateways found."
614
  msgstr "Aucun service de paiement n'a été trouvé."
615
 
616
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1007
617
  msgid "The selected gateway is not active."
618
  msgstr "Ce service de paiement n'est pas activé"
619
 
620
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1043
621
  msgid "Buy with %gateway%"
622
  msgstr ""
623
 
624
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1049 ../addons/sell-content/myCRED-addon-sell-content.php:44
625
  msgid "Buy Now"
626
  msgstr "Acheter maintenant"
627
 
628
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1089
629
  msgid "No users found"
630
  msgstr "Aucun membre n'a été trouvé"
631
 
632
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1099
633
  msgid "To"
634
  msgstr "à"
635
 
636
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1116
637
  msgid "Select Amount"
638
  msgstr "Sélectionnez le montant"
639
 
640
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1140
641
  msgid "min."
642
  msgstr "mini."
643
 
644
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1148
645
  msgid "Select Gateway"
646
  msgstr "Sélectionnez le service de paiement"
647
 
@@ -683,11 +683,11 @@ msgstr "Paiement"
683
  msgid "Cancel purchase"
684
  msgstr ""
685
 
686
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:338 ../includes/mycred-admin.php:444
687
  msgid "required"
688
  msgstr "obligatoire"
689
 
690
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:340 ../includes/mycred-admin.php:446
691
  msgid "optional"
692
  msgstr "optionnel"
693
 
@@ -795,19 +795,19 @@ msgstr ""
795
  msgid "Validating sale"
796
  msgstr ""
797
 
798
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
799
  msgid "Token mismatch"
800
  msgstr ""
801
 
802
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
803
  msgid "Price mismatch"
804
  msgstr ""
805
 
806
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
807
  msgid "Currency mismatch"
808
  msgstr ""
809
 
810
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
811
  msgid "Duplicate transaction"
812
  msgstr ""
813
 
@@ -919,11 +919,11 @@ msgstr ""
919
  msgid "Full Notifications"
920
  msgstr ""
921
 
922
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:186 ../includes/mycred-network.php:200
923
  msgid "No"
924
  msgstr "non"
925
 
926
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:182 ../includes/mycred-network.php:196
927
  msgid "Yes"
928
  msgstr "oui"
929
 
@@ -1095,7 +1095,7 @@ msgstr ""
1095
  msgid "Checkout Page"
1096
  msgstr "Page de contrôle"
1097
 
1098
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:751 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:582 ../modules/mycred-module-hooks.php:2296
1099
  msgid "Title"
1100
  msgstr "Titre"
1101
 
@@ -1197,7 +1197,7 @@ msgstr ""
1197
  "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
1198
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
1199
 
1200
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:186 ../includes/mycred-overview.php:193 ../modules/mycred-module-addons.php:170
1201
  msgid "Coupons"
1202
  msgstr ""
1203
 
@@ -1233,7 +1233,7 @@ msgstr ""
1233
  msgid "No coupons found in Trash"
1234
  msgstr ""
1235
 
1236
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:181
1237
  msgid "Email Notices"
1238
  msgstr "Correspondance"
1239
 
@@ -1269,7 +1269,7 @@ msgstr ""
1269
  msgid "Usage"
1270
  msgstr "Utilisation"
1271
 
1272
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1111 ../modules/mycred-module-hooks.php:1403
1273
  msgid "Limits"
1274
  msgstr "Règles de limitation"
1275
 
@@ -1281,7 +1281,7 @@ msgstr ""
1281
  msgid "not yet used"
1282
  msgstr ""
1283
 
1284
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1841
1285
  msgid "Total"
1286
  msgstr ""
1287
 
@@ -1465,7 +1465,7 @@ msgstr "Aucun message trouvé"
1465
  msgid "No email notices found in Trash"
1466
  msgstr "Il n'y a pas de message dans la corbeille"
1467
 
1468
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/email-notices/myCRED-addon-email-notices.php:822 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:590
1469
  msgid "General"
1470
  msgstr "Général"
1471
 
@@ -1689,125 +1689,53 @@ msgstr "Enregistrer"
1689
  msgid "CSS Styling"
1690
  msgstr "Règles de style"
1691
 
1692
- #: ../addons/email-notices/myCRED-addon-email-notices.php:815
1693
  msgid "Site Related"
1694
  msgstr "A propos du site"
1695
 
1696
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1697
  msgid "Your websites title"
1698
  msgstr "Titre de votre site"
1699
 
1700
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1701
  msgid "Your websites address"
1702
  msgstr "Adresse de votre site"
1703
 
1704
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1705
  msgid "Your websites tagline (description)"
1706
  msgstr "Description de votre site"
1707
 
1708
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1709
  msgid "Your websites admin email"
1710
  msgstr "Email de l'administrateur du site"
1711
 
1712
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1713
  msgid "Total number of blog members"
1714
  msgstr "Total des membres de votre blog"
1715
 
1716
- #: ../addons/email-notices/myCRED-addon-email-notices.php:823
1717
- msgid "Points name in singular format"
1718
- msgstr "Nom du point au singulier"
1719
-
1720
- #: ../addons/email-notices/myCRED-addon-email-notices.php:824
1721
- msgid "Points name in plural"
1722
- msgstr "Nom du point au pluriel"
1723
-
1724
- #: ../addons/email-notices/myCRED-addon-email-notices.php:825
1725
- msgid "Login URL"
1726
- msgstr "URL de connexion"
1727
-
1728
- #: ../addons/email-notices/myCRED-addon-email-notices.php:828 ../includes/mycred-functions.php:597
1729
- msgid "User Related"
1730
- msgstr "A propos de l'utilisateur"
1731
-
1732
- #: ../addons/email-notices/myCRED-addon-email-notices.php:829
1733
- msgid "The users ID"
1734
- msgstr "ID de l'utilisateur"
1735
-
1736
- #: ../addons/email-notices/myCRED-addon-email-notices.php:830
1737
- msgid "The users login name (username)"
1738
- msgstr "Pseudonyme de l'utilisateur"
1739
-
1740
- #: ../addons/email-notices/myCRED-addon-email-notices.php:831
1741
- msgid "The users display name"
1742
- msgstr "Nom public de l'utilisateur"
1743
-
1744
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
1745
- msgid "The users profile address"
1746
- msgstr "Adresse du profil de l'utilisateur"
1747
-
1748
- #: ../addons/email-notices/myCRED-addon-email-notices.php:833
1749
- msgid "Link to the users profile address with their display name as title"
1750
- msgstr "Lien vers l'adresse du profil de l'utilisateur avec son nom public comme titre"
1751
-
1752
- #: ../addons/email-notices/myCRED-addon-email-notices.php:834
1753
- msgid "The users current balance unformated"
1754
- msgstr "Solde courant non formaté"
1755
-
1756
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
1757
- msgid "The users current balance formated"
1758
- msgstr "Solde courant formaté"
1759
-
1760
- #: ../addons/email-notices/myCRED-addon-email-notices.php:837 ../includes/mycred-functions.php:604
1761
- msgid "Post Related"
1762
- msgstr "Relatif à l'article"
1763
-
1764
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
1765
- msgid "Post Title"
1766
- msgstr "Titre de l'article"
1767
-
1768
- #: ../addons/email-notices/myCRED-addon-email-notices.php:839
1769
- msgid "Post URL address"
1770
- msgstr "URL de l'article"
1771
-
1772
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
1773
- msgid "Link to post Post title"
1774
- msgstr "Lien vers le titre de l'article"
1775
-
1776
- #: ../addons/email-notices/myCRED-addon-email-notices.php:841
1777
- msgid "The post type"
1778
- msgstr "Type de champ"
1779
-
1780
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917 ../addons/email-notices/myCRED-addon-email-notices.php:920
1781
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1782
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
1783
 
1784
- #: ../addons/email-notices/myCRED-addon-email-notices.php:918 ../addons/ranks/myCRED-addon-ranks.php:513
1785
- msgid "Custom field updated"
1786
- msgstr "Champ personnalisé mis à jour"
1787
-
1788
- #: ../addons/email-notices/myCRED-addon-email-notices.php:919 ../addons/ranks/myCRED-addon-ranks.php:514
1789
- msgid "Custom filed updated"
1790
- msgstr "Contenu personnalisé mis à jour"
1791
-
1792
- #: ../addons/email-notices/myCRED-addon-email-notices.php:922
1793
  msgid "Email Notice Activated"
1794
  msgstr "Message activé"
1795
 
1796
- #: ../addons/email-notices/myCRED-addon-email-notices.php:923
1797
  msgid "Email Notice Saved"
1798
  msgstr "Message enregistré"
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:924
1801
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1802
  msgstr ""
1803
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
1804
  "messages</a>."
1805
 
1806
- #: ../addons/email-notices/myCRED-addon-email-notices.php:926
1807
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1808
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
1809
 
1810
- #: ../addons/email-notices/myCRED-addon-email-notices.php:945
1811
  msgid ""
1812
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1813
  "not yet ready to use this email notice!"
@@ -1815,15 +1743,15 @@ msgstr ""
1815
  "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est actif !"
1816
  " Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à l'utiliser."
1817
 
1818
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1819
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1820
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
1821
 
1822
- #: ../addons/email-notices/myCRED-addon-email-notices.php:949
1823
  msgid "This email notice is active."
1824
  msgstr "Ce message est activé."
1825
 
1826
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:452
1827
  msgid "Current Balance"
1828
  msgstr "Solde actuel"
1829
 
@@ -1836,8 +1764,8 @@ msgid "Balance After Purchase"
1836
  msgstr "Solde après achats"
1837
 
1838
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1839
- msgid "<a href=\"%s\">Go Back</a>"
1840
- msgstr "<a href=\"%s\">revenir en arrière</a>"
1841
 
1842
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1843
  msgid "will be deducted from your account."
@@ -1856,7 +1784,7 @@ msgstr ""
1856
  msgid "Paid"
1857
  msgstr "Payé"
1858
 
1859
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:52 ../includes/mycred-network.php:53 ../plugins/mycred-hook-badgeOS.php:81
1860
  msgid "myCRED"
1861
  msgstr ""
1862
 
@@ -1935,8 +1863,8 @@ msgstr ""
1935
  msgid "Percentage"
1936
  msgstr ""
1937
 
1938
- #: ../addons/gateway/carts/mycred-marketpress.php:412
1939
- msgid "Option to share sales with the product owner. User zero to disable"
1940
  msgstr ""
1941
 
1942
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
@@ -2056,7 +1984,7 @@ msgstr "Afficher sur la page de contrôle d'achats"
2056
  msgid "Show in Cart and on Checkout Page"
2057
  msgstr "Afficher avec le panier et sur la page de contrôle"
2058
 
2059
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:471 ../modules/mycred-module-settings.php:490 ../modules/mycred-module-settings.php:513
2060
  msgid "Label"
2061
  msgstr "Etiquette"
2062
 
@@ -2064,10 +1992,6 @@ msgstr "Etiquette"
2064
  msgid "Order Total in %_plural%"
2065
  msgstr "Commande totale en %_plural%"
2066
 
2067
- #: ../addons/gateway/carts/mycred-woocommerce.php:159
2068
- msgid "Option to share a percentage of the sale with the product owner."
2069
- msgstr ""
2070
-
2071
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
2072
  msgid "Log entry template for profit sharing."
2073
  msgstr ""
@@ -2149,12 +2073,6 @@ msgstr ""
2149
  msgid "Payout"
2150
  msgstr ""
2151
 
2152
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2153
- msgid ""
2154
- "Option to share a percentage of the sale with the product owner (post author). "
2155
- "User zero to disable."
2156
- msgstr ""
2157
-
2158
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2159
  msgid "Instructions"
2160
  msgstr ""
@@ -2243,15 +2161,11 @@ msgstr ""
2243
  msgid "Users must be logged in to use this gateway!"
2244
  msgstr "Vous devez vous connecter pour utiliser ce service !"
2245
 
2246
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2247
- msgid "Option to share sales with the event owner (post author). Use zero to disable."
2248
- msgstr ""
2249
-
2250
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2251
  msgid "Log"
2252
  msgstr "Vue d&#39;ensemble"
2253
 
2254
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:457
2255
  msgid "Log Entry"
2256
  msgstr "Journal d'activité"
2257
 
@@ -2281,7 +2195,7 @@ msgstr ""
2281
  msgid "Message to show visitors (users not logged in) on the payment page."
2282
  msgstr ""
2283
 
2284
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:527
2285
  msgid "Update Settings"
2286
  msgstr "Enregistrer la configuration"
2287
 
@@ -2325,7 +2239,7 @@ msgstr ""
2325
  msgid "Reject"
2326
  msgstr ""
2327
 
2328
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:509 ../modules/mycred-module-settings.php:475 ../modules/mycred-module-settings.php:494
2329
  msgid "Delete"
2330
  msgstr ""
2331
 
@@ -2357,7 +2271,7 @@ msgstr "Remboursements"
2357
 
2358
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2359
  msgid ""
2360
- "The percentage of the paid amount to refund if a user cancells their booking. "
2361
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2362
  msgstr ""
2363
 
@@ -2422,7 +2336,7 @@ msgstr ""
2422
  "zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux commandes "
2423
  "\"Rejetées\"."
2424
 
2425
- #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:203
2426
  msgid "Notifications"
2427
  msgstr ""
2428
 
@@ -2470,11 +2384,11 @@ msgstr ""
2470
  msgid "Are you sure you want to re-assign user ranks?"
2471
  msgstr ""
2472
 
2473
- #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:746 ../addons/ranks/myCRED-addon-ranks.php:942 ../modules/mycred-module-addons.php:215
2474
  msgid "Ranks"
2475
  msgstr "Classements"
2476
 
2477
- #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:441 ../addons/ranks/myCRED-addon-ranks.php:457 ../addons/ranks/myCRED-addon-ranks.php:552
2478
  msgid "Rank"
2479
  msgstr "Classement"
2480
 
@@ -2506,129 +2420,129 @@ msgstr "Aucun classement trouvé"
2506
  msgid "No ranks found in Trash"
2507
  msgstr "Aucun classement trouvé dans la corbeille"
2508
 
2509
- #: ../addons/ranks/myCRED-addon-ranks.php:316
2510
  msgid "Completed - Total of %d users effected"
2511
  msgstr "Terminé - %d utilisateurs ont été affectés"
2512
 
2513
- #: ../addons/ranks/myCRED-addon-ranks.php:318
2514
  msgid "Log is Empty"
2515
  msgstr "L'affichage est vide"
2516
 
2517
- #: ../addons/ranks/myCRED-addon-ranks.php:512 ../addons/ranks/myCRED-addon-ranks.php:515
2518
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2519
  msgstr "Classement mis à jour. Afficher <a href=\"%1$s\">tous les classements</a>."
2520
 
2521
- #: ../addons/ranks/myCRED-addon-ranks.php:517
2522
  msgid "Rank Activated"
2523
  msgstr "Classement activé"
2524
 
2525
- #: ../addons/ranks/myCRED-addon-ranks.php:518
2526
  msgid "Rank Saved"
2527
  msgstr "Classement enregistré"
2528
 
2529
- #: ../addons/ranks/myCRED-addon-ranks.php:519
2530
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2531
  msgstr ""
2532
  "Classement en cours de validation. Afficher <a href=\"%1$s\">tous les "
2533
  "classements</a>."
2534
 
2535
- #: ../addons/ranks/myCRED-addon-ranks.php:521
2536
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2537
  msgstr "Classement pr&eacute;vu pour: <strong>%1$s</strong>."
2538
 
2539
- #: ../addons/ranks/myCRED-addon-ranks.php:578 ../addons/ranks/myCRED-addon-ranks.php:631
2540
  msgid "Rank Title"
2541
  msgstr "Titre du classement"
2542
 
2543
- #: ../addons/ranks/myCRED-addon-ranks.php:579
2544
  msgid "Logo"
2545
  msgstr ""
2546
 
2547
- #: ../addons/ranks/myCRED-addon-ranks.php:580
2548
  msgid "Requirement"
2549
  msgstr "Obligation"
2550
 
2551
- #: ../addons/ranks/myCRED-addon-ranks.php:581 ../modules/mycred-module-settings.php:438
2552
  msgid "Users"
2553
  msgstr "Utilisateurs"
2554
 
2555
- #: ../addons/ranks/myCRED-addon-ranks.php:597
2556
  msgid "No Logo Set"
2557
  msgstr "Aucun logo défini"
2558
 
2559
- #: ../addons/ranks/myCRED-addon-ranks.php:606 ../addons/ranks/myCRED-addon-ranks.php:611
2560
  msgid "Any Value"
2561
  msgstr "Valeur au choix"
2562
 
2563
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2564
  msgid "Maximum %plural%"
2565
  msgstr "Maximum de %plural%"
2566
 
2567
- #: ../addons/ranks/myCRED-addon-ranks.php:644
2568
  msgid "Rank Settings"
2569
  msgstr "Configuration des classements"
2570
 
2571
- #: ../addons/ranks/myCRED-addon-ranks.php:666
2572
  msgid "Minimum %plural% to reach this rank"
2573
  msgstr ""
2574
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
2575
  "classement"
2576
 
2577
- #: ../addons/ranks/myCRED-addon-ranks.php:670
2578
  msgid "Maximum %plural% to be included in this rank"
2579
  msgstr ""
2580
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
2581
  "classement"
2582
 
2583
- #: ../addons/ranks/myCRED-addon-ranks.php:677
2584
  msgid "All Published Ranks"
2585
  msgstr "Tous les classements publiés"
2586
 
2587
- #: ../addons/ranks/myCRED-addon-ranks.php:683 ../addons/ranks/myCRED-addon-ranks.php:685
2588
  msgid "Not Set"
2589
  msgstr "Non configuré"
2590
 
2591
- #: ../addons/ranks/myCRED-addon-ranks.php:690
2592
  msgid "No Ranks found"
2593
  msgstr "Aucun classement trouivé"
2594
 
2595
- #: ../addons/ranks/myCRED-addon-ranks.php:748
2596
  msgid "Rank Features"
2597
  msgstr "Caractéristiques du classement"
2598
 
2599
- #: ../addons/ranks/myCRED-addon-ranks.php:752
2600
  msgid "%plural% requirement"
2601
  msgstr "condition requise pour l&#39;attribution de %_plural%"
2602
 
2603
- #: ../addons/ranks/myCRED-addon-ranks.php:753
2604
  msgid "Featured Image (Logo)"
2605
  msgstr "Illustration (logo)"
2606
 
2607
- #: ../addons/ranks/myCRED-addon-ranks.php:754
2608
  msgid "Content"
2609
  msgstr "Contenu"
2610
 
2611
- #: ../addons/ranks/myCRED-addon-ranks.php:755
2612
  msgid "Excerpt"
2613
  msgstr "Extrait"
2614
 
2615
- #: ../addons/ranks/myCRED-addon-ranks.php:756
2616
  msgid "Comments"
2617
  msgstr "Commentaires"
2618
 
2619
- #: ../addons/ranks/myCRED-addon-ranks.php:757
2620
  msgid "Page Attributes"
2621
  msgstr "Attributs de la page"
2622
 
2623
- #: ../addons/ranks/myCRED-addon-ranks.php:758
2624
  msgid "Custom Fields"
2625
  msgstr "Champs Personnalisés"
2626
 
2627
- #: ../addons/ranks/myCRED-addon-ranks.php:761
2628
  msgid "Public"
2629
  msgstr ""
2630
 
2631
- #: ../addons/ranks/myCRED-addon-ranks.php:765
2632
  msgid ""
2633
  "If you want to create a template archive for each rank, you must select to have "
2634
  "ranks public. Defaults to disabled."
@@ -2636,15 +2550,15 @@ msgstr ""
2636
  "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent être "
2637
  "publics. Désactivé par défaut."
2638
 
2639
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2640
  msgid "Rank Basis"
2641
  msgstr "Base de Classement"
2642
 
2643
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2644
  msgid "Users are ranked according to their current balance."
2645
  msgstr "Les utilisateurs sont classés selon leur solde courant"
2646
 
2647
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2648
  msgid ""
2649
  "Users are ranked according to the total amount of %_plural% they have "
2650
  "accumulated."
@@ -2652,11 +2566,11 @@ msgstr ""
2652
  "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils ont "
2653
  "accumulés."
2654
 
2655
- #: ../addons/ranks/myCRED-addon-ranks.php:778 ../addons/ranks/myCRED-addon-ranks.php:783
2656
  msgid "Calculate Totals"
2657
  msgstr "Calculer les totaux"
2658
 
2659
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2660
  msgid ""
2661
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2662
  "the users current balance will be used as a starting point."
@@ -2665,7 +2579,7 @@ msgstr ""
2665
  "Si inutilisez c'est le solde courant des utilisateurs qui servira de point de "
2666
  "départ."
2667
 
2668
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2669
  msgid ""
2670
  "Once a users total has been calculated, they will be assigned to their "
2671
  "appropriate roles. For this reason, it is highly recommended that you first "
@@ -2675,7 +2589,7 @@ msgstr ""
2675
  "seront assignés. Pour cette raison, il est fortement recommandé que vous "
2676
  "configurez d'abord vos classements !"
2677
 
2678
- #: ../addons/ranks/myCRED-addon-ranks.php:782
2679
  msgid ""
2680
  "Depending on your log size and number of users this process may take a while. "
2681
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
@@ -2686,27 +2600,27 @@ msgstr ""
2686
  "pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin de "
2687
  "l'opération !"
2688
 
2689
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2690
  msgid "Archive URL"
2691
  msgstr "URL des archives"
2692
 
2693
- #: ../addons/ranks/myCRED-addon-ranks.php:791
2694
  msgid "Ignored if Ranks are not public"
2695
  msgstr "Ignoré si le classement n'est pas public"
2696
 
2697
- #: ../addons/ranks/myCRED-addon-ranks.php:794
2698
  msgid "Display Order"
2699
  msgstr "Ordre d'affichage"
2700
 
2701
- #: ../addons/ranks/myCRED-addon-ranks.php:801
2702
  msgid "Ascending - Lowest rank to highest"
2703
  msgstr "Ascendant - Du plus petit au plus grand"
2704
 
2705
- #: ../addons/ranks/myCRED-addon-ranks.php:802
2706
  msgid "Descending - Highest rank to lowest"
2707
  msgstr "Descendant - Du plus grand au plus petit"
2708
 
2709
- #: ../addons/ranks/myCRED-addon-ranks.php:811
2710
  msgid ""
2711
  "Select in what order ranks should be displayed in your admin area and/or front "
2712
  "if ranks are \"Public\""
@@ -2714,47 +2628,47 @@ msgstr ""
2714
  "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le site "
2715
  "quand les classements sont marqués comme \"Publics\""
2716
 
2717
- #: ../addons/ranks/myCRED-addon-ranks.php:821 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2718
  msgid "Do not show."
2719
  msgstr "Ne pas afficher."
2720
 
2721
- #: ../addons/ranks/myCRED-addon-ranks.php:822 ../modules/mycred-module-buddypress.php:365
2722
  msgid "Include in Profile Header."
2723
  msgstr "Inclure dans l'en-tête du profil."
2724
 
2725
- #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:366
2726
  msgid "Include under the \"Profile\" tab"
2727
  msgstr "Inclure sous l'onglet \"Profil\""
2728
 
2729
- #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:367
2730
  msgid "Include under the \"Profile\" tab and Profile Header."
2731
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
2732
 
2733
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2734
  msgid "Rank in BuddyPress"
2735
  msgstr "Classement dans BuddyPress"
2736
 
2737
- #: ../addons/ranks/myCRED-addon-ranks.php:895
2738
  msgid "Script Communication Error"
2739
  msgstr "Erreur de communication des scripts"
2740
 
2741
- #: ../addons/ranks/myCRED-addon-ranks.php:945
2742
  msgid "Rank Post Type"
2743
  msgstr ""
2744
 
2745
- #: ../addons/ranks/myCRED-addon-ranks.php:949
2746
  msgid "No. of ranks"
2747
  msgstr ""
2748
 
2749
- #: ../addons/ranks/myCRED-addon-ranks.php:953 ../modules/mycred-module-log.php:370 ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.php:442
2750
  msgid "Actions"
2751
  msgstr ""
2752
 
2753
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2754
  msgid "Remove All Ranks"
2755
  msgstr ""
2756
 
2757
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2758
  msgid "Assign Ranks to Users"
2759
  msgstr ""
2760
 
@@ -2770,7 +2684,7 @@ msgstr ""
2770
  msgid "No users found with this rank"
2771
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
2772
 
2773
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:415 ../includes/mycred-shortcodes.php:476 ../includes/mycred-shortcodes.php:480 ../includes/mycred-shortcodes.php:484
2774
  msgid "error"
2775
  msgstr "erreur"
2776
 
@@ -2806,7 +2720,7 @@ msgstr "Pas de paiement. Uniquement facturer."
2806
  msgid "Pay Content Author."
2807
  msgstr "Payer l'auteur du contenu"
2808
 
2809
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:139 ../includes/mycred-overview.php:146 ../modules/mycred-module-addons.php:226
2810
  msgid "Sell Content"
2811
  msgstr "Vendre du contenu"
2812
 
@@ -2998,7 +2912,7 @@ msgstr ""
2998
  msgid "Transfer %plural%"
2999
  msgstr "Transf&eacute;rer des %plural%"
3000
 
3001
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:588 ../modules/mycred-module-settings.php:456
3002
  msgid "Point Types"
3003
  msgstr ""
3004
 
@@ -3198,67 +3112,83 @@ msgid ""
3198
  "href=\"%s\">website</a>."
3199
  msgstr ""
3200
 
3201
- #: ../includes/mycred-admin.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3202
  msgid "User is excluded"
3203
  msgstr "Cet utilisateur est exclu"
3204
 
3205
- #: ../includes/mycred-admin.php:78
3206
  msgid "Log Entry can not be empty"
3207
  msgstr "Le champ ne peut pas être vide."
3208
 
3209
- #: ../includes/mycred-admin.php:82
3210
  msgid "Amount can not be zero"
3211
  msgstr "Le montant ne peut pas être zéro"
3212
 
3213
- #: ../includes/mycred-admin.php:105
3214
  msgid "Failed to update this uses balance."
3215
  msgstr ""
3216
 
3217
- #: ../includes/mycred-admin.php:240
3218
  msgid "Excluded"
3219
  msgstr "Exclus"
3220
 
3221
- #: ../includes/mycred-admin.php:253 ../modules/mycred-module-log.php:252 ../modules/mycred-module-log.php:253
3222
  msgid "History"
3223
  msgstr "Historique"
3224
 
3225
- #: ../includes/mycred-admin.php:254
3226
  msgid "Adjust"
3227
  msgstr "Ajustement"
3228
 
3229
- #: ../includes/mycred-admin.php:309 ../includes/mycred-admin.php:368
3230
  msgid "%singular% balance"
3231
  msgstr ""
3232
 
3233
- #: ../includes/mycred-admin.php:333
3234
  msgid "Adjust Your Balance"
3235
  msgstr "Ajuster votre relevé"
3236
 
3237
- #: ../includes/mycred-admin.php:335
3238
  msgid "Adjust Users Balance"
3239
  msgstr "Ajuster le relevé de l'utilisateur"
3240
 
3241
- #: ../includes/mycred-admin.php:346
3242
  msgid "Log description for adjustment"
3243
  msgstr "Descriptif de connexion pour ajustement"
3244
 
3245
- #: ../includes/mycred-admin.php:349
3246
  msgid "Update"
3247
  msgstr "Mis à jour"
3248
 
3249
- #: ../includes/mycred-admin.php:350
3250
  msgid "Description is required!"
3251
  msgstr "La description est obligatoire !"
3252
 
3253
- #: ../includes/mycred-admin.php:450
3254
  msgid "ID"
3255
  msgstr ""
3256
 
3257
- #: ../includes/mycred-admin.php:456
3258
  msgid "A positive or negative value"
3259
  msgstr "Une valeur positive ou négative"
3260
 
3261
- #: ../includes/mycred-admin.php:458
3262
  msgid "Update Balance"
3263
  msgstr "Mettre à jour le solde"
3264
 
@@ -3270,67 +3200,75 @@ msgstr ""
3270
  msgid "Points"
3271
  msgstr ""
3272
 
3273
- #: ../includes/mycred-functions.php:396
3274
  msgid "Deleted"
3275
  msgstr "Supprimé"
3276
 
3277
- #: ../includes/mycred-functions.php:533
3278
  msgid "Deleted Item"
3279
  msgstr "Item supprimé"
3280
 
3281
- #: ../includes/mycred-functions.php:611
 
 
 
 
 
 
 
 
3282
  msgid "Comment Related"
3283
  msgstr ""
3284
 
3285
- #: ../includes/mycred-functions.php:618
3286
  msgid "Widget Related"
3287
  msgstr ""
3288
 
3289
- #: ../includes/mycred-functions.php:625
3290
  msgid "Amount Related"
3291
  msgstr ""
3292
 
3293
- #: ../includes/mycred-functions.php:632
3294
  msgid "Video Related"
3295
  msgstr ""
3296
 
3297
- #: ../includes/mycred-functions.php:643
3298
  msgid "and"
3299
  msgstr ""
3300
 
3301
- #: ../includes/mycred-functions.php:645
3302
  msgid "Available Template Tags:"
3303
  msgstr ""
3304
 
3305
- #: ../includes/mycred-functions.php:1568
3306
  msgid "Entire Log"
3307
  msgstr ""
3308
 
3309
- #: ../includes/mycred-functions.php:1573 ../includes/mycred-functions.php:1574
3310
  msgid "Displayed Rows"
3311
  msgstr ""
3312
 
3313
- #: ../includes/mycred-functions.php:1578
3314
  msgid "Search Results"
3315
  msgstr ""
3316
 
3317
- #: ../includes/mycred-functions.php:1579
3318
  msgid "My Entire Log"
3319
  msgstr ""
3320
 
3321
- #: ../includes/mycred-functions.php:1699
3322
  msgid "ref empty"
3323
  msgstr ""
3324
 
3325
- #: ../includes/mycred-functions.php:1707
3326
  msgid "incorrect user id format"
3327
  msgstr "format du ID utilisateur incorrect"
3328
 
3329
- #: ../includes/mycred-functions.php:1720
3330
  msgid "incorrect unix timestamp (from):"
3331
  msgstr ""
3332
 
3333
- #: ../includes/mycred-functions.php:1729
3334
  msgid "incorrect unix timestamp (to):"
3335
  msgstr ""
3336
 
@@ -3343,14 +3281,22 @@ msgid "Import log entries via a CSV file."
3343
  msgstr ""
3344
 
3345
  #: ../includes/mycred-importer.php:43
 
 
 
 
 
 
 
 
3346
  msgid "%s CubePoints Import"
3347
  msgstr ""
3348
 
3349
- #: ../includes/mycred-importer.php:44 ../includes/importers/mycred-cubepoints.php:344
3350
  msgid "Import CubePoints log entries and / or balances."
3351
  msgstr ""
3352
 
3353
- #: ../includes/mycred-importer.php:60
3354
  msgid "No CubePoints log exists."
3355
  msgstr ""
3356
 
@@ -3375,27 +3321,27 @@ msgstr ""
3375
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3376
  "apparues:"
3377
 
3378
- #: ../includes/mycred-install.php:246
3379
  msgid "myCRED needs your attention."
3380
  msgstr ""
3381
 
3382
- #: ../includes/mycred-install.php:246
3383
  msgid "Run Setup"
3384
  msgstr "Démarrer l'installation"
3385
 
3386
- #: ../includes/mycred-install.php:258 ../includes/mycred-install.php:259
3387
  msgid "myCRED Setup"
3388
  msgstr "Installation de myCRED"
3389
 
3390
- #: ../includes/mycred-install.php:388
3391
  msgid "%s Setup"
3392
  msgstr ""
3393
 
3394
- #: ../includes/mycred-install.php:390
3395
  msgid "Step"
3396
  msgstr "Etape"
3397
 
3398
- #: ../includes/mycred-install.php:414
3399
  msgid ""
3400
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3401
  "format, layout and security settings."
@@ -3404,116 +3350,116 @@ msgstr ""
3404
  "en mesure de choisir le format de points, l'apparence et les paramètres de "
3405
  "sécurité."
3406
 
3407
- #: ../includes/mycred-install.php:415
3408
  msgid "Begin Setup"
3409
  msgstr "Démarrer le paramétrage"
3410
 
3411
- #: ../includes/mycred-install.php:470
3412
  msgid "Select the format you want to use for your points."
3413
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
3414
 
3415
- #: ../includes/mycred-install.php:471 ../includes/mycred-widgets.php:223
3416
  msgid "Format"
3417
  msgstr "Formatage"
3418
 
3419
- #: ../includes/mycred-install.php:474
3420
  msgid "Separators"
3421
  msgstr "Séparateurs"
3422
 
3423
- #: ../includes/mycred-install.php:484
3424
  msgid "Decimals"
3425
  msgstr "Décimales"
3426
 
3427
- #: ../includes/mycred-install.php:486
3428
  msgid "Use zero for no decimals."
3429
  msgstr "Utilisez zéro si vous ne voulez pas de décimales."
3430
 
3431
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3432
  msgid "Presentation"
3433
  msgstr "Présentation"
3434
 
3435
- #: ../includes/mycred-install.php:492 ../modules/mycred-module-settings.php:330
3436
  msgid "Name (Singular)"
3437
  msgstr "Nom (singulier)"
3438
 
3439
- #: ../includes/mycred-install.php:496 ../modules/mycred-module-settings.php:335
3440
  msgid "Name (Plural)"
3441
  msgstr "Nom (pluriel)"
3442
 
3443
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:346
3444
  msgid "Prefix"
3445
  msgstr "Préfixe"
3446
 
3447
- #: ../includes/mycred-install.php:510 ../modules/mycred-module-settings.php:354
3448
  msgid "Suffix"
3449
  msgstr "Suffixe"
3450
 
3451
- #: ../includes/mycred-install.php:514
3452
  msgid "Cancel Setup"
3453
  msgstr "Annuler le paramétrage"
3454
 
3455
- #: ../includes/mycred-install.php:514
3456
  msgid "Cancel"
3457
  msgstr "Annuler"
3458
 
3459
- #: ../includes/mycred-install.php:514 ../includes/mycred-install.php:584
3460
  msgid "Next"
3461
  msgstr "Suivant"
3462
 
3463
- #: ../includes/mycred-install.php:546 ../modules/mycred-module-settings.php:362
3464
  msgid "Security"
3465
  msgstr "Sécurité"
3466
 
3467
- #: ../includes/mycred-install.php:549
3468
  msgid "Edit Settings Capability"
3469
  msgstr "Modifier les paramètres"
3470
 
3471
- #: ../includes/mycred-install.php:553
3472
  msgid "Edit Users %plural% Capability"
3473
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
3474
 
3475
- #: ../includes/mycred-install.php:557 ../modules/mycred-module-settings.php:375
3476
  msgid "Maximum %plural% payouts"
3477
  msgstr ""
3478
 
3479
- #: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:377
3480
  msgid ""
3481
  "As an added security, you can set the maximum amount a user can gain or loose "
3482
  "in a single instance. If used, make sure this is the maximum amount a user "
3483
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3484
  msgstr ""
3485
 
3486
- #: ../includes/mycred-install.php:566 ../modules/mycred-module-settings.php:384
3487
  msgid "Exclude those who can \"Edit Settings\"."
3488
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
3489
 
3490
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:388
3491
  msgid "Exclude those who can \"Edit Users %plural%\"."
3492
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
3493
 
3494
- #: ../includes/mycred-install.php:573 ../modules/mycred-module-settings.php:392
3495
  msgid "Exclude the following user IDs:"
3496
  msgstr "Exclure les utilisateurs (ID) suivants"
3497
 
3498
- #: ../includes/mycred-install.php:577 ../modules/mycred-module-settings.php:397
3499
  msgid "User Deletions"
3500
  msgstr ""
3501
 
3502
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:400
3503
  msgid "Delete log entries when user is deleted."
3504
  msgstr ""
3505
 
3506
- #: ../includes/mycred-install.php:602
3507
  msgid "Ready"
3508
  msgstr "Prêt !"
3509
 
3510
- #: ../includes/mycred-install.php:603
3511
  msgid "Almost done! Click the button below to finish this setup."
3512
  msgstr ""
3513
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
3514
  "configuration."
3515
 
3516
- #: ../includes/mycred-install.php:604
3517
  msgid "Install & Run"
3518
  msgstr "Installer et démarrer"
3519
 
@@ -3554,7 +3500,7 @@ msgstr ""
3554
  msgid "Show all references"
3555
  msgstr "Afficher toutes les références"
3556
 
3557
- #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:540
3558
  msgid "User ID"
3559
  msgstr ""
3560
 
@@ -3620,79 +3566,79 @@ msgstr "Cette semaine"
3620
  msgid "This Month"
3621
  msgstr "Ce mois"
3622
 
3623
- #: ../includes/mycred-network.php:61 ../includes/mycred-network.php:62
3624
  msgid "Network Settings"
3625
  msgstr "Paramètres du réseau"
3626
 
3627
- #: ../includes/mycred-network.php:159
3628
  msgid "%s Network"
3629
  msgstr ""
3630
 
3631
- #: ../includes/mycred-network.php:165
3632
  msgid "Note! %s has not yet been setup."
3633
  msgstr ""
3634
 
3635
- #: ../includes/mycred-network.php:169
3636
  msgid "Network Settings Updated"
3637
  msgstr "Paramètres réseau mis à jour"
3638
 
3639
- #: ../includes/mycred-network.php:171
3640
  msgid "Configure network settings for %s."
3641
  msgstr "Configurer le r&eacute;seau pour %s"
3642
 
3643
- #: ../includes/mycred-network.php:178
3644
  msgid "Master Template"
3645
  msgstr "Template principal"
3646
 
3647
- #: ../includes/mycred-network.php:189
3648
  msgid ""
3649
  "If enabled, %s will use your main site's settings for all other sites in your "
3650
  "network."
3651
  msgstr ""
3652
 
3653
- #: ../includes/mycred-network.php:192
3654
  msgid "Central Logging"
3655
  msgstr ""
3656
 
3657
- #: ../includes/mycred-network.php:203
3658
  msgid "If enabled, %s will log all site actions in your main site's log."
3659
  msgstr ""
3660
 
3661
- #: ../includes/mycred-network.php:206
3662
  msgid "Site Block"
3663
  msgstr "Partie site"
3664
 
3665
- #: ../includes/mycred-network.php:210
3666
  msgid "Comma separated list of blog ids where %s is to be disabled."
3667
  msgstr ""
3668
  "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre d&eacute;"
3669
  "sactiv&eacute;."
3670
 
3671
- #: ../includes/mycred-network.php:219
3672
  msgid "Save Network Settings"
3673
  msgstr "Enregistrer les paramètres du réseau"
3674
 
3675
- #: ../includes/mycred-overview.php:23
3676
  msgid "%s Overview"
3677
  msgstr ""
3678
 
3679
- #: ../includes/mycred-overview.php:76
3680
  msgid "Total amount in circulation"
3681
  msgstr ""
3682
 
3683
- #: ../includes/mycred-overview.php:79
3684
  msgid "Awarded"
3685
  msgstr ""
3686
 
3687
- #: ../includes/mycred-overview.php:82
3688
  msgid "Deducted"
3689
  msgstr ""
3690
 
3691
- #: ../includes/mycred-overview.php:118 ../includes/mycred-overview.php:125 ../modules/mycred-module-addons.php:237
3692
  msgid "Transfers"
3693
  msgstr ""
3694
 
3695
- #: ../includes/mycred-overview.php:206
3696
  msgid "Manual"
3697
  msgstr ""
3698
 
@@ -3764,31 +3710,31 @@ msgstr ""
3764
  msgid "Leaderboard is empty."
3765
  msgstr "Aucun classement à afficher."
3766
 
3767
- #: ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:476
3768
  msgid "Amount missing!"
3769
  msgstr "Montant absent !"
3770
 
3771
- #: ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:484
3772
  msgid "Log Template Missing!"
3773
  msgstr "Rapport absent !"
3774
 
3775
- #: ../includes/mycred-shortcodes.php:415
3776
  msgid "Anchor missing URL!"
3777
  msgstr "L'ancre de l'URL est absente !"
3778
 
3779
- #: ../includes/mycred-shortcodes.php:480
3780
  msgid "User ID missing for recipient."
3781
  msgstr "L'ID du destinataire est absente !"
3782
 
3783
- #: ../includes/mycred-shortcodes.php:534
3784
  msgid "Sent"
3785
  msgstr ""
3786
 
3787
- #: ../includes/mycred-shortcodes.php:535
3788
  msgid "Error - Try Again"
3789
  msgstr ""
3790
 
3791
- #: ../includes/mycred-shortcodes.php:643
3792
  msgid "A video ID is required for this shortcode"
3793
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
3794
 
@@ -3808,7 +3754,7 @@ msgstr "Mon relevé"
3808
  msgid "%plural% History"
3809
  msgstr "Historique des %plural%"
3810
 
3811
- #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:578
3812
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3813
  msgstr "<a href=\"%login_url_here%\">Me connecter</a> pour consulter mon relev&eacute;"
3814
 
@@ -3840,11 +3786,11 @@ msgstr "Nombre d'entrées"
3840
  msgid "Row layout"
3841
  msgstr "Agencement des colonnes"
3842
 
3843
- #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:602
3844
  msgid "Show message when not logged in"
3845
  msgstr "Afficher les messages quand pas connceté"
3846
 
3847
- #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:603
3848
  msgid "Message"
3849
  msgstr ""
3850
 
@@ -3890,19 +3836,19 @@ msgid ""
3890
  "at the end with their current position."
3891
  msgstr ""
3892
 
3893
- #: ../includes/mycred-widgets.php:490
3894
  msgid "Shows the current users balances for each point type."
3895
  msgstr ""
3896
 
3897
- #: ../includes/mycred-widgets.php:492
3898
  msgid "(%s) Wallet"
3899
  msgstr ""
3900
 
3901
- #: ../includes/mycred-widgets.php:572
3902
  msgid "My Wallet"
3903
  msgstr ""
3904
 
3905
- #: ../includes/mycred-widgets.php:594
3906
  msgid "Row Layout"
3907
  msgstr ""
3908
 
@@ -3920,11 +3866,11 @@ msgid ""
3920
  "imported. <strong>%d</strong> was skipped."
3921
  msgstr ""
3922
 
3923
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3924
  msgid "View Log"
3925
  msgstr ""
3926
 
3927
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3928
  msgid "Import More"
3929
  msgstr ""
3930
 
@@ -3964,15 +3910,15 @@ msgstr ""
3964
  msgid "Import Log"
3965
  msgstr ""
3966
 
3967
- #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
3968
  msgid "Sorry, there has been an error."
3969
  msgstr ""
3970
 
3971
- #: ../includes/importers/mycred-log-entries.php:82
3972
  msgid "The file does not exist, please try again."
3973
  msgstr ""
3974
 
3975
- #: ../includes/importers/mycred-log-entries.php:127
3976
  msgid "The CSV is invalid."
3977
  msgstr ""
3978
 
@@ -3984,37 +3930,51 @@ msgstr ""
3984
  msgid "Import log entries from a CSV file."
3985
  msgstr ""
3986
 
3987
- #: ../includes/importers/mycred-log-entries.php:219
3988
  msgid ""
3989
  "Before you can upload your import file, you will need to fix the following "
3990
  "error:"
3991
  msgstr ""
3992
 
3993
- #: ../includes/importers/mycred-log-entries.php:228
3994
  msgid "Choose a file from your computer:"
3995
  msgstr ""
3996
 
3997
- #: ../includes/importers/mycred-log-entries.php:234
3998
  msgid "Maximum size: %s"
3999
  msgstr ""
4000
 
4001
- #: ../includes/importers/mycred-log-entries.php:239
4002
  msgid "OR enter path to file:"
4003
  msgstr ""
4004
 
4005
- #: ../includes/importers/mycred-log-entries.php:246
4006
  msgid "Delimiter"
4007
  msgstr ""
4008
 
4009
- #: ../includes/importers/mycred-log-entries.php:252
4010
  msgid "Upload file and import"
4011
  msgstr ""
4012
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4013
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
4014
  msgid "Add-ons"
4015
  msgstr "Modules"
4016
 
4017
- #: ../modules/mycred-module-addons.php:160
4018
  msgid ""
4019
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4020
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
@@ -4025,34 +3985,34 @@ msgstr ""
4025
  " buyCRED permet également à un utilisateur d'acheter des points pour un autre "
4026
  "membre du site."
4027
 
4028
- #: ../modules/mycred-module-addons.php:171
4029
  msgid ""
4030
- "The coupons add-on allows you you to create coupons that users can use to add "
4031
  "points to their accounts."
4032
  msgstr ""
4033
 
4034
- #: ../modules/mycred-module-addons.php:182
4035
  msgid "Create email notices for any type of myCRED instance."
4036
  msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
4037
 
4038
- #: ../modules/mycred-module-addons.php:193
4039
  msgid ""
4040
  "Let your users pay using their <strong>my</strong>CRED points balance. "
4041
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
4042
  "Bookings: Event Espresso and Events Manager (free & pro)."
4043
  msgstr ""
4044
 
4045
- #: ../modules/mycred-module-addons.php:204
4046
  msgid "Create pop-up notifications for when users gain or loose points."
4047
  msgstr ""
4048
 
4049
- #: ../modules/mycred-module-addons.php:216
4050
  msgid ""
4051
  "Create ranks for users reaching a certain number of %_plural% with the option "
4052
  "to add logos for each rank."
4053
  msgstr ""
4054
 
4055
- #: ../modules/mycred-module-addons.php:227
4056
  msgid ""
4057
  "This add-on allows you to sell posts, pages or any public post types on your "
4058
  "website. You can either sell the entire content or using our shortcode, sell "
@@ -4062,7 +4022,7 @@ msgstr ""
4062
  "type public publié sur votre site. Vous pouvez vendre la totalité d'un contenu "
4063
  "ou proposer des extraits à titre d'échantillons à l'aide de nos shortcodes."
4064
 
4065
- #: ../modules/mycred-module-addons.php:238
4066
  msgid ""
4067
  "Allow your users to send or \"donate\" points to other members by either using "
4068
  "the mycred_transfer shortcode or the myCRED Transfer widget."
@@ -4070,57 +4030,57 @@ msgstr ""
4070
  "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
4071
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
4072
 
4073
- #: ../modules/mycred-module-addons.php:274
4074
  msgid "%s Add-ons"
4075
  msgstr ""
4076
 
4077
- #: ../modules/mycred-module-addons.php:280
4078
  msgid "Add-on Activated"
4079
  msgstr "Module activé"
4080
 
4081
- #: ../modules/mycred-module-addons.php:283
4082
  msgid "Add-on Deactivated"
4083
  msgstr "Module désactivé"
4084
 
4085
- #: ../modules/mycred-module-addons.php:287
4086
  msgid "Add-ons can expand your current installation with further features."
4087
  msgstr ""
4088
  "Les modules servent à étendre l'application avec des fonctionnalités "
4089
  "supplémentaires."
4090
 
4091
- #: ../modules/mycred-module-addons.php:308
4092
  msgid "You can find more add-ons in our %s."
4093
  msgstr ""
4094
 
4095
- #: ../modules/mycred-module-addons.php:308
4096
  msgid "online store"
4097
  msgstr ""
4098
 
4099
- #: ../modules/mycred-module-addons.php:329
4100
  msgid "Deactivate Add-on"
4101
  msgstr "Désactiver le module"
4102
 
4103
- #: ../modules/mycred-module-addons.php:330
4104
  msgid "Deactivate"
4105
  msgstr "Désactiver"
4106
 
4107
- #: ../modules/mycred-module-addons.php:337
4108
  msgid "Activate Add-on"
4109
  msgstr "Activer le module"
4110
 
4111
- #: ../modules/mycred-module-addons.php:338
4112
  msgid "Activate"
4113
  msgstr "Activer"
4114
 
4115
- #: ../modules/mycred-module-addons.php:354
4116
  msgid "Version"
4117
  msgstr ""
4118
 
4119
- #: ../modules/mycred-module-addons.php:358
4120
  msgid "By"
4121
  msgstr "Par"
4122
 
4123
- #: ../modules/mycred-module-addons.php:366
4124
  msgid "Get Pro"
4125
  msgstr ""
4126
 
@@ -4293,85 +4253,85 @@ msgstr ""
4293
  "haut à droite sous la barre d'outils WP) pour une liste complète des mots-clés "
4294
  "disponibles pour l'affichage des textes."
4295
 
4296
- #: ../modules/mycred-module-hooks.php:321 ../modules/mycred-module-hooks.php:643 ../modules/mycred-module-hooks.php:656 ../modules/mycred-module-hooks.php:692 ../modules/mycred-module-hooks.php:1072 ../modules/mycred-module-hooks.php:1089 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:2206 ../modules/mycred-module-hooks.php:2235 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4297
  msgid "Log template"
4298
  msgstr "Texte à afficher"
4299
 
4300
- #: ../modules/mycred-module-hooks.php:523 ../modules/mycred-module-hooks.php:2214 ../modules/mycred-module-hooks.php:2243 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4301
  msgid "Limit"
4302
  msgstr "Limite d'attribution"
4303
 
4304
- #: ../modules/mycred-module-hooks.php:637
4305
  msgid "%plural% for Posts"
4306
  msgstr "%plural% pour un article"
4307
 
4308
- #: ../modules/mycred-module-hooks.php:650
4309
  msgid "%plural% for Pages"
4310
  msgstr "%plural% pour une page"
4311
 
4312
- #: ../modules/mycred-module-hooks.php:686
4313
  msgid "%plural% for %s"
4314
  msgstr "%plural% pour %s"
4315
 
4316
- #: ../modules/mycred-module-hooks.php:1058
4317
  msgid ""
4318
  "%plural% are only awarded when your website has been synced with the Disqus "
4319
  "server!"
4320
  msgstr ""
4321
 
4322
- #: ../modules/mycred-module-hooks.php:1060
4323
  msgid "Approved Comment"
4324
  msgstr "Commentaire approuvé"
4325
 
4326
- #: ../modules/mycred-module-hooks.php:1063 ../modules/mycred-module-hooks.php:1080 ../modules/mycred-module-hooks.php:1097
4327
  msgid "Comment Author"
4328
  msgstr ""
4329
 
4330
- #: ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101
4331
  msgid "Content Author"
4332
  msgstr ""
4333
 
4334
- #: ../modules/mycred-module-hooks.php:1077
4335
  msgid "Comment Marked SPAM"
4336
  msgstr "Commentaire signalé comme SPAM"
4337
 
4338
- #: ../modules/mycred-module-hooks.php:1094
4339
  msgid "Trashed / Unapproved Comments"
4340
  msgstr "Commentaire supprimé/refusé"
4341
 
4342
- #: ../modules/mycred-module-hooks.php:1114
4343
  msgid "Limit per post"
4344
  msgstr "Limite par article"
4345
 
4346
- #: ../modules/mycred-module-hooks.php:1116
4347
  msgid ""
4348
  "The number of comments per post that grants %_plural% to the comment author. "
4349
  "Use zero for unlimited."
4350
  msgstr ""
4351
 
4352
- #: ../modules/mycred-module-hooks.php:1120
4353
  msgid "Limit per day"
4354
  msgstr "Limite par jour"
4355
 
4356
- #: ../modules/mycred-module-hooks.php:1122
4357
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4358
  msgstr ""
4359
 
4360
- #: ../modules/mycred-module-hooks.php:1127
4361
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4362
  msgstr ""
4363
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
4364
  "pondant &agrave; son propre commentaire."
4365
 
4366
- #: ../modules/mycred-module-hooks.php:1198
4367
  msgid "Once for each unique URL"
4368
  msgstr "Une fois pour chaque URL unique"
4369
 
4370
- #: ../modules/mycred-module-hooks.php:1199
4371
  msgid "Once for each unique link id"
4372
  msgstr "Une fois pour chaque ID unique de lien"
4373
 
4374
- #: ../modules/mycred-module-hooks.php:1393
4375
  msgid ""
4376
  "The default amount to award for clicking on links. You can override this in the "
4377
  "shortcode."
@@ -4379,58 +4339,58 @@ msgstr ""
4379
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être modifié "
4380
  "avec le shortcode."
4381
 
4382
- #: ../modules/mycred-module-hooks.php:1400
4383
  msgid "Custom tags: %url%, %title% or %id%."
4384
  msgstr ""
4385
 
4386
- #: ../modules/mycred-module-hooks.php:1411 ../modules/mycred-module-hooks.php:2317
4387
  msgid "Note!"
4388
  msgstr ""
4389
 
4390
- #: ../modules/mycred-module-hooks.php:1411
4391
  msgid ""
4392
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4393
  "generate one automatically based on the value set under href. If you are using "
4394
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4395
  msgstr ""
4396
 
4397
- #: ../modules/mycred-module-hooks.php:1413 ../modules/mycred-module-hooks.php:1769
4398
  msgid "Available Shortcode"
4399
  msgstr ""
4400
 
4401
- #: ../modules/mycred-module-hooks.php:1733
4402
  msgid "Amount to award for viewing videos."
4403
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
4404
 
4405
- #: ../modules/mycred-module-hooks.php:1743
4406
  msgid "Award Logic"
4407
  msgstr "Attributs de classement"
4408
 
4409
- #: ../modules/mycred-module-hooks.php:1745
4410
  msgid "Select when %_plural% should be awarded or deducted."
4411
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
4412
 
4413
- #: ../modules/mycred-module-hooks.php:1746
4414
  msgid "Play - As soon as video starts playing."
4415
  msgstr "Play - aussitôt que la vidéo démarre"
4416
 
4417
- #: ../modules/mycred-module-hooks.php:1747
4418
  msgid "Full - First when the entire video has played."
4419
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
4420
 
4421
- #: ../modules/mycred-module-hooks.php:1748
4422
  msgid "Interval - For each x number of seconds watched."
4423
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
4424
 
4425
- #: ../modules/mycred-module-hooks.php:1753
4426
  msgid "Number of seconds"
4427
  msgstr "Nombre de secondes"
4428
 
4429
- #: ../modules/mycred-module-hooks.php:1760
4430
  msgid "Leniency"
4431
  msgstr "Tolérance"
4432
 
4433
- #: ../modules/mycred-module-hooks.php:1762
4434
  msgid ""
4435
  "The maximum percentage a users view of a movie can differ from the actual "
4436
  "length."
@@ -4438,7 +4398,7 @@ msgstr ""
4438
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
4439
  "longueur actuelle d'une vidéo."
4440
 
4441
- #: ../modules/mycred-module-hooks.php:1765
4442
  msgid ""
4443
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4444
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
@@ -4448,219 +4408,219 @@ msgstr ""
4448
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
4449
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
4450
 
4451
- #: ../modules/mycred-module-hooks.php:1833
4452
  msgid "Affiliate Program"
4453
  msgstr ""
4454
 
4455
- #: ../modules/mycred-module-hooks.php:1842
4456
  msgid "Per Day"
4457
  msgstr ""
4458
 
4459
- #: ../modules/mycred-module-hooks.php:1949
4460
  msgid "Link"
4461
  msgstr ""
4462
 
4463
- #: ../modules/mycred-module-hooks.php:2200
4464
  msgid "Referring Visitors"
4465
  msgstr ""
4466
 
4467
- #: ../modules/mycred-module-hooks.php:2224 ../modules/mycred-module-hooks.php:2253
4468
  msgid "The number of referrals each member can make. Use zero for unlimited."
4469
  msgstr ""
4470
 
4471
- #: ../modules/mycred-module-hooks.php:2228 ../modules/mycred-module-hooks.php:2257
4472
  msgid "Referring Signups"
4473
  msgstr ""
4474
 
4475
- #: ../modules/mycred-module-hooks.php:2232
4476
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4477
  msgstr ""
4478
 
4479
- #: ../modules/mycred-module-hooks.php:2259
4480
  msgid "Registrations are disabled."
4481
  msgstr ""
4482
 
4483
- #: ../modules/mycred-module-hooks.php:2266
4484
  msgid "Referral Links"
4485
  msgstr ""
4486
 
4487
- #: ../modules/mycred-module-hooks.php:2270
4488
  msgid "Assign numeric referral IDs to each user."
4489
  msgstr ""
4490
 
4491
- #: ../modules/mycred-module-hooks.php:2271 ../modules/mycred-module-hooks.php:2277
4492
  msgid "Example"
4493
  msgstr ""
4494
 
4495
- #: ../modules/mycred-module-hooks.php:2276
4496
  msgid "Assign usernames as IDs for each user."
4497
  msgstr ""
4498
 
4499
- #: ../modules/mycred-module-hooks.php:2280
4500
  msgid "IP Limit"
4501
  msgstr ""
4502
 
4503
- #: ../modules/mycred-module-hooks.php:2284
4504
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4505
  msgstr ""
4506
 
4507
- #: ../modules/mycred-module-hooks.php:2288 ../modules/mycred-module-hooks.php:2321
4508
  msgid "BuddyPress Profile"
4509
  msgstr ""
4510
 
4511
- #: ../modules/mycred-module-hooks.php:2291
4512
  msgid "Insert Link in users Profile"
4513
  msgstr ""
4514
 
4515
- #: ../modules/mycred-module-hooks.php:2292
4516
  msgid ""
4517
  "Option to inser the referral link in users profiles. Links will only be visible "
4518
  "to users viewing their own profiles or administrators."
4519
  msgstr ""
4520
 
4521
- #: ../modules/mycred-module-hooks.php:2298
4522
  msgid "Leave empty to hide."
4523
  msgstr ""
4524
 
4525
- #: ../modules/mycred-module-hooks.php:2301
4526
  msgid "Description"
4527
  msgstr ""
4528
 
4529
- #: ../modules/mycred-module-hooks.php:2302
4530
  msgid "Optional description to insert under the link."
4531
  msgstr ""
4532
 
4533
- #: ../modules/mycred-module-hooks.php:2314
4534
  msgid "Profile Positioning"
4535
  msgstr ""
4536
 
4537
- #: ../modules/mycred-module-hooks.php:2316
4538
  msgid ""
4539
  "You can move around the referral link on your users profile by changing the "
4540
- "position. Increase to move up, decrese to move down."
4541
  msgstr ""
4542
 
4543
- #: ../modules/mycred-module-hooks.php:2317
4544
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4545
  msgstr ""
4546
 
4547
- #: ../modules/mycred-module-hooks.php:2323
4548
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4549
  msgstr ""
4550
 
4551
- #: ../modules/mycred-module-hooks.php:2331
4552
  msgid "Available Shortcodes"
4553
  msgstr ""
4554
 
4555
- #: ../modules/mycred-module-log.php:183 ../modules/mycred-module-log.php:204 ../modules/mycred-module-settings.php:60 ../modules/mycred-module-settings.php:101
4556
  msgid "Access denied for this action"
4557
  msgstr ""
4558
 
4559
- #: ../modules/mycred-module-log.php:190
4560
  msgid "Row Deleted"
4561
  msgstr ""
4562
 
4563
- #: ../modules/mycred-module-log.php:217
4564
  msgid "Log entry not found"
4565
  msgstr ""
4566
 
4567
- #: ../modules/mycred-module-log.php:230
4568
  msgid "Entry Updated"
4569
  msgstr ""
4570
 
4571
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:423
4572
  msgid "Entries"
4573
  msgstr "Entrées"
4574
 
4575
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:390 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:557
4576
  msgid "Export"
4577
  msgstr ""
4578
 
4579
- #: ../modules/mycred-module-log.php:309
4580
  msgid "Search results for"
4581
  msgstr "Résultat de la recherche pour"
4582
 
4583
- #: ../modules/mycred-module-log.php:384
4584
  msgid "%s Log"
4585
  msgstr ""
4586
 
4587
- #: ../modules/mycred-module-log.php:509
4588
  msgid "Edit"
4589
  msgstr ""
4590
 
4591
- #: ../modules/mycred-module-log.php:554
4592
  msgid "Current Log Entry"
4593
  msgstr ""
4594
 
4595
- #: ../modules/mycred-module-log.php:556
4596
  msgid "The current saved log entry"
4597
  msgstr ""
4598
 
4599
- #: ../modules/mycred-module-log.php:559
4600
  msgid "Adjust Log Entry"
4601
  msgstr ""
4602
 
4603
- #: ../modules/mycred-module-log.php:561
4604
  msgid "The new log entry"
4605
  msgstr ""
4606
 
4607
- #: ../modules/mycred-module-log.php:564
4608
  msgid "Update Log Entry"
4609
  msgstr ""
4610
 
4611
- #: ../modules/mycred-module-log.php:596
4612
  msgid "My %s History"
4613
  msgstr ""
4614
 
4615
- #: ../modules/mycred-module-settings.php:63 ../modules/mycred-module-settings.php:104
4616
  msgid "Missing point type"
4617
  msgstr ""
4618
 
4619
- #: ../modules/mycred-module-settings.php:127
4620
  msgid "Accounts successfully reset"
4621
  msgstr ""
4622
 
4623
- #: ../modules/mycred-module-settings.php:167
4624
  msgid "No users found to export"
4625
  msgstr ""
4626
 
4627
- #: ../modules/mycred-module-settings.php:313
4628
  msgid "Facebook"
4629
  msgstr ""
4630
 
4631
- #: ../modules/mycred-module-settings.php:314
4632
  msgid "Google Plus"
4633
  msgstr ""
4634
 
4635
- #: ../modules/mycred-module-settings.php:317
4636
  msgid "%s Settings"
4637
  msgstr ""
4638
 
4639
- #: ../modules/mycred-module-settings.php:320
4640
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4641
  msgstr ""
4642
 
4643
- #: ../modules/mycred-module-settings.php:325
4644
  msgid "Core Settings"
4645
  msgstr "Configuration du Core"
4646
 
4647
- #: ../modules/mycred-module-settings.php:327
4648
  msgid "Name"
4649
  msgstr "Nom"
4650
 
4651
- #: ../modules/mycred-module-settings.php:332
4652
  msgid "Accessible though the %singular% template tag."
4653
  msgstr "Accessible avec le mot-cl&eacute;s %singular%"
4654
 
4655
- #: ../modules/mycred-module-settings.php:337
4656
  msgid "Accessible though the %plural% template tag."
4657
  msgstr "Accessible avec le mot-cl&eacute; %plural%"
4658
 
4659
- #: ../modules/mycred-module-settings.php:340
4660
  msgid "Tip"
4661
  msgstr "Astuce"
4662
 
4663
- #: ../modules/mycred-module-settings.php:340
4664
  msgid ""
4665
  "Adding an underscore at the beginning of template tag for names will return "
4666
  "them in lowercase. i.e. %_singular%"
@@ -4668,103 +4628,103 @@ msgstr ""
4668
  "En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné en "
4669
  "minuscule. Par ex. %_singular%"
4670
 
4671
- #: ../modules/mycred-module-settings.php:358
4672
  msgid "Separator"
4673
  msgstr "Séparateur"
4674
 
4675
- #: ../modules/mycred-module-settings.php:365
4676
  msgid "Edit Settings"
4677
  msgstr "Modifier les réglages"
4678
 
4679
- #: ../modules/mycred-module-settings.php:367 ../modules/mycred-module-settings.php:372
4680
  msgid "Capability to check for."
4681
  msgstr "Capacité à observer."
4682
 
4683
- #: ../modules/mycred-module-settings.php:370
4684
  msgid "Edit Users %plural%"
4685
  msgstr "Modifier les %plural% de l&#39;utilisateur"
4686
 
4687
- #: ../modules/mycred-module-settings.php:394
4688
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4689
  msgstr ""
4690
  "Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
4691
  "espaces interdits."
4692
 
4693
- #: ../modules/mycred-module-settings.php:414
4694
  msgid "Management"
4695
  msgstr ""
4696
 
4697
- #: ../modules/mycred-module-settings.php:416
4698
  msgid "The Log"
4699
  msgstr "Rapport d'activités"
4700
 
4701
- #: ../modules/mycred-module-settings.php:419
4702
  msgid "Table Name"
4703
  msgstr ""
4704
 
4705
- #: ../modules/mycred-module-settings.php:428
4706
  msgid "Empty Log"
4707
  msgstr ""
4708
 
4709
- #: ../modules/mycred-module-settings.php:434
4710
  msgid "User Meta Key"
4711
  msgstr ""
4712
 
4713
- #: ../modules/mycred-module-settings.php:443
4714
  msgid "Set all to zero"
4715
  msgstr ""
4716
 
4717
- #: ../modules/mycred-module-settings.php:443
4718
  msgid "CSV Export"
4719
  msgstr ""
4720
 
4721
- #: ../modules/mycred-module-settings.php:464
4722
  msgid "Default"
4723
  msgstr ""
4724
 
4725
- #: ../modules/mycred-module-settings.php:467 ../modules/mycred-module-settings.php:486 ../modules/mycred-module-settings.php:508
4726
  msgid "Meta Key"
4727
  msgstr "Mot-clé"
4728
 
4729
- #: ../modules/mycred-module-settings.php:505
4730
  msgid "Add New Type"
4731
  msgstr ""
4732
 
4733
- #: ../modules/mycred-module-settings.php:510
4734
  msgid "A unique ID for this type."
4735
  msgstr ""
4736
 
4737
- #: ../modules/mycred-module-settings.php:515
4738
  msgid "Menu and page title."
4739
  msgstr ""
4740
 
4741
- #: ../modules/mycred-module-settings.php:518
4742
  msgid "The meta key will define where your users balances are saved."
4743
  msgstr ""
4744
 
4745
- #: ../modules/mycred-module-settings.php:535
4746
  msgid "Identify users by"
4747
  msgstr ""
4748
 
4749
- #: ../modules/mycred-module-settings.php:541
4750
  msgid "User Email"
4751
  msgstr ""
4752
 
4753
- #: ../modules/mycred-module-settings.php:542
4754
  msgid "User Login"
4755
  msgstr ""
4756
 
4757
- #: ../modules/mycred-module-settings.php:549
4758
  msgid ""
4759
  "Use ID if you intend to use this export as a backup of your current site while "
4760
  "Email is recommended if you want to export to a different site."
4761
  msgstr ""
4762
 
4763
- #: ../modules/mycred-module-settings.php:552
4764
  msgid "Import Log Entry"
4765
  msgstr ""
4766
 
4767
- #: ../modules/mycred-module-settings.php:554
4768
  msgid ""
4769
  "Optional log entry to use if you intend to import this file in a different %s "
4770
  "installation."
@@ -4983,7 +4943,7 @@ msgid "%plural% for Profile Updates"
4983
  msgstr "%plural% pour une mise à jour de profil"
4984
 
4985
  #: ../plugins/mycred-hook-buddypress.php:377
4986
- msgid "Daily limit. User zero for unlimited."
4987
  msgstr ""
4988
 
4989
  #: ../plugins/mycred-hook-buddypress.php:387
3
  "Project-Id-Version: myCRED 1.2.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2013-08-14 22:26+0100\n"
6
+ "PO-Revision-Date: Wed Apr 16 2014 13:05:14 GMT+0200 (CEST)\n"
7
+ "Last-Translator: unimatrix0 <gabrieldk@merovingi.com>\n"
8
  "Language-Team: Dan <danco38@gmail.com>\n"
9
  "Language: French\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
23
  "X-Loco-Target-Locale: fr_FR\n"
24
  "X-Generator: Loco - https://localise.biz/"
25
 
26
+ #: ../mycred.php:397
27
  msgid "Balance"
28
  msgstr ""
29
 
30
+ #: ../mycred.php:422
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
+ #: ../mycred.php:474
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
+ #: ../mycred.php:520
39
  msgid "About %s"
40
  msgstr ""
41
 
42
+ #: ../mycred.php:529 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr ""
45
 
46
+ #: ../mycred.php:614 ../mycred.php:638 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:883 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
47
  msgid "Processing..."
48
  msgstr "Chargement en cours..."
49
 
50
+ #: ../mycred.php:615
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr ""
55
 
56
+ #: ../mycred.php:616
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
+ #: ../mycred.php:617
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
 
66
+ #: ../mycred.php:618
67
  msgid "Done!"
68
  msgstr ""
69
 
70
+ #: ../mycred.php:619 ../mycred.php:637 ../mycred.php:655
71
  msgid "Close"
72
  msgstr ""
73
 
74
+ #: ../mycred.php:620
75
  msgid "Export users %plural%"
76
  msgstr ""
77
 
78
+ #: ../mycred.php:636
79
+ msgid "Edit Users Balance"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:654
83
  msgid "Edit Log Entry"
84
  msgstr ""
85
 
86
+ #: ../mycred.php:656
87
  msgid "Updating..."
88
  msgstr ""
89
 
90
+ #: ../mycred.php:658
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr ""
93
 
94
+ #: ../mycred.php:659
95
  msgid "Log entry updated"
96
  msgstr ""
97
 
98
+ #: ../mycred.php:711 ../mycred.php:732 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Configuration"
101
 
102
+ #: ../mycred.php:713 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr "Configuration"
105
 
106
+ #: ../mycred.php:736 ../modules/mycred-module-addons.php:360
107
  msgid "About"
108
  msgstr ""
109
 
110
+ #: ../mycred.php:737
111
  msgid "Tutorials"
112
  msgstr ""
113
 
114
+ #: ../mycred.php:738
115
  msgid "Codex"
116
  msgstr ""
117
 
118
+ #: ../mycred.php:739
119
  msgid "Store"
120
  msgstr ""
121
 
122
+ #: ../mycred.php:753
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
135
  msgid "This Hook has no settings"
136
  msgstr "Ce hook n'a pas de paramètre."
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
139
  msgid "No limit"
140
  msgstr "Illimité"
141
 
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "Une fois par jour (remise à zéro à minuit)"
157
 
158
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "sélectionnez"
161
 
167
  msgid "Surprise"
168
  msgstr ""
169
 
170
+ #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:118
171
  msgid "click to close"
172
  msgstr "cliquez pour fermer"
173
 
174
+ #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:119
175
  msgid "click to open"
176
  msgstr "cliquez pour ouvrir"
177
 
178
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
179
  msgid "Settings Updated"
180
  msgstr "Configuration mise à jour"
181
 
182
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
183
  msgid "Banking"
184
  msgstr "Banque"
185
 
211
  "Attribuez régulièrement des %_plural% à vos utilisateurs, en fixant le cycle de "
212
  "répétition pour les créditer."
213
 
214
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:586 ../modules/mycred-module-settings.php:300
215
  msgid "Access Denied"
216
  msgstr "Accès refusé"
217
 
219
  msgid "%s Banking"
220
  msgstr ""
221
 
222
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
223
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
224
  msgstr ""
225
 
231
  msgid "Warning! This add-on requires WP - Cron to work."
232
  msgstr ""
233
 
234
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
235
  msgid "Enable"
236
  msgstr "Activer"
237
 
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "Le solde minimum pour l'application d'intérêts"
303
 
304
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "Texte à afficher"
307
 
328
  msgid "Pay Users"
329
  msgstr "Payer les Utilisateurs"
330
 
331
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:367 ../includes/mycred-admin.php:478
332
  msgid "Amount"
333
  msgstr "Montant"
334
 
336
  msgid "Can not be zero."
337
  msgstr "Ne peut être zéro."
338
 
339
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
340
  msgid "Interval"
341
  msgstr "Intervalle"
342
 
389
  "reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour faire une "
390
  "remise à zéro des cycles."
391
 
392
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:381
393
  msgid "Excludes"
394
  msgstr "Exclure"
395
 
405
  msgid "Payment Gateways"
406
  msgstr "Services de paiement"
407
 
408
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
409
  msgid "buyCRED Purchase Log"
410
  msgstr ""
411
 
412
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
413
  msgid "Purchase Log"
414
  msgstr ""
415
 
416
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
417
  msgid "Payments"
418
  msgstr "Paiements"
419
 
420
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
421
  msgid "Please login to purchase %_plural%"
422
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
423
 
424
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
425
  msgid "Gift purchase from %display_name%."
426
  msgstr "Achat de cadeau par %display_name%."
427
 
428
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:338 ../includes/mycred-overview.php:98 ../includes/mycred-overview.php:105 ../modules/mycred-module-addons.php:157
429
  msgid "buyCRED"
430
  msgstr "achatCRED"
431
 
432
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:610
433
  msgid "Minimum %plural%"
434
  msgstr "%plural% minimum"
435
 
436
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
437
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
438
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
439
 
440
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
441
  msgid "Point Type"
442
  msgstr ""
443
 
444
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
445
  msgid "Login Template"
446
  msgstr "Template de connexion"
447
 
448
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
449
  msgid "Content to show when a user is not logged in."
450
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
451
 
452
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
453
  msgid "Thank You Page"
454
  msgstr "Page de remerciement"
455
 
456
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
457
  msgid "Custom URL"
458
  msgstr "URL personnalisée"
459
 
460
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
461
  msgid "Page"
462
  msgstr ""
463
 
464
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
465
  msgid "Cancellation Page"
466
  msgstr "Page d'annulation"
467
 
468
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
469
  msgid "Show seperate log for %_plural% purchases."
470
  msgstr ""
471
 
472
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
473
  msgid "Gifting"
474
  msgstr "Remise de cadeaux"
475
 
476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
477
  msgid "Allow users to buy %_plural% for other users."
478
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
479
 
480
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
481
  msgid "Allow users to buy %_plural% for content authors."
482
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
483
 
484
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
485
  msgid "%s Payment Gateways"
486
  msgstr ""
487
 
488
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
489
  msgid "buyCRED Settings"
490
  msgstr ""
491
 
492
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
493
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
494
  msgstr ""
495
  "S&eacute;lectionnez le syst&egrave;me de paiement de %plural% que vous voulez "
496
  "mettre &agrave; la disposition de vos membres."
497
 
498
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
499
  msgid "Last Payment Notification"
500
  msgstr ""
501
 
502
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
503
  msgid ""
504
  "Here you can view the last payment confirmation that was sent to buyCRED for "
505
  "processing."
506
  msgstr ""
507
 
508
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
509
  msgid "Details"
510
  msgstr ""
511
 
512
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:552
513
  msgid "Time"
514
  msgstr ""
515
 
516
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
517
  msgid "Gateway"
518
  msgstr ""
519
 
520
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
521
  msgid "Transaction ID"
522
  msgstr ""
523
 
524
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
525
  msgid "Outcome"
526
  msgstr ""
527
 
528
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
529
  msgid "Gateway Log"
530
  msgstr ""
531
 
532
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
533
  msgid "No recorded calls found."
534
  msgstr ""
535
 
536
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
537
  msgid "Test Mode"
538
  msgstr ""
539
 
540
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
541
  msgid "Enabled"
542
  msgstr ""
543
 
544
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
545
  msgid "Disabled"
546
  msgstr ""
547
 
548
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
549
  msgid "Sandbox Mode"
550
  msgstr "Mode bac à sable"
551
 
552
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
553
  msgid "Enable for test purchases."
554
  msgstr ""
555
 
556
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
557
  msgid "Update Gateway Settings"
558
  msgstr "Mettre à jour la configuration du service de paiement"
559
 
560
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:473 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:551
561
  msgid "User"
562
  msgstr "Utilisateur"
563
 
564
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:650
565
  msgid "Date"
566
  msgstr ""
567
 
568
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
569
  msgid "Payed"
570
  msgstr ""
571
 
572
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
573
  msgid "<strong>buy</strong>CRED Purchase Log"
574
  msgstr ""
575
 
576
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
577
  msgid "Gateway Settings"
578
  msgstr "Configuration du service de paiement"
579
 
580
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
581
  msgid ""
582
  "Only completed purchases are shown here. Purchases that were cancelled or "
583
  "failed are not logged."
584
  msgstr ""
585
 
586
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:473
587
  msgid "User Missing"
588
  msgstr "Utilisateur inexistant"
589
 
590
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1110
591
  msgid "No purchases found"
592
  msgstr "Aucun achat trouvé"
593
 
594
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
595
  msgid "This Add-on needs to setup before you can use this shortcode."
596
  msgstr ""
597
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
598
  "shortcode."
599
 
600
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
601
  msgid "No gateways installed."
602
  msgstr "Aucun systme de paiement n'est installé."
603
 
604
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
605
  msgid "Gateway does not exist."
606
  msgstr "Le service de paiement n'existe pas."
607
 
608
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
609
  msgid "Yourself"
610
  msgstr "Vous-même"
611
 
612
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
613
  msgid "No active gateways found."
614
  msgstr "Aucun service de paiement n'a été trouvé."
615
 
616
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
617
  msgid "The selected gateway is not active."
618
  msgstr "Ce service de paiement n'est pas activé"
619
 
620
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
621
  msgid "Buy with %gateway%"
622
  msgstr ""
623
 
624
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
625
  msgid "Buy Now"
626
  msgstr "Acheter maintenant"
627
 
628
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
629
  msgid "No users found"
630
  msgstr "Aucun membre n'a été trouvé"
631
 
632
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
633
  msgid "To"
634
  msgstr "à"
635
 
636
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
637
  msgid "Select Amount"
638
  msgstr "Sélectionnez le montant"
639
 
640
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
641
  msgid "min."
642
  msgstr "mini."
643
 
644
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
645
  msgid "Select Gateway"
646
  msgstr "Sélectionnez le service de paiement"
647
 
683
  msgid "Cancel purchase"
684
  msgstr ""
685
 
686
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:360 ../includes/mycred-admin.php:466
687
  msgid "required"
688
  msgstr "obligatoire"
689
 
690
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:362 ../includes/mycred-admin.php:468
691
  msgid "optional"
692
  msgstr "optionnel"
693
 
795
  msgid "Validating sale"
796
  msgstr ""
797
 
798
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1289
799
  msgid "Token mismatch"
800
  msgstr ""
801
 
802
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1301
803
  msgid "Price mismatch"
804
  msgstr ""
805
 
806
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1306
807
  msgid "Currency mismatch"
808
  msgstr ""
809
 
810
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
811
  msgid "Duplicate transaction"
812
  msgstr ""
813
 
919
  msgid "Full Notifications"
920
  msgstr ""
921
 
922
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
923
  msgid "No"
924
  msgstr "non"
925
 
926
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
927
  msgid "Yes"
928
  msgstr "oui"
929
 
1095
  msgid "Checkout Page"
1096
  msgstr "Page de contrôle"
1097
 
1098
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:753 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2289
1099
  msgid "Title"
1100
  msgstr "Titre"
1101
 
1197
  "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
1198
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
1199
 
1200
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
1201
  msgid "Coupons"
1202
  msgstr ""
1203
 
1233
  msgid "No coupons found in Trash"
1234
  msgstr ""
1235
 
1236
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
1237
  msgid "Email Notices"
1238
  msgstr "Correspondance"
1239
 
1269
  msgid "Usage"
1270
  msgstr "Utilisation"
1271
 
1272
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
1273
  msgid "Limits"
1274
  msgstr "Règles de limitation"
1275
 
1281
  msgid "not yet used"
1282
  msgstr ""
1283
 
1284
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
1285
  msgid "Total"
1286
  msgstr ""
1287
 
1465
  msgid "No email notices found in Trash"
1466
  msgstr "Il n'y a pas de message dans la corbeille"
1467
 
1468
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
1469
  msgid "General"
1470
  msgstr "Général"
1471
 
1689
  msgid "CSS Styling"
1690
  msgstr "Règles de style"
1691
 
1692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1693
  msgid "Site Related"
1694
  msgstr "A propos du site"
1695
 
1696
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1697
  msgid "Your websites title"
1698
  msgstr "Titre de votre site"
1699
 
1700
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1701
  msgid "Your websites address"
1702
  msgstr "Adresse de votre site"
1703
 
1704
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1705
  msgid "Your websites tagline (description)"
1706
  msgstr "Description de votre site"
1707
 
1708
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1709
  msgid "Your websites admin email"
1710
  msgstr "Email de l'administrateur du site"
1711
 
1712
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1713
  msgid "Total number of blog members"
1714
  msgstr "Total des membres de votre blog"
1715
 
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1717
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1718
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
1719
 
1720
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902
 
 
 
 
 
 
 
 
1721
  msgid "Email Notice Activated"
1722
  msgstr "Message activé"
1723
 
1724
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1725
  msgid "Email Notice Saved"
1726
  msgstr "Message enregistré"
1727
 
1728
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1729
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1730
  msgstr ""
1731
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
1732
  "messages</a>."
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:906
1735
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1736
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1739
  msgid ""
1740
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1741
  "not yet ready to use this email notice!"
1743
  "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est actif !"
1744
  " Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à l'utiliser."
1745
 
1746
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
1747
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1748
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1751
  msgid "This email notice is active."
1752
  msgstr "Ce message est activé."
1753
 
1754
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:474
1755
  msgid "Current Balance"
1756
  msgstr "Solde actuel"
1757
 
1764
  msgstr "Solde après achats"
1765
 
1766
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1767
+ msgid "Go Back"
1768
+ msgstr ""
1769
 
1770
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1771
  msgid "will be deducted from your account."
1784
  msgid "Paid"
1785
  msgstr "Payé"
1786
 
1787
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1788
  msgid "myCRED"
1789
  msgstr ""
1790
 
1863
  msgid "Percentage"
1864
  msgstr ""
1865
 
1866
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
1867
+ msgid "Option to share sales with the product owner. Use zero to disable."
1868
  msgstr ""
1869
 
1870
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1984
  msgid "Show in Cart and on Checkout Page"
1985
  msgstr "Afficher avec le panier et sur la page de contrôle"
1986
 
1987
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:472 ../modules/mycred-module-settings.php:491 ../modules/mycred-module-settings.php:514
1988
  msgid "Label"
1989
  msgstr "Etiquette"
1990
 
1992
  msgid "Order Total in %_plural%"
1993
  msgstr "Commande totale en %_plural%"
1994
 
 
 
 
 
1995
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1996
  msgid "Log entry template for profit sharing."
1997
  msgstr ""
2073
  msgid "Payout"
2074
  msgstr ""
2075
 
 
 
 
 
 
 
2076
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2077
  msgid "Instructions"
2078
  msgstr ""
2161
  msgid "Users must be logged in to use this gateway!"
2162
  msgstr "Vous devez vous connecter pour utiliser ce service !"
2163
 
 
 
 
 
2164
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2165
  msgid "Log"
2166
  msgstr "Vue d&#39;ensemble"
2167
 
2168
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:479
2169
  msgid "Log Entry"
2170
  msgstr "Journal d'activité"
2171
 
2195
  msgid "Message to show visitors (users not logged in) on the payment page."
2196
  msgstr ""
2197
 
2198
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:528
2199
  msgid "Update Settings"
2200
  msgstr "Enregistrer la configuration"
2201
 
2239
  msgid "Reject"
2240
  msgstr ""
2241
 
2242
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:511 ../modules/mycred-module-settings.php:476 ../modules/mycred-module-settings.php:495
2243
  msgid "Delete"
2244
  msgstr ""
2245
 
2271
 
2272
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2273
  msgid ""
2274
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2275
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2276
  msgstr ""
2277
 
2336
  "zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux commandes "
2337
  "\"Rejetées\"."
2338
 
2339
+ #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:201
2340
  msgid "Notifications"
2341
  msgstr ""
2342
 
2384
  msgid "Are you sure you want to re-assign user ranks?"
2385
  msgstr ""
2386
 
2387
+ #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:748 ../addons/ranks/myCRED-addon-ranks.php:944 ../modules/mycred-module-addons.php:213
2388
  msgid "Ranks"
2389
  msgstr "Classements"
2390
 
2391
+ #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-addon-ranks.php:459 ../addons/ranks/myCRED-addon-ranks.php:554
2392
  msgid "Rank"
2393
  msgstr "Classement"
2394
 
2420
  msgid "No ranks found in Trash"
2421
  msgstr "Aucun classement trouvé dans la corbeille"
2422
 
2423
+ #: ../addons/ranks/myCRED-addon-ranks.php:318
2424
  msgid "Completed - Total of %d users effected"
2425
  msgstr "Terminé - %d utilisateurs ont été affectés"
2426
 
2427
+ #: ../addons/ranks/myCRED-addon-ranks.php:320
2428
  msgid "Log is Empty"
2429
  msgstr "L'affichage est vide"
2430
 
2431
+ #: ../addons/ranks/myCRED-addon-ranks.php:514 ../addons/ranks/myCRED-addon-ranks.php:517
2432
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2433
  msgstr "Classement mis à jour. Afficher <a href=\"%1$s\">tous les classements</a>."
2434
 
2435
+ #: ../addons/ranks/myCRED-addon-ranks.php:519
2436
  msgid "Rank Activated"
2437
  msgstr "Classement activé"
2438
 
2439
+ #: ../addons/ranks/myCRED-addon-ranks.php:520
2440
  msgid "Rank Saved"
2441
  msgstr "Classement enregistré"
2442
 
2443
+ #: ../addons/ranks/myCRED-addon-ranks.php:521
2444
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2445
  msgstr ""
2446
  "Classement en cours de validation. Afficher <a href=\"%1$s\">tous les "
2447
  "classements</a>."
2448
 
2449
+ #: ../addons/ranks/myCRED-addon-ranks.php:523
2450
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2451
  msgstr "Classement pr&eacute;vu pour: <strong>%1$s</strong>."
2452
 
2453
+ #: ../addons/ranks/myCRED-addon-ranks.php:580 ../addons/ranks/myCRED-addon-ranks.php:633
2454
  msgid "Rank Title"
2455
  msgstr "Titre du classement"
2456
 
2457
+ #: ../addons/ranks/myCRED-addon-ranks.php:581
2458
  msgid "Logo"
2459
  msgstr ""
2460
 
2461
+ #: ../addons/ranks/myCRED-addon-ranks.php:582
2462
  msgid "Requirement"
2463
  msgstr "Obligation"
2464
 
2465
+ #: ../addons/ranks/myCRED-addon-ranks.php:583 ../modules/mycred-module-settings.php:439
2466
  msgid "Users"
2467
  msgstr "Utilisateurs"
2468
 
2469
+ #: ../addons/ranks/myCRED-addon-ranks.php:599
2470
  msgid "No Logo Set"
2471
  msgstr "Aucun logo défini"
2472
 
2473
+ #: ../addons/ranks/myCRED-addon-ranks.php:608 ../addons/ranks/myCRED-addon-ranks.php:613
2474
  msgid "Any Value"
2475
  msgstr "Valeur au choix"
2476
 
2477
+ #: ../addons/ranks/myCRED-addon-ranks.php:615
2478
  msgid "Maximum %plural%"
2479
  msgstr "Maximum de %plural%"
2480
 
2481
+ #: ../addons/ranks/myCRED-addon-ranks.php:646
2482
  msgid "Rank Settings"
2483
  msgstr "Configuration des classements"
2484
 
2485
+ #: ../addons/ranks/myCRED-addon-ranks.php:668
2486
  msgid "Minimum %plural% to reach this rank"
2487
  msgstr ""
2488
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
2489
  "classement"
2490
 
2491
+ #: ../addons/ranks/myCRED-addon-ranks.php:672
2492
  msgid "Maximum %plural% to be included in this rank"
2493
  msgstr ""
2494
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
2495
  "classement"
2496
 
2497
+ #: ../addons/ranks/myCRED-addon-ranks.php:679
2498
  msgid "All Published Ranks"
2499
  msgstr "Tous les classements publiés"
2500
 
2501
+ #: ../addons/ranks/myCRED-addon-ranks.php:685 ../addons/ranks/myCRED-addon-ranks.php:687
2502
  msgid "Not Set"
2503
  msgstr "Non configuré"
2504
 
2505
+ #: ../addons/ranks/myCRED-addon-ranks.php:692
2506
  msgid "No Ranks found"
2507
  msgstr "Aucun classement trouivé"
2508
 
2509
+ #: ../addons/ranks/myCRED-addon-ranks.php:750
2510
  msgid "Rank Features"
2511
  msgstr "Caractéristiques du classement"
2512
 
2513
+ #: ../addons/ranks/myCRED-addon-ranks.php:754
2514
  msgid "%plural% requirement"
2515
  msgstr "condition requise pour l&#39;attribution de %_plural%"
2516
 
2517
+ #: ../addons/ranks/myCRED-addon-ranks.php:755
2518
  msgid "Featured Image (Logo)"
2519
  msgstr "Illustration (logo)"
2520
 
2521
+ #: ../addons/ranks/myCRED-addon-ranks.php:756
2522
  msgid "Content"
2523
  msgstr "Contenu"
2524
 
2525
+ #: ../addons/ranks/myCRED-addon-ranks.php:757
2526
  msgid "Excerpt"
2527
  msgstr "Extrait"
2528
 
2529
+ #: ../addons/ranks/myCRED-addon-ranks.php:758
2530
  msgid "Comments"
2531
  msgstr "Commentaires"
2532
 
2533
+ #: ../addons/ranks/myCRED-addon-ranks.php:759
2534
  msgid "Page Attributes"
2535
  msgstr "Attributs de la page"
2536
 
2537
+ #: ../addons/ranks/myCRED-addon-ranks.php:760
2538
  msgid "Custom Fields"
2539
  msgstr "Champs Personnalisés"
2540
 
2541
+ #: ../addons/ranks/myCRED-addon-ranks.php:763
2542
  msgid "Public"
2543
  msgstr ""
2544
 
2545
+ #: ../addons/ranks/myCRED-addon-ranks.php:767
2546
  msgid ""
2547
  "If you want to create a template archive for each rank, you must select to have "
2548
  "ranks public. Defaults to disabled."
2550
  "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent être "
2551
  "publics. Désactivé par défaut."
2552
 
2553
+ #: ../addons/ranks/myCRED-addon-ranks.php:770
2554
  msgid "Rank Basis"
2555
  msgstr "Base de Classement"
2556
 
2557
+ #: ../addons/ranks/myCRED-addon-ranks.php:773
2558
  msgid "Users are ranked according to their current balance."
2559
  msgstr "Les utilisateurs sont classés selon leur solde courant"
2560
 
2561
+ #: ../addons/ranks/myCRED-addon-ranks.php:776
2562
  msgid ""
2563
  "Users are ranked according to the total amount of %_plural% they have "
2564
  "accumulated."
2566
  "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils ont "
2567
  "accumulés."
2568
 
2569
+ #: ../addons/ranks/myCRED-addon-ranks.php:780 ../addons/ranks/myCRED-addon-ranks.php:785
2570
  msgid "Calculate Totals"
2571
  msgstr "Calculer les totaux"
2572
 
2573
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2574
  msgid ""
2575
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2576
  "the users current balance will be used as a starting point."
2579
  "Si inutilisez c'est le solde courant des utilisateurs qui servira de point de "
2580
  "départ."
2581
 
2582
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2583
  msgid ""
2584
  "Once a users total has been calculated, they will be assigned to their "
2585
  "appropriate roles. For this reason, it is highly recommended that you first "
2589
  "seront assignés. Pour cette raison, il est fortement recommandé que vous "
2590
  "configurez d'abord vos classements !"
2591
 
2592
+ #: ../addons/ranks/myCRED-addon-ranks.php:784
2593
  msgid ""
2594
  "Depending on your log size and number of users this process may take a while. "
2595
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2600
  "pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin de "
2601
  "l'opération !"
2602
 
2603
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2604
  msgid "Archive URL"
2605
  msgstr "URL des archives"
2606
 
2607
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2608
  msgid "Ignored if Ranks are not public"
2609
  msgstr "Ignoré si le classement n'est pas public"
2610
 
2611
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2612
  msgid "Display Order"
2613
  msgstr "Ordre d'affichage"
2614
 
2615
+ #: ../addons/ranks/myCRED-addon-ranks.php:803
2616
  msgid "Ascending - Lowest rank to highest"
2617
  msgstr "Ascendant - Du plus petit au plus grand"
2618
 
2619
+ #: ../addons/ranks/myCRED-addon-ranks.php:804
2620
  msgid "Descending - Highest rank to lowest"
2621
  msgstr "Descendant - Du plus grand au plus petit"
2622
 
2623
+ #: ../addons/ranks/myCRED-addon-ranks.php:813
2624
  msgid ""
2625
  "Select in what order ranks should be displayed in your admin area and/or front "
2626
  "if ranks are \"Public\""
2628
  "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le site "
2629
  "quand les classements sont marqués comme \"Publics\""
2630
 
2631
+ #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2632
  msgid "Do not show."
2633
  msgstr "Ne pas afficher."
2634
 
2635
+ #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:365
2636
  msgid "Include in Profile Header."
2637
  msgstr "Inclure dans l'en-tête du profil."
2638
 
2639
+ #: ../addons/ranks/myCRED-addon-ranks.php:825 ../modules/mycred-module-buddypress.php:366
2640
  msgid "Include under the \"Profile\" tab"
2641
  msgstr "Inclure sous l'onglet \"Profil\""
2642
 
2643
+ #: ../addons/ranks/myCRED-addon-ranks.php:826 ../modules/mycred-module-buddypress.php:367
2644
  msgid "Include under the \"Profile\" tab and Profile Header."
2645
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
2646
 
2647
+ #: ../addons/ranks/myCRED-addon-ranks.php:829
2648
  msgid "Rank in BuddyPress"
2649
  msgstr "Classement dans BuddyPress"
2650
 
2651
+ #: ../addons/ranks/myCRED-addon-ranks.php:897
2652
  msgid "Script Communication Error"
2653
  msgstr "Erreur de communication des scripts"
2654
 
2655
+ #: ../addons/ranks/myCRED-addon-ranks.php:947
2656
  msgid "Rank Post Type"
2657
  msgstr ""
2658
 
2659
+ #: ../addons/ranks/myCRED-addon-ranks.php:951
2660
  msgid "No. of ranks"
2661
  msgstr ""
2662
 
2663
+ #: ../addons/ranks/myCRED-addon-ranks.php:955 ../modules/mycred-module-log.php:372 ../modules/mycred-module-settings.php:428 ../modules/mycred-module-settings.php:443
2664
  msgid "Actions"
2665
  msgstr ""
2666
 
2667
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2668
  msgid "Remove All Ranks"
2669
  msgstr ""
2670
 
2671
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2672
  msgid "Assign Ranks to Users"
2673
  msgstr ""
2674
 
2684
  msgid "No users found with this rank"
2685
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
2686
 
2687
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2688
  msgid "error"
2689
  msgstr "erreur"
2690
 
2720
  msgid "Pay Content Author."
2721
  msgstr "Payer l'auteur du contenu"
2722
 
2723
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
2724
  msgid "Sell Content"
2725
  msgstr "Vendre du contenu"
2726
 
2912
  msgid "Transfer %plural%"
2913
  msgstr "Transf&eacute;rer des %plural%"
2914
 
2915
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:457
2916
  msgid "Point Types"
2917
  msgstr ""
2918
 
3112
  "href=\"%s\">website</a>."
3113
  msgstr ""
3114
 
3115
+ #: ../includes/mycred-admin.php:63
3116
+ msgid ""
3117
+ "Re-save your myCRED Settings & all myCRED widget settings that you are "
3118
+ "currently using."
3119
+ msgstr ""
3120
+
3121
+ #: ../includes/mycred-admin.php:67
3122
+ msgid "Re-save your myCRED Hook Settings."
3123
+ msgstr ""
3124
+
3125
+ #: ../includes/mycred-admin.php:71
3126
+ msgid ""
3127
+ "Please complete the following tasks in order to finish updating myCRED to "
3128
+ "version 1.4:"
3129
+ msgstr ""
3130
+
3131
+ #: ../includes/mycred-admin.php:97
3132
  msgid "User is excluded"
3133
  msgstr "Cet utilisateur est exclu"
3134
 
3135
+ #: ../includes/mycred-admin.php:102
3136
  msgid "Log Entry can not be empty"
3137
  msgstr "Le champ ne peut pas être vide."
3138
 
3139
+ #: ../includes/mycred-admin.php:106
3140
  msgid "Amount can not be zero"
3141
  msgstr "Le montant ne peut pas être zéro"
3142
 
3143
+ #: ../includes/mycred-admin.php:127
3144
  msgid "Failed to update this uses balance."
3145
  msgstr ""
3146
 
3147
+ #: ../includes/mycred-admin.php:262
3148
  msgid "Excluded"
3149
  msgstr "Exclus"
3150
 
3151
+ #: ../includes/mycred-admin.php:275 ../modules/mycred-module-log.php:254 ../modules/mycred-module-log.php:255
3152
  msgid "History"
3153
  msgstr "Historique"
3154
 
3155
+ #: ../includes/mycred-admin.php:276
3156
  msgid "Adjust"
3157
  msgstr "Ajustement"
3158
 
3159
+ #: ../includes/mycred-admin.php:331 ../includes/mycred-admin.php:390
3160
  msgid "%singular% balance"
3161
  msgstr ""
3162
 
3163
+ #: ../includes/mycred-admin.php:355
3164
  msgid "Adjust Your Balance"
3165
  msgstr "Ajuster votre relevé"
3166
 
3167
+ #: ../includes/mycred-admin.php:357
3168
  msgid "Adjust Users Balance"
3169
  msgstr "Ajuster le relevé de l'utilisateur"
3170
 
3171
+ #: ../includes/mycred-admin.php:368
3172
  msgid "Log description for adjustment"
3173
  msgstr "Descriptif de connexion pour ajustement"
3174
 
3175
+ #: ../includes/mycred-admin.php:371
3176
  msgid "Update"
3177
  msgstr "Mis à jour"
3178
 
3179
+ #: ../includes/mycred-admin.php:372
3180
  msgid "Description is required!"
3181
  msgstr "La description est obligatoire !"
3182
 
3183
+ #: ../includes/mycred-admin.php:472
3184
  msgid "ID"
3185
  msgstr ""
3186
 
3187
+ #: ../includes/mycred-admin.php:478
3188
  msgid "A positive or negative value"
3189
  msgstr "Une valeur positive ou négative"
3190
 
3191
+ #: ../includes/mycred-admin.php:480
3192
  msgid "Update Balance"
3193
  msgstr "Mettre à jour le solde"
3194
 
3200
  msgid "Points"
3201
  msgstr ""
3202
 
3203
+ #: ../includes/mycred-functions.php:395
3204
  msgid "Deleted"
3205
  msgstr "Supprimé"
3206
 
3207
+ #: ../includes/mycred-functions.php:532
3208
  msgid "Deleted Item"
3209
  msgstr "Item supprimé"
3210
 
3211
+ #: ../includes/mycred-functions.php:596
3212
+ msgid "User Related"
3213
+ msgstr "A propos de l'utilisateur"
3214
+
3215
+ #: ../includes/mycred-functions.php:603
3216
+ msgid "Post Related"
3217
+ msgstr "Relatif à l'article"
3218
+
3219
+ #: ../includes/mycred-functions.php:610
3220
  msgid "Comment Related"
3221
  msgstr ""
3222
 
3223
+ #: ../includes/mycred-functions.php:617
3224
  msgid "Widget Related"
3225
  msgstr ""
3226
 
3227
+ #: ../includes/mycred-functions.php:624
3228
  msgid "Amount Related"
3229
  msgstr ""
3230
 
3231
+ #: ../includes/mycred-functions.php:631
3232
  msgid "Video Related"
3233
  msgstr ""
3234
 
3235
+ #: ../includes/mycred-functions.php:642
3236
  msgid "and"
3237
  msgstr ""
3238
 
3239
+ #: ../includes/mycred-functions.php:644
3240
  msgid "Available Template Tags:"
3241
  msgstr ""
3242
 
3243
+ #: ../includes/mycred-functions.php:1565
3244
  msgid "Entire Log"
3245
  msgstr ""
3246
 
3247
+ #: ../includes/mycred-functions.php:1570 ../includes/mycred-functions.php:1571
3248
  msgid "Displayed Rows"
3249
  msgstr ""
3250
 
3251
+ #: ../includes/mycred-functions.php:1575
3252
  msgid "Search Results"
3253
  msgstr ""
3254
 
3255
+ #: ../includes/mycred-functions.php:1576
3256
  msgid "My Entire Log"
3257
  msgstr ""
3258
 
3259
+ #: ../includes/mycred-functions.php:1696
3260
  msgid "ref empty"
3261
  msgstr ""
3262
 
3263
+ #: ../includes/mycred-functions.php:1704
3264
  msgid "incorrect user id format"
3265
  msgstr "format du ID utilisateur incorrect"
3266
 
3267
+ #: ../includes/mycred-functions.php:1717
3268
  msgid "incorrect unix timestamp (from):"
3269
  msgstr ""
3270
 
3271
+ #: ../includes/mycred-functions.php:1726
3272
  msgid "incorrect unix timestamp (to):"
3273
  msgstr ""
3274
 
3281
  msgstr ""
3282
 
3283
  #: ../includes/mycred-importer.php:43
3284
+ msgid "%s Balance Import"
3285
+ msgstr ""
3286
+
3287
+ #: ../includes/mycred-importer.php:44
3288
+ msgid "Import balances."
3289
+ msgstr ""
3290
+
3291
+ #: ../includes/mycred-importer.php:75
3292
  msgid "%s CubePoints Import"
3293
  msgstr ""
3294
 
3295
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
3296
  msgid "Import CubePoints log entries and / or balances."
3297
  msgstr ""
3298
 
3299
+ #: ../includes/mycred-importer.php:92
3300
  msgid "No CubePoints log exists."
3301
  msgstr ""
3302
 
3321
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3322
  "apparues:"
3323
 
3324
+ #: ../includes/mycred-install.php:243
3325
  msgid "myCRED needs your attention."
3326
  msgstr ""
3327
 
3328
+ #: ../includes/mycred-install.php:243
3329
  msgid "Run Setup"
3330
  msgstr "Démarrer l'installation"
3331
 
3332
+ #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3333
  msgid "myCRED Setup"
3334
  msgstr "Installation de myCRED"
3335
 
3336
+ #: ../includes/mycred-install.php:385
3337
  msgid "%s Setup"
3338
  msgstr ""
3339
 
3340
+ #: ../includes/mycred-install.php:387
3341
  msgid "Step"
3342
  msgstr "Etape"
3343
 
3344
+ #: ../includes/mycred-install.php:411
3345
  msgid ""
3346
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3347
  "format, layout and security settings."
3350
  "en mesure de choisir le format de points, l'apparence et les paramètres de "
3351
  "sécurité."
3352
 
3353
+ #: ../includes/mycred-install.php:412
3354
  msgid "Begin Setup"
3355
  msgstr "Démarrer le paramétrage"
3356
 
3357
+ #: ../includes/mycred-install.php:467
3358
  msgid "Select the format you want to use for your points."
3359
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
3360
 
3361
+ #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3362
  msgid "Format"
3363
  msgstr "Formatage"
3364
 
3365
+ #: ../includes/mycred-install.php:471
3366
  msgid "Separators"
3367
  msgstr "Séparateurs"
3368
 
3369
+ #: ../includes/mycred-install.php:481
3370
  msgid "Decimals"
3371
  msgstr "Décimales"
3372
 
3373
+ #: ../includes/mycred-install.php:483
3374
  msgid "Use zero for no decimals."
3375
  msgstr "Utilisez zéro si vous ne voulez pas de décimales."
3376
 
3377
+ #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:344
3378
  msgid "Presentation"
3379
  msgstr "Présentation"
3380
 
3381
+ #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:331
3382
  msgid "Name (Singular)"
3383
  msgstr "Nom (singulier)"
3384
 
3385
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:336
3386
  msgid "Name (Plural)"
3387
  msgstr "Nom (pluriel)"
3388
 
3389
+ #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:347
3390
  msgid "Prefix"
3391
  msgstr "Préfixe"
3392
 
3393
+ #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:355
3394
  msgid "Suffix"
3395
  msgstr "Suffixe"
3396
 
3397
+ #: ../includes/mycred-install.php:511
3398
  msgid "Cancel Setup"
3399
  msgstr "Annuler le paramétrage"
3400
 
3401
+ #: ../includes/mycred-install.php:511
3402
  msgid "Cancel"
3403
  msgstr "Annuler"
3404
 
3405
+ #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3406
  msgid "Next"
3407
  msgstr "Suivant"
3408
 
3409
+ #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:363
3410
  msgid "Security"
3411
  msgstr "Sécurité"
3412
 
3413
+ #: ../includes/mycred-install.php:546
3414
  msgid "Edit Settings Capability"
3415
  msgstr "Modifier les paramètres"
3416
 
3417
+ #: ../includes/mycred-install.php:550
3418
  msgid "Edit Users %plural% Capability"
3419
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
3420
 
3421
+ #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:376
3422
  msgid "Maximum %plural% payouts"
3423
  msgstr ""
3424
 
3425
+ #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:378
3426
  msgid ""
3427
  "As an added security, you can set the maximum amount a user can gain or loose "
3428
  "in a single instance. If used, make sure this is the maximum amount a user "
3429
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3430
  msgstr ""
3431
 
3432
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:385
3433
  msgid "Exclude those who can \"Edit Settings\"."
3434
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
3435
 
3436
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:389
3437
  msgid "Exclude those who can \"Edit Users %plural%\"."
3438
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
3439
 
3440
+ #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:393
3441
  msgid "Exclude the following user IDs:"
3442
  msgstr "Exclure les utilisateurs (ID) suivants"
3443
 
3444
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:398
3445
  msgid "User Deletions"
3446
  msgstr ""
3447
 
3448
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:401
3449
  msgid "Delete log entries when user is deleted."
3450
  msgstr ""
3451
 
3452
+ #: ../includes/mycred-install.php:599
3453
  msgid "Ready"
3454
  msgstr "Prêt !"
3455
 
3456
+ #: ../includes/mycred-install.php:600
3457
  msgid "Almost done! Click the button below to finish this setup."
3458
  msgstr ""
3459
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
3460
  "configuration."
3461
 
3462
+ #: ../includes/mycred-install.php:601
3463
  msgid "Install & Run"
3464
  msgstr "Installer et démarrer"
3465
 
3500
  msgid "Show all references"
3501
  msgstr "Afficher toutes les références"
3502
 
3503
+ #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:541
3504
  msgid "User ID"
3505
  msgstr ""
3506
 
3566
  msgid "This Month"
3567
  msgstr "Ce mois"
3568
 
3569
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
3570
  msgid "Network Settings"
3571
  msgstr "Paramètres du réseau"
3572
 
3573
+ #: ../includes/mycred-network.php:169
3574
  msgid "%s Network"
3575
  msgstr ""
3576
 
3577
+ #: ../includes/mycred-network.php:175
3578
  msgid "Note! %s has not yet been setup."
3579
  msgstr ""
3580
 
3581
+ #: ../includes/mycred-network.php:179
3582
  msgid "Network Settings Updated"
3583
  msgstr "Paramètres réseau mis à jour"
3584
 
3585
+ #: ../includes/mycred-network.php:181
3586
  msgid "Configure network settings for %s."
3587
  msgstr "Configurer le r&eacute;seau pour %s"
3588
 
3589
+ #: ../includes/mycred-network.php:188
3590
  msgid "Master Template"
3591
  msgstr "Template principal"
3592
 
3593
+ #: ../includes/mycred-network.php:199
3594
  msgid ""
3595
  "If enabled, %s will use your main site's settings for all other sites in your "
3596
  "network."
3597
  msgstr ""
3598
 
3599
+ #: ../includes/mycred-network.php:202
3600
  msgid "Central Logging"
3601
  msgstr ""
3602
 
3603
+ #: ../includes/mycred-network.php:213
3604
  msgid "If enabled, %s will log all site actions in your main site's log."
3605
  msgstr ""
3606
 
3607
+ #: ../includes/mycred-network.php:216
3608
  msgid "Site Block"
3609
  msgstr "Partie site"
3610
 
3611
+ #: ../includes/mycred-network.php:220
3612
  msgid "Comma separated list of blog ids where %s is to be disabled."
3613
  msgstr ""
3614
  "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre d&eacute;"
3615
  "sactiv&eacute;."
3616
 
3617
+ #: ../includes/mycred-network.php:229
3618
  msgid "Save Network Settings"
3619
  msgstr "Enregistrer les paramètres du réseau"
3620
 
3621
+ #: ../includes/mycred-overview.php:25
3622
  msgid "%s Overview"
3623
  msgstr ""
3624
 
3625
+ #: ../includes/mycred-overview.php:78
3626
  msgid "Total amount in circulation"
3627
  msgstr ""
3628
 
3629
+ #: ../includes/mycred-overview.php:81
3630
  msgid "Awarded"
3631
  msgstr ""
3632
 
3633
+ #: ../includes/mycred-overview.php:84
3634
  msgid "Deducted"
3635
  msgstr ""
3636
 
3637
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
3638
  msgid "Transfers"
3639
  msgstr ""
3640
 
3641
+ #: ../includes/mycred-overview.php:208
3642
  msgid "Manual"
3643
  msgstr ""
3644
 
3710
  msgid "Leaderboard is empty."
3711
  msgstr "Aucun classement à afficher."
3712
 
3713
+ #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3714
  msgid "Amount missing!"
3715
  msgstr "Montant absent !"
3716
 
3717
+ #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3718
  msgid "Log Template Missing!"
3719
  msgstr "Rapport absent !"
3720
 
3721
+ #: ../includes/mycred-shortcodes.php:417
3722
  msgid "Anchor missing URL!"
3723
  msgstr "L'ancre de l'URL est absente !"
3724
 
3725
+ #: ../includes/mycred-shortcodes.php:482
3726
  msgid "User ID missing for recipient."
3727
  msgstr "L'ID du destinataire est absente !"
3728
 
3729
+ #: ../includes/mycred-shortcodes.php:536
3730
  msgid "Sent"
3731
  msgstr ""
3732
 
3733
+ #: ../includes/mycred-shortcodes.php:537
3734
  msgid "Error - Try Again"
3735
  msgstr ""
3736
 
3737
+ #: ../includes/mycred-shortcodes.php:645
3738
  msgid "A video ID is required for this shortcode"
3739
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
3740
 
3754
  msgid "%plural% History"
3755
  msgstr "Historique des %plural%"
3756
 
3757
+ #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3758
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3759
  msgstr "<a href=\"%login_url_here%\">Me connecter</a> pour consulter mon relev&eacute;"
3760
 
3786
  msgid "Row layout"
3787
  msgstr "Agencement des colonnes"
3788
 
3789
+ #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:607
3790
  msgid "Show message when not logged in"
3791
  msgstr "Afficher les messages quand pas connceté"
3792
 
3793
+ #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:608
3794
  msgid "Message"
3795
  msgstr ""
3796
 
3836
  "at the end with their current position."
3837
  msgstr ""
3838
 
3839
+ #: ../includes/mycred-widgets.php:495
3840
  msgid "Shows the current users balances for each point type."
3841
  msgstr ""
3842
 
3843
+ #: ../includes/mycred-widgets.php:497
3844
  msgid "(%s) Wallet"
3845
  msgstr ""
3846
 
3847
+ #: ../includes/mycred-widgets.php:577
3848
  msgid "My Wallet"
3849
  msgstr ""
3850
 
3851
+ #: ../includes/mycred-widgets.php:599
3852
  msgid "Row Layout"
3853
  msgstr ""
3854
 
3866
  "imported. <strong>%d</strong> was skipped."
3867
  msgstr ""
3868
 
3869
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3870
  msgid "View Log"
3871
  msgstr ""
3872
 
3873
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3874
  msgid "Import More"
3875
  msgstr ""
3876
 
3910
  msgid "Import Log"
3911
  msgstr ""
3912
 
3913
+ #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180 ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:144 ../includes/importers/mycred-balances.php:183 ../includes/importers/mycred-balances.php:198
3914
  msgid "Sorry, there has been an error."
3915
  msgstr ""
3916
 
3917
+ #: ../includes/importers/mycred-log-entries.php:82 ../includes/importers/mycred-balances.php:82
3918
  msgid "The file does not exist, please try again."
3919
  msgstr ""
3920
 
3921
+ #: ../includes/importers/mycred-log-entries.php:127 ../includes/importers/mycred-balances.php:145
3922
  msgid "The CSV is invalid."
3923
  msgstr ""
3924
 
3930
  msgid "Import log entries from a CSV file."
3931
  msgstr ""
3932
 
3933
+ #: ../includes/importers/mycred-log-entries.php:219 ../includes/importers/mycred-balances.php:237
3934
  msgid ""
3935
  "Before you can upload your import file, you will need to fix the following "
3936
  "error:"
3937
  msgstr ""
3938
 
3939
+ #: ../includes/importers/mycred-log-entries.php:228 ../includes/importers/mycred-balances.php:246
3940
  msgid "Choose a file from your computer:"
3941
  msgstr ""
3942
 
3943
+ #: ../includes/importers/mycred-log-entries.php:234 ../includes/importers/mycred-balances.php:252
3944
  msgid "Maximum size: %s"
3945
  msgstr ""
3946
 
3947
+ #: ../includes/importers/mycred-log-entries.php:239 ../includes/importers/mycred-balances.php:257
3948
  msgid "OR enter path to file:"
3949
  msgstr ""
3950
 
3951
+ #: ../includes/importers/mycred-log-entries.php:246 ../includes/importers/mycred-balances.php:264
3952
  msgid "Delimiter"
3953
  msgstr ""
3954
 
3955
+ #: ../includes/importers/mycred-log-entries.php:252 ../includes/importers/mycred-balances.php:270
3956
  msgid "Upload file and import"
3957
  msgstr ""
3958
 
3959
+ #: ../includes/importers/mycred-balances.php:156
3960
+ msgid ""
3961
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3962
+ "imported. <strong>%d</strong> was skipped."
3963
+ msgstr ""
3964
+
3965
+ #: ../includes/importers/mycred-balances.php:212
3966
+ msgid "Import Balances"
3967
+ msgstr ""
3968
+
3969
+ #: ../includes/importers/mycred-balances.php:229
3970
+ msgid "Import balances from a CSV file."
3971
+ msgstr ""
3972
+
3973
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3974
  msgid "Add-ons"
3975
  msgstr "Modules"
3976
 
3977
+ #: ../modules/mycred-module-addons.php:158
3978
  msgid ""
3979
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3980
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3985
  " buyCRED permet également à un utilisateur d'acheter des points pour un autre "
3986
  "membre du site."
3987
 
3988
+ #: ../modules/mycred-module-addons.php:169
3989
  msgid ""
3990
+ "The coupons add-on allows you to create coupons that users can use to add "
3991
  "points to their accounts."
3992
  msgstr ""
3993
 
3994
+ #: ../modules/mycred-module-addons.php:180
3995
  msgid "Create email notices for any type of myCRED instance."
3996
  msgstr "Créez des alertes par mail pour tout type d'action avec myCRED."
3997
 
3998
+ #: ../modules/mycred-module-addons.php:191
3999
  msgid ""
4000
  "Let your users pay using their <strong>my</strong>CRED points balance. "
4001
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
4002
  "Bookings: Event Espresso and Events Manager (free & pro)."
4003
  msgstr ""
4004
 
4005
+ #: ../modules/mycred-module-addons.php:202
4006
  msgid "Create pop-up notifications for when users gain or loose points."
4007
  msgstr ""
4008
 
4009
+ #: ../modules/mycred-module-addons.php:214
4010
  msgid ""
4011
  "Create ranks for users reaching a certain number of %_plural% with the option "
4012
  "to add logos for each rank."
4013
  msgstr ""
4014
 
4015
+ #: ../modules/mycred-module-addons.php:225
4016
  msgid ""
4017
  "This add-on allows you to sell posts, pages or any public post types on your "
4018
  "website. You can either sell the entire content or using our shortcode, sell "
4022
  "type public publié sur votre site. Vous pouvez vendre la totalité d'un contenu "
4023
  "ou proposer des extraits à titre d'échantillons à l'aide de nos shortcodes."
4024
 
4025
+ #: ../modules/mycred-module-addons.php:236
4026
  msgid ""
4027
  "Allow your users to send or \"donate\" points to other members by either using "
4028
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4030
  "Autorisez vos membres à s'envoyer des points ou en faire don entre eux, en "
4031
  "utilisant le shortcode mycred_transfer ou avec le widget myCRED Transfert."
4032
 
4033
+ #: ../modules/mycred-module-addons.php:272
4034
  msgid "%s Add-ons"
4035
  msgstr ""
4036
 
4037
+ #: ../modules/mycred-module-addons.php:278
4038
  msgid "Add-on Activated"
4039
  msgstr "Module activé"
4040
 
4041
+ #: ../modules/mycred-module-addons.php:281
4042
  msgid "Add-on Deactivated"
4043
  msgstr "Module désactivé"
4044
 
4045
+ #: ../modules/mycred-module-addons.php:285
4046
  msgid "Add-ons can expand your current installation with further features."
4047
  msgstr ""
4048
  "Les modules servent à étendre l'application avec des fonctionnalités "
4049
  "supplémentaires."
4050
 
4051
+ #: ../modules/mycred-module-addons.php:306
4052
  msgid "You can find more add-ons in our %s."
4053
  msgstr ""
4054
 
4055
+ #: ../modules/mycred-module-addons.php:306
4056
  msgid "online store"
4057
  msgstr ""
4058
 
4059
+ #: ../modules/mycred-module-addons.php:327
4060
  msgid "Deactivate Add-on"
4061
  msgstr "Désactiver le module"
4062
 
4063
+ #: ../modules/mycred-module-addons.php:328
4064
  msgid "Deactivate"
4065
  msgstr "Désactiver"
4066
 
4067
+ #: ../modules/mycred-module-addons.php:335
4068
  msgid "Activate Add-on"
4069
  msgstr "Activer le module"
4070
 
4071
+ #: ../modules/mycred-module-addons.php:336
4072
  msgid "Activate"
4073
  msgstr "Activer"
4074
 
4075
+ #: ../modules/mycred-module-addons.php:352
4076
  msgid "Version"
4077
  msgstr ""
4078
 
4079
+ #: ../modules/mycred-module-addons.php:356
4080
  msgid "By"
4081
  msgstr "Par"
4082
 
4083
+ #: ../modules/mycred-module-addons.php:364
4084
  msgid "Get Pro"
4085
  msgstr ""
4086
 
4253
  "haut à droite sous la barre d'outils WP) pour une liste complète des mots-clés "
4254
  "disponibles pour l'affichage des textes."
4255
 
4256
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2199 ../modules/mycred-module-hooks.php:2228 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4257
  msgid "Log template"
4258
  msgstr "Texte à afficher"
4259
 
4260
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2207 ../modules/mycred-module-hooks.php:2236 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4261
  msgid "Limit"
4262
  msgstr "Limite d'attribution"
4263
 
4264
+ #: ../modules/mycred-module-hooks.php:632
4265
  msgid "%plural% for Posts"
4266
  msgstr "%plural% pour un article"
4267
 
4268
+ #: ../modules/mycred-module-hooks.php:645
4269
  msgid "%plural% for Pages"
4270
  msgstr "%plural% pour une page"
4271
 
4272
+ #: ../modules/mycred-module-hooks.php:681
4273
  msgid "%plural% for %s"
4274
  msgstr "%plural% pour %s"
4275
 
4276
+ #: ../modules/mycred-module-hooks.php:1053
4277
  msgid ""
4278
  "%plural% are only awarded when your website has been synced with the Disqus "
4279
  "server!"
4280
  msgstr ""
4281
 
4282
+ #: ../modules/mycred-module-hooks.php:1055
4283
  msgid "Approved Comment"
4284
  msgstr "Commentaire approuvé"
4285
 
4286
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
4287
  msgid "Comment Author"
4288
  msgstr ""
4289
 
4290
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
4291
  msgid "Content Author"
4292
  msgstr ""
4293
 
4294
+ #: ../modules/mycred-module-hooks.php:1072
4295
  msgid "Comment Marked SPAM"
4296
  msgstr "Commentaire signalé comme SPAM"
4297
 
4298
+ #: ../modules/mycred-module-hooks.php:1089
4299
  msgid "Trashed / Unapproved Comments"
4300
  msgstr "Commentaire supprimé/refusé"
4301
 
4302
+ #: ../modules/mycred-module-hooks.php:1109
4303
  msgid "Limit per post"
4304
  msgstr "Limite par article"
4305
 
4306
+ #: ../modules/mycred-module-hooks.php:1111
4307
  msgid ""
4308
  "The number of comments per post that grants %_plural% to the comment author. "
4309
  "Use zero for unlimited."
4310
  msgstr ""
4311
 
4312
+ #: ../modules/mycred-module-hooks.php:1115
4313
  msgid "Limit per day"
4314
  msgstr "Limite par jour"
4315
 
4316
+ #: ../modules/mycred-module-hooks.php:1117
4317
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4318
  msgstr ""
4319
 
4320
+ #: ../modules/mycred-module-hooks.php:1122
4321
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4322
  msgstr ""
4323
  "Attribuer des %_plural% &agrave; l&#39;auteur d&#39;un commentaire r&eacute;"
4324
  "pondant &agrave; son propre commentaire."
4325
 
4326
+ #: ../modules/mycred-module-hooks.php:1193
4327
  msgid "Once for each unique URL"
4328
  msgstr "Une fois pour chaque URL unique"
4329
 
4330
+ #: ../modules/mycred-module-hooks.php:1194
4331
  msgid "Once for each unique link id"
4332
  msgstr "Une fois pour chaque ID unique de lien"
4333
 
4334
+ #: ../modules/mycred-module-hooks.php:1386
4335
  msgid ""
4336
  "The default amount to award for clicking on links. You can override this in the "
4337
  "shortcode."
4339
  "Le nombre par défaut à attribuer à chaque click sur un lien. Peut être modifié "
4340
  "avec le shortcode."
4341
 
4342
+ #: ../modules/mycred-module-hooks.php:1393
4343
  msgid "Custom tags: %url%, %title% or %id%."
4344
  msgstr ""
4345
 
4346
+ #: ../modules/mycred-module-hooks.php:1404 ../modules/mycred-module-hooks.php:2310
4347
  msgid "Note!"
4348
  msgstr ""
4349
 
4350
+ #: ../modules/mycred-module-hooks.php:1404
4351
  msgid ""
4352
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4353
  "generate one automatically based on the value set under href. If you are using "
4354
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4355
  msgstr ""
4356
 
4357
+ #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4358
  msgid "Available Shortcode"
4359
  msgstr ""
4360
 
4361
+ #: ../modules/mycred-module-hooks.php:1726
4362
  msgid "Amount to award for viewing videos."
4363
  msgstr "Montant à attribuer pour le visionnage d'une vidéo."
4364
 
4365
+ #: ../modules/mycred-module-hooks.php:1736
4366
  msgid "Award Logic"
4367
  msgstr "Attributs de classement"
4368
 
4369
+ #: ../modules/mycred-module-hooks.php:1738
4370
  msgid "Select when %_plural% should be awarded or deducted."
4371
  msgstr "Sélectionnez à quel moment des %_plural% doivent être attribués"
4372
 
4373
+ #: ../modules/mycred-module-hooks.php:1739
4374
  msgid "Play - As soon as video starts playing."
4375
  msgstr "Play - aussitôt que la vidéo démarre"
4376
 
4377
+ #: ../modules/mycred-module-hooks.php:1740
4378
  msgid "Full - First when the entire video has played."
4379
  msgstr "Complet - seulement quand la vidéo a été lue jusqu'au bout"
4380
 
4381
+ #: ../modules/mycred-module-hooks.php:1741
4382
  msgid "Interval - For each x number of seconds watched."
4383
  msgstr "Intervalle - par tranche de X nombre de secondes de visionnage"
4384
 
4385
+ #: ../modules/mycred-module-hooks.php:1746
4386
  msgid "Number of seconds"
4387
  msgstr "Nombre de secondes"
4388
 
4389
+ #: ../modules/mycred-module-hooks.php:1753
4390
  msgid "Leniency"
4391
  msgstr "Tolérance"
4392
 
4393
+ #: ../modules/mycred-module-hooks.php:1755
4394
  msgid ""
4395
  "The maximum percentage a users view of a movie can differ from the actual "
4396
  "length."
4398
  "Le pourcentage maximum qu'un utilisateur peut visionner peut différer de la "
4399
  "longueur actuelle d'une vidéo."
4400
 
4401
+ #: ../modules/mycred-module-hooks.php:1758
4402
  msgid ""
4403
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4404
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4408
  "produire pendant un visonnage. Quelques secondes peuvent parfois bloquer un "
4409
  "compteur pendant la mise en tampon ou produire des erreurs de différé."
4410
 
4411
+ #: ../modules/mycred-module-hooks.php:1826
4412
  msgid "Affiliate Program"
4413
  msgstr ""
4414
 
4415
+ #: ../modules/mycred-module-hooks.php:1835
4416
  msgid "Per Day"
4417
  msgstr ""
4418
 
4419
+ #: ../modules/mycred-module-hooks.php:1942
4420
  msgid "Link"
4421
  msgstr ""
4422
 
4423
+ #: ../modules/mycred-module-hooks.php:2193
4424
  msgid "Referring Visitors"
4425
  msgstr ""
4426
 
4427
+ #: ../modules/mycred-module-hooks.php:2217 ../modules/mycred-module-hooks.php:2246
4428
  msgid "The number of referrals each member can make. Use zero for unlimited."
4429
  msgstr ""
4430
 
4431
+ #: ../modules/mycred-module-hooks.php:2221 ../modules/mycred-module-hooks.php:2250
4432
  msgid "Referring Signups"
4433
  msgstr ""
4434
 
4435
+ #: ../modules/mycred-module-hooks.php:2225
4436
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4437
  msgstr ""
4438
 
4439
+ #: ../modules/mycred-module-hooks.php:2252
4440
  msgid "Registrations are disabled."
4441
  msgstr ""
4442
 
4443
+ #: ../modules/mycred-module-hooks.php:2259
4444
  msgid "Referral Links"
4445
  msgstr ""
4446
 
4447
+ #: ../modules/mycred-module-hooks.php:2263
4448
  msgid "Assign numeric referral IDs to each user."
4449
  msgstr ""
4450
 
4451
+ #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:2270
4452
  msgid "Example"
4453
  msgstr ""
4454
 
4455
+ #: ../modules/mycred-module-hooks.php:2269
4456
  msgid "Assign usernames as IDs for each user."
4457
  msgstr ""
4458
 
4459
+ #: ../modules/mycred-module-hooks.php:2273
4460
  msgid "IP Limit"
4461
  msgstr ""
4462
 
4463
+ #: ../modules/mycred-module-hooks.php:2277
4464
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4465
  msgstr ""
4466
 
4467
+ #: ../modules/mycred-module-hooks.php:2281 ../modules/mycred-module-hooks.php:2314
4468
  msgid "BuddyPress Profile"
4469
  msgstr ""
4470
 
4471
+ #: ../modules/mycred-module-hooks.php:2284
4472
  msgid "Insert Link in users Profile"
4473
  msgstr ""
4474
 
4475
+ #: ../modules/mycred-module-hooks.php:2285
4476
  msgid ""
4477
  "Option to inser the referral link in users profiles. Links will only be visible "
4478
  "to users viewing their own profiles or administrators."
4479
  msgstr ""
4480
 
4481
+ #: ../modules/mycred-module-hooks.php:2291
4482
  msgid "Leave empty to hide."
4483
  msgstr ""
4484
 
4485
+ #: ../modules/mycred-module-hooks.php:2294
4486
  msgid "Description"
4487
  msgstr ""
4488
 
4489
+ #: ../modules/mycred-module-hooks.php:2295
4490
  msgid "Optional description to insert under the link."
4491
  msgstr ""
4492
 
4493
+ #: ../modules/mycred-module-hooks.php:2307
4494
  msgid "Profile Positioning"
4495
  msgstr ""
4496
 
4497
+ #: ../modules/mycred-module-hooks.php:2309
4498
  msgid ""
4499
  "You can move around the referral link on your users profile by changing the "
4500
+ "position. Increase to move up, decrease to move down."
4501
  msgstr ""
4502
 
4503
+ #: ../modules/mycred-module-hooks.php:2310
4504
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4505
  msgstr ""
4506
 
4507
+ #: ../modules/mycred-module-hooks.php:2316
4508
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4509
  msgstr ""
4510
 
4511
+ #: ../modules/mycred-module-hooks.php:2324
4512
  msgid "Available Shortcodes"
4513
  msgstr ""
4514
 
4515
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4516
  msgid "Access denied for this action"
4517
  msgstr ""
4518
 
4519
+ #: ../modules/mycred-module-log.php:192
4520
  msgid "Row Deleted"
4521
  msgstr ""
4522
 
4523
+ #: ../modules/mycred-module-log.php:219
4524
  msgid "Log entry not found"
4525
  msgstr ""
4526
 
4527
+ #: ../modules/mycred-module-log.php:232
4528
  msgid "Entry Updated"
4529
  msgstr ""
4530
 
4531
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:424
4532
  msgid "Entries"
4533
  msgstr "Entrées"
4534
 
4535
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:392 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:558
4536
  msgid "Export"
4537
  msgstr ""
4538
 
4539
+ #: ../modules/mycred-module-log.php:311
4540
  msgid "Search results for"
4541
  msgstr "Résultat de la recherche pour"
4542
 
4543
+ #: ../modules/mycred-module-log.php:386
4544
  msgid "%s Log"
4545
  msgstr ""
4546
 
4547
+ #: ../modules/mycred-module-log.php:511
4548
  msgid "Edit"
4549
  msgstr ""
4550
 
4551
+ #: ../modules/mycred-module-log.php:556
4552
  msgid "Current Log Entry"
4553
  msgstr ""
4554
 
4555
+ #: ../modules/mycred-module-log.php:558
4556
  msgid "The current saved log entry"
4557
  msgstr ""
4558
 
4559
+ #: ../modules/mycred-module-log.php:561
4560
  msgid "Adjust Log Entry"
4561
  msgstr ""
4562
 
4563
+ #: ../modules/mycred-module-log.php:563
4564
  msgid "The new log entry"
4565
  msgstr ""
4566
 
4567
+ #: ../modules/mycred-module-log.php:566
4568
  msgid "Update Log Entry"
4569
  msgstr ""
4570
 
4571
+ #: ../modules/mycred-module-log.php:598
4572
  msgid "My %s History"
4573
  msgstr ""
4574
 
4575
+ #: ../modules/mycred-module-settings.php:64 ../modules/mycred-module-settings.php:105
4576
  msgid "Missing point type"
4577
  msgstr ""
4578
 
4579
+ #: ../modules/mycred-module-settings.php:128
4580
  msgid "Accounts successfully reset"
4581
  msgstr ""
4582
 
4583
+ #: ../modules/mycred-module-settings.php:168
4584
  msgid "No users found to export"
4585
  msgstr ""
4586
 
4587
+ #: ../modules/mycred-module-settings.php:314
4588
  msgid "Facebook"
4589
  msgstr ""
4590
 
4591
+ #: ../modules/mycred-module-settings.php:315
4592
  msgid "Google Plus"
4593
  msgstr ""
4594
 
4595
+ #: ../modules/mycred-module-settings.php:318
4596
  msgid "%s Settings"
4597
  msgstr ""
4598
 
4599
+ #: ../modules/mycred-module-settings.php:321
4600
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4601
  msgstr ""
4602
 
4603
+ #: ../modules/mycred-module-settings.php:326
4604
  msgid "Core Settings"
4605
  msgstr "Configuration du Core"
4606
 
4607
+ #: ../modules/mycred-module-settings.php:328
4608
  msgid "Name"
4609
  msgstr "Nom"
4610
 
4611
+ #: ../modules/mycred-module-settings.php:333
4612
  msgid "Accessible though the %singular% template tag."
4613
  msgstr "Accessible avec le mot-cl&eacute;s %singular%"
4614
 
4615
+ #: ../modules/mycred-module-settings.php:338
4616
  msgid "Accessible though the %plural% template tag."
4617
  msgstr "Accessible avec le mot-cl&eacute; %plural%"
4618
 
4619
+ #: ../modules/mycred-module-settings.php:341
4620
  msgid "Tip"
4621
  msgstr "Astuce"
4622
 
4623
+ #: ../modules/mycred-module-settings.php:341
4624
  msgid ""
4625
  "Adding an underscore at the beginning of template tag for names will return "
4626
  "them in lowercase. i.e. %_singular%"
4628
  "En ajoutant un tiret bas au début du mot-clé du nom, celui-ci sera retourné en "
4629
  "minuscule. Par ex. %_singular%"
4630
 
4631
+ #: ../modules/mycred-module-settings.php:359
4632
  msgid "Separator"
4633
  msgstr "Séparateur"
4634
 
4635
+ #: ../modules/mycred-module-settings.php:366
4636
  msgid "Edit Settings"
4637
  msgstr "Modifier les réglages"
4638
 
4639
+ #: ../modules/mycred-module-settings.php:368 ../modules/mycred-module-settings.php:373
4640
  msgid "Capability to check for."
4641
  msgstr "Capacité à observer."
4642
 
4643
+ #: ../modules/mycred-module-settings.php:371
4644
  msgid "Edit Users %plural%"
4645
  msgstr "Modifier les %plural% de l&#39;utilisateur"
4646
 
4647
+ #: ../modules/mycred-module-settings.php:395
4648
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4649
  msgstr ""
4650
  "Liste des identifiants utilisateurs à exclure. ID séparés par une virgule, "
4651
  "espaces interdits."
4652
 
4653
+ #: ../modules/mycred-module-settings.php:415
4654
  msgid "Management"
4655
  msgstr ""
4656
 
4657
+ #: ../modules/mycred-module-settings.php:417
4658
  msgid "The Log"
4659
  msgstr "Rapport d'activités"
4660
 
4661
+ #: ../modules/mycred-module-settings.php:420
4662
  msgid "Table Name"
4663
  msgstr ""
4664
 
4665
+ #: ../modules/mycred-module-settings.php:429
4666
  msgid "Empty Log"
4667
  msgstr ""
4668
 
4669
+ #: ../modules/mycred-module-settings.php:435
4670
  msgid "User Meta Key"
4671
  msgstr ""
4672
 
4673
+ #: ../modules/mycred-module-settings.php:444
4674
  msgid "Set all to zero"
4675
  msgstr ""
4676
 
4677
+ #: ../modules/mycred-module-settings.php:444
4678
  msgid "CSV Export"
4679
  msgstr ""
4680
 
4681
+ #: ../modules/mycred-module-settings.php:465
4682
  msgid "Default"
4683
  msgstr ""
4684
 
4685
+ #: ../modules/mycred-module-settings.php:468 ../modules/mycred-module-settings.php:487 ../modules/mycred-module-settings.php:509
4686
  msgid "Meta Key"
4687
  msgstr "Mot-clé"
4688
 
4689
+ #: ../modules/mycred-module-settings.php:506
4690
  msgid "Add New Type"
4691
  msgstr ""
4692
 
4693
+ #: ../modules/mycred-module-settings.php:511
4694
  msgid "A unique ID for this type."
4695
  msgstr ""
4696
 
4697
+ #: ../modules/mycred-module-settings.php:516
4698
  msgid "Menu and page title."
4699
  msgstr ""
4700
 
4701
+ #: ../modules/mycred-module-settings.php:519
4702
  msgid "The meta key will define where your users balances are saved."
4703
  msgstr ""
4704
 
4705
+ #: ../modules/mycred-module-settings.php:536
4706
  msgid "Identify users by"
4707
  msgstr ""
4708
 
4709
+ #: ../modules/mycred-module-settings.php:542
4710
  msgid "User Email"
4711
  msgstr ""
4712
 
4713
+ #: ../modules/mycred-module-settings.php:543
4714
  msgid "User Login"
4715
  msgstr ""
4716
 
4717
+ #: ../modules/mycred-module-settings.php:550
4718
  msgid ""
4719
  "Use ID if you intend to use this export as a backup of your current site while "
4720
  "Email is recommended if you want to export to a different site."
4721
  msgstr ""
4722
 
4723
+ #: ../modules/mycred-module-settings.php:553
4724
  msgid "Import Log Entry"
4725
  msgstr ""
4726
 
4727
+ #: ../modules/mycred-module-settings.php:555
4728
  msgid ""
4729
  "Optional log entry to use if you intend to import this file in a different %s "
4730
  "installation."
4943
  msgstr "%plural% pour une mise à jour de profil"
4944
 
4945
  #: ../plugins/mycred-hook-buddypress.php:377
4946
+ msgid "Daily limit. Use zero for unlimited."
4947
  msgstr ""
4948
 
4949
  #: ../plugins/mycred-hook-buddypress.php:387
lang/mycred-sv_SE.mo CHANGED
Binary file
lang/mycred-sv_SE.po CHANGED
@@ -3,8 +3,8 @@ 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 Mar 24 2014 18:44:58 GMT+0100 (CET)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -23,103 +23,103 @@ msgstr ""
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: sv_SE"
25
 
26
- #: ../mycred.php:395
27
  msgid "Balance"
28
  msgstr "Saldo"
29
 
30
- #: ../mycred.php:420
31
  msgid "%label% History"
32
  msgstr "%label% Historik"
33
 
34
- #: ../mycred.php:472
35
  msgid "No balances available."
36
  msgstr "Inga saldo."
37
 
38
- #: ../mycred.php:518
39
  msgid "About %s"
40
  msgstr "Om %s"
41
 
42
- #: ../mycred.php:527 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr "Hjälpsamma Användare"
45
 
46
- #: ../mycred.php:612 ../mycred.php:636 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:881 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:533
47
  msgid "Processing..."
48
  msgstr "Jobbar..."
49
 
50
- #: ../mycred.php:613
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr "Varning! Alla log inlägg kommer att raderas!"
55
 
56
- #: ../mycred.php:614
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr "All log inlägg för användare som har raderats kommer att raderas!"
61
 
62
- #: ../mycred.php:615
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr "Varning! Alla användares konton kommer att noll ställas!"
65
 
66
- #: ../mycred.php:616
67
  msgid "Done!"
68
  msgstr "Klart!"
69
 
70
- #: ../mycred.php:617 ../mycred.php:635 ../mycred.php:653
71
  msgid "Close"
72
  msgstr "Stäng"
73
 
74
- #: ../mycred.php:618
75
  msgid "Export users %plural%"
76
  msgstr "Exportera användarens %plural%"
77
 
78
- #: ../mycred.php:634
79
- msgid "Edit Users %s balance"
80
- msgstr "Justera användarens %s saldo"
81
 
82
- #: ../mycred.php:652
83
  msgid "Edit Log Entry"
84
  msgstr "Justera log inlägg"
85
 
86
- #: ../mycred.php:654
87
  msgid "Updating..."
88
  msgstr "Uppdaterar..."
89
 
90
- #: ../mycred.php:656
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr "Är du säker på att du vill radera detta inlägg?"
93
 
94
- #: ../mycred.php:657
95
  msgid "Log entry updated"
96
  msgstr "Log inlägg updaterad"
97
 
98
- #: ../mycred.php:709 ../mycred.php:730 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Setup"
101
 
102
- #: ../mycred.php:711 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:176 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr "Inställningar"
105
 
106
- #: ../mycred.php:734 ../modules/mycred-module-addons.php:362
107
  msgid "About"
108
  msgstr "Om"
109
 
110
- #: ../mycred.php:735
111
  msgid "Tutorials"
112
  msgstr "Kurser"
113
 
114
- #: ../mycred.php:736
115
  msgid "Codex"
116
  msgstr "Facit"
117
 
118
- #: ../mycred.php:737
119
  msgid "Store"
120
  msgstr "Affär"
121
 
122
- #: ../mycred.php:751
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
@@ -135,7 +135,7 @@ msgstr "function myCRED_Hook::run() must be over-ridden in a sub-class."
135
  msgid "This Hook has no settings"
136
  msgstr "Denna Krok har inga inställningar"
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1197
139
  msgid "No limit"
140
  msgstr "Ingen gräns"
141
 
@@ -155,7 +155,7 @@ msgstr "En gång i veckan"
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "En gång om dagen (börjar om efter midnatt)"
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "Välj"
161
 
@@ -167,19 +167,19 @@ msgstr "myCRED_Module() Error. En module ID är obligatorisk"
167
  msgid "Surprise"
168
  msgstr "Tjoho!"
169
 
170
- #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:104
171
  msgid "click to close"
172
  msgstr "stäng"
173
 
174
- #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:105
175
  msgid "click to open"
176
  msgstr "öppna"
177
 
178
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:476
179
  msgid "Settings Updated"
180
  msgstr "Inställningar Sparade"
181
 
182
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:148
183
  msgid "Banking"
184
  msgstr "Banktjänster"
185
 
@@ -211,7 +211,7 @@ msgstr ""
211
  "Ge dina användare %_plural% var dag / vecka / månad. Du kan själv välja hur "
212
  "många gånger detta skall ske."
213
 
214
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:461 ../addons/buy-creds/myCRED-addon-buy-creds.php:591 ../includes/mycred-network.php:150 ../modules/mycred-module-addons.php:268 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:584 ../modules/mycred-module-settings.php:299
215
  msgid "Access Denied"
216
  msgstr "Nekad Åtkomst"
217
 
@@ -219,7 +219,7 @@ msgstr "Nekad Åtkomst"
219
  msgid "%s Banking"
220
  msgstr "%s Banktjänst"
221
 
222
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:149
223
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
224
  msgstr ""
225
 
@@ -231,7 +231,7 @@ msgstr "WP-Cron är inte aktivt!"
231
  msgid "Warning! This add-on requires WP - Cron to work."
232
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
233
 
234
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:537 ../modules/mycred-module-hooks.php:182
235
  msgid "Enable"
236
  msgstr "On"
237
 
@@ -301,7 +301,7 @@ msgstr "Minimum saldo"
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "Minimum saldo för att ränta skall gälla."
303
 
304
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:356 ../addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:516 ../modules/mycred-module-hooks.php:1396 ../modules/mycred-module-hooks.php:1736 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "Log Mall"
307
 
@@ -331,7 +331,7 @@ msgstr "Har inte kört än"
331
  msgid "Pay Users"
332
  msgstr "Betala Användare"
333
 
334
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:641 ../addons/buy-creds/myCRED-addon-buy-creds.php:1138 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:345 ../includes/mycred-admin.php:456
335
  msgid "Amount"
336
  msgstr "Summa"
337
 
@@ -339,7 +339,7 @@ msgstr "Summa"
339
  msgid "Can not be zero."
340
  msgstr "Kan inte vara noll."
341
 
342
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1751
343
  msgid "Interval"
344
  msgstr "Tal"
345
 
@@ -389,7 +389,7 @@ msgstr ""
389
  "du avaktiverar tjänsten och den har inte kört klart, kommer tjänsten att "
390
  "fortsätta köra när du nästa gång aktiverar den,"
391
 
392
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:562 ../modules/mycred-module-settings.php:380
393
  msgid "Excludes"
394
  msgstr "Exkludera "
395
 
@@ -403,239 +403,239 @@ msgstr "Separera användares IDn med kommatäcken utan mellanslag!"
403
  msgid "Payment Gateways"
404
  msgstr "Betalnings Operatörer"
405
 
406
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:176
407
  msgid "buyCRED Purchase Log"
408
  msgstr "buyCRED Köp Log"
409
 
410
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:177 ../addons/buy-creds/myCRED-addon-buy-creds.php:405 ../addons/buy-creds/myCRED-addon-buy-creds.php:472
411
  msgid "Purchase Log"
412
  msgstr "Köp Log"
413
 
414
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
415
  msgid "Payments"
416
  msgstr "Köp"
417
 
418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:295
419
  msgid "Please login to purchase %_plural%"
420
  msgstr "Logga in för att köpa %_plural%"
421
 
422
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310
423
  msgid "Gift purchase from %display_name%."
424
  msgstr "Gåva till %display_name%"
425
 
426
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326 ../includes/mycred-overview.php:96 ../includes/mycred-overview.php:103 ../modules/mycred-module-addons.php:159
427
  msgid "buyCRED"
428
  msgstr "buyCRED"
429
 
430
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:328 ../addons/ranks/myCRED-addon-ranks.php:608
431
  msgid "Minimum %plural%"
432
  msgstr "Minimum %plural%"
433
 
434
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:332
435
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
436
  msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
437
 
438
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:337 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
439
  msgid "Point Type"
440
  msgstr "Poäng Typ"
441
 
442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349
443
  msgid "Login Template"
444
  msgstr "Login Mall"
445
 
446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353
447
  msgid "Content to show when a user is not logged in."
448
  msgstr "Information att visa när besökaren har inte loggat in."
449
 
450
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:363
451
  msgid "Thank You Page"
452
  msgstr "Tack Sida"
453
 
454
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:366 ../addons/buy-creds/myCRED-addon-buy-creds.php:387
455
  msgid "Custom URL"
456
  msgstr "Annan URL"
457
 
458
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:371 ../addons/buy-creds/myCRED-addon-buy-creds.php:392
459
  msgid "Page"
460
  msgstr "Sida"
461
 
462
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:384
463
  msgid "Cancellation Page"
464
  msgstr "Cancel Sida"
465
 
466
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:407
467
  msgid "Show seperate log for %_plural% purchases."
468
  msgstr "Visa %_plural% köp på en separat sida."
469
 
470
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:409
471
  msgid "Gifting"
472
  msgstr "Köp åt andra"
473
 
474
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:411
475
  msgid "Allow users to buy %_plural% for other users."
476
  msgstr "Tillåt användare att köpa %_plural% åt andra användare än sig själva."
477
 
478
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:412
479
  msgid "Allow users to buy %_plural% for content authors."
480
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
481
 
482
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472
483
  msgid "%s Payment Gateways"
484
  msgstr "%s Betalnings Operatörer"
485
 
486
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472 ../addons/buy-creds/myCRED-addon-buy-creds.php:647
487
  msgid "buyCRED Settings"
488
  msgstr "buyCRED Inställningar"
489
 
490
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:478
491
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
492
  msgstr "Välj vilka betalnings operatörer användare kan köpa %_plural% genom."
493
 
494
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:485
495
  msgid "Last Payment Notification"
496
  msgstr "Senaste Betalnings Bekräftelse från Operatör"
497
 
498
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:487
499
  msgid ""
500
  "Here you can view the last payment confirmation that was sent to buyCRED for "
501
  "processing."
502
  msgstr "Du kan se den sista betalnings bekräftelse som buyCRED har mottagit."
503
 
504
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
505
  msgid "Details"
506
  msgstr "Information"
507
 
508
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:493 ../modules/mycred-module-log.php:550
509
  msgid "Time"
510
  msgstr "Tid"
511
 
512
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:638 ../includes/mycred-overview.php:164 ../includes/mycred-overview.php:171 ../modules/mycred-module-addons.php:192
513
  msgid "Gateway"
514
  msgstr "Operatör"
515
 
516
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501 ../addons/buy-creds/myCRED-addon-buy-creds.php:643
517
  msgid "Transaction ID"
518
  msgstr "Transaktions ID"
519
 
520
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505
521
  msgid "Outcome"
522
  msgstr "Resultat"
523
 
524
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509
525
  msgid "Gateway Log"
526
  msgstr "Operatör Log"
527
 
528
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
529
  msgid "No recorded calls found."
530
  msgstr "Inga bekräftelser har mottagits än."
531
 
532
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:530
533
  msgid "Test Mode"
534
  msgstr "Test Mode"
535
 
536
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:532
537
  msgid "Enabled"
538
  msgstr "On"
539
 
540
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:535
541
  msgid "Disabled"
542
  msgstr "Off"
543
 
544
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
545
  msgid "Sandbox Mode"
546
  msgstr "Sandbox Mode"
547
 
548
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
549
  msgid "Enable for test purchases."
550
  msgstr "Aktivera för test köp."
551
 
552
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:565
553
  msgid "Update Gateway Settings"
554
  msgstr "Uppdatera Operatör Inställningar"
555
 
556
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:639 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:451 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:549
557
  msgid "User"
558
  msgstr "Användare"
559
 
560
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640 ../includes/mycred-log.php:650
561
  msgid "Date"
562
  msgstr "Datum"
563
 
564
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
565
  msgid "Payed"
566
  msgstr "Betalt"
567
 
568
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
569
  msgid "<strong>buy</strong>CRED Purchase Log"
570
  msgstr "<strong>buy</strong>CRED Köp Log"
571
 
572
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
573
  msgid "Gateway Settings"
574
  msgstr "Operatör Inställningar"
575
 
576
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651
577
  msgid ""
578
  "Only completed purchases are shown here. Purchases that were cancelled or "
579
  "failed are not logged."
580
  msgstr "Bara bekräftade köp visas här."
581
 
582
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:760 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:471
583
  msgid "User Missing"
584
  msgstr "Användare saknas"
585
 
586
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:817 ../addons/sell-content/myCRED-addon-sell-content.php:1110
587
  msgid "No purchases found"
588
  msgstr "Inga Köp"
589
 
590
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:889 ../addons/buy-creds/myCRED-addon-buy-creds.php:986
591
  msgid "This Add-on needs to setup before you can use this shortcode."
592
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
593
 
594
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
595
  msgid "No gateways installed."
596
  msgstr "Inga Operatörer är installerade."
597
 
598
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:908 ../addons/buy-creds/myCRED-addon-buy-creds.php:1005
599
  msgid "Gateway does not exist."
600
  msgstr "Kunde inte finna operatör."
601
 
602
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:944
603
  msgid "Yourself"
604
  msgstr "Till dig själv"
605
 
606
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1006
607
  msgid "No active gateways found."
608
  msgstr "Kunde inte hitta några aktiverade operatörer."
609
 
610
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1007
611
  msgid "The selected gateway is not active."
612
  msgstr "Operatören du valde är inte aktiverad."
613
 
614
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1043
615
  msgid "Buy with %gateway%"
616
  msgstr "Köp genom %gateway%"
617
 
618
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1049 ../addons/sell-content/myCRED-addon-sell-content.php:44
619
  msgid "Buy Now"
620
  msgstr "Köp"
621
 
622
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1089
623
  msgid "No users found"
624
  msgstr "Kunde inte hitta någon"
625
 
626
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1099
627
  msgid "To"
628
  msgstr "Till"
629
 
630
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1116
631
  msgid "Select Amount"
632
  msgstr "Välj summa"
633
 
634
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1140
635
  msgid "min."
636
  msgstr "min."
637
 
638
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1148
639
  msgid "Select Gateway"
640
  msgstr "Välj Operatör"
641
 
@@ -675,11 +675,11 @@ msgstr "Köp"
675
  msgid "Cancel purchase"
676
  msgstr "Cancellara köp"
677
 
678
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:338 ../includes/mycred-admin.php:444
679
  msgid "required"
680
  msgstr "obligatoriskt"
681
 
682
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:340 ../includes/mycred-admin.php:446
683
  msgid "optional"
684
  msgstr "valfritt"
685
 
@@ -789,19 +789,19 @@ msgstr "Obligatoriska fält är inte igenfyllda."
789
  msgid "Validating sale"
790
  msgstr "Bekräftar Köp"
791
 
792
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
793
  msgid "Token mismatch"
794
  msgstr "Token stämmer inte"
795
 
796
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
797
  msgid "Price mismatch"
798
  msgstr "Priset stämmer inte"
799
 
800
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
801
  msgid "Currency mismatch"
802
  msgstr "Valutan stämmer inte"
803
 
804
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
805
  msgid "Duplicate transaction"
806
  msgstr "Duplikat transaktion"
807
 
@@ -911,11 +911,11 @@ msgstr "Sakta"
911
  msgid "Full Notifications"
912
  msgstr "Full Kvitto"
913
 
914
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:186 ../includes/mycred-network.php:200
915
  msgid "No"
916
  msgstr "Nej"
917
 
918
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:182 ../includes/mycred-network.php:196
919
  msgid "Yes"
920
  msgstr "Ja"
921
 
@@ -1082,7 +1082,7 @@ msgstr "Be Skrill om att skicka ett bekräftelse email för varje genomförd bet
1082
  msgid "Checkout Page"
1083
  msgstr "Checkout Sida"
1084
 
1085
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:751 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:582 ../modules/mycred-module-hooks.php:2296
1086
  msgid "Title"
1087
  msgstr "Titel"
1088
 
@@ -1179,7 +1179,7 @@ msgstr ""
1179
  "För att använda denna operatör, var vänlig och logga in på ditt ZOA konto och "
1180
  "sätt Postback URL till adressen ovan och klicka \"Validate\"."
1181
 
1182
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:186 ../includes/mycred-overview.php:193 ../modules/mycred-module-addons.php:170
1183
  msgid "Coupons"
1184
  msgstr "Kuponger"
1185
 
@@ -1215,7 +1215,7 @@ msgstr "Fann inga kuponger"
1215
  msgid "No coupons found in Trash"
1216
  msgstr "Fann inga kuponger i papperskorgen"
1217
 
1218
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:181
1219
  msgid "Email Notices"
1220
  msgstr "Email Uppdateringar"
1221
 
@@ -1251,7 +1251,7 @@ msgstr "Värde"
1251
  msgid "Usage"
1252
  msgstr "Användning"
1253
 
1254
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1111 ../modules/mycred-module-hooks.php:1403
1255
  msgid "Limits"
1256
  msgstr "Begränsning"
1257
 
@@ -1263,7 +1263,7 @@ msgstr "Utlöper"
1263
  msgid "not yet used"
1264
  msgstr "oanvänd"
1265
 
1266
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1841
1267
  msgid "Total"
1268
  msgstr "Total"
1269
 
@@ -1421,7 +1421,7 @@ msgstr "Validera"
1421
 
1422
  #: ../addons/email-notices/myCRED-addon-email-notices.php:149
1423
  msgid "Email Notice"
1424
- msgstr "Email Notifikation"
1425
 
1426
  #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:243
1427
  msgid "Add New"
@@ -1429,33 +1429,33 @@ msgstr "Ny"
1429
 
1430
  #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1431
  msgid "Add New Notice"
1432
- msgstr "Ny Notifikation"
1433
 
1434
  #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1435
  msgid "Edit Notice"
1436
- msgstr "Justera Notifikation"
1437
 
1438
  #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1439
  msgid "New Notice"
1440
- msgstr "Ny Notifikation"
1441
 
1442
  #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1443
  msgid "View Notice"
1444
- msgstr "Se Notifikation"
1445
 
1446
  #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1447
  msgid "Search Email Notices"
1448
- msgstr "Sök email meddelanden"
1449
 
1450
  #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1451
  msgid "No email notices found"
1452
- msgstr "Fann inga email notifikationer"
1453
 
1454
  #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1455
  msgid "No email notices found in Trash"
1456
- msgstr "Fann inga email notifikationer i papperskorgen"
1457
 
1458
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/email-notices/myCRED-addon-email-notices.php:822 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:590
1459
  msgid "General"
1460
  msgstr "Allmänt"
1461
 
@@ -1485,469 +1485,415 @@ msgstr "Sell Content Add-on"
1485
 
1486
  #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1487
  msgid "user buys content"
1488
- msgstr "Användaren köper "
1489
 
1490
  #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1491
  msgid "authors content gets sold"
1492
- msgstr ""
1493
 
1494
  #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1495
  msgid "buyCREDs Add-on"
1496
- msgstr ""
1497
 
1498
  #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1499
  msgid "user buys %_plural%"
1500
- msgstr ""
1501
 
1502
  #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1503
  msgid "Transfer Add-on"
1504
- msgstr ""
1505
 
1506
  #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1507
  msgid "user sends %_plural%"
1508
- msgstr ""
1509
 
1510
  #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1511
  msgid "user receives %_plural%"
1512
- msgstr ""
1513
 
1514
  #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1515
  msgid "Ranks Add-on"
1516
- msgstr ""
1517
 
1518
  #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1519
  msgid "user is demoted"
1520
- msgstr ""
1521
 
1522
  #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1523
  msgid "user is promoted"
1524
- msgstr ""
1525
 
1526
  #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1527
  msgid ""
1528
  "Settings that apply to all email notices and can not be overridden for "
1529
  "individual emails."
1530
- msgstr ""
1531
 
1532
  #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1533
  msgid "Email Format"
1534
- msgstr ""
1535
 
1536
  #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1537
  msgid "Plain text emails only."
1538
- msgstr ""
1539
 
1540
  #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1541
  msgid "HTML or Plain text emails."
1542
- msgstr ""
1543
 
1544
  #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1545
  msgid "Filters"
1546
- msgstr ""
1547
 
1548
  #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1549
  msgid ""
1550
  "Allow WordPress and Third Party Plugins to filter the email subject before an "
1551
  "email is sent."
1552
  msgstr ""
 
 
1553
 
1554
  #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1555
  msgid ""
1556
  "Allow WordPress and Third Party Plugins to filter the email content before an "
1557
  "email is sent."
1558
  msgstr ""
 
 
1559
 
1560
  #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1561
  msgid ""
1562
  "Default email settings. These settings can be individually overridden when "
1563
  "editing emails."
1564
  msgstr ""
 
 
1565
 
1566
  #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
1567
  msgid "Email Settings"
1568
- msgstr ""
1569
 
1570
  #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
1571
  msgid "Senders Name:"
1572
- msgstr ""
1573
 
1574
  #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
1575
  msgid "Senders Email:"
1576
- msgstr ""
1577
 
1578
  #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1579
  msgid "Reply-To:"
1580
- msgstr ""
1581
 
1582
  #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1583
  msgid "Default Email Content"
1584
- msgstr ""
1585
 
1586
  #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1587
  msgid "Default email content."
1588
- msgstr ""
1589
 
1590
  #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1591
  msgid "Default Email Styling"
1592
- msgstr ""
1593
 
1594
  #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1595
  msgid "Ignored if HTML is not allowed in emails."
1596
- msgstr ""
1597
 
1598
  #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
1599
  msgid "Email Subject"
1600
- msgstr ""
1601
 
1602
  #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1603
  msgid "Status"
1604
- msgstr ""
1605
 
1606
  #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1607
  msgid "Not Active"
1608
- msgstr ""
1609
 
1610
  #: ../addons/email-notices/myCRED-addon-email-notices.php:616
1611
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1612
- msgstr ""
1613
 
1614
  #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1615
  msgid "Active"
1616
- msgstr ""
1617
 
1618
  #: ../addons/email-notices/myCRED-addon-email-notices.php:622
1619
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1620
- msgstr ""
1621
 
1622
  #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1623
  msgid "Email is sent when"
1624
- msgstr ""
1625
 
1626
  #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1627
  msgid "Missing instance for this notice!"
1628
- msgstr ""
1629
 
1630
  #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
1631
  msgid "Sent To"
1632
- msgstr ""
1633
 
1634
  #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
1635
  msgid "Administrator"
1636
- msgstr ""
1637
 
1638
  #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1639
  msgid "Both Administrator and User"
1640
- msgstr ""
1641
 
1642
  #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1643
  msgid "Available Template Tags"
1644
- msgstr ""
1645
 
1646
  #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1647
  msgid "Email Header"
1648
- msgstr ""
1649
 
1650
  #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1651
  msgid "Send this email notice when..."
1652
- msgstr ""
1653
 
1654
  #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1655
  msgid "Recipient:"
1656
- msgstr ""
1657
 
1658
  #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1659
  msgid "Both"
1660
- msgstr ""
1661
 
1662
  #: ../addons/email-notices/myCRED-addon-email-notices.php:782
1663
  msgid "Reply-To Email:"
1664
- msgstr ""
1665
 
1666
  #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1667
  msgid "Save"
1668
- msgstr ""
1669
 
1670
  #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1671
  msgid "CSS Styling"
1672
- msgstr ""
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:815
1675
  msgid "Site Related"
1676
- msgstr ""
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1679
  msgid "Your websites title"
1680
- msgstr ""
1681
 
1682
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1683
  msgid "Your websites address"
1684
- msgstr ""
1685
 
1686
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1687
  msgid "Your websites tagline (description)"
1688
- msgstr ""
1689
 
1690
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1691
  msgid "Your websites admin email"
1692
- msgstr ""
1693
 
1694
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1695
  msgid "Total number of blog members"
1696
- msgstr ""
1697
-
1698
- #: ../addons/email-notices/myCRED-addon-email-notices.php:823
1699
- msgid "Points name in singular format"
1700
- msgstr ""
1701
 
1702
- #: ../addons/email-notices/myCRED-addon-email-notices.php:824
1703
- msgid "Points name in plural"
1704
- msgstr ""
1705
-
1706
- #: ../addons/email-notices/myCRED-addon-email-notices.php:825
1707
- msgid "Login URL"
1708
- msgstr ""
1709
-
1710
- #: ../addons/email-notices/myCRED-addon-email-notices.php:828 ../includes/mycred-functions.php:597
1711
- msgid "User Related"
1712
- msgstr ""
1713
-
1714
- #: ../addons/email-notices/myCRED-addon-email-notices.php:829
1715
- msgid "The users ID"
1716
- msgstr ""
1717
-
1718
- #: ../addons/email-notices/myCRED-addon-email-notices.php:830
1719
- msgid "The users login name (username)"
1720
- msgstr ""
1721
-
1722
- #: ../addons/email-notices/myCRED-addon-email-notices.php:831
1723
- msgid "The users display name"
1724
- msgstr ""
1725
-
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
1727
- msgid "The users profile address"
1728
- msgstr ""
1729
-
1730
- #: ../addons/email-notices/myCRED-addon-email-notices.php:833
1731
- msgid "Link to the users profile address with their display name as title"
1732
- msgstr ""
1733
-
1734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:834
1735
- msgid "The users current balance unformated"
1736
- msgstr ""
1737
-
1738
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
1739
- msgid "The users current balance formated"
1740
- msgstr ""
1741
-
1742
- #: ../addons/email-notices/myCRED-addon-email-notices.php:837 ../includes/mycred-functions.php:604
1743
- msgid "Post Related"
1744
- msgstr ""
1745
-
1746
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
1747
- msgid "Post Title"
1748
- msgstr ""
1749
-
1750
- #: ../addons/email-notices/myCRED-addon-email-notices.php:839
1751
- msgid "Post URL address"
1752
- msgstr ""
1753
-
1754
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
1755
- msgid "Link to post Post title"
1756
- msgstr ""
1757
-
1758
- #: ../addons/email-notices/myCRED-addon-email-notices.php:841
1759
- msgid "The post type"
1760
- msgstr ""
1761
-
1762
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917 ../addons/email-notices/myCRED-addon-email-notices.php:920
1763
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1764
- msgstr ""
1765
-
1766
- #: ../addons/email-notices/myCRED-addon-email-notices.php:918 ../addons/ranks/myCRED-addon-ranks.php:513
1767
- msgid "Custom field updated"
1768
- msgstr ""
1769
 
1770
- #: ../addons/email-notices/myCRED-addon-email-notices.php:919 ../addons/ranks/myCRED-addon-ranks.php:514
1771
- msgid "Custom filed updated"
1772
- msgstr ""
1773
-
1774
- #: ../addons/email-notices/myCRED-addon-email-notices.php:922
1775
  msgid "Email Notice Activated"
1776
- msgstr ""
1777
 
1778
- #: ../addons/email-notices/myCRED-addon-email-notices.php:923
1779
  msgid "Email Notice Saved"
1780
- msgstr ""
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:924
1783
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1784
  msgstr ""
 
 
1785
 
1786
- #: ../addons/email-notices/myCRED-addon-email-notices.php:926
1787
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1788
- msgstr ""
1789
 
1790
- #: ../addons/email-notices/myCRED-addon-email-notices.php:945
1791
  msgid ""
1792
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1793
  "not yet ready to use this email notice!"
1794
  msgstr ""
 
 
1795
 
1796
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1797
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1798
- msgstr ""
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:949
1801
  msgid "This email notice is active."
1802
- msgstr ""
1803
 
1804
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:452
1805
  msgid "Current Balance"
1806
- msgstr ""
1807
 
1808
  #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
1809
  msgid "Total Cost"
1810
- msgstr ""
1811
 
1812
  #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
1813
  msgid "Balance After Purchase"
1814
- msgstr ""
1815
 
1816
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1817
- msgid "<a href=\"%s\">Go Back</a>"
1818
- msgstr ""
1819
 
1820
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1821
  msgid "will be deducted from your account."
1822
- msgstr ""
1823
 
1824
  #: ../addons/gateway/carts/mycred-marketpress.php:221
1825
  msgid ""
1826
  "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1827
  "href=\"%s\">select a different payment method</a>."
1828
- msgstr ""
1829
 
1830
  #: ../addons/gateway/carts/mycred-marketpress.php:240
1831
  msgid "Paid"
1832
- msgstr ""
1833
 
1834
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:52 ../includes/mycred-network.php:53 ../plugins/mycred-hook-badgeOS.php:81
1835
  msgid "myCRED"
1836
- msgstr ""
1837
 
1838
  #: ../addons/gateway/carts/mycred-marketpress.php:345
1839
  msgid "%_singular% Balance"
1840
- msgstr ""
1841
 
1842
  #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
1843
  msgid "Payment for Order: #%order_id%"
1844
- msgstr ""
1845
 
1846
  #: ../addons/gateway/carts/mycred-marketpress.php:351
1847
  msgid "Product Sale: %post_title%"
1848
- msgstr ""
1849
 
1850
  #: ../addons/gateway/carts/mycred-marketpress.php:352
1851
  msgid "Pay using your account balance."
1852
- msgstr ""
1853
 
1854
  #: ../addons/gateway/carts/mycred-marketpress.php:353
1855
  msgid ""
1856
  "TOTAL amount has been deducted from your account. Your current balance is: "
1857
  "%balance_f%"
1858
- msgstr ""
1859
 
1860
  #: ../addons/gateway/carts/mycred-marketpress.php:354
1861
  msgid ""
1862
  "Insufficient funds. Please select another form of payment. Your current balance "
1863
  "is: %balance_f%"
1864
  msgstr ""
 
 
1865
 
1866
  #: ../addons/gateway/carts/mycred-marketpress.php:355
1867
  msgid ""
1868
  "You must be logged in to pay with %_plural%. Please <a "
1869
  "href=\"%login_url_here%\">login</a>."
1870
  msgstr ""
 
 
1871
 
1872
  #: ../addons/gateway/carts/mycred-marketpress.php:362
1873
  msgid ""
1874
  "Let your users pay for items in their shopping cart using their %s Account. "
1875
  "Note! This gateway requires your users to be logged in when making a purchase!"
1876
  msgstr ""
 
 
1877
 
1878
  #: ../addons/gateway/carts/mycred-marketpress.php:365
1879
  msgid "Method Name"
1880
- msgstr ""
1881
 
1882
  #: ../addons/gateway/carts/mycred-marketpress.php:367
1883
  msgid ""
1884
  "Enter a public name for this payment method that is displayed to users - No "
1885
  "HTML"
1886
- msgstr ""
1887
 
1888
  #: ../addons/gateway/carts/mycred-marketpress.php:372
1889
  msgid "Gateway Logo URL"
1890
- msgstr ""
1891
 
1892
  #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
1893
  msgid "How much is 1 %_singular% worth in %currency%?"
1894
- msgstr ""
1895
 
1896
  #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
1897
  msgid "Exchange Rate"
1898
- msgstr ""
1899
 
1900
  #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
1901
  msgid "Profit Sharing"
1902
- msgstr ""
1903
 
1904
  #: ../addons/gateway/carts/mycred-marketpress.php:410
1905
  msgid "Percentage"
1906
- msgstr ""
1907
 
1908
- #: ../addons/gateway/carts/mycred-marketpress.php:412
1909
- msgid "Option to share sales with the product owner. User zero to disable"
1910
  msgstr ""
 
 
1911
 
1912
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1913
  msgid "Messages"
1914
- msgstr ""
1915
 
1916
  #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
1917
  msgid "Insufficient Funds"
1918
- msgstr ""
1919
 
1920
  #: ../addons/gateway/carts/mycred-marketpress.php:429
1921
  msgid "Message to show when the user can not use this gateway."
1922
- msgstr ""
1923
 
1924
  #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
1925
  msgid "Visitors"
1926
- msgstr ""
1927
 
1928
  #: ../addons/gateway/carts/mycred-marketpress.php:437
1929
  msgid "Message to show to buyers that are not logged in."
1930
- msgstr ""
1931
 
1932
  #: ../addons/gateway/carts/mycred-marketpress.php:443
1933
  msgid "User Instructions"
1934
- msgstr ""
1935
 
1936
  #: ../addons/gateway/carts/mycred-marketpress.php:445
1937
  msgid "Information to show users before payment."
1938
- msgstr ""
1939
 
1940
  #: ../addons/gateway/carts/mycred-marketpress.php:451
1941
  msgid "Confirmation Information"
1942
- msgstr ""
1943
 
1944
  #: ../addons/gateway/carts/mycred-marketpress.php:453
1945
  msgid "Information to display on the order confirmation page. - HTML allowed"
1946
- msgstr ""
1947
 
1948
  #: ../addons/gateway/carts/mycred-marketpress.php:459
1949
  msgid "Order Confirmation Email"
1950
- msgstr ""
1951
 
1952
  #: ../addons/gateway/carts/mycred-marketpress.php:461
1953
  msgid ""
@@ -1956,92 +1902,94 @@ msgid ""
1956
  "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1957
  "TOTAL, TRACKINGURL. No HTML allowed."
1958
  msgstr ""
 
 
 
 
1959
 
1960
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1961
  msgid "Let users pay using their myCRED balance."
1962
- msgstr ""
1963
 
1964
  #: ../addons/gateway/carts/mycred-woocommerce.php:79
1965
  msgid "Enable/Disable"
1966
- msgstr ""
1967
 
1968
  #: ../addons/gateway/carts/mycred-woocommerce.php:81
1969
  msgid "Enable myCRED Payment"
1970
- msgstr ""
1971
 
1972
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1973
  msgid ""
1974
  "Users who are not logged in or excluded from using myCRED will not have access "
1975
  "to this gateway!"
1976
  msgstr ""
 
 
1977
 
1978
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
1979
  msgid "Title to show for this payment option."
1980
- msgstr ""
1981
 
1982
  #: ../addons/gateway/carts/mycred-woocommerce.php:89
1983
  msgid "Pay with myCRED"
1984
- msgstr ""
1985
 
1986
  #: ../addons/gateway/carts/mycred-woocommerce.php:93
1987
  msgid "Customer Message"
1988
- msgstr ""
1989
 
1990
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
1991
  msgid "Deduct the amount from your %_plural% balance."
1992
- msgstr ""
1993
 
1994
  #: ../addons/gateway/carts/mycred-woocommerce.php:110
1995
  msgid "Select the point type users can use to pay."
1996
- msgstr ""
1997
 
1998
  #: ../addons/gateway/carts/mycred-woocommerce.php:136
1999
  msgid "Show Total"
2000
- msgstr ""
2001
 
2002
  #: ../addons/gateway/carts/mycred-woocommerce.php:138
2003
  msgid "Show the final price in %_plural% ."
2004
- msgstr ""
2005
 
2006
  #: ../addons/gateway/carts/mycred-woocommerce.php:140
2007
  msgid "Do not show"
2008
- msgstr ""
2009
 
2010
  #: ../addons/gateway/carts/mycred-woocommerce.php:141
2011
  msgid "Show in Cart"
2012
- msgstr ""
2013
 
2014
  #: ../addons/gateway/carts/mycred-woocommerce.php:142
2015
  msgid "Show on Checkout Page"
2016
- msgstr ""
2017
 
2018
  #: ../addons/gateway/carts/mycred-woocommerce.php:143
2019
  msgid "Show in Cart and on Checkout Page"
2020
- msgstr ""
2021
 
2022
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:471 ../modules/mycred-module-settings.php:490 ../modules/mycred-module-settings.php:513
2023
  msgid "Label"
2024
- msgstr ""
2025
 
2026
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2027
  msgid "Order Total in %_plural%"
2028
- msgstr ""
2029
-
2030
- #: ../addons/gateway/carts/mycred-woocommerce.php:159
2031
- msgid "Option to share a percentage of the sale with the product owner."
2032
- msgstr ""
2033
 
2034
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
2035
  msgid "Log entry template for profit sharing."
2036
- msgstr ""
2037
 
2038
  #: ../addons/gateway/carts/mycred-woocommerce.php:167
2039
  msgid "Sale of %post_title%"
2040
- msgstr ""
2041
 
2042
  #: ../addons/gateway/carts/mycred-woocommerce.php:192
2043
  msgid "myCRED Payment"
2044
- msgstr ""
2045
 
2046
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2047
  msgid ""
@@ -2049,324 +1997,330 @@ msgid ""
2049
  "users with insufficient funds and users who are not logged in will not see this "
2050
  "payment gateway on the checkout page."
2051
  msgstr ""
 
 
 
2052
 
2053
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2054
  msgid "You must be logged in to pay with %_plural%"
2055
- msgstr ""
2056
 
2057
  #: ../addons/gateway/carts/mycred-woocommerce.php:220
2058
  msgid "You can not use this gateway. Please try a different payment option."
2059
- msgstr ""
2060
 
2061
  #: ../addons/gateway/carts/mycred-woocommerce.php:232
2062
  msgid "Insufficient funds. Please try a different payment option."
2063
- msgstr ""
2064
 
2065
  #: ../addons/gateway/carts/mycred-woocommerce.php:294
2066
  msgid "Your account has successfully been charged."
2067
- msgstr ""
2068
 
2069
  #: ../addons/gateway/carts/mycred-woocommerce.php:313
2070
  msgid "Order Missing"
2071
- msgstr ""
2072
 
2073
  #: ../addons/gateway/carts/mycred-woocommerce.php:534 ../addons/gateway/carts/mycred-wpecommerce.php:131
2074
  msgid "Your current balance"
2075
- msgstr ""
2076
 
2077
  #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2078
  msgid "Store sale"
2079
- msgstr ""
2080
 
2081
  #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2082
  msgid "You must be logged in to use this gateway"
2083
- msgstr ""
2084
 
2085
  #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2086
  msgid "Insufficient Funds."
2087
- msgstr ""
2088
 
2089
  #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2090
  msgid "Deduct the amount from your balance."
2091
- msgstr ""
2092
 
2093
  #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2094
  msgid "You can not use this gateway."
2095
- msgstr ""
2096
 
2097
  #: ../addons/gateway/carts/mycred-wpecommerce.php:340
2098
  msgid "Log Template for Payments"
2099
- msgstr ""
2100
 
2101
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2102
  msgid "How much is 1 %s worth in %s"
2103
- msgstr ""
2104
 
2105
  #: ../addons/gateway/carts/mycred-wpecommerce.php:363
2106
  msgid "Payout"
2107
- msgstr ""
2108
-
2109
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2110
- msgid ""
2111
- "Option to share a percentage of the sale with the product owner (post author). "
2112
- "User zero to disable."
2113
- msgstr ""
2114
 
2115
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2116
  msgid "Instructions"
2117
- msgstr ""
2118
 
2119
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2120
  msgid ""
2121
  "Optional instructions to show users when selecting this gateway. Leave empty to "
2122
  "hide."
2123
  msgstr ""
 
 
2124
 
2125
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2126
  msgid "Message to show visitors who are not logged in."
2127
- msgstr ""
2128
 
2129
  #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2130
  msgid ""
2131
  "Message to show when users does not have enough %plural% to pay using this "
2132
  "gateway."
2133
  msgstr ""
 
 
2134
 
2135
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
2136
  msgid "Pay Now"
2137
- msgstr ""
2138
 
2139
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2140
  msgid "Payment for Event Registration"
2141
- msgstr ""
2142
 
2143
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2144
  msgid "Activate %s"
2145
- msgstr ""
2146
 
2147
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2148
  msgid "Deactivate %s"
2149
- msgstr ""
2150
 
2151
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
2152
  msgid "How many %s is 1 %s worth?"
2153
- msgstr ""
2154
 
2155
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2156
  msgid "Gateways Settings Successfully Updated"
2157
- msgstr ""
2158
 
2159
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
2160
  msgid "Labels"
2161
- msgstr ""
2162
 
2163
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2164
  msgid "Gateway Title"
2165
- msgstr ""
2166
 
2167
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2168
  msgid "Title to show on Payment page"
2169
- msgstr ""
2170
 
2171
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2172
  msgid "Payment Type"
2173
- msgstr ""
2174
 
2175
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2176
  msgid "Title to show on receipts and logs"
2177
- msgstr ""
2178
 
2179
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
2180
  msgid "Button Label"
2181
- msgstr ""
2182
 
2183
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2184
  msgid "Pay Button"
2185
- msgstr ""
2186
 
2187
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
2188
  msgid "Price"
2189
- msgstr ""
2190
 
2191
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2192
  msgid ""
2193
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2194
  "<code>mycred_no_sale</code>"
2195
  msgstr ""
 
 
2196
 
2197
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2198
  msgid "Users must be logged in to use this gateway!"
2199
- msgstr ""
2200
-
2201
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2202
- msgid "Option to share sales with the event owner (post author). Use zero to disable."
2203
- msgstr ""
2204
 
2205
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2206
  msgid "Log"
2207
- msgstr ""
2208
 
2209
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:457
2210
  msgid "Log Entry"
2211
- msgstr ""
2212
 
2213
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477
2214
  msgid "Templates"
2215
- msgstr ""
2216
 
2217
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2218
  msgid "Solvent users"
2219
- msgstr ""
2220
 
2221
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2222
  msgid ""
2223
  "Message to show users on the payment page before they are charged. Leave empty "
2224
  "to hide."
2225
  msgstr ""
 
 
2226
 
2227
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2228
  msgid "Insolvent users"
2229
- msgstr ""
2230
 
2231
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2232
  msgid "Message to show users who do not have enough points to pay."
2233
- msgstr ""
2234
 
2235
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2236
  msgid "Message to show visitors (users not logged in) on the payment page."
2237
- msgstr ""
2238
 
2239
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:527
2240
  msgid "Update Settings"
2241
- msgstr ""
2242
 
2243
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
2244
  msgid "Payment for tickets to %link_with_title%"
2245
- msgstr ""
2246
 
2247
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
2248
  msgid "Ticket refund for %link_with_title%"
2249
- msgstr ""
2250
 
2251
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
2252
  msgid "Pay using your %_plural% balance"
2253
- msgstr ""
2254
 
2255
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
2256
  msgid "Pay"
2257
- msgstr ""
2258
 
2259
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
2260
  msgid "Thank you for your payment!"
2261
- msgstr ""
2262
 
2263
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
2264
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2265
- msgstr ""
2266
 
2267
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
2268
  msgid "Ticket Type"
2269
- msgstr ""
2270
 
2271
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
2272
  msgid "Spaces"
2273
- msgstr ""
2274
 
2275
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:228
2276
  msgid "You can not pay using this gateway."
2277
- msgstr ""
2278
 
2279
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:370
2280
  msgid "Reject"
2281
- msgstr ""
2282
 
2283
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:509 ../modules/mycred-module-settings.php:475 ../modules/mycred-module-settings.php:494
2284
  msgid "Delete"
2285
- msgstr ""
2286
 
2287
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:379
2288
  msgid "Edit/View"
2289
- msgstr ""
2290
 
2291
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
2292
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2293
- msgstr ""
2294
 
2295
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
2296
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2297
- msgstr ""
2298
 
2299
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
2300
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2301
- msgstr ""
2302
 
2303
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
2304
  msgid "Refunds"
2305
- msgstr ""
2306
 
2307
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2308
  msgid ""
2309
- "The percentage of the paid amount to refund if a user cancells their booking. "
2310
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2311
  msgstr ""
2312
 
2313
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
2314
  msgid "Log Templates"
2315
- msgstr ""
2316
 
2317
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
2318
  msgid "Purchases"
2319
- msgstr ""
2320
 
2321
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
2322
  msgid "Payment Link Label"
2323
- msgstr ""
2324
 
2325
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
2326
  msgid ""
2327
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2328
  "allowed."
2329
  msgstr ""
 
 
2330
 
2331
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
2332
  msgid "Payment Header"
2333
- msgstr ""
2334
 
2335
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
2336
  msgid "Shown on top of the payment form. No HTML allowed."
2337
- msgstr ""
2338
 
2339
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
2340
  msgid "The button label for payments. No HTML allowed!"
2341
- msgstr ""
2342
 
2343
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
2344
  msgid "Successful Payments"
2345
- msgstr ""
2346
 
2347
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
2348
  msgid "No HTML allowed!"
2349
- msgstr ""
2350
 
2351
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2352
  msgid "Balance After Payment"
2353
- msgstr ""
2354
 
2355
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2356
  msgid "Click to toggle"
2357
- msgstr ""
2358
 
2359
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2360
  msgid "%s Payments"
2361
- msgstr ""
2362
 
2363
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2364
  msgid ""
2365
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2366
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2367
  msgstr ""
 
 
 
2368
 
2369
- #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:203
2370
  msgid "Notifications"
2371
  msgstr ""
2372
 
@@ -2414,11 +2368,11 @@ msgstr ""
2414
  msgid "Are you sure you want to re-assign user ranks?"
2415
  msgstr ""
2416
 
2417
- #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:746 ../addons/ranks/myCRED-addon-ranks.php:942 ../modules/mycred-module-addons.php:215
2418
  msgid "Ranks"
2419
  msgstr ""
2420
 
2421
- #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:441 ../addons/ranks/myCRED-addon-ranks.php:457 ../addons/ranks/myCRED-addon-ranks.php:552
2422
  msgid "Rank"
2423
  msgstr ""
2424
 
@@ -2450,233 +2404,233 @@ msgstr ""
2450
  msgid "No ranks found in Trash"
2451
  msgstr ""
2452
 
2453
- #: ../addons/ranks/myCRED-addon-ranks.php:316
2454
  msgid "Completed - Total of %d users effected"
2455
  msgstr ""
2456
 
2457
- #: ../addons/ranks/myCRED-addon-ranks.php:318
2458
  msgid "Log is Empty"
2459
  msgstr ""
2460
 
2461
- #: ../addons/ranks/myCRED-addon-ranks.php:512 ../addons/ranks/myCRED-addon-ranks.php:515
2462
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2463
  msgstr ""
2464
 
2465
- #: ../addons/ranks/myCRED-addon-ranks.php:517
2466
  msgid "Rank Activated"
2467
  msgstr ""
2468
 
2469
- #: ../addons/ranks/myCRED-addon-ranks.php:518
2470
  msgid "Rank Saved"
2471
  msgstr ""
2472
 
2473
- #: ../addons/ranks/myCRED-addon-ranks.php:519
2474
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2475
  msgstr ""
2476
 
2477
- #: ../addons/ranks/myCRED-addon-ranks.php:521
2478
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2479
  msgstr ""
2480
 
2481
- #: ../addons/ranks/myCRED-addon-ranks.php:578 ../addons/ranks/myCRED-addon-ranks.php:631
2482
  msgid "Rank Title"
2483
  msgstr ""
2484
 
2485
- #: ../addons/ranks/myCRED-addon-ranks.php:579
2486
  msgid "Logo"
2487
  msgstr ""
2488
 
2489
- #: ../addons/ranks/myCRED-addon-ranks.php:580
2490
  msgid "Requirement"
2491
  msgstr ""
2492
 
2493
- #: ../addons/ranks/myCRED-addon-ranks.php:581 ../modules/mycred-module-settings.php:438
2494
  msgid "Users"
2495
  msgstr ""
2496
 
2497
- #: ../addons/ranks/myCRED-addon-ranks.php:597
2498
  msgid "No Logo Set"
2499
  msgstr ""
2500
 
2501
- #: ../addons/ranks/myCRED-addon-ranks.php:606 ../addons/ranks/myCRED-addon-ranks.php:611
2502
  msgid "Any Value"
2503
  msgstr ""
2504
 
2505
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2506
  msgid "Maximum %plural%"
2507
  msgstr ""
2508
 
2509
- #: ../addons/ranks/myCRED-addon-ranks.php:644
2510
  msgid "Rank Settings"
2511
  msgstr ""
2512
 
2513
- #: ../addons/ranks/myCRED-addon-ranks.php:666
2514
  msgid "Minimum %plural% to reach this rank"
2515
  msgstr ""
2516
 
2517
- #: ../addons/ranks/myCRED-addon-ranks.php:670
2518
  msgid "Maximum %plural% to be included in this rank"
2519
  msgstr ""
2520
 
2521
- #: ../addons/ranks/myCRED-addon-ranks.php:677
2522
  msgid "All Published Ranks"
2523
  msgstr ""
2524
 
2525
- #: ../addons/ranks/myCRED-addon-ranks.php:683 ../addons/ranks/myCRED-addon-ranks.php:685
2526
  msgid "Not Set"
2527
  msgstr ""
2528
 
2529
- #: ../addons/ranks/myCRED-addon-ranks.php:690
2530
  msgid "No Ranks found"
2531
  msgstr ""
2532
 
2533
- #: ../addons/ranks/myCRED-addon-ranks.php:748
2534
  msgid "Rank Features"
2535
  msgstr ""
2536
 
2537
- #: ../addons/ranks/myCRED-addon-ranks.php:752
2538
  msgid "%plural% requirement"
2539
  msgstr ""
2540
 
2541
- #: ../addons/ranks/myCRED-addon-ranks.php:753
2542
  msgid "Featured Image (Logo)"
2543
  msgstr ""
2544
 
2545
- #: ../addons/ranks/myCRED-addon-ranks.php:754
2546
  msgid "Content"
2547
  msgstr ""
2548
 
2549
- #: ../addons/ranks/myCRED-addon-ranks.php:755
2550
  msgid "Excerpt"
2551
  msgstr ""
2552
 
2553
- #: ../addons/ranks/myCRED-addon-ranks.php:756
2554
  msgid "Comments"
2555
  msgstr ""
2556
 
2557
- #: ../addons/ranks/myCRED-addon-ranks.php:757
2558
  msgid "Page Attributes"
2559
  msgstr ""
2560
 
2561
- #: ../addons/ranks/myCRED-addon-ranks.php:758
2562
  msgid "Custom Fields"
2563
  msgstr ""
2564
 
2565
- #: ../addons/ranks/myCRED-addon-ranks.php:761
2566
  msgid "Public"
2567
  msgstr ""
2568
 
2569
- #: ../addons/ranks/myCRED-addon-ranks.php:765
2570
  msgid ""
2571
  "If you want to create a template archive for each rank, you must select to have "
2572
  "ranks public. Defaults to disabled."
2573
  msgstr ""
2574
 
2575
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2576
  msgid "Rank Basis"
2577
  msgstr ""
2578
 
2579
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2580
  msgid "Users are ranked according to their current balance."
2581
  msgstr ""
2582
 
2583
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2584
  msgid ""
2585
  "Users are ranked according to the total amount of %_plural% they have "
2586
  "accumulated."
2587
  msgstr ""
2588
 
2589
- #: ../addons/ranks/myCRED-addon-ranks.php:778 ../addons/ranks/myCRED-addon-ranks.php:783
2590
  msgid "Calculate Totals"
2591
  msgstr ""
2592
 
2593
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2594
  msgid ""
2595
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2596
  "the users current balance will be used as a starting point."
2597
  msgstr ""
2598
 
2599
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2600
  msgid ""
2601
  "Once a users total has been calculated, they will be assigned to their "
2602
  "appropriate roles. For this reason, it is highly recommended that you first "
2603
  "setup your ranks!"
2604
  msgstr ""
2605
 
2606
- #: ../addons/ranks/myCRED-addon-ranks.php:782
2607
  msgid ""
2608
  "Depending on your log size and number of users this process may take a while. "
2609
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2610
  "is completed!"
2611
  msgstr ""
2612
 
2613
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2614
  msgid "Archive URL"
2615
  msgstr ""
2616
 
2617
- #: ../addons/ranks/myCRED-addon-ranks.php:791
2618
  msgid "Ignored if Ranks are not public"
2619
  msgstr ""
2620
 
2621
- #: ../addons/ranks/myCRED-addon-ranks.php:794
2622
  msgid "Display Order"
2623
  msgstr ""
2624
 
2625
- #: ../addons/ranks/myCRED-addon-ranks.php:801
2626
  msgid "Ascending - Lowest rank to highest"
2627
  msgstr ""
2628
 
2629
- #: ../addons/ranks/myCRED-addon-ranks.php:802
2630
  msgid "Descending - Highest rank to lowest"
2631
  msgstr ""
2632
 
2633
- #: ../addons/ranks/myCRED-addon-ranks.php:811
2634
  msgid ""
2635
  "Select in what order ranks should be displayed in your admin area and/or front "
2636
  "if ranks are \"Public\""
2637
  msgstr ""
2638
 
2639
- #: ../addons/ranks/myCRED-addon-ranks.php:821 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2640
  msgid "Do not show."
2641
  msgstr ""
2642
 
2643
- #: ../addons/ranks/myCRED-addon-ranks.php:822 ../modules/mycred-module-buddypress.php:365
2644
  msgid "Include in Profile Header."
2645
  msgstr ""
2646
 
2647
- #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:366
2648
  msgid "Include under the \"Profile\" tab"
2649
  msgstr ""
2650
 
2651
- #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:367
2652
  msgid "Include under the \"Profile\" tab and Profile Header."
2653
  msgstr ""
2654
 
2655
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2656
  msgid "Rank in BuddyPress"
2657
  msgstr ""
2658
 
2659
- #: ../addons/ranks/myCRED-addon-ranks.php:895
2660
  msgid "Script Communication Error"
2661
  msgstr ""
2662
 
2663
- #: ../addons/ranks/myCRED-addon-ranks.php:945
2664
  msgid "Rank Post Type"
2665
  msgstr ""
2666
 
2667
- #: ../addons/ranks/myCRED-addon-ranks.php:949
2668
  msgid "No. of ranks"
2669
  msgstr ""
2670
 
2671
- #: ../addons/ranks/myCRED-addon-ranks.php:953 ../modules/mycred-module-log.php:370 ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.php:442
2672
  msgid "Actions"
2673
  msgstr ""
2674
 
2675
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2676
  msgid "Remove All Ranks"
2677
  msgstr ""
2678
 
2679
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2680
  msgid "Assign Ranks to Users"
2681
  msgstr ""
2682
 
@@ -2692,7 +2646,7 @@ msgstr ""
2692
  msgid "No users found with this rank"
2693
  msgstr ""
2694
 
2695
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:415 ../includes/mycred-shortcodes.php:476 ../includes/mycred-shortcodes.php:480 ../includes/mycred-shortcodes.php:484
2696
  msgid "error"
2697
  msgstr ""
2698
 
@@ -2728,7 +2682,7 @@ msgstr ""
2728
  msgid "Pay Content Author."
2729
  msgstr ""
2730
 
2731
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:139 ../includes/mycred-overview.php:146 ../modules/mycred-module-addons.php:226
2732
  msgid "Sell Content"
2733
  msgstr ""
2734
 
@@ -2910,7 +2864,7 @@ msgstr ""
2910
  msgid "Transfer %plural%"
2911
  msgstr ""
2912
 
2913
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:588 ../modules/mycred-module-settings.php:456
2914
  msgid "Point Types"
2915
  msgstr ""
2916
 
@@ -3096,67 +3050,83 @@ msgid ""
3096
  "href=\"%s\">website</a>."
3097
  msgstr ""
3098
 
3099
- #: ../includes/mycred-admin.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3100
  msgid "User is excluded"
3101
  msgstr ""
3102
 
3103
- #: ../includes/mycred-admin.php:78
3104
  msgid "Log Entry can not be empty"
3105
  msgstr ""
3106
 
3107
- #: ../includes/mycred-admin.php:82
3108
  msgid "Amount can not be zero"
3109
  msgstr ""
3110
 
3111
- #: ../includes/mycred-admin.php:105
3112
  msgid "Failed to update this uses balance."
3113
  msgstr ""
3114
 
3115
- #: ../includes/mycred-admin.php:240
3116
  msgid "Excluded"
3117
  msgstr ""
3118
 
3119
- #: ../includes/mycred-admin.php:253 ../modules/mycred-module-log.php:252 ../modules/mycred-module-log.php:253
3120
  msgid "History"
3121
  msgstr ""
3122
 
3123
- #: ../includes/mycred-admin.php:254
3124
  msgid "Adjust"
3125
  msgstr ""
3126
 
3127
- #: ../includes/mycred-admin.php:309 ../includes/mycred-admin.php:368
3128
  msgid "%singular% balance"
3129
  msgstr ""
3130
 
3131
- #: ../includes/mycred-admin.php:333
3132
  msgid "Adjust Your Balance"
3133
  msgstr ""
3134
 
3135
- #: ../includes/mycred-admin.php:335
3136
  msgid "Adjust Users Balance"
3137
  msgstr ""
3138
 
3139
- #: ../includes/mycred-admin.php:346
3140
  msgid "Log description for adjustment"
3141
  msgstr ""
3142
 
3143
- #: ../includes/mycred-admin.php:349
3144
  msgid "Update"
3145
  msgstr ""
3146
 
3147
- #: ../includes/mycred-admin.php:350
3148
  msgid "Description is required!"
3149
  msgstr ""
3150
 
3151
- #: ../includes/mycred-admin.php:450
3152
  msgid "ID"
3153
  msgstr ""
3154
 
3155
- #: ../includes/mycred-admin.php:456
3156
  msgid "A positive or negative value"
3157
  msgstr ""
3158
 
3159
- #: ../includes/mycred-admin.php:458
3160
  msgid "Update Balance"
3161
  msgstr ""
3162
 
@@ -3168,67 +3138,75 @@ msgstr ""
3168
  msgid "Points"
3169
  msgstr ""
3170
 
3171
- #: ../includes/mycred-functions.php:396
3172
  msgid "Deleted"
3173
  msgstr ""
3174
 
3175
- #: ../includes/mycred-functions.php:533
3176
  msgid "Deleted Item"
3177
  msgstr ""
3178
 
3179
- #: ../includes/mycred-functions.php:611
 
 
 
 
 
 
 
 
3180
  msgid "Comment Related"
3181
  msgstr ""
3182
 
3183
- #: ../includes/mycred-functions.php:618
3184
  msgid "Widget Related"
3185
  msgstr ""
3186
 
3187
- #: ../includes/mycred-functions.php:625
3188
  msgid "Amount Related"
3189
  msgstr ""
3190
 
3191
- #: ../includes/mycred-functions.php:632
3192
  msgid "Video Related"
3193
  msgstr ""
3194
 
3195
- #: ../includes/mycred-functions.php:643
3196
  msgid "and"
3197
  msgstr ""
3198
 
3199
- #: ../includes/mycred-functions.php:645
3200
  msgid "Available Template Tags:"
3201
  msgstr ""
3202
 
3203
- #: ../includes/mycred-functions.php:1568
3204
  msgid "Entire Log"
3205
  msgstr ""
3206
 
3207
- #: ../includes/mycred-functions.php:1573 ../includes/mycred-functions.php:1574
3208
  msgid "Displayed Rows"
3209
  msgstr ""
3210
 
3211
- #: ../includes/mycred-functions.php:1578
3212
  msgid "Search Results"
3213
  msgstr ""
3214
 
3215
- #: ../includes/mycred-functions.php:1579
3216
  msgid "My Entire Log"
3217
  msgstr ""
3218
 
3219
- #: ../includes/mycred-functions.php:1699
3220
  msgid "ref empty"
3221
  msgstr ""
3222
 
3223
- #: ../includes/mycred-functions.php:1707
3224
  msgid "incorrect user id format"
3225
  msgstr ""
3226
 
3227
- #: ../includes/mycred-functions.php:1720
3228
  msgid "incorrect unix timestamp (from):"
3229
  msgstr ""
3230
 
3231
- #: ../includes/mycred-functions.php:1729
3232
  msgid "incorrect unix timestamp (to):"
3233
  msgstr ""
3234
 
@@ -3241,14 +3219,22 @@ msgid "Import log entries via a CSV file."
3241
  msgstr ""
3242
 
3243
  #: ../includes/mycred-importer.php:43
 
 
 
 
 
 
 
 
3244
  msgid "%s CubePoints Import"
3245
  msgstr ""
3246
 
3247
- #: ../includes/mycred-importer.php:44 ../includes/importers/mycred-cubepoints.php:344
3248
  msgid "Import CubePoints log entries and / or balances."
3249
  msgstr ""
3250
 
3251
- #: ../includes/mycred-importer.php:60
3252
  msgid "No CubePoints log exists."
3253
  msgstr ""
3254
 
@@ -3270,140 +3256,140 @@ msgid ""
3270
  "for running myCRED. The following errors were given:"
3271
  msgstr ""
3272
 
3273
- #: ../includes/mycred-install.php:246
3274
  msgid "myCRED needs your attention."
3275
  msgstr ""
3276
 
3277
- #: ../includes/mycred-install.php:246
3278
  msgid "Run Setup"
3279
  msgstr ""
3280
 
3281
- #: ../includes/mycred-install.php:258 ../includes/mycred-install.php:259
3282
  msgid "myCRED Setup"
3283
  msgstr ""
3284
 
3285
- #: ../includes/mycred-install.php:388
3286
  msgid "%s Setup"
3287
  msgstr ""
3288
 
3289
- #: ../includes/mycred-install.php:390
3290
  msgid "Step"
3291
  msgstr ""
3292
 
3293
- #: ../includes/mycred-install.php:414
3294
  msgid ""
3295
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3296
  "format, layout and security settings."
3297
  msgstr ""
3298
 
3299
- #: ../includes/mycred-install.php:415
3300
  msgid "Begin Setup"
3301
  msgstr ""
3302
 
3303
- #: ../includes/mycred-install.php:470
3304
  msgid "Select the format you want to use for your points."
3305
  msgstr ""
3306
 
3307
- #: ../includes/mycred-install.php:471 ../includes/mycred-widgets.php:223
3308
  msgid "Format"
3309
  msgstr ""
3310
 
3311
- #: ../includes/mycred-install.php:474
3312
  msgid "Separators"
3313
  msgstr ""
3314
 
3315
- #: ../includes/mycred-install.php:484
3316
  msgid "Decimals"
3317
  msgstr ""
3318
 
3319
- #: ../includes/mycred-install.php:486
3320
  msgid "Use zero for no decimals."
3321
  msgstr ""
3322
 
3323
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3324
  msgid "Presentation"
3325
  msgstr ""
3326
 
3327
- #: ../includes/mycred-install.php:492 ../modules/mycred-module-settings.php:330
3328
  msgid "Name (Singular)"
3329
  msgstr ""
3330
 
3331
- #: ../includes/mycred-install.php:496 ../modules/mycred-module-settings.php:335
3332
  msgid "Name (Plural)"
3333
  msgstr ""
3334
 
3335
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:346
3336
  msgid "Prefix"
3337
  msgstr ""
3338
 
3339
- #: ../includes/mycred-install.php:510 ../modules/mycred-module-settings.php:354
3340
  msgid "Suffix"
3341
  msgstr ""
3342
 
3343
- #: ../includes/mycred-install.php:514
3344
  msgid "Cancel Setup"
3345
  msgstr ""
3346
 
3347
- #: ../includes/mycred-install.php:514
3348
  msgid "Cancel"
3349
  msgstr ""
3350
 
3351
- #: ../includes/mycred-install.php:514 ../includes/mycred-install.php:584
3352
  msgid "Next"
3353
  msgstr ""
3354
 
3355
- #: ../includes/mycred-install.php:546 ../modules/mycred-module-settings.php:362
3356
  msgid "Security"
3357
  msgstr ""
3358
 
3359
- #: ../includes/mycred-install.php:549
3360
  msgid "Edit Settings Capability"
3361
  msgstr ""
3362
 
3363
- #: ../includes/mycred-install.php:553
3364
  msgid "Edit Users %plural% Capability"
3365
  msgstr ""
3366
 
3367
- #: ../includes/mycred-install.php:557 ../modules/mycred-module-settings.php:375
3368
  msgid "Maximum %plural% payouts"
3369
  msgstr ""
3370
 
3371
- #: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:377
3372
  msgid ""
3373
  "As an added security, you can set the maximum amount a user can gain or loose "
3374
  "in a single instance. If used, make sure this is the maximum amount a user "
3375
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3376
  msgstr ""
3377
 
3378
- #: ../includes/mycred-install.php:566 ../modules/mycred-module-settings.php:384
3379
  msgid "Exclude those who can \"Edit Settings\"."
3380
  msgstr ""
3381
 
3382
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:388
3383
  msgid "Exclude those who can \"Edit Users %plural%\"."
3384
  msgstr ""
3385
 
3386
- #: ../includes/mycred-install.php:573 ../modules/mycred-module-settings.php:392
3387
  msgid "Exclude the following user IDs:"
3388
  msgstr ""
3389
 
3390
- #: ../includes/mycred-install.php:577 ../modules/mycred-module-settings.php:397
3391
  msgid "User Deletions"
3392
  msgstr ""
3393
 
3394
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:400
3395
  msgid "Delete log entries when user is deleted."
3396
  msgstr ""
3397
 
3398
- #: ../includes/mycred-install.php:602
3399
  msgid "Ready"
3400
  msgstr ""
3401
 
3402
- #: ../includes/mycred-install.php:603
3403
  msgid "Almost done! Click the button below to finish this setup."
3404
  msgstr ""
3405
 
3406
- #: ../includes/mycred-install.php:604
3407
  msgid "Install & Run"
3408
  msgstr ""
3409
 
@@ -3444,7 +3430,7 @@ msgstr ""
3444
  msgid "Show all references"
3445
  msgstr ""
3446
 
3447
- #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:540
3448
  msgid "User ID"
3449
  msgstr ""
3450
 
@@ -3510,77 +3496,77 @@ msgstr ""
3510
  msgid "This Month"
3511
  msgstr ""
3512
 
3513
- #: ../includes/mycred-network.php:61 ../includes/mycred-network.php:62
3514
  msgid "Network Settings"
3515
  msgstr ""
3516
 
3517
- #: ../includes/mycred-network.php:159
3518
  msgid "%s Network"
3519
  msgstr ""
3520
 
3521
- #: ../includes/mycred-network.php:165
3522
  msgid "Note! %s has not yet been setup."
3523
  msgstr ""
3524
 
3525
- #: ../includes/mycred-network.php:169
3526
  msgid "Network Settings Updated"
3527
  msgstr ""
3528
 
3529
- #: ../includes/mycred-network.php:171
3530
  msgid "Configure network settings for %s."
3531
  msgstr ""
3532
 
3533
- #: ../includes/mycred-network.php:178
3534
  msgid "Master Template"
3535
  msgstr ""
3536
 
3537
- #: ../includes/mycred-network.php:189
3538
  msgid ""
3539
  "If enabled, %s will use your main site's settings for all other sites in your "
3540
  "network."
3541
  msgstr ""
3542
 
3543
- #: ../includes/mycred-network.php:192
3544
  msgid "Central Logging"
3545
  msgstr ""
3546
 
3547
- #: ../includes/mycred-network.php:203
3548
  msgid "If enabled, %s will log all site actions in your main site's log."
3549
  msgstr ""
3550
 
3551
- #: ../includes/mycred-network.php:206
3552
  msgid "Site Block"
3553
  msgstr ""
3554
 
3555
- #: ../includes/mycred-network.php:210
3556
  msgid "Comma separated list of blog ids where %s is to be disabled."
3557
  msgstr ""
3558
 
3559
- #: ../includes/mycred-network.php:219
3560
  msgid "Save Network Settings"
3561
  msgstr ""
3562
 
3563
- #: ../includes/mycred-overview.php:23
3564
  msgid "%s Overview"
3565
  msgstr ""
3566
 
3567
- #: ../includes/mycred-overview.php:76
3568
  msgid "Total amount in circulation"
3569
  msgstr ""
3570
 
3571
- #: ../includes/mycred-overview.php:79
3572
  msgid "Awarded"
3573
  msgstr ""
3574
 
3575
- #: ../includes/mycred-overview.php:82
3576
  msgid "Deducted"
3577
  msgstr ""
3578
 
3579
- #: ../includes/mycred-overview.php:118 ../includes/mycred-overview.php:125 ../modules/mycred-module-addons.php:237
3580
  msgid "Transfers"
3581
  msgstr ""
3582
 
3583
- #: ../includes/mycred-overview.php:206
3584
  msgid "Manual"
3585
  msgstr ""
3586
 
@@ -3652,31 +3638,31 @@ msgstr ""
3652
  msgid "Leaderboard is empty."
3653
  msgstr ""
3654
 
3655
- #: ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:476
3656
  msgid "Amount missing!"
3657
  msgstr ""
3658
 
3659
- #: ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:484
3660
  msgid "Log Template Missing!"
3661
  msgstr ""
3662
 
3663
- #: ../includes/mycred-shortcodes.php:415
3664
  msgid "Anchor missing URL!"
3665
  msgstr ""
3666
 
3667
- #: ../includes/mycred-shortcodes.php:480
3668
  msgid "User ID missing for recipient."
3669
  msgstr ""
3670
 
3671
- #: ../includes/mycred-shortcodes.php:534
3672
  msgid "Sent"
3673
  msgstr ""
3674
 
3675
- #: ../includes/mycred-shortcodes.php:535
3676
  msgid "Error - Try Again"
3677
  msgstr ""
3678
 
3679
- #: ../includes/mycred-shortcodes.php:643
3680
  msgid "A video ID is required for this shortcode"
3681
  msgstr ""
3682
 
@@ -3696,7 +3682,7 @@ msgstr ""
3696
  msgid "%plural% History"
3697
  msgstr ""
3698
 
3699
- #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:578
3700
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3701
  msgstr ""
3702
 
@@ -3728,11 +3714,11 @@ msgstr ""
3728
  msgid "Row layout"
3729
  msgstr ""
3730
 
3731
- #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:602
3732
  msgid "Show message when not logged in"
3733
  msgstr ""
3734
 
3735
- #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:603
3736
  msgid "Message"
3737
  msgstr ""
3738
 
@@ -3778,19 +3764,19 @@ msgid ""
3778
  "at the end with their current position."
3779
  msgstr ""
3780
 
3781
- #: ../includes/mycred-widgets.php:490
3782
  msgid "Shows the current users balances for each point type."
3783
  msgstr ""
3784
 
3785
- #: ../includes/mycred-widgets.php:492
3786
  msgid "(%s) Wallet"
3787
  msgstr ""
3788
 
3789
- #: ../includes/mycred-widgets.php:572
3790
  msgid "My Wallet"
3791
  msgstr ""
3792
 
3793
- #: ../includes/mycred-widgets.php:594
3794
  msgid "Row Layout"
3795
  msgstr ""
3796
 
@@ -3808,11 +3794,11 @@ msgid ""
3808
  "imported. <strong>%d</strong> was skipped."
3809
  msgstr ""
3810
 
3811
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3812
  msgid "View Log"
3813
  msgstr ""
3814
 
3815
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3816
  msgid "Import More"
3817
  msgstr ""
3818
 
@@ -3852,15 +3838,15 @@ msgstr ""
3852
  msgid "Import Log"
3853
  msgstr ""
3854
 
3855
- #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
3856
  msgid "Sorry, there has been an error."
3857
  msgstr ""
3858
 
3859
- #: ../includes/importers/mycred-log-entries.php:82
3860
  msgid "The file does not exist, please try again."
3861
  msgstr ""
3862
 
3863
- #: ../includes/importers/mycred-log-entries.php:127
3864
  msgid "The CSV is invalid."
3865
  msgstr ""
3866
 
@@ -3872,132 +3858,146 @@ msgstr ""
3872
  msgid "Import log entries from a CSV file."
3873
  msgstr ""
3874
 
3875
- #: ../includes/importers/mycred-log-entries.php:219
3876
  msgid ""
3877
  "Before you can upload your import file, you will need to fix the following "
3878
  "error:"
3879
  msgstr ""
3880
 
3881
- #: ../includes/importers/mycred-log-entries.php:228
3882
  msgid "Choose a file from your computer:"
3883
  msgstr ""
3884
 
3885
- #: ../includes/importers/mycred-log-entries.php:234
3886
  msgid "Maximum size: %s"
3887
  msgstr ""
3888
 
3889
- #: ../includes/importers/mycred-log-entries.php:239
3890
  msgid "OR enter path to file:"
3891
  msgstr ""
3892
 
3893
- #: ../includes/importers/mycred-log-entries.php:246
3894
  msgid "Delimiter"
3895
  msgstr ""
3896
 
3897
- #: ../includes/importers/mycred-log-entries.php:252
3898
  msgid "Upload file and import"
3899
  msgstr ""
3900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3901
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3902
  msgid "Add-ons"
3903
  msgstr ""
3904
 
3905
- #: ../modules/mycred-module-addons.php:160
3906
  msgid ""
3907
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3908
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3909
  "let your users buy points for other members."
3910
  msgstr ""
3911
 
3912
- #: ../modules/mycred-module-addons.php:171
3913
  msgid ""
3914
- "The coupons add-on allows you you to create coupons that users can use to add "
3915
  "points to their accounts."
3916
  msgstr ""
3917
 
3918
- #: ../modules/mycred-module-addons.php:182
3919
  msgid "Create email notices for any type of myCRED instance."
3920
  msgstr ""
3921
 
3922
- #: ../modules/mycred-module-addons.php:193
3923
  msgid ""
3924
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3925
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3926
  "Bookings: Event Espresso and Events Manager (free & pro)."
3927
  msgstr ""
3928
 
3929
- #: ../modules/mycred-module-addons.php:204
3930
  msgid "Create pop-up notifications for when users gain or loose points."
3931
  msgstr ""
3932
 
3933
- #: ../modules/mycred-module-addons.php:216
3934
  msgid ""
3935
  "Create ranks for users reaching a certain number of %_plural% with the option "
3936
  "to add logos for each rank."
3937
  msgstr ""
3938
 
3939
- #: ../modules/mycred-module-addons.php:227
3940
  msgid ""
3941
  "This add-on allows you to sell posts, pages or any public post types on your "
3942
  "website. You can either sell the entire content or using our shortcode, sell "
3943
  "parts of your content allowing you to offer \"teasers\"."
3944
  msgstr ""
3945
 
3946
- #: ../modules/mycred-module-addons.php:238
3947
  msgid ""
3948
  "Allow your users to send or \"donate\" points to other members by either using "
3949
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3950
  msgstr ""
3951
 
3952
- #: ../modules/mycred-module-addons.php:274
3953
  msgid "%s Add-ons"
3954
  msgstr ""
3955
 
3956
- #: ../modules/mycred-module-addons.php:280
3957
  msgid "Add-on Activated"
3958
  msgstr ""
3959
 
3960
- #: ../modules/mycred-module-addons.php:283
3961
  msgid "Add-on Deactivated"
3962
  msgstr ""
3963
 
3964
- #: ../modules/mycred-module-addons.php:287
3965
  msgid "Add-ons can expand your current installation with further features."
3966
  msgstr ""
3967
 
3968
- #: ../modules/mycred-module-addons.php:308
3969
  msgid "You can find more add-ons in our %s."
3970
  msgstr ""
3971
 
3972
- #: ../modules/mycred-module-addons.php:308
3973
  msgid "online store"
3974
  msgstr ""
3975
 
3976
- #: ../modules/mycred-module-addons.php:329
3977
  msgid "Deactivate Add-on"
3978
  msgstr ""
3979
 
3980
- #: ../modules/mycred-module-addons.php:330
3981
  msgid "Deactivate"
3982
  msgstr ""
3983
 
3984
- #: ../modules/mycred-module-addons.php:337
3985
  msgid "Activate Add-on"
3986
  msgstr ""
3987
 
3988
- #: ../modules/mycred-module-addons.php:338
3989
  msgid "Activate"
3990
  msgstr ""
3991
 
3992
- #: ../modules/mycred-module-addons.php:354
3993
  msgid "Version"
3994
  msgstr ""
3995
 
3996
- #: ../modules/mycred-module-addons.php:358
3997
  msgid "By"
3998
  msgstr ""
3999
 
4000
- #: ../modules/mycred-module-addons.php:366
4001
  msgid "Get Pro"
4002
  msgstr ""
4003
 
@@ -4155,465 +4155,465 @@ msgid ""
4155
  "depending on their actions around your website."
4156
  msgstr ""
4157
 
4158
- #: ../modules/mycred-module-hooks.php:321 ../modules/mycred-module-hooks.php:643 ../modules/mycred-module-hooks.php:656 ../modules/mycred-module-hooks.php:692 ../modules/mycred-module-hooks.php:1072 ../modules/mycred-module-hooks.php:1089 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:2206 ../modules/mycred-module-hooks.php:2235 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4159
  msgid "Log template"
4160
  msgstr ""
4161
 
4162
- #: ../modules/mycred-module-hooks.php:523 ../modules/mycred-module-hooks.php:2214 ../modules/mycred-module-hooks.php:2243 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4163
  msgid "Limit"
4164
  msgstr ""
4165
 
4166
- #: ../modules/mycred-module-hooks.php:637
4167
  msgid "%plural% for Posts"
4168
  msgstr ""
4169
 
4170
- #: ../modules/mycred-module-hooks.php:650
4171
  msgid "%plural% for Pages"
4172
  msgstr ""
4173
 
4174
- #: ../modules/mycred-module-hooks.php:686
4175
  msgid "%plural% for %s"
4176
  msgstr ""
4177
 
4178
- #: ../modules/mycred-module-hooks.php:1058
4179
  msgid ""
4180
  "%plural% are only awarded when your website has been synced with the Disqus "
4181
  "server!"
4182
  msgstr ""
4183
 
4184
- #: ../modules/mycred-module-hooks.php:1060
4185
  msgid "Approved Comment"
4186
  msgstr ""
4187
 
4188
- #: ../modules/mycred-module-hooks.php:1063 ../modules/mycred-module-hooks.php:1080 ../modules/mycred-module-hooks.php:1097
4189
  msgid "Comment Author"
4190
  msgstr ""
4191
 
4192
- #: ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101
4193
  msgid "Content Author"
4194
  msgstr ""
4195
 
4196
- #: ../modules/mycred-module-hooks.php:1077
4197
  msgid "Comment Marked SPAM"
4198
  msgstr ""
4199
 
4200
- #: ../modules/mycred-module-hooks.php:1094
4201
  msgid "Trashed / Unapproved Comments"
4202
  msgstr ""
4203
 
4204
- #: ../modules/mycred-module-hooks.php:1114
4205
  msgid "Limit per post"
4206
  msgstr ""
4207
 
4208
- #: ../modules/mycred-module-hooks.php:1116
4209
  msgid ""
4210
  "The number of comments per post that grants %_plural% to the comment author. "
4211
  "Use zero for unlimited."
4212
  msgstr ""
4213
 
4214
- #: ../modules/mycred-module-hooks.php:1120
4215
  msgid "Limit per day"
4216
  msgstr ""
4217
 
4218
- #: ../modules/mycred-module-hooks.php:1122
4219
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4220
  msgstr ""
4221
 
4222
- #: ../modules/mycred-module-hooks.php:1127
4223
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4224
  msgstr ""
4225
 
4226
- #: ../modules/mycred-module-hooks.php:1198
4227
  msgid "Once for each unique URL"
4228
  msgstr ""
4229
 
4230
- #: ../modules/mycred-module-hooks.php:1199
4231
  msgid "Once for each unique link id"
4232
  msgstr ""
4233
 
4234
- #: ../modules/mycred-module-hooks.php:1393
4235
  msgid ""
4236
  "The default amount to award for clicking on links. You can override this in the "
4237
  "shortcode."
4238
  msgstr ""
4239
 
4240
- #: ../modules/mycred-module-hooks.php:1400
4241
  msgid "Custom tags: %url%, %title% or %id%."
4242
  msgstr ""
4243
 
4244
- #: ../modules/mycred-module-hooks.php:1411 ../modules/mycred-module-hooks.php:2317
4245
  msgid "Note!"
4246
  msgstr ""
4247
 
4248
- #: ../modules/mycred-module-hooks.php:1411
4249
  msgid ""
4250
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4251
  "generate one automatically based on the value set under href. If you are using "
4252
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4253
  msgstr ""
4254
 
4255
- #: ../modules/mycred-module-hooks.php:1413 ../modules/mycred-module-hooks.php:1769
4256
  msgid "Available Shortcode"
4257
  msgstr ""
4258
 
4259
- #: ../modules/mycred-module-hooks.php:1733
4260
  msgid "Amount to award for viewing videos."
4261
  msgstr ""
4262
 
4263
- #: ../modules/mycred-module-hooks.php:1743
4264
  msgid "Award Logic"
4265
  msgstr ""
4266
 
4267
- #: ../modules/mycred-module-hooks.php:1745
4268
  msgid "Select when %_plural% should be awarded or deducted."
4269
  msgstr ""
4270
 
4271
- #: ../modules/mycred-module-hooks.php:1746
4272
  msgid "Play - As soon as video starts playing."
4273
  msgstr ""
4274
 
4275
- #: ../modules/mycred-module-hooks.php:1747
4276
  msgid "Full - First when the entire video has played."
4277
  msgstr ""
4278
 
4279
- #: ../modules/mycred-module-hooks.php:1748
4280
  msgid "Interval - For each x number of seconds watched."
4281
  msgstr ""
4282
 
4283
- #: ../modules/mycred-module-hooks.php:1753
4284
  msgid "Number of seconds"
4285
  msgstr ""
4286
 
4287
- #: ../modules/mycred-module-hooks.php:1760
4288
  msgid "Leniency"
4289
  msgstr ""
4290
 
4291
- #: ../modules/mycred-module-hooks.php:1762
4292
  msgid ""
4293
  "The maximum percentage a users view of a movie can differ from the actual "
4294
  "length."
4295
  msgstr ""
4296
 
4297
- #: ../modules/mycred-module-hooks.php:1765
4298
  msgid ""
4299
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4300
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4301
  "play back errors."
4302
  msgstr ""
4303
 
4304
- #: ../modules/mycred-module-hooks.php:1833
4305
  msgid "Affiliate Program"
4306
  msgstr ""
4307
 
4308
- #: ../modules/mycred-module-hooks.php:1842
4309
  msgid "Per Day"
4310
  msgstr ""
4311
 
4312
- #: ../modules/mycred-module-hooks.php:1949
4313
  msgid "Link"
4314
  msgstr ""
4315
 
4316
- #: ../modules/mycred-module-hooks.php:2200
4317
  msgid "Referring Visitors"
4318
  msgstr ""
4319
 
4320
- #: ../modules/mycred-module-hooks.php:2224 ../modules/mycred-module-hooks.php:2253
4321
  msgid "The number of referrals each member can make. Use zero for unlimited."
4322
  msgstr ""
4323
 
4324
- #: ../modules/mycred-module-hooks.php:2228 ../modules/mycred-module-hooks.php:2257
4325
  msgid "Referring Signups"
4326
  msgstr ""
4327
 
4328
- #: ../modules/mycred-module-hooks.php:2232
4329
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4330
  msgstr ""
4331
 
4332
- #: ../modules/mycred-module-hooks.php:2259
4333
  msgid "Registrations are disabled."
4334
  msgstr ""
4335
 
4336
- #: ../modules/mycred-module-hooks.php:2266
4337
  msgid "Referral Links"
4338
  msgstr ""
4339
 
4340
- #: ../modules/mycred-module-hooks.php:2270
4341
  msgid "Assign numeric referral IDs to each user."
4342
  msgstr ""
4343
 
4344
- #: ../modules/mycred-module-hooks.php:2271 ../modules/mycred-module-hooks.php:2277
4345
  msgid "Example"
4346
  msgstr ""
4347
 
4348
- #: ../modules/mycred-module-hooks.php:2276
4349
  msgid "Assign usernames as IDs for each user."
4350
  msgstr ""
4351
 
4352
- #: ../modules/mycred-module-hooks.php:2280
4353
  msgid "IP Limit"
4354
  msgstr ""
4355
 
4356
- #: ../modules/mycred-module-hooks.php:2284
4357
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4358
  msgstr ""
4359
 
4360
- #: ../modules/mycred-module-hooks.php:2288 ../modules/mycred-module-hooks.php:2321
4361
  msgid "BuddyPress Profile"
4362
  msgstr ""
4363
 
4364
- #: ../modules/mycred-module-hooks.php:2291
4365
  msgid "Insert Link in users Profile"
4366
  msgstr ""
4367
 
4368
- #: ../modules/mycred-module-hooks.php:2292
4369
  msgid ""
4370
  "Option to inser the referral link in users profiles. Links will only be visible "
4371
  "to users viewing their own profiles or administrators."
4372
  msgstr ""
4373
 
4374
- #: ../modules/mycred-module-hooks.php:2298
4375
  msgid "Leave empty to hide."
4376
  msgstr ""
4377
 
4378
- #: ../modules/mycred-module-hooks.php:2301
4379
  msgid "Description"
4380
  msgstr ""
4381
 
4382
- #: ../modules/mycred-module-hooks.php:2302
4383
  msgid "Optional description to insert under the link."
4384
  msgstr ""
4385
 
4386
- #: ../modules/mycred-module-hooks.php:2314
4387
  msgid "Profile Positioning"
4388
  msgstr ""
4389
 
4390
- #: ../modules/mycred-module-hooks.php:2316
4391
  msgid ""
4392
  "You can move around the referral link on your users profile by changing the "
4393
- "position. Increase to move up, decrese to move down."
4394
  msgstr ""
4395
 
4396
- #: ../modules/mycred-module-hooks.php:2317
4397
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4398
  msgstr ""
4399
 
4400
- #: ../modules/mycred-module-hooks.php:2323
4401
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4402
  msgstr ""
4403
 
4404
- #: ../modules/mycred-module-hooks.php:2331
4405
  msgid "Available Shortcodes"
4406
  msgstr ""
4407
 
4408
- #: ../modules/mycred-module-log.php:183 ../modules/mycred-module-log.php:204 ../modules/mycred-module-settings.php:60 ../modules/mycred-module-settings.php:101
4409
  msgid "Access denied for this action"
4410
  msgstr ""
4411
 
4412
- #: ../modules/mycred-module-log.php:190
4413
  msgid "Row Deleted"
4414
  msgstr ""
4415
 
4416
- #: ../modules/mycred-module-log.php:217
4417
  msgid "Log entry not found"
4418
  msgstr ""
4419
 
4420
- #: ../modules/mycred-module-log.php:230
4421
  msgid "Entry Updated"
4422
  msgstr ""
4423
 
4424
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:423
4425
  msgid "Entries"
4426
  msgstr ""
4427
 
4428
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:390 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:557
4429
  msgid "Export"
4430
  msgstr ""
4431
 
4432
- #: ../modules/mycred-module-log.php:309
4433
  msgid "Search results for"
4434
  msgstr ""
4435
 
4436
- #: ../modules/mycred-module-log.php:384
4437
  msgid "%s Log"
4438
  msgstr ""
4439
 
4440
- #: ../modules/mycred-module-log.php:509
4441
  msgid "Edit"
4442
  msgstr ""
4443
 
4444
- #: ../modules/mycred-module-log.php:554
4445
  msgid "Current Log Entry"
4446
  msgstr ""
4447
 
4448
- #: ../modules/mycred-module-log.php:556
4449
  msgid "The current saved log entry"
4450
  msgstr ""
4451
 
4452
- #: ../modules/mycred-module-log.php:559
4453
  msgid "Adjust Log Entry"
4454
  msgstr ""
4455
 
4456
- #: ../modules/mycred-module-log.php:561
4457
  msgid "The new log entry"
4458
  msgstr ""
4459
 
4460
- #: ../modules/mycred-module-log.php:564
4461
  msgid "Update Log Entry"
4462
  msgstr ""
4463
 
4464
- #: ../modules/mycred-module-log.php:596
4465
  msgid "My %s History"
4466
  msgstr ""
4467
 
4468
- #: ../modules/mycred-module-settings.php:63 ../modules/mycred-module-settings.php:104
4469
  msgid "Missing point type"
4470
  msgstr ""
4471
 
4472
- #: ../modules/mycred-module-settings.php:127
4473
  msgid "Accounts successfully reset"
4474
  msgstr ""
4475
 
4476
- #: ../modules/mycred-module-settings.php:167
4477
  msgid "No users found to export"
4478
  msgstr ""
4479
 
4480
- #: ../modules/mycred-module-settings.php:313
4481
  msgid "Facebook"
4482
  msgstr ""
4483
 
4484
- #: ../modules/mycred-module-settings.php:314
4485
  msgid "Google Plus"
4486
  msgstr ""
4487
 
4488
- #: ../modules/mycred-module-settings.php:317
4489
  msgid "%s Settings"
4490
  msgstr ""
4491
 
4492
- #: ../modules/mycred-module-settings.php:320
4493
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4494
  msgstr ""
4495
 
4496
- #: ../modules/mycred-module-settings.php:325
4497
  msgid "Core Settings"
4498
  msgstr ""
4499
 
4500
- #: ../modules/mycred-module-settings.php:327
4501
  msgid "Name"
4502
  msgstr ""
4503
 
4504
- #: ../modules/mycred-module-settings.php:332
4505
  msgid "Accessible though the %singular% template tag."
4506
  msgstr ""
4507
 
4508
- #: ../modules/mycred-module-settings.php:337
4509
  msgid "Accessible though the %plural% template tag."
4510
  msgstr ""
4511
 
4512
- #: ../modules/mycred-module-settings.php:340
4513
  msgid "Tip"
4514
  msgstr ""
4515
 
4516
- #: ../modules/mycred-module-settings.php:340
4517
  msgid ""
4518
  "Adding an underscore at the beginning of template tag for names will return "
4519
  "them in lowercase. i.e. %_singular%"
4520
  msgstr ""
4521
 
4522
- #: ../modules/mycred-module-settings.php:358
4523
  msgid "Separator"
4524
  msgstr ""
4525
 
4526
- #: ../modules/mycred-module-settings.php:365
4527
  msgid "Edit Settings"
4528
  msgstr ""
4529
 
4530
- #: ../modules/mycred-module-settings.php:367 ../modules/mycred-module-settings.php:372
4531
  msgid "Capability to check for."
4532
  msgstr ""
4533
 
4534
- #: ../modules/mycred-module-settings.php:370
4535
  msgid "Edit Users %plural%"
4536
  msgstr ""
4537
 
4538
- #: ../modules/mycred-module-settings.php:394
4539
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4540
  msgstr ""
4541
 
4542
- #: ../modules/mycred-module-settings.php:414
4543
  msgid "Management"
4544
  msgstr ""
4545
 
4546
- #: ../modules/mycred-module-settings.php:416
4547
  msgid "The Log"
4548
  msgstr ""
4549
 
4550
- #: ../modules/mycred-module-settings.php:419
4551
  msgid "Table Name"
4552
  msgstr ""
4553
 
4554
- #: ../modules/mycred-module-settings.php:428
4555
  msgid "Empty Log"
4556
  msgstr ""
4557
 
4558
- #: ../modules/mycred-module-settings.php:434
4559
  msgid "User Meta Key"
4560
  msgstr ""
4561
 
4562
- #: ../modules/mycred-module-settings.php:443
4563
  msgid "Set all to zero"
4564
  msgstr ""
4565
 
4566
- #: ../modules/mycred-module-settings.php:443
4567
  msgid "CSV Export"
4568
  msgstr ""
4569
 
4570
- #: ../modules/mycred-module-settings.php:464
4571
  msgid "Default"
4572
  msgstr ""
4573
 
4574
- #: ../modules/mycred-module-settings.php:467 ../modules/mycred-module-settings.php:486 ../modules/mycred-module-settings.php:508
4575
  msgid "Meta Key"
4576
  msgstr ""
4577
 
4578
- #: ../modules/mycred-module-settings.php:505
4579
  msgid "Add New Type"
4580
  msgstr ""
4581
 
4582
- #: ../modules/mycred-module-settings.php:510
4583
  msgid "A unique ID for this type."
4584
  msgstr ""
4585
 
4586
- #: ../modules/mycred-module-settings.php:515
4587
  msgid "Menu and page title."
4588
  msgstr ""
4589
 
4590
- #: ../modules/mycred-module-settings.php:518
4591
  msgid "The meta key will define where your users balances are saved."
4592
  msgstr ""
4593
 
4594
- #: ../modules/mycred-module-settings.php:535
4595
  msgid "Identify users by"
4596
  msgstr ""
4597
 
4598
- #: ../modules/mycred-module-settings.php:541
4599
  msgid "User Email"
4600
  msgstr ""
4601
 
4602
- #: ../modules/mycred-module-settings.php:542
4603
  msgid "User Login"
4604
  msgstr ""
4605
 
4606
- #: ../modules/mycred-module-settings.php:549
4607
  msgid ""
4608
  "Use ID if you intend to use this export as a backup of your current site while "
4609
  "Email is recommended if you want to export to a different site."
4610
  msgstr ""
4611
 
4612
- #: ../modules/mycred-module-settings.php:552
4613
  msgid "Import Log Entry"
4614
  msgstr ""
4615
 
4616
- #: ../modules/mycred-module-settings.php:554
4617
  msgid ""
4618
  "Optional log entry to use if you intend to import this file in a different %s "
4619
  "installation."
@@ -4822,7 +4822,7 @@ msgid "%plural% for Profile Updates"
4822
  msgstr ""
4823
 
4824
  #: ../plugins/mycred-hook-buddypress.php:377
4825
- msgid "Daily limit. User zero for unlimited."
4826
  msgstr ""
4827
 
4828
  #: ../plugins/mycred-hook-buddypress.php:387
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 16 2014 13:05:28 GMT+0200 (CEST)\n"
7
+ "Last-Translator: unimatrix0 <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: sv_SE"
25
 
26
+ #: ../mycred.php:397
27
  msgid "Balance"
28
  msgstr "Saldo"
29
 
30
+ #: ../mycred.php:422
31
  msgid "%label% History"
32
  msgstr "%label% Historik"
33
 
34
+ #: ../mycred.php:474
35
  msgid "No balances available."
36
  msgstr "Inga saldo."
37
 
38
+ #: ../mycred.php:520
39
  msgid "About %s"
40
  msgstr "Om %s"
41
 
42
+ #: ../mycred.php:529 ../includes/mycred-about.php:149
43
  msgid "Awesome People"
44
  msgstr "Hjälpsamma Användare"
45
 
46
+ #: ../mycred.php:614 ../mycred.php:638 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:883 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
47
  msgid "Processing..."
48
  msgstr "Jobbar..."
49
 
50
+ #: ../mycred.php:615
51
  msgid ""
52
  "Warning! All entries in your log will be permanently removed! This can not be "
53
  "undone!"
54
  msgstr "Varning! Alla log inlägg kommer att raderas!"
55
 
56
+ #: ../mycred.php:616
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr "All log inlägg för användare som har raderats kommer att raderas!"
61
 
62
+ #: ../mycred.php:617
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr "Varning! Alla användares konton kommer att noll ställas!"
65
 
66
+ #: ../mycred.php:618
67
  msgid "Done!"
68
  msgstr "Klart!"
69
 
70
+ #: ../mycred.php:619 ../mycred.php:637 ../mycred.php:655
71
  msgid "Close"
72
  msgstr "Stäng"
73
 
74
+ #: ../mycred.php:620
75
  msgid "Export users %plural%"
76
  msgstr "Exportera användarens %plural%"
77
 
78
+ #: ../mycred.php:636
79
+ msgid "Edit Users Balance"
80
+ msgstr ""
81
 
82
+ #: ../mycred.php:654
83
  msgid "Edit Log Entry"
84
  msgstr "Justera log inlägg"
85
 
86
+ #: ../mycred.php:656
87
  msgid "Updating..."
88
  msgstr "Uppdaterar..."
89
 
90
+ #: ../mycred.php:658
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr "Är du säker på att du vill radera detta inlägg?"
93
 
94
+ #: ../mycred.php:659
95
  msgid "Log entry updated"
96
  msgstr "Log inlägg updaterad"
97
 
98
+ #: ../mycred.php:711 ../mycred.php:732 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
99
  msgid "Setup"
100
  msgstr "Setup"
101
 
102
+ #: ../mycred.php:713 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
103
  msgid "Settings"
104
  msgstr "Inställningar"
105
 
106
+ #: ../mycred.php:736 ../modules/mycred-module-addons.php:360
107
  msgid "About"
108
  msgstr "Om"
109
 
110
+ #: ../mycred.php:737
111
  msgid "Tutorials"
112
  msgstr "Kurser"
113
 
114
+ #: ../mycred.php:738
115
  msgid "Codex"
116
  msgstr "Facit"
117
 
118
+ #: ../mycred.php:739
119
  msgid "Store"
120
  msgstr "Affär"
121
 
122
+ #: ../mycred.php:753
123
  msgid ""
124
  "Make sure to backup your database and files before updating, in case anything "
125
  "goes wrong!"
135
  msgid "This Hook has no settings"
136
  msgstr "Denna Krok har inga inställningar"
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
139
  msgid "No limit"
140
  msgstr "Ingen gräns"
141
 
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "En gång om dagen (börjar om efter midnatt)"
157
 
158
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr "Välj"
161
 
167
  msgid "Surprise"
168
  msgstr "Tjoho!"
169
 
170
+ #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:118
171
  msgid "click to close"
172
  msgstr "stäng"
173
 
174
+ #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:119
175
  msgid "click to open"
176
  msgstr "öppna"
177
 
178
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
179
  msgid "Settings Updated"
180
  msgstr "Inställningar Sparade"
181
 
182
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
183
  msgid "Banking"
184
  msgstr "Banktjänster"
185
 
211
  "Ge dina användare %_plural% var dag / vecka / månad. Du kan själv välja hur "
212
  "många gånger detta skall ske."
213
 
214
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:586 ../modules/mycred-module-settings.php:300
215
  msgid "Access Denied"
216
  msgstr "Nekad Åtkomst"
217
 
219
  msgid "%s Banking"
220
  msgstr "%s Banktjänst"
221
 
222
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
223
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
224
  msgstr ""
225
 
231
  msgid "Warning! This add-on requires WP - Cron to work."
232
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
233
 
234
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
235
  msgid "Enable"
236
  msgstr "On"
237
 
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "Minimum saldo för att ränta skall gälla."
303
 
304
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
305
  msgid "Log Template"
306
  msgstr "Log Mall"
307
 
331
  msgid "Pay Users"
332
  msgstr "Betala Användare"
333
 
334
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:367 ../includes/mycred-admin.php:478
335
  msgid "Amount"
336
  msgstr "Summa"
337
 
339
  msgid "Can not be zero."
340
  msgstr "Kan inte vara noll."
341
 
342
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
343
  msgid "Interval"
344
  msgstr "Tal"
345
 
389
  "du avaktiverar tjänsten och den har inte kört klart, kommer tjänsten att "
390
  "fortsätta köra när du nästa gång aktiverar den,"
391
 
392
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:381
393
  msgid "Excludes"
394
  msgstr "Exkludera "
395
 
403
  msgid "Payment Gateways"
404
  msgstr "Betalnings Operatörer"
405
 
406
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
407
  msgid "buyCRED Purchase Log"
408
  msgstr "buyCRED Köp Log"
409
 
410
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
411
  msgid "Purchase Log"
412
  msgstr "Köp Log"
413
 
414
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
415
  msgid "Payments"
416
  msgstr "Köp"
417
 
418
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
419
  msgid "Please login to purchase %_plural%"
420
  msgstr "Logga in för att köpa %_plural%"
421
 
422
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
423
  msgid "Gift purchase from %display_name%."
424
  msgstr "Gåva till %display_name%"
425
 
426
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:338 ../includes/mycred-overview.php:98 ../includes/mycred-overview.php:105 ../modules/mycred-module-addons.php:157
427
  msgid "buyCRED"
428
  msgstr "buyCRED"
429
 
430
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:610
431
  msgid "Minimum %plural%"
432
  msgstr "Minimum %plural%"
433
 
434
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
435
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
436
  msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
437
 
438
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
439
  msgid "Point Type"
440
  msgstr "Poäng Typ"
441
 
442
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
443
  msgid "Login Template"
444
  msgstr "Login Mall"
445
 
446
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
447
  msgid "Content to show when a user is not logged in."
448
  msgstr "Information att visa när besökaren har inte loggat in."
449
 
450
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
451
  msgid "Thank You Page"
452
  msgstr "Tack Sida"
453
 
454
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
455
  msgid "Custom URL"
456
  msgstr "Annan URL"
457
 
458
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
459
  msgid "Page"
460
  msgstr "Sida"
461
 
462
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
463
  msgid "Cancellation Page"
464
  msgstr "Cancel Sida"
465
 
466
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
467
  msgid "Show seperate log for %_plural% purchases."
468
  msgstr "Visa %_plural% köp på en separat sida."
469
 
470
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
471
  msgid "Gifting"
472
  msgstr "Köp åt andra"
473
 
474
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
475
  msgid "Allow users to buy %_plural% for other users."
476
  msgstr "Tillåt användare att köpa %_plural% åt andra användare än sig själva."
477
 
478
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
479
  msgid "Allow users to buy %_plural% for content authors."
480
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
481
 
482
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
483
  msgid "%s Payment Gateways"
484
  msgstr "%s Betalnings Operatörer"
485
 
486
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
487
  msgid "buyCRED Settings"
488
  msgstr "buyCRED Inställningar"
489
 
490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
491
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
492
  msgstr "Välj vilka betalnings operatörer användare kan köpa %_plural% genom."
493
 
494
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
495
  msgid "Last Payment Notification"
496
  msgstr "Senaste Betalnings Bekräftelse från Operatör"
497
 
498
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
499
  msgid ""
500
  "Here you can view the last payment confirmation that was sent to buyCRED for "
501
  "processing."
502
  msgstr "Du kan se den sista betalnings bekräftelse som buyCRED har mottagit."
503
 
504
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
505
  msgid "Details"
506
  msgstr "Information"
507
 
508
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:552
509
  msgid "Time"
510
  msgstr "Tid"
511
 
512
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
513
  msgid "Gateway"
514
  msgstr "Operatör"
515
 
516
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
517
  msgid "Transaction ID"
518
  msgstr "Transaktions ID"
519
 
520
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
521
  msgid "Outcome"
522
  msgstr "Resultat"
523
 
524
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
525
  msgid "Gateway Log"
526
  msgstr "Operatör Log"
527
 
528
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
529
  msgid "No recorded calls found."
530
  msgstr "Inga bekräftelser har mottagits än."
531
 
532
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
533
  msgid "Test Mode"
534
  msgstr "Test Mode"
535
 
536
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
537
  msgid "Enabled"
538
  msgstr "On"
539
 
540
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
541
  msgid "Disabled"
542
  msgstr "Off"
543
 
544
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
545
  msgid "Sandbox Mode"
546
  msgstr "Sandbox Mode"
547
 
548
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
549
  msgid "Enable for test purchases."
550
  msgstr "Aktivera för test köp."
551
 
552
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
553
  msgid "Update Gateway Settings"
554
  msgstr "Uppdatera Operatör Inställningar"
555
 
556
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:473 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:551
557
  msgid "User"
558
  msgstr "Användare"
559
 
560
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:650
561
  msgid "Date"
562
  msgstr "Datum"
563
 
564
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
565
  msgid "Payed"
566
  msgstr "Betalt"
567
 
568
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
569
  msgid "<strong>buy</strong>CRED Purchase Log"
570
  msgstr "<strong>buy</strong>CRED Köp Log"
571
 
572
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
573
  msgid "Gateway Settings"
574
  msgstr "Operatör Inställningar"
575
 
576
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
577
  msgid ""
578
  "Only completed purchases are shown here. Purchases that were cancelled or "
579
  "failed are not logged."
580
  msgstr "Bara bekräftade köp visas här."
581
 
582
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:473
583
  msgid "User Missing"
584
  msgstr "Användare saknas"
585
 
586
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1110
587
  msgid "No purchases found"
588
  msgstr "Inga Köp"
589
 
590
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
591
  msgid "This Add-on needs to setup before you can use this shortcode."
592
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
593
 
594
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
595
  msgid "No gateways installed."
596
  msgstr "Inga Operatörer är installerade."
597
 
598
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
599
  msgid "Gateway does not exist."
600
  msgstr "Kunde inte finna operatör."
601
 
602
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
603
  msgid "Yourself"
604
  msgstr "Till dig själv"
605
 
606
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
607
  msgid "No active gateways found."
608
  msgstr "Kunde inte hitta några aktiverade operatörer."
609
 
610
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
611
  msgid "The selected gateway is not active."
612
  msgstr "Operatören du valde är inte aktiverad."
613
 
614
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
615
  msgid "Buy with %gateway%"
616
  msgstr "Köp genom %gateway%"
617
 
618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
619
  msgid "Buy Now"
620
  msgstr "Köp"
621
 
622
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
623
  msgid "No users found"
624
  msgstr "Kunde inte hitta någon"
625
 
626
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
627
  msgid "To"
628
  msgstr "Till"
629
 
630
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
631
  msgid "Select Amount"
632
  msgstr "Välj summa"
633
 
634
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
635
  msgid "min."
636
  msgstr "min."
637
 
638
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
639
  msgid "Select Gateway"
640
  msgstr "Välj Operatör"
641
 
675
  msgid "Cancel purchase"
676
  msgstr "Cancellara köp"
677
 
678
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:360 ../includes/mycred-admin.php:466
679
  msgid "required"
680
  msgstr "obligatoriskt"
681
 
682
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:362 ../includes/mycred-admin.php:468
683
  msgid "optional"
684
  msgstr "valfritt"
685
 
789
  msgid "Validating sale"
790
  msgstr "Bekräftar Köp"
791
 
792
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1289
793
  msgid "Token mismatch"
794
  msgstr "Token stämmer inte"
795
 
796
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1301
797
  msgid "Price mismatch"
798
  msgstr "Priset stämmer inte"
799
 
800
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1306
801
  msgid "Currency mismatch"
802
  msgstr "Valutan stämmer inte"
803
 
804
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
805
  msgid "Duplicate transaction"
806
  msgstr "Duplikat transaktion"
807
 
911
  msgid "Full Notifications"
912
  msgstr "Full Kvitto"
913
 
914
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
915
  msgid "No"
916
  msgstr "Nej"
917
 
918
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
919
  msgid "Yes"
920
  msgstr "Ja"
921
 
1082
  msgid "Checkout Page"
1083
  msgstr "Checkout Sida"
1084
 
1085
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:753 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2289
1086
  msgid "Title"
1087
  msgstr "Titel"
1088
 
1179
  "För att använda denna operatör, var vänlig och logga in på ditt ZOA konto och "
1180
  "sätt Postback URL till adressen ovan och klicka \"Validate\"."
1181
 
1182
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
1183
  msgid "Coupons"
1184
  msgstr "Kuponger"
1185
 
1215
  msgid "No coupons found in Trash"
1216
  msgstr "Fann inga kuponger i papperskorgen"
1217
 
1218
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
1219
  msgid "Email Notices"
1220
  msgstr "Email Uppdateringar"
1221
 
1251
  msgid "Usage"
1252
  msgstr "Användning"
1253
 
1254
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
1255
  msgid "Limits"
1256
  msgstr "Begränsning"
1257
 
1263
  msgid "not yet used"
1264
  msgstr "oanvänd"
1265
 
1266
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
1267
  msgid "Total"
1268
  msgstr "Total"
1269
 
1421
 
1422
  #: ../addons/email-notices/myCRED-addon-email-notices.php:149
1423
  msgid "Email Notice"
1424
+ msgstr "E-postmeddelande"
1425
 
1426
  #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:243
1427
  msgid "Add New"
1429
 
1430
  #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1431
  msgid "Add New Notice"
1432
+ msgstr "Ny Meddelande"
1433
 
1434
  #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1435
  msgid "Edit Notice"
1436
+ msgstr "Justera Inställningar"
1437
 
1438
  #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1439
  msgid "New Notice"
1440
+ msgstr "Ny Meddelande"
1441
 
1442
  #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1443
  msgid "View Notice"
1444
+ msgstr "Se E-postmeddelande"
1445
 
1446
  #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1447
  msgid "Search Email Notices"
1448
+ msgstr "Sök E-postmeddelande"
1449
 
1450
  #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1451
  msgid "No email notices found"
1452
+ msgstr "Fann inga e-postmeddelande"
1453
 
1454
  #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1455
  msgid "No email notices found in Trash"
1456
+ msgstr "Fann inga e-postmeddelande i papperskorgen"
1457
 
1458
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
1459
  msgid "General"
1460
  msgstr "Allmänt"
1461
 
1485
 
1486
  #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1487
  msgid "user buys content"
1488
+ msgstr "köp av inlägg"
1489
 
1490
  #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1491
  msgid "authors content gets sold"
1492
+ msgstr "sälj av inlägg"
1493
 
1494
  #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1495
  msgid "buyCREDs Add-on"
1496
+ msgstr "buyCREDs Add-on"
1497
 
1498
  #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1499
  msgid "user buys %_plural%"
1500
+ msgstr "köp av %_plural%"
1501
 
1502
  #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1503
  msgid "Transfer Add-on"
1504
+ msgstr "Transfer Add-on"
1505
 
1506
  #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1507
  msgid "user sends %_plural%"
1508
+ msgstr "användare skickar %_plural%"
1509
 
1510
  #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1511
  msgid "user receives %_plural%"
1512
+ msgstr "användare mottar %_plural%"
1513
 
1514
  #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1515
  msgid "Ranks Add-on"
1516
+ msgstr "Ranks Add-on"
1517
 
1518
  #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1519
  msgid "user is demoted"
1520
+ msgstr "användare degraderas"
1521
 
1522
  #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1523
  msgid "user is promoted"
1524
+ msgstr "användare blir befordrad"
1525
 
1526
  #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1527
  msgid ""
1528
  "Settings that apply to all email notices and can not be overridden for "
1529
  "individual emails."
1530
+ msgstr "Grund inställningar som inte går att kringgå i enskilda e-postmeddelanden."
1531
 
1532
  #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1533
  msgid "Email Format"
1534
+ msgstr "E-post format"
1535
 
1536
  #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1537
  msgid "Plain text emails only."
1538
+ msgstr "Skicka som oformaterad text."
1539
 
1540
  #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1541
  msgid "HTML or Plain text emails."
1542
+ msgstr "Skicka HTML formatering."
1543
 
1544
  #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1545
  msgid "Filters"
1546
+ msgstr "Filter"
1547
 
1548
  #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1549
  msgid ""
1550
  "Allow WordPress and Third Party Plugins to filter the email subject before an "
1551
  "email is sent."
1552
  msgstr ""
1553
+ "Tillåt WordPress och andra plugins att formatera e-post meddelandets titel "
1554
+ "innan den sänds."
1555
 
1556
  #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1557
  msgid ""
1558
  "Allow WordPress and Third Party Plugins to filter the email content before an "
1559
  "email is sent."
1560
  msgstr ""
1561
+ "Tillåt WordPress och andra plugins att formatera e-post meddelandet innan den "
1562
+ "skickas."
1563
 
1564
  #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1565
  msgid ""
1566
  "Default email settings. These settings can be individually overridden when "
1567
  "editing emails."
1568
  msgstr ""
1569
+ "Förvalda e-postinställningar. Dessa inställningar kan individuellt åsidosättas "
1570
+ "när du redigerar postmeddelanden."
1571
 
1572
  #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
1573
  msgid "Email Settings"
1574
+ msgstr "E-mail inställningar"
1575
 
1576
  #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
1577
  msgid "Senders Name:"
1578
+ msgstr "Avsändarens Namn:"
1579
 
1580
  #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
1581
  msgid "Senders Email:"
1582
+ msgstr "Avsändarens e-postadress"
1583
 
1584
  #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1585
  msgid "Reply-To:"
1586
+ msgstr "Svars E-postadress"
1587
 
1588
  #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1589
  msgid "Default Email Content"
1590
+ msgstr "Standrard E-post meddelande"
1591
 
1592
  #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1593
  msgid "Default email content."
1594
+ msgstr "Standard e-post meddelande"
1595
 
1596
  #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1597
  msgid "Default Email Styling"
1598
+ msgstr "Standrad e-post css design"
1599
 
1600
  #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1601
  msgid "Ignored if HTML is not allowed in emails."
1602
+ msgstr "Ignoreras om e-post inte använder HTML formatering."
1603
 
1604
  #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
1605
  msgid "Email Subject"
1606
+ msgstr "Ämne"
1607
 
1608
  #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1609
  msgid "Status"
1610
+ msgstr "Status"
1611
 
1612
  #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1613
  msgid "Not Active"
1614
+ msgstr "Inte Aktiv"
1615
 
1616
  #: ../addons/email-notices/myCRED-addon-email-notices.php:616
1617
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1618
+ msgstr "Planerad:<br /><strong>%1%s</strong>"
1619
 
1620
  #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1621
  msgid "Active"
1622
+ msgstr "Aktiv"
1623
 
1624
  #: ../addons/email-notices/myCRED-addon-email-notices.php:622
1625
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1626
+ msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
1627
 
1628
  #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1629
  msgid "Email is sent when"
1630
+ msgstr "E-post skickas när"
1631
 
1632
  #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1633
  msgid "Missing instance for this notice!"
1634
+ msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
1635
 
1636
  #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
1637
  msgid "Sent To"
1638
+ msgstr "Skicka till"
1639
 
1640
  #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
1641
  msgid "Administrator"
1642
+ msgstr "Administratörer"
1643
 
1644
  #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1645
  msgid "Both Administrator and User"
1646
+ msgstr "Både Administratörer och Användare"
1647
 
1648
  #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1649
  msgid "Available Template Tags"
1650
+ msgstr "Valbara Template Tags"
1651
 
1652
  #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1653
  msgid "Email Header"
1654
+ msgstr "E-post header"
1655
 
1656
  #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1657
  msgid "Send this email notice when..."
1658
+ msgstr "Skicka e-post när ..."
1659
 
1660
  #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1661
  msgid "Recipient:"
1662
+ msgstr "Mottagare"
1663
 
1664
  #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1665
  msgid "Both"
1666
+ msgstr "Båda"
1667
 
1668
  #: ../addons/email-notices/myCRED-addon-email-notices.php:782
1669
  msgid "Reply-To Email:"
1670
+ msgstr "Svars e-postadress:"
1671
 
1672
  #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1673
  msgid "Save"
1674
+ msgstr "Spara"
1675
 
1676
  #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1677
  msgid "CSS Styling"
1678
+ msgstr "CSS design"
1679
 
1680
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1681
  msgid "Site Related"
1682
+ msgstr "Hemsida relaterat"
1683
 
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1685
  msgid "Your websites title"
1686
+ msgstr "Din hemsidas titel"
1687
 
1688
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1689
  msgid "Your websites address"
1690
+ msgstr "Din hemsidas URL adress"
1691
 
1692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1693
  msgid "Your websites tagline (description)"
1694
+ msgstr "Din hemsidas beskrivning"
1695
 
1696
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1697
  msgid "Your websites admin email"
1698
+ msgstr "Din hemsidas administratör e-postadress"
1699
 
1700
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1701
  msgid "Total number of blog members"
1702
+ msgstr "Total antal användare på hemsidan"
 
 
 
 
1703
 
1704
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1705
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1706
+ msgstr "E-post meddelandet sparat. See <a href=\"%1$s\">Alla meddelanden</a>."
 
 
 
 
1707
 
1708
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902
 
 
 
 
1709
  msgid "Email Notice Activated"
1710
+ msgstr "E-post meddelande aktiverad"
1711
 
1712
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1713
  msgid "Email Notice Saved"
1714
+ msgstr "E-post meddelande inställningar updaterade"
1715
 
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1717
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1718
  msgstr ""
1719
+ "E-post meddelande skickad till godkännande. See <a href=\"%1$s\">Alla "
1720
+ "meddelanden</a>."
1721
 
1722
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:906
1723
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1724
+ msgstr "E-post meddelande plannerad för: <strong>%1$s</strong>."
1725
 
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1727
  msgid ""
1728
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1729
  "not yet ready to use this email notice!"
1730
  msgstr ""
1731
+ "När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
1732
+ "samma! Spara som kladd om du inte vill använda meddelandet just nu."
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
1735
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1736
+ msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1739
  msgid "This email notice is active."
1740
+ msgstr "Detta e-post meddelande är inte aktivt."
1741
 
1742
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:474
1743
  msgid "Current Balance"
1744
+ msgstr "Nuvarande Saldo"
1745
 
1746
  #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
1747
  msgid "Total Cost"
1748
+ msgstr "Total Kostnad"
1749
 
1750
  #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
1751
  msgid "Balance After Purchase"
1752
+ msgstr "Saldo efter köp"
1753
 
1754
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1755
+ msgid "Go Back"
1756
+ msgstr "Gå tillbaks"
1757
 
1758
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1759
  msgid "will be deducted from your account."
1760
+ msgstr "kommer att debiteras från ditt konto."
1761
 
1762
  #: ../addons/gateway/carts/mycred-marketpress.php:221
1763
  msgid ""
1764
  "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1765
  "href=\"%s\">select a different payment method</a>."
1766
+ msgstr "Du kan inte använda denna betalnings metod. Var vänlig välj en annan."
1767
 
1768
  #: ../addons/gateway/carts/mycred-marketpress.php:240
1769
  msgid "Paid"
1770
+ msgstr "Betald"
1771
 
1772
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1773
  msgid "myCRED"
1774
+ msgstr "myCRED"
1775
 
1776
  #: ../addons/gateway/carts/mycred-marketpress.php:345
1777
  msgid "%_singular% Balance"
1778
+ msgstr "%_singular% Saldo"
1779
 
1780
  #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
1781
  msgid "Payment for Order: #%order_id%"
1782
+ msgstr "Betalning för order: #%order_id%"
1783
 
1784
  #: ../addons/gateway/carts/mycred-marketpress.php:351
1785
  msgid "Product Sale: %post_title%"
1786
+ msgstr "Produkt Sale: %post_title%"
1787
 
1788
  #: ../addons/gateway/carts/mycred-marketpress.php:352
1789
  msgid "Pay using your account balance."
1790
+ msgstr "Betal med ditt poäng saldo"
1791
 
1792
  #: ../addons/gateway/carts/mycred-marketpress.php:353
1793
  msgid ""
1794
  "TOTAL amount has been deducted from your account. Your current balance is: "
1795
  "%balance_f%"
1796
+ msgstr "TOTAL har debiterats från ditt konto. Dit nuvarande saldo är: %balance_f%"
1797
 
1798
  #: ../addons/gateway/carts/mycred-marketpress.php:354
1799
  msgid ""
1800
  "Insufficient funds. Please select another form of payment. Your current balance "
1801
  "is: %balance_f%"
1802
  msgstr ""
1803
+ "För låg saldo. Var vänlig välj ett annat betalnings form. Ditt nuvarande saldo "
1804
+ "är: %balance_f%"
1805
 
1806
  #: ../addons/gateway/carts/mycred-marketpress.php:355
1807
  msgid ""
1808
  "You must be logged in to pay with %_plural%. Please <a "
1809
  "href=\"%login_url_here%\">login</a>."
1810
  msgstr ""
1811
+ "Du måste vara inloggad för att kunna betala med %_plural%. Logga in <a "
1812
+ "href=\"%login_url_here%\">här</a>."
1813
 
1814
  #: ../addons/gateway/carts/mycred-marketpress.php:362
1815
  msgid ""
1816
  "Let your users pay for items in their shopping cart using their %s Account. "
1817
  "Note! This gateway requires your users to be logged in when making a purchase!"
1818
  msgstr ""
1819
+ "Låt dina användare betala för produkter med deras %s konton. OBS! Denna "
1820
+ "betalnings system kräver att dina användare är inloggade för betalning av köp."
1821
 
1822
  #: ../addons/gateway/carts/mycred-marketpress.php:365
1823
  msgid "Method Name"
1824
+ msgstr "Titel på Betalnings form"
1825
 
1826
  #: ../addons/gateway/carts/mycred-marketpress.php:367
1827
  msgid ""
1828
  "Enter a public name for this payment method that is displayed to users - No "
1829
  "HTML"
1830
+ msgstr "Sätt namnet du vill visa för denna betalnings form för dina användare."
1831
 
1832
  #: ../addons/gateway/carts/mycred-marketpress.php:372
1833
  msgid "Gateway Logo URL"
1834
+ msgstr "Logo adress"
1835
 
1836
  #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
1837
  msgid "How much is 1 %_singular% worth in %currency%?"
1838
+ msgstr "Hur mycket är 1 %_singular% värd i %currency%?"
1839
 
1840
  #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
1841
  msgid "Exchange Rate"
1842
+ msgstr "Växlings kurs"
1843
 
1844
  #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
1845
  msgid "Profit Sharing"
1846
+ msgstr "Vinstfördelning"
1847
 
1848
  #: ../addons/gateway/carts/mycred-marketpress.php:410
1849
  msgid "Percentage"
1850
+ msgstr "Procent"
1851
 
1852
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
1853
+ msgid "Option to share sales with the product owner. Use zero to disable."
1854
  msgstr ""
1855
+ "Vinst fördelning vid produkt köp i procent. Sätt till noll om du vill inte "
1856
+ "använda denna funktion."
1857
 
1858
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1859
  msgid "Messages"
1860
+ msgstr "Meddelande"
1861
 
1862
  #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
1863
  msgid "Insufficient Funds"
1864
+ msgstr "Saldo för låg"
1865
 
1866
  #: ../addons/gateway/carts/mycred-marketpress.php:429
1867
  msgid "Message to show when the user can not use this gateway."
1868
+ msgstr "Meddelande till köparen när de inte kan använda denna betalnings form."
1869
 
1870
  #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
1871
  msgid "Visitors"
1872
+ msgstr "Besökare"
1873
 
1874
  #: ../addons/gateway/carts/mycred-marketpress.php:437
1875
  msgid "Message to show to buyers that are not logged in."
1876
+ msgstr "Meddelande att visa köpare som inte är inloggade."
1877
 
1878
  #: ../addons/gateway/carts/mycred-marketpress.php:443
1879
  msgid "User Instructions"
1880
+ msgstr "Användare Instruktioner"
1881
 
1882
  #: ../addons/gateway/carts/mycred-marketpress.php:445
1883
  msgid "Information to show users before payment."
1884
+ msgstr "Meddelande att visa köpare innan betalning."
1885
 
1886
  #: ../addons/gateway/carts/mycred-marketpress.php:451
1887
  msgid "Confirmation Information"
1888
+ msgstr "Bekräftelse"
1889
 
1890
  #: ../addons/gateway/carts/mycred-marketpress.php:453
1891
  msgid "Information to display on the order confirmation page. - HTML allowed"
1892
+ msgstr "Information att visa köparen efter att köpet är genomfört. Du kan använda HTML."
1893
 
1894
  #: ../addons/gateway/carts/mycred-marketpress.php:459
1895
  msgid "Order Confirmation Email"
1896
+ msgstr "Bekräftelse av Köp"
1897
 
1898
  #: ../addons/gateway/carts/mycred-marketpress.php:461
1899
  msgid ""
1902
  "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1903
  "TOTAL, TRACKINGURL. No HTML allowed."
1904
  msgstr ""
1905
+ "E-post meddelandet att skicka till användare som köper varor med denna "
1906
+ "betalnings form. Du kan använda följande koder för att inkludera information om "
1907
+ "köpet: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, "
1908
+ "TRACKINGURL. HTML är inte tillåtet."
1909
 
1910
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1911
  msgid "Let users pay using their myCRED balance."
1912
+ msgstr "Låt användare betala med sina myCRED Poäng saldon."
1913
 
1914
  #: ../addons/gateway/carts/mycred-woocommerce.php:79
1915
  msgid "Enable/Disable"
1916
+ msgstr "On / Off"
1917
 
1918
  #: ../addons/gateway/carts/mycred-woocommerce.php:81
1919
  msgid "Enable myCRED Payment"
1920
+ msgstr "Aktivera myCRED Betalning"
1921
 
1922
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1923
  msgid ""
1924
  "Users who are not logged in or excluded from using myCRED will not have access "
1925
  "to this gateway!"
1926
  msgstr ""
1927
+ "Användare som inte är inloggade eller är exkluderade från att använda myCRED "
1928
+ "kommer inte kunna använda denna betalnings form!"
1929
 
1930
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
1931
  msgid "Title to show for this payment option."
1932
+ msgstr "Titel för Betalnings formen"
1933
 
1934
  #: ../addons/gateway/carts/mycred-woocommerce.php:89
1935
  msgid "Pay with myCRED"
1936
+ msgstr "Betala med myCRED"
1937
 
1938
  #: ../addons/gateway/carts/mycred-woocommerce.php:93
1939
  msgid "Customer Message"
1940
+ msgstr "Betalnings beskrivning"
1941
 
1942
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
1943
  msgid "Deduct the amount from your %_plural% balance."
1944
+ msgstr "Betala med ditt %_plural% saldo."
1945
 
1946
  #: ../addons/gateway/carts/mycred-woocommerce.php:110
1947
  msgid "Select the point type users can use to pay."
1948
+ msgstr "Välj poäng typen som dina kunder kan betala med."
1949
 
1950
  #: ../addons/gateway/carts/mycred-woocommerce.php:136
1951
  msgid "Show Total"
1952
+ msgstr "Visa Summa"
1953
 
1954
  #: ../addons/gateway/carts/mycred-woocommerce.php:138
1955
  msgid "Show the final price in %_plural% ."
1956
+ msgstr "Visa kostnaden i %_plural%."
1957
 
1958
  #: ../addons/gateway/carts/mycred-woocommerce.php:140
1959
  msgid "Do not show"
1960
+ msgstr "Visa inte"
1961
 
1962
  #: ../addons/gateway/carts/mycred-woocommerce.php:141
1963
  msgid "Show in Cart"
1964
+ msgstr "Visa i kundvagnen"
1965
 
1966
  #: ../addons/gateway/carts/mycred-woocommerce.php:142
1967
  msgid "Show on Checkout Page"
1968
+ msgstr "Visa på Checkout sidan"
1969
 
1970
  #: ../addons/gateway/carts/mycred-woocommerce.php:143
1971
  msgid "Show in Cart and on Checkout Page"
1972
+ msgstr "Visa i kundvagnen och på Checkout sidan"
1973
 
1974
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:472 ../modules/mycred-module-settings.php:491 ../modules/mycred-module-settings.php:514
1975
  msgid "Label"
1976
+ msgstr "Titel"
1977
 
1978
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
1979
  msgid "Order Total in %_plural%"
1980
+ msgstr "Total kostnad i %_plural%"
 
 
 
 
1981
 
1982
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1983
  msgid "Log entry template for profit sharing."
1984
+ msgstr "Log mall för utbetalningar av vinstfördelning."
1985
 
1986
  #: ../addons/gateway/carts/mycred-woocommerce.php:167
1987
  msgid "Sale of %post_title%"
1988
+ msgstr "Försäljning av %post_title%"
1989
 
1990
  #: ../addons/gateway/carts/mycred-woocommerce.php:192
1991
  msgid "myCRED Payment"
1992
+ msgstr "myCRED Betalning"
1993
 
1994
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
1995
  msgid ""
1997
  "users with insufficient funds and users who are not logged in will not see this "
1998
  "payment gateway on the checkout page."
1999
  msgstr ""
2000
+ "Låt användare betala med sina myCRED %_singluar% saldon. OBS! Användare som är "
2001
+ "inte inloggade eller har för låg saldo kommer inte att kunna se denna "
2002
+ "betalnings sätt när dom checkar ut."
2003
 
2004
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2005
  msgid "You must be logged in to pay with %_plural%"
2006
+ msgstr "Du måste vara inloggad för att betala med %_plural%."
2007
 
2008
  #: ../addons/gateway/carts/mycred-woocommerce.php:220
2009
  msgid "You can not use this gateway. Please try a different payment option."
2010
+ msgstr "Du kan inte använda denna betalnings form. Var vänlig välj en annan."
2011
 
2012
  #: ../addons/gateway/carts/mycred-woocommerce.php:232
2013
  msgid "Insufficient funds. Please try a different payment option."
2014
+ msgstr "För låg saldo. Var vänlig välj ett annat betalnings form."
2015
 
2016
  #: ../addons/gateway/carts/mycred-woocommerce.php:294
2017
  msgid "Your account has successfully been charged."
2018
+ msgstr "Ditt konto har debiterats."
2019
 
2020
  #: ../addons/gateway/carts/mycred-woocommerce.php:313
2021
  msgid "Order Missing"
2022
+ msgstr "Köp Information Saknas"
2023
 
2024
  #: ../addons/gateway/carts/mycred-woocommerce.php:534 ../addons/gateway/carts/mycred-wpecommerce.php:131
2025
  msgid "Your current balance"
2026
+ msgstr "Saldo"
2027
 
2028
  #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2029
  msgid "Store sale"
2030
+ msgstr "Köp"
2031
 
2032
  #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2033
  msgid "You must be logged in to use this gateway"
2034
+ msgstr "Du måste vara inloggad för denna betalnings sätt"
2035
 
2036
  #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2037
  msgid "Insufficient Funds."
2038
+ msgstr "Saldo för låg."
2039
 
2040
  #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2041
  msgid "Deduct the amount from your balance."
2042
+ msgstr "Debitera kostnaden från ditt saldo."
2043
 
2044
  #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2045
  msgid "You can not use this gateway."
2046
+ msgstr "Du kan inte använda denna betalnings form."
2047
 
2048
  #: ../addons/gateway/carts/mycred-wpecommerce.php:340
2049
  msgid "Log Template for Payments"
2050
+ msgstr "Log Mall för betalningar"
2051
 
2052
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2053
  msgid "How much is 1 %s worth in %s"
2054
+ msgstr "Hur mycket är 1 %s värd i %s"
2055
 
2056
  #: ../addons/gateway/carts/mycred-wpecommerce.php:363
2057
  msgid "Payout"
2058
+ msgstr "Utbetalning"
 
 
 
 
 
 
2059
 
2060
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2061
  msgid "Instructions"
2062
+ msgstr "Instruktioner"
2063
 
2064
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2065
  msgid ""
2066
  "Optional instructions to show users when selecting this gateway. Leave empty to "
2067
  "hide."
2068
  msgstr ""
2069
+ "Valfri information att visa köparen när han väljer denna betalnings form. Lämna "
2070
+ "tom för att dölja."
2071
 
2072
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2073
  msgid "Message to show visitors who are not logged in."
2074
+ msgstr "Meddelande att visa för användare som inte är inloggade."
2075
 
2076
  #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2077
  msgid ""
2078
  "Message to show when users does not have enough %plural% to pay using this "
2079
  "gateway."
2080
  msgstr ""
2081
+ "Meddelande att visa när användare har för låg saldo för att kunna betala för "
2082
+ "köpet."
2083
 
2084
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
2085
  msgid "Pay Now"
2086
+ msgstr "Betala"
2087
 
2088
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2089
  msgid "Payment for Event Registration"
2090
+ msgstr "Betala för Biljetter"
2091
 
2092
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2093
  msgid "Activate %s"
2094
+ msgstr "Aktivera %s"
2095
 
2096
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2097
  msgid "Deactivate %s"
2098
+ msgstr "Avaktivera %s"
2099
 
2100
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
2101
  msgid "How many %s is 1 %s worth?"
2102
+ msgstr "Hur många %s är 1 %s värd?"
2103
 
2104
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2105
  msgid "Gateways Settings Successfully Updated"
2106
+ msgstr "Inställningar Sparade"
2107
 
2108
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
2109
  msgid "Labels"
2110
+ msgstr "Titlar"
2111
 
2112
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2113
  msgid "Gateway Title"
2114
+ msgstr "Betalnings Titel"
2115
 
2116
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2117
  msgid "Title to show on Payment page"
2118
+ msgstr "Titel att visa på betalnings sidan"
2119
 
2120
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2121
  msgid "Payment Type"
2122
+ msgstr "Betalnings Sätt"
2123
 
2124
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2125
  msgid "Title to show on receipts and logs"
2126
+ msgstr "Titel att visa på kvitton och i loggar"
2127
 
2128
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
2129
  msgid "Button Label"
2130
+ msgstr "Knapp Text"
2131
 
2132
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2133
  msgid "Pay Button"
2134
+ msgstr "Betalnings Knapp"
2135
 
2136
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
2137
  msgid "Price"
2138
+ msgstr "Pris"
2139
 
2140
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2141
  msgid ""
2142
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2143
  "<code>mycred_no_sale</code>"
2144
  msgstr ""
2145
+ "Du kan avaktivera denna betalnings form för evenemang genom att lägga till en "
2146
+ "Event Meta: <code>mycred_no_sale</code>"
2147
 
2148
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2149
  msgid "Users must be logged in to use this gateway!"
2150
+ msgstr "Användare måste vara inloggade för att använda denna betalnings form!"
 
 
 
 
2151
 
2152
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2153
  msgid "Log"
2154
+ msgstr "Log"
2155
 
2156
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:479
2157
  msgid "Log Entry"
2158
+ msgstr "Log Inlägg"
2159
 
2160
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477
2161
  msgid "Templates"
2162
+ msgstr "Mallar"
2163
 
2164
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2165
  msgid "Solvent users"
2166
+ msgstr "Solventa användare"
2167
 
2168
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2169
  msgid ""
2170
  "Message to show users on the payment page before they are charged. Leave empty "
2171
  "to hide."
2172
  msgstr ""
2173
+ "Meddelande att visa användare innan köpet är genomfört. Lämna fältet tomt för "
2174
+ "att dölja."
2175
 
2176
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2177
  msgid "Insolvent users"
2178
+ msgstr "Insolventa Användare"
2179
 
2180
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2181
  msgid "Message to show users who do not have enough points to pay."
2182
+ msgstr "Meddelande att visa användare med för låg saldo."
2183
 
2184
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2185
  msgid "Message to show visitors (users not logged in) on the payment page."
2186
+ msgstr "Meddelande att visa köpare som inte är inloggade."
2187
 
2188
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:528
2189
  msgid "Update Settings"
2190
+ msgstr "Spara Ändringar"
2191
 
2192
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
2193
  msgid "Payment for tickets to %link_with_title%"
2194
+ msgstr "Biljett Köp för %link_with_title%"
2195
 
2196
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
2197
  msgid "Ticket refund for %link_with_title%"
2198
+ msgstr "Återbetalning av biljett köp för %link_with_title%"
2199
 
2200
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
2201
  msgid "Pay using your %_plural% balance"
2202
+ msgstr "Betala med ditt %_plural% saldo"
2203
 
2204
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
2205
  msgid "Pay"
2206
+ msgstr "Betala"
2207
 
2208
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
2209
  msgid "Thank you for your payment!"
2210
+ msgstr "Tack för ditt köp!"
2211
 
2212
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
2213
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2214
+ msgstr "Du kan tyvärr inte betala för dessa biljetter med %_plural%"
2215
 
2216
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
2217
  msgid "Ticket Type"
2218
+ msgstr "Biljett Typ"
2219
 
2220
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
2221
  msgid "Spaces"
2222
+ msgstr "Antal"
2223
 
2224
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:228
2225
  msgid "You can not pay using this gateway."
2226
+ msgstr "Du kan inte använda denna betalnings form."
2227
 
2228
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:370
2229
  msgid "Reject"
2230
+ msgstr "Avvisa"
2231
 
2232
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:511 ../modules/mycred-module-settings.php:476 ../modules/mycred-module-settings.php:495
2233
  msgid "Delete"
2234
+ msgstr "Radera"
2235
 
2236
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:379
2237
  msgid "Edit/View"
2238
+ msgstr "Justera/Se"
2239
 
2240
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
2241
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2242
+ msgstr "Avaktiverad - Användare KAN INTE betala med %plural%."
2243
 
2244
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
2245
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2246
+ msgstr "Enkel - Användare kan BARA betala med %plural%."
2247
 
2248
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
2249
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2250
+ msgstr "Multi - Användare kan betala med flera olika betalnings former."
2251
 
2252
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
2253
  msgid "Refunds"
2254
+ msgstr "Återbetalningar"
2255
 
2256
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2257
  msgid ""
2258
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2259
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2260
  msgstr ""
2261
 
2262
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
2263
  msgid "Log Templates"
2264
+ msgstr "Log Mallar"
2265
 
2266
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
2267
  msgid "Purchases"
2268
+ msgstr "Köp"
2269
 
2270
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
2271
  msgid "Payment Link Label"
2272
+ msgstr "Betalnings Länk Text"
2273
 
2274
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
2275
  msgid ""
2276
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2277
  "allowed."
2278
  msgstr ""
2279
+ "Betalnings länken visas under \"My Bookings\" och ansvarar för att visa / dölja "
2280
+ "betalnings formuläret. HTML är inte tillåtet."
2281
 
2282
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
2283
  msgid "Payment Header"
2284
+ msgstr "Betalnings Rubrik"
2285
 
2286
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
2287
  msgid "Shown on top of the payment form. No HTML allowed."
2288
+ msgstr "Visas ovanför betalnings formuläret. HTML är inte tillåtet."
2289
 
2290
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
2291
  msgid "The button label for payments. No HTML allowed!"
2292
+ msgstr "Knapp texten för betalningen. HTML är inte tillåtet!"
2293
 
2294
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
2295
  msgid "Successful Payments"
2296
+ msgstr "Slutförda Köp"
2297
 
2298
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
2299
  msgid "No HTML allowed!"
2300
+ msgstr "HTML är inte tillåtet!"
2301
 
2302
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2303
  msgid "Balance After Payment"
2304
+ msgstr "Saldo efter köp:"
2305
 
2306
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2307
  msgid "Click to toggle"
2308
+ msgstr "Klicka för att visa"
2309
 
2310
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2311
  msgid "%s Payments"
2312
+ msgstr "%s Betalningar"
2313
 
2314
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2315
  msgid ""
2316
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2317
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2318
  msgstr ""
2319
+ "Procenten av biljett kostnaden som kunder får tillbaks vid återbetalningar. "
2320
+ "Sätt till noll om du inte vill använda denna funktion. Avvisade köp återbetalas "
2321
+ "inte!"
2322
 
2323
+ #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:201
2324
  msgid "Notifications"
2325
  msgstr ""
2326
 
2368
  msgid "Are you sure you want to re-assign user ranks?"
2369
  msgstr ""
2370
 
2371
+ #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:748 ../addons/ranks/myCRED-addon-ranks.php:944 ../modules/mycred-module-addons.php:213
2372
  msgid "Ranks"
2373
  msgstr ""
2374
 
2375
+ #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-addon-ranks.php:459 ../addons/ranks/myCRED-addon-ranks.php:554
2376
  msgid "Rank"
2377
  msgstr ""
2378
 
2404
  msgid "No ranks found in Trash"
2405
  msgstr ""
2406
 
2407
+ #: ../addons/ranks/myCRED-addon-ranks.php:318
2408
  msgid "Completed - Total of %d users effected"
2409
  msgstr ""
2410
 
2411
+ #: ../addons/ranks/myCRED-addon-ranks.php:320
2412
  msgid "Log is Empty"
2413
  msgstr ""
2414
 
2415
+ #: ../addons/ranks/myCRED-addon-ranks.php:514 ../addons/ranks/myCRED-addon-ranks.php:517
2416
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2417
  msgstr ""
2418
 
2419
+ #: ../addons/ranks/myCRED-addon-ranks.php:519
2420
  msgid "Rank Activated"
2421
  msgstr ""
2422
 
2423
+ #: ../addons/ranks/myCRED-addon-ranks.php:520
2424
  msgid "Rank Saved"
2425
  msgstr ""
2426
 
2427
+ #: ../addons/ranks/myCRED-addon-ranks.php:521
2428
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2429
  msgstr ""
2430
 
2431
+ #: ../addons/ranks/myCRED-addon-ranks.php:523
2432
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2433
  msgstr ""
2434
 
2435
+ #: ../addons/ranks/myCRED-addon-ranks.php:580 ../addons/ranks/myCRED-addon-ranks.php:633
2436
  msgid "Rank Title"
2437
  msgstr ""
2438
 
2439
+ #: ../addons/ranks/myCRED-addon-ranks.php:581
2440
  msgid "Logo"
2441
  msgstr ""
2442
 
2443
+ #: ../addons/ranks/myCRED-addon-ranks.php:582
2444
  msgid "Requirement"
2445
  msgstr ""
2446
 
2447
+ #: ../addons/ranks/myCRED-addon-ranks.php:583 ../modules/mycred-module-settings.php:439
2448
  msgid "Users"
2449
  msgstr ""
2450
 
2451
+ #: ../addons/ranks/myCRED-addon-ranks.php:599
2452
  msgid "No Logo Set"
2453
  msgstr ""
2454
 
2455
+ #: ../addons/ranks/myCRED-addon-ranks.php:608 ../addons/ranks/myCRED-addon-ranks.php:613
2456
  msgid "Any Value"
2457
  msgstr ""
2458
 
2459
+ #: ../addons/ranks/myCRED-addon-ranks.php:615
2460
  msgid "Maximum %plural%"
2461
  msgstr ""
2462
 
2463
+ #: ../addons/ranks/myCRED-addon-ranks.php:646
2464
  msgid "Rank Settings"
2465
  msgstr ""
2466
 
2467
+ #: ../addons/ranks/myCRED-addon-ranks.php:668
2468
  msgid "Minimum %plural% to reach this rank"
2469
  msgstr ""
2470
 
2471
+ #: ../addons/ranks/myCRED-addon-ranks.php:672
2472
  msgid "Maximum %plural% to be included in this rank"
2473
  msgstr ""
2474
 
2475
+ #: ../addons/ranks/myCRED-addon-ranks.php:679
2476
  msgid "All Published Ranks"
2477
  msgstr ""
2478
 
2479
+ #: ../addons/ranks/myCRED-addon-ranks.php:685 ../addons/ranks/myCRED-addon-ranks.php:687
2480
  msgid "Not Set"
2481
  msgstr ""
2482
 
2483
+ #: ../addons/ranks/myCRED-addon-ranks.php:692
2484
  msgid "No Ranks found"
2485
  msgstr ""
2486
 
2487
+ #: ../addons/ranks/myCRED-addon-ranks.php:750
2488
  msgid "Rank Features"
2489
  msgstr ""
2490
 
2491
+ #: ../addons/ranks/myCRED-addon-ranks.php:754
2492
  msgid "%plural% requirement"
2493
  msgstr ""
2494
 
2495
+ #: ../addons/ranks/myCRED-addon-ranks.php:755
2496
  msgid "Featured Image (Logo)"
2497
  msgstr ""
2498
 
2499
+ #: ../addons/ranks/myCRED-addon-ranks.php:756
2500
  msgid "Content"
2501
  msgstr ""
2502
 
2503
+ #: ../addons/ranks/myCRED-addon-ranks.php:757
2504
  msgid "Excerpt"
2505
  msgstr ""
2506
 
2507
+ #: ../addons/ranks/myCRED-addon-ranks.php:758
2508
  msgid "Comments"
2509
  msgstr ""
2510
 
2511
+ #: ../addons/ranks/myCRED-addon-ranks.php:759
2512
  msgid "Page Attributes"
2513
  msgstr ""
2514
 
2515
+ #: ../addons/ranks/myCRED-addon-ranks.php:760
2516
  msgid "Custom Fields"
2517
  msgstr ""
2518
 
2519
+ #: ../addons/ranks/myCRED-addon-ranks.php:763
2520
  msgid "Public"
2521
  msgstr ""
2522
 
2523
+ #: ../addons/ranks/myCRED-addon-ranks.php:767
2524
  msgid ""
2525
  "If you want to create a template archive for each rank, you must select to have "
2526
  "ranks public. Defaults to disabled."
2527
  msgstr ""
2528
 
2529
+ #: ../addons/ranks/myCRED-addon-ranks.php:770
2530
  msgid "Rank Basis"
2531
  msgstr ""
2532
 
2533
+ #: ../addons/ranks/myCRED-addon-ranks.php:773
2534
  msgid "Users are ranked according to their current balance."
2535
  msgstr ""
2536
 
2537
+ #: ../addons/ranks/myCRED-addon-ranks.php:776
2538
  msgid ""
2539
  "Users are ranked according to the total amount of %_plural% they have "
2540
  "accumulated."
2541
  msgstr ""
2542
 
2543
+ #: ../addons/ranks/myCRED-addon-ranks.php:780 ../addons/ranks/myCRED-addon-ranks.php:785
2544
  msgid "Calculate Totals"
2545
  msgstr ""
2546
 
2547
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2548
  msgid ""
2549
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2550
  "the users current balance will be used as a starting point."
2551
  msgstr ""
2552
 
2553
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2554
  msgid ""
2555
  "Once a users total has been calculated, they will be assigned to their "
2556
  "appropriate roles. For this reason, it is highly recommended that you first "
2557
  "setup your ranks!"
2558
  msgstr ""
2559
 
2560
+ #: ../addons/ranks/myCRED-addon-ranks.php:784
2561
  msgid ""
2562
  "Depending on your log size and number of users this process may take a while. "
2563
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2564
  "is completed!"
2565
  msgstr ""
2566
 
2567
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2568
  msgid "Archive URL"
2569
  msgstr ""
2570
 
2571
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2572
  msgid "Ignored if Ranks are not public"
2573
  msgstr ""
2574
 
2575
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2576
  msgid "Display Order"
2577
  msgstr ""
2578
 
2579
+ #: ../addons/ranks/myCRED-addon-ranks.php:803
2580
  msgid "Ascending - Lowest rank to highest"
2581
  msgstr ""
2582
 
2583
+ #: ../addons/ranks/myCRED-addon-ranks.php:804
2584
  msgid "Descending - Highest rank to lowest"
2585
  msgstr ""
2586
 
2587
+ #: ../addons/ranks/myCRED-addon-ranks.php:813
2588
  msgid ""
2589
  "Select in what order ranks should be displayed in your admin area and/or front "
2590
  "if ranks are \"Public\""
2591
  msgstr ""
2592
 
2593
+ #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2594
  msgid "Do not show."
2595
  msgstr ""
2596
 
2597
+ #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:365
2598
  msgid "Include in Profile Header."
2599
  msgstr ""
2600
 
2601
+ #: ../addons/ranks/myCRED-addon-ranks.php:825 ../modules/mycred-module-buddypress.php:366
2602
  msgid "Include under the \"Profile\" tab"
2603
  msgstr ""
2604
 
2605
+ #: ../addons/ranks/myCRED-addon-ranks.php:826 ../modules/mycred-module-buddypress.php:367
2606
  msgid "Include under the \"Profile\" tab and Profile Header."
2607
  msgstr ""
2608
 
2609
+ #: ../addons/ranks/myCRED-addon-ranks.php:829
2610
  msgid "Rank in BuddyPress"
2611
  msgstr ""
2612
 
2613
+ #: ../addons/ranks/myCRED-addon-ranks.php:897
2614
  msgid "Script Communication Error"
2615
  msgstr ""
2616
 
2617
+ #: ../addons/ranks/myCRED-addon-ranks.php:947
2618
  msgid "Rank Post Type"
2619
  msgstr ""
2620
 
2621
+ #: ../addons/ranks/myCRED-addon-ranks.php:951
2622
  msgid "No. of ranks"
2623
  msgstr ""
2624
 
2625
+ #: ../addons/ranks/myCRED-addon-ranks.php:955 ../modules/mycred-module-log.php:372 ../modules/mycred-module-settings.php:428 ../modules/mycred-module-settings.php:443
2626
  msgid "Actions"
2627
  msgstr ""
2628
 
2629
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2630
  msgid "Remove All Ranks"
2631
  msgstr ""
2632
 
2633
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2634
  msgid "Assign Ranks to Users"
2635
  msgstr ""
2636
 
2646
  msgid "No users found with this rank"
2647
  msgstr ""
2648
 
2649
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2650
  msgid "error"
2651
  msgstr ""
2652
 
2682
  msgid "Pay Content Author."
2683
  msgstr ""
2684
 
2685
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
2686
  msgid "Sell Content"
2687
  msgstr ""
2688
 
2864
  msgid "Transfer %plural%"
2865
  msgstr ""
2866
 
2867
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:457
2868
  msgid "Point Types"
2869
  msgstr ""
2870
 
3050
  "href=\"%s\">website</a>."
3051
  msgstr ""
3052
 
3053
+ #: ../includes/mycred-admin.php:63
3054
+ msgid ""
3055
+ "Re-save your myCRED Settings & all myCRED widget settings that you are "
3056
+ "currently using."
3057
+ msgstr ""
3058
+
3059
+ #: ../includes/mycred-admin.php:67
3060
+ msgid "Re-save your myCRED Hook Settings."
3061
+ msgstr ""
3062
+
3063
+ #: ../includes/mycred-admin.php:71
3064
+ msgid ""
3065
+ "Please complete the following tasks in order to finish updating myCRED to "
3066
+ "version 1.4:"
3067
+ msgstr ""
3068
+
3069
+ #: ../includes/mycred-admin.php:97
3070
  msgid "User is excluded"
3071
  msgstr ""
3072
 
3073
+ #: ../includes/mycred-admin.php:102
3074
  msgid "Log Entry can not be empty"
3075
  msgstr ""
3076
 
3077
+ #: ../includes/mycred-admin.php:106
3078
  msgid "Amount can not be zero"
3079
  msgstr ""
3080
 
3081
+ #: ../includes/mycred-admin.php:127
3082
  msgid "Failed to update this uses balance."
3083
  msgstr ""
3084
 
3085
+ #: ../includes/mycred-admin.php:262
3086
  msgid "Excluded"
3087
  msgstr ""
3088
 
3089
+ #: ../includes/mycred-admin.php:275 ../modules/mycred-module-log.php:254 ../modules/mycred-module-log.php:255
3090
  msgid "History"
3091
  msgstr ""
3092
 
3093
+ #: ../includes/mycred-admin.php:276
3094
  msgid "Adjust"
3095
  msgstr ""
3096
 
3097
+ #: ../includes/mycred-admin.php:331 ../includes/mycred-admin.php:390
3098
  msgid "%singular% balance"
3099
  msgstr ""
3100
 
3101
+ #: ../includes/mycred-admin.php:355
3102
  msgid "Adjust Your Balance"
3103
  msgstr ""
3104
 
3105
+ #: ../includes/mycred-admin.php:357
3106
  msgid "Adjust Users Balance"
3107
  msgstr ""
3108
 
3109
+ #: ../includes/mycred-admin.php:368
3110
  msgid "Log description for adjustment"
3111
  msgstr ""
3112
 
3113
+ #: ../includes/mycred-admin.php:371
3114
  msgid "Update"
3115
  msgstr ""
3116
 
3117
+ #: ../includes/mycred-admin.php:372
3118
  msgid "Description is required!"
3119
  msgstr ""
3120
 
3121
+ #: ../includes/mycred-admin.php:472
3122
  msgid "ID"
3123
  msgstr ""
3124
 
3125
+ #: ../includes/mycred-admin.php:478
3126
  msgid "A positive or negative value"
3127
  msgstr ""
3128
 
3129
+ #: ../includes/mycred-admin.php:480
3130
  msgid "Update Balance"
3131
  msgstr ""
3132
 
3138
  msgid "Points"
3139
  msgstr ""
3140
 
3141
+ #: ../includes/mycred-functions.php:395
3142
  msgid "Deleted"
3143
  msgstr ""
3144
 
3145
+ #: ../includes/mycred-functions.php:532
3146
  msgid "Deleted Item"
3147
  msgstr ""
3148
 
3149
+ #: ../includes/mycred-functions.php:596
3150
+ msgid "User Related"
3151
+ msgstr "Användare relaterat"
3152
+
3153
+ #: ../includes/mycred-functions.php:603
3154
+ msgid "Post Related"
3155
+ msgstr "Inlägg relaterat"
3156
+
3157
+ #: ../includes/mycred-functions.php:610
3158
  msgid "Comment Related"
3159
  msgstr ""
3160
 
3161
+ #: ../includes/mycred-functions.php:617
3162
  msgid "Widget Related"
3163
  msgstr ""
3164
 
3165
+ #: ../includes/mycred-functions.php:624
3166
  msgid "Amount Related"
3167
  msgstr ""
3168
 
3169
+ #: ../includes/mycred-functions.php:631
3170
  msgid "Video Related"
3171
  msgstr ""
3172
 
3173
+ #: ../includes/mycred-functions.php:642
3174
  msgid "and"
3175
  msgstr ""
3176
 
3177
+ #: ../includes/mycred-functions.php:644
3178
  msgid "Available Template Tags:"
3179
  msgstr ""
3180
 
3181
+ #: ../includes/mycred-functions.php:1565
3182
  msgid "Entire Log"
3183
  msgstr ""
3184
 
3185
+ #: ../includes/mycred-functions.php:1570 ../includes/mycred-functions.php:1571
3186
  msgid "Displayed Rows"
3187
  msgstr ""
3188
 
3189
+ #: ../includes/mycred-functions.php:1575
3190
  msgid "Search Results"
3191
  msgstr ""
3192
 
3193
+ #: ../includes/mycred-functions.php:1576
3194
  msgid "My Entire Log"
3195
  msgstr ""
3196
 
3197
+ #: ../includes/mycred-functions.php:1696
3198
  msgid "ref empty"
3199
  msgstr ""
3200
 
3201
+ #: ../includes/mycred-functions.php:1704
3202
  msgid "incorrect user id format"
3203
  msgstr ""
3204
 
3205
+ #: ../includes/mycred-functions.php:1717
3206
  msgid "incorrect unix timestamp (from):"
3207
  msgstr ""
3208
 
3209
+ #: ../includes/mycred-functions.php:1726
3210
  msgid "incorrect unix timestamp (to):"
3211
  msgstr ""
3212
 
3219
  msgstr ""
3220
 
3221
  #: ../includes/mycred-importer.php:43
3222
+ msgid "%s Balance Import"
3223
+ msgstr ""
3224
+
3225
+ #: ../includes/mycred-importer.php:44
3226
+ msgid "Import balances."
3227
+ msgstr ""
3228
+
3229
+ #: ../includes/mycred-importer.php:75
3230
  msgid "%s CubePoints Import"
3231
  msgstr ""
3232
 
3233
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
3234
  msgid "Import CubePoints log entries and / or balances."
3235
  msgstr ""
3236
 
3237
+ #: ../includes/mycred-importer.php:92
3238
  msgid "No CubePoints log exists."
3239
  msgstr ""
3240
 
3256
  "for running myCRED. The following errors were given:"
3257
  msgstr ""
3258
 
3259
+ #: ../includes/mycred-install.php:243
3260
  msgid "myCRED needs your attention."
3261
  msgstr ""
3262
 
3263
+ #: ../includes/mycred-install.php:243
3264
  msgid "Run Setup"
3265
  msgstr ""
3266
 
3267
+ #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3268
  msgid "myCRED Setup"
3269
  msgstr ""
3270
 
3271
+ #: ../includes/mycred-install.php:385
3272
  msgid "%s Setup"
3273
  msgstr ""
3274
 
3275
+ #: ../includes/mycred-install.php:387
3276
  msgid "Step"
3277
  msgstr ""
3278
 
3279
+ #: ../includes/mycred-install.php:411
3280
  msgid ""
3281
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3282
  "format, layout and security settings."
3283
  msgstr ""
3284
 
3285
+ #: ../includes/mycred-install.php:412
3286
  msgid "Begin Setup"
3287
  msgstr ""
3288
 
3289
+ #: ../includes/mycred-install.php:467
3290
  msgid "Select the format you want to use for your points."
3291
  msgstr ""
3292
 
3293
+ #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3294
  msgid "Format"
3295
  msgstr ""
3296
 
3297
+ #: ../includes/mycred-install.php:471
3298
  msgid "Separators"
3299
  msgstr ""
3300
 
3301
+ #: ../includes/mycred-install.php:481
3302
  msgid "Decimals"
3303
  msgstr ""
3304
 
3305
+ #: ../includes/mycred-install.php:483
3306
  msgid "Use zero for no decimals."
3307
  msgstr ""
3308
 
3309
+ #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:344
3310
  msgid "Presentation"
3311
  msgstr ""
3312
 
3313
+ #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:331
3314
  msgid "Name (Singular)"
3315
  msgstr ""
3316
 
3317
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:336
3318
  msgid "Name (Plural)"
3319
  msgstr ""
3320
 
3321
+ #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:347
3322
  msgid "Prefix"
3323
  msgstr ""
3324
 
3325
+ #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:355
3326
  msgid "Suffix"
3327
  msgstr ""
3328
 
3329
+ #: ../includes/mycred-install.php:511
3330
  msgid "Cancel Setup"
3331
  msgstr ""
3332
 
3333
+ #: ../includes/mycred-install.php:511
3334
  msgid "Cancel"
3335
  msgstr ""
3336
 
3337
+ #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3338
  msgid "Next"
3339
  msgstr ""
3340
 
3341
+ #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:363
3342
  msgid "Security"
3343
  msgstr ""
3344
 
3345
+ #: ../includes/mycred-install.php:546
3346
  msgid "Edit Settings Capability"
3347
  msgstr ""
3348
 
3349
+ #: ../includes/mycred-install.php:550
3350
  msgid "Edit Users %plural% Capability"
3351
  msgstr ""
3352
 
3353
+ #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:376
3354
  msgid "Maximum %plural% payouts"
3355
  msgstr ""
3356
 
3357
+ #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:378
3358
  msgid ""
3359
  "As an added security, you can set the maximum amount a user can gain or loose "
3360
  "in a single instance. If used, make sure this is the maximum amount a user "
3361
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3362
  msgstr ""
3363
 
3364
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:385
3365
  msgid "Exclude those who can \"Edit Settings\"."
3366
  msgstr ""
3367
 
3368
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:389
3369
  msgid "Exclude those who can \"Edit Users %plural%\"."
3370
  msgstr ""
3371
 
3372
+ #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:393
3373
  msgid "Exclude the following user IDs:"
3374
  msgstr ""
3375
 
3376
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:398
3377
  msgid "User Deletions"
3378
  msgstr ""
3379
 
3380
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:401
3381
  msgid "Delete log entries when user is deleted."
3382
  msgstr ""
3383
 
3384
+ #: ../includes/mycred-install.php:599
3385
  msgid "Ready"
3386
  msgstr ""
3387
 
3388
+ #: ../includes/mycred-install.php:600
3389
  msgid "Almost done! Click the button below to finish this setup."
3390
  msgstr ""
3391
 
3392
+ #: ../includes/mycred-install.php:601
3393
  msgid "Install & Run"
3394
  msgstr ""
3395
 
3430
  msgid "Show all references"
3431
  msgstr ""
3432
 
3433
+ #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:541
3434
  msgid "User ID"
3435
  msgstr ""
3436
 
3496
  msgid "This Month"
3497
  msgstr ""
3498
 
3499
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
3500
  msgid "Network Settings"
3501
  msgstr ""
3502
 
3503
+ #: ../includes/mycred-network.php:169
3504
  msgid "%s Network"
3505
  msgstr ""
3506
 
3507
+ #: ../includes/mycred-network.php:175
3508
  msgid "Note! %s has not yet been setup."
3509
  msgstr ""
3510
 
3511
+ #: ../includes/mycred-network.php:179
3512
  msgid "Network Settings Updated"
3513
  msgstr ""
3514
 
3515
+ #: ../includes/mycred-network.php:181
3516
  msgid "Configure network settings for %s."
3517
  msgstr ""
3518
 
3519
+ #: ../includes/mycred-network.php:188
3520
  msgid "Master Template"
3521
  msgstr ""
3522
 
3523
+ #: ../includes/mycred-network.php:199
3524
  msgid ""
3525
  "If enabled, %s will use your main site's settings for all other sites in your "
3526
  "network."
3527
  msgstr ""
3528
 
3529
+ #: ../includes/mycred-network.php:202
3530
  msgid "Central Logging"
3531
  msgstr ""
3532
 
3533
+ #: ../includes/mycred-network.php:213
3534
  msgid "If enabled, %s will log all site actions in your main site's log."
3535
  msgstr ""
3536
 
3537
+ #: ../includes/mycred-network.php:216
3538
  msgid "Site Block"
3539
  msgstr ""
3540
 
3541
+ #: ../includes/mycred-network.php:220
3542
  msgid "Comma separated list of blog ids where %s is to be disabled."
3543
  msgstr ""
3544
 
3545
+ #: ../includes/mycred-network.php:229
3546
  msgid "Save Network Settings"
3547
  msgstr ""
3548
 
3549
+ #: ../includes/mycred-overview.php:25
3550
  msgid "%s Overview"
3551
  msgstr ""
3552
 
3553
+ #: ../includes/mycred-overview.php:78
3554
  msgid "Total amount in circulation"
3555
  msgstr ""
3556
 
3557
+ #: ../includes/mycred-overview.php:81
3558
  msgid "Awarded"
3559
  msgstr ""
3560
 
3561
+ #: ../includes/mycred-overview.php:84
3562
  msgid "Deducted"
3563
  msgstr ""
3564
 
3565
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
3566
  msgid "Transfers"
3567
  msgstr ""
3568
 
3569
+ #: ../includes/mycred-overview.php:208
3570
  msgid "Manual"
3571
  msgstr ""
3572
 
3638
  msgid "Leaderboard is empty."
3639
  msgstr ""
3640
 
3641
+ #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3642
  msgid "Amount missing!"
3643
  msgstr ""
3644
 
3645
+ #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3646
  msgid "Log Template Missing!"
3647
  msgstr ""
3648
 
3649
+ #: ../includes/mycred-shortcodes.php:417
3650
  msgid "Anchor missing URL!"
3651
  msgstr ""
3652
 
3653
+ #: ../includes/mycred-shortcodes.php:482
3654
  msgid "User ID missing for recipient."
3655
  msgstr ""
3656
 
3657
+ #: ../includes/mycred-shortcodes.php:536
3658
  msgid "Sent"
3659
  msgstr ""
3660
 
3661
+ #: ../includes/mycred-shortcodes.php:537
3662
  msgid "Error - Try Again"
3663
  msgstr ""
3664
 
3665
+ #: ../includes/mycred-shortcodes.php:645
3666
  msgid "A video ID is required for this shortcode"
3667
  msgstr ""
3668
 
3682
  msgid "%plural% History"
3683
  msgstr ""
3684
 
3685
+ #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3686
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3687
  msgstr ""
3688
 
3714
  msgid "Row layout"
3715
  msgstr ""
3716
 
3717
+ #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:607
3718
  msgid "Show message when not logged in"
3719
  msgstr ""
3720
 
3721
+ #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:608
3722
  msgid "Message"
3723
  msgstr ""
3724
 
3764
  "at the end with their current position."
3765
  msgstr ""
3766
 
3767
+ #: ../includes/mycred-widgets.php:495
3768
  msgid "Shows the current users balances for each point type."
3769
  msgstr ""
3770
 
3771
+ #: ../includes/mycred-widgets.php:497
3772
  msgid "(%s) Wallet"
3773
  msgstr ""
3774
 
3775
+ #: ../includes/mycred-widgets.php:577
3776
  msgid "My Wallet"
3777
  msgstr ""
3778
 
3779
+ #: ../includes/mycred-widgets.php:599
3780
  msgid "Row Layout"
3781
  msgstr ""
3782
 
3794
  "imported. <strong>%d</strong> was skipped."
3795
  msgstr ""
3796
 
3797
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3798
  msgid "View Log"
3799
  msgstr ""
3800
 
3801
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3802
  msgid "Import More"
3803
  msgstr ""
3804
 
3838
  msgid "Import Log"
3839
  msgstr ""
3840
 
3841
+ #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180 ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:144 ../includes/importers/mycred-balances.php:183 ../includes/importers/mycred-balances.php:198
3842
  msgid "Sorry, there has been an error."
3843
  msgstr ""
3844
 
3845
+ #: ../includes/importers/mycred-log-entries.php:82 ../includes/importers/mycred-balances.php:82
3846
  msgid "The file does not exist, please try again."
3847
  msgstr ""
3848
 
3849
+ #: ../includes/importers/mycred-log-entries.php:127 ../includes/importers/mycred-balances.php:145
3850
  msgid "The CSV is invalid."
3851
  msgstr ""
3852
 
3858
  msgid "Import log entries from a CSV file."
3859
  msgstr ""
3860
 
3861
+ #: ../includes/importers/mycred-log-entries.php:219 ../includes/importers/mycred-balances.php:237
3862
  msgid ""
3863
  "Before you can upload your import file, you will need to fix the following "
3864
  "error:"
3865
  msgstr ""
3866
 
3867
+ #: ../includes/importers/mycred-log-entries.php:228 ../includes/importers/mycred-balances.php:246
3868
  msgid "Choose a file from your computer:"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/importers/mycred-log-entries.php:234 ../includes/importers/mycred-balances.php:252
3872
  msgid "Maximum size: %s"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/importers/mycred-log-entries.php:239 ../includes/importers/mycred-balances.php:257
3876
  msgid "OR enter path to file:"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/importers/mycred-log-entries.php:246 ../includes/importers/mycred-balances.php:264
3880
  msgid "Delimiter"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/importers/mycred-log-entries.php:252 ../includes/importers/mycred-balances.php:270
3884
  msgid "Upload file and import"
3885
  msgstr ""
3886
 
3887
+ #: ../includes/importers/mycred-balances.php:156
3888
+ msgid ""
3889
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3890
+ "imported. <strong>%d</strong> was skipped."
3891
+ msgstr ""
3892
+
3893
+ #: ../includes/importers/mycred-balances.php:212
3894
+ msgid "Import Balances"
3895
+ msgstr ""
3896
+
3897
+ #: ../includes/importers/mycred-balances.php:229
3898
+ msgid "Import balances from a CSV file."
3899
+ msgstr ""
3900
+
3901
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3902
  msgid "Add-ons"
3903
  msgstr ""
3904
 
3905
+ #: ../modules/mycred-module-addons.php:158
3906
  msgid ""
3907
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3908
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3909
  "let your users buy points for other members."
3910
  msgstr ""
3911
 
3912
+ #: ../modules/mycred-module-addons.php:169
3913
  msgid ""
3914
+ "The coupons add-on allows you to create coupons that users can use to add "
3915
  "points to their accounts."
3916
  msgstr ""
3917
 
3918
+ #: ../modules/mycred-module-addons.php:180
3919
  msgid "Create email notices for any type of myCRED instance."
3920
  msgstr ""
3921
 
3922
+ #: ../modules/mycred-module-addons.php:191
3923
  msgid ""
3924
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3925
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3926
  "Bookings: Event Espresso and Events Manager (free & pro)."
3927
  msgstr ""
3928
 
3929
+ #: ../modules/mycred-module-addons.php:202
3930
  msgid "Create pop-up notifications for when users gain or loose points."
3931
  msgstr ""
3932
 
3933
+ #: ../modules/mycred-module-addons.php:214
3934
  msgid ""
3935
  "Create ranks for users reaching a certain number of %_plural% with the option "
3936
  "to add logos for each rank."
3937
  msgstr ""
3938
 
3939
+ #: ../modules/mycred-module-addons.php:225
3940
  msgid ""
3941
  "This add-on allows you to sell posts, pages or any public post types on your "
3942
  "website. You can either sell the entire content or using our shortcode, sell "
3943
  "parts of your content allowing you to offer \"teasers\"."
3944
  msgstr ""
3945
 
3946
+ #: ../modules/mycred-module-addons.php:236
3947
  msgid ""
3948
  "Allow your users to send or \"donate\" points to other members by either using "
3949
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3950
  msgstr ""
3951
 
3952
+ #: ../modules/mycred-module-addons.php:272
3953
  msgid "%s Add-ons"
3954
  msgstr ""
3955
 
3956
+ #: ../modules/mycred-module-addons.php:278
3957
  msgid "Add-on Activated"
3958
  msgstr ""
3959
 
3960
+ #: ../modules/mycred-module-addons.php:281
3961
  msgid "Add-on Deactivated"
3962
  msgstr ""
3963
 
3964
+ #: ../modules/mycred-module-addons.php:285
3965
  msgid "Add-ons can expand your current installation with further features."
3966
  msgstr ""
3967
 
3968
+ #: ../modules/mycred-module-addons.php:306
3969
  msgid "You can find more add-ons in our %s."
3970
  msgstr ""
3971
 
3972
+ #: ../modules/mycred-module-addons.php:306
3973
  msgid "online store"
3974
  msgstr ""
3975
 
3976
+ #: ../modules/mycred-module-addons.php:327
3977
  msgid "Deactivate Add-on"
3978
  msgstr ""
3979
 
3980
+ #: ../modules/mycred-module-addons.php:328
3981
  msgid "Deactivate"
3982
  msgstr ""
3983
 
3984
+ #: ../modules/mycred-module-addons.php:335
3985
  msgid "Activate Add-on"
3986
  msgstr ""
3987
 
3988
+ #: ../modules/mycred-module-addons.php:336
3989
  msgid "Activate"
3990
  msgstr ""
3991
 
3992
+ #: ../modules/mycred-module-addons.php:352
3993
  msgid "Version"
3994
  msgstr ""
3995
 
3996
+ #: ../modules/mycred-module-addons.php:356
3997
  msgid "By"
3998
  msgstr ""
3999
 
4000
+ #: ../modules/mycred-module-addons.php:364
4001
  msgid "Get Pro"
4002
  msgstr ""
4003
 
4155
  "depending on their actions around your website."
4156
  msgstr ""
4157
 
4158
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2199 ../modules/mycred-module-hooks.php:2228 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4159
  msgid "Log template"
4160
  msgstr ""
4161
 
4162
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2207 ../modules/mycred-module-hooks.php:2236 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4163
  msgid "Limit"
4164
  msgstr ""
4165
 
4166
+ #: ../modules/mycred-module-hooks.php:632
4167
  msgid "%plural% for Posts"
4168
  msgstr ""
4169
 
4170
+ #: ../modules/mycred-module-hooks.php:645
4171
  msgid "%plural% for Pages"
4172
  msgstr ""
4173
 
4174
+ #: ../modules/mycred-module-hooks.php:681
4175
  msgid "%plural% for %s"
4176
  msgstr ""
4177
 
4178
+ #: ../modules/mycred-module-hooks.php:1053
4179
  msgid ""
4180
  "%plural% are only awarded when your website has been synced with the Disqus "
4181
  "server!"
4182
  msgstr ""
4183
 
4184
+ #: ../modules/mycred-module-hooks.php:1055
4185
  msgid "Approved Comment"
4186
  msgstr ""
4187
 
4188
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
4189
  msgid "Comment Author"
4190
  msgstr ""
4191
 
4192
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
4193
  msgid "Content Author"
4194
  msgstr ""
4195
 
4196
+ #: ../modules/mycred-module-hooks.php:1072
4197
  msgid "Comment Marked SPAM"
4198
  msgstr ""
4199
 
4200
+ #: ../modules/mycred-module-hooks.php:1089
4201
  msgid "Trashed / Unapproved Comments"
4202
  msgstr ""
4203
 
4204
+ #: ../modules/mycred-module-hooks.php:1109
4205
  msgid "Limit per post"
4206
  msgstr ""
4207
 
4208
+ #: ../modules/mycred-module-hooks.php:1111
4209
  msgid ""
4210
  "The number of comments per post that grants %_plural% to the comment author. "
4211
  "Use zero for unlimited."
4212
  msgstr ""
4213
 
4214
+ #: ../modules/mycred-module-hooks.php:1115
4215
  msgid "Limit per day"
4216
  msgstr ""
4217
 
4218
+ #: ../modules/mycred-module-hooks.php:1117
4219
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4220
  msgstr ""
4221
 
4222
+ #: ../modules/mycred-module-hooks.php:1122
4223
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4224
  msgstr ""
4225
 
4226
+ #: ../modules/mycred-module-hooks.php:1193
4227
  msgid "Once for each unique URL"
4228
  msgstr ""
4229
 
4230
+ #: ../modules/mycred-module-hooks.php:1194
4231
  msgid "Once for each unique link id"
4232
  msgstr ""
4233
 
4234
+ #: ../modules/mycred-module-hooks.php:1386
4235
  msgid ""
4236
  "The default amount to award for clicking on links. You can override this in the "
4237
  "shortcode."
4238
  msgstr ""
4239
 
4240
+ #: ../modules/mycred-module-hooks.php:1393
4241
  msgid "Custom tags: %url%, %title% or %id%."
4242
  msgstr ""
4243
 
4244
+ #: ../modules/mycred-module-hooks.php:1404 ../modules/mycred-module-hooks.php:2310
4245
  msgid "Note!"
4246
  msgstr ""
4247
 
4248
+ #: ../modules/mycred-module-hooks.php:1404
4249
  msgid ""
4250
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4251
  "generate one automatically based on the value set under href. If you are using "
4252
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4253
  msgstr ""
4254
 
4255
+ #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4256
  msgid "Available Shortcode"
4257
  msgstr ""
4258
 
4259
+ #: ../modules/mycred-module-hooks.php:1726
4260
  msgid "Amount to award for viewing videos."
4261
  msgstr ""
4262
 
4263
+ #: ../modules/mycred-module-hooks.php:1736
4264
  msgid "Award Logic"
4265
  msgstr ""
4266
 
4267
+ #: ../modules/mycred-module-hooks.php:1738
4268
  msgid "Select when %_plural% should be awarded or deducted."
4269
  msgstr ""
4270
 
4271
+ #: ../modules/mycred-module-hooks.php:1739
4272
  msgid "Play - As soon as video starts playing."
4273
  msgstr ""
4274
 
4275
+ #: ../modules/mycred-module-hooks.php:1740
4276
  msgid "Full - First when the entire video has played."
4277
  msgstr ""
4278
 
4279
+ #: ../modules/mycred-module-hooks.php:1741
4280
  msgid "Interval - For each x number of seconds watched."
4281
  msgstr ""
4282
 
4283
+ #: ../modules/mycred-module-hooks.php:1746
4284
  msgid "Number of seconds"
4285
  msgstr ""
4286
 
4287
+ #: ../modules/mycred-module-hooks.php:1753
4288
  msgid "Leniency"
4289
  msgstr ""
4290
 
4291
+ #: ../modules/mycred-module-hooks.php:1755
4292
  msgid ""
4293
  "The maximum percentage a users view of a movie can differ from the actual "
4294
  "length."
4295
  msgstr ""
4296
 
4297
+ #: ../modules/mycred-module-hooks.php:1758
4298
  msgid ""
4299
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4300
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4301
  "play back errors."
4302
  msgstr ""
4303
 
4304
+ #: ../modules/mycred-module-hooks.php:1826
4305
  msgid "Affiliate Program"
4306
  msgstr ""
4307
 
4308
+ #: ../modules/mycred-module-hooks.php:1835
4309
  msgid "Per Day"
4310
  msgstr ""
4311
 
4312
+ #: ../modules/mycred-module-hooks.php:1942
4313
  msgid "Link"
4314
  msgstr ""
4315
 
4316
+ #: ../modules/mycred-module-hooks.php:2193
4317
  msgid "Referring Visitors"
4318
  msgstr ""
4319
 
4320
+ #: ../modules/mycred-module-hooks.php:2217 ../modules/mycred-module-hooks.php:2246
4321
  msgid "The number of referrals each member can make. Use zero for unlimited."
4322
  msgstr ""
4323
 
4324
+ #: ../modules/mycred-module-hooks.php:2221 ../modules/mycred-module-hooks.php:2250
4325
  msgid "Referring Signups"
4326
  msgstr ""
4327
 
4328
+ #: ../modules/mycred-module-hooks.php:2225
4329
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4330
  msgstr ""
4331
 
4332
+ #: ../modules/mycred-module-hooks.php:2252
4333
  msgid "Registrations are disabled."
4334
  msgstr ""
4335
 
4336
+ #: ../modules/mycred-module-hooks.php:2259
4337
  msgid "Referral Links"
4338
  msgstr ""
4339
 
4340
+ #: ../modules/mycred-module-hooks.php:2263
4341
  msgid "Assign numeric referral IDs to each user."
4342
  msgstr ""
4343
 
4344
+ #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:2270
4345
  msgid "Example"
4346
  msgstr ""
4347
 
4348
+ #: ../modules/mycred-module-hooks.php:2269
4349
  msgid "Assign usernames as IDs for each user."
4350
  msgstr ""
4351
 
4352
+ #: ../modules/mycred-module-hooks.php:2273
4353
  msgid "IP Limit"
4354
  msgstr ""
4355
 
4356
+ #: ../modules/mycred-module-hooks.php:2277
4357
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4358
  msgstr ""
4359
 
4360
+ #: ../modules/mycred-module-hooks.php:2281 ../modules/mycred-module-hooks.php:2314
4361
  msgid "BuddyPress Profile"
4362
  msgstr ""
4363
 
4364
+ #: ../modules/mycred-module-hooks.php:2284
4365
  msgid "Insert Link in users Profile"
4366
  msgstr ""
4367
 
4368
+ #: ../modules/mycred-module-hooks.php:2285
4369
  msgid ""
4370
  "Option to inser the referral link in users profiles. Links will only be visible "
4371
  "to users viewing their own profiles or administrators."
4372
  msgstr ""
4373
 
4374
+ #: ../modules/mycred-module-hooks.php:2291
4375
  msgid "Leave empty to hide."
4376
  msgstr ""
4377
 
4378
+ #: ../modules/mycred-module-hooks.php:2294
4379
  msgid "Description"
4380
  msgstr ""
4381
 
4382
+ #: ../modules/mycred-module-hooks.php:2295
4383
  msgid "Optional description to insert under the link."
4384
  msgstr ""
4385
 
4386
+ #: ../modules/mycred-module-hooks.php:2307
4387
  msgid "Profile Positioning"
4388
  msgstr ""
4389
 
4390
+ #: ../modules/mycred-module-hooks.php:2309
4391
  msgid ""
4392
  "You can move around the referral link on your users profile by changing the "
4393
+ "position. Increase to move up, decrease to move down."
4394
  msgstr ""
4395
 
4396
+ #: ../modules/mycred-module-hooks.php:2310
4397
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4398
  msgstr ""
4399
 
4400
+ #: ../modules/mycred-module-hooks.php:2316
4401
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4402
  msgstr ""
4403
 
4404
+ #: ../modules/mycred-module-hooks.php:2324
4405
  msgid "Available Shortcodes"
4406
  msgstr ""
4407
 
4408
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4409
  msgid "Access denied for this action"
4410
  msgstr ""
4411
 
4412
+ #: ../modules/mycred-module-log.php:192
4413
  msgid "Row Deleted"
4414
  msgstr ""
4415
 
4416
+ #: ../modules/mycred-module-log.php:219
4417
  msgid "Log entry not found"
4418
  msgstr ""
4419
 
4420
+ #: ../modules/mycred-module-log.php:232
4421
  msgid "Entry Updated"
4422
  msgstr ""
4423
 
4424
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:424
4425
  msgid "Entries"
4426
  msgstr ""
4427
 
4428
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:392 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:558
4429
  msgid "Export"
4430
  msgstr ""
4431
 
4432
+ #: ../modules/mycred-module-log.php:311
4433
  msgid "Search results for"
4434
  msgstr ""
4435
 
4436
+ #: ../modules/mycred-module-log.php:386
4437
  msgid "%s Log"
4438
  msgstr ""
4439
 
4440
+ #: ../modules/mycred-module-log.php:511
4441
  msgid "Edit"
4442
  msgstr ""
4443
 
4444
+ #: ../modules/mycred-module-log.php:556
4445
  msgid "Current Log Entry"
4446
  msgstr ""
4447
 
4448
+ #: ../modules/mycred-module-log.php:558
4449
  msgid "The current saved log entry"
4450
  msgstr ""
4451
 
4452
+ #: ../modules/mycred-module-log.php:561
4453
  msgid "Adjust Log Entry"
4454
  msgstr ""
4455
 
4456
+ #: ../modules/mycred-module-log.php:563
4457
  msgid "The new log entry"
4458
  msgstr ""
4459
 
4460
+ #: ../modules/mycred-module-log.php:566
4461
  msgid "Update Log Entry"
4462
  msgstr ""
4463
 
4464
+ #: ../modules/mycred-module-log.php:598
4465
  msgid "My %s History"
4466
  msgstr ""
4467
 
4468
+ #: ../modules/mycred-module-settings.php:64 ../modules/mycred-module-settings.php:105
4469
  msgid "Missing point type"
4470
  msgstr ""
4471
 
4472
+ #: ../modules/mycred-module-settings.php:128
4473
  msgid "Accounts successfully reset"
4474
  msgstr ""
4475
 
4476
+ #: ../modules/mycred-module-settings.php:168
4477
  msgid "No users found to export"
4478
  msgstr ""
4479
 
4480
+ #: ../modules/mycred-module-settings.php:314
4481
  msgid "Facebook"
4482
  msgstr ""
4483
 
4484
+ #: ../modules/mycred-module-settings.php:315
4485
  msgid "Google Plus"
4486
  msgstr ""
4487
 
4488
+ #: ../modules/mycred-module-settings.php:318
4489
  msgid "%s Settings"
4490
  msgstr ""
4491
 
4492
+ #: ../modules/mycred-module-settings.php:321
4493
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4494
  msgstr ""
4495
 
4496
+ #: ../modules/mycred-module-settings.php:326
4497
  msgid "Core Settings"
4498
  msgstr ""
4499
 
4500
+ #: ../modules/mycred-module-settings.php:328
4501
  msgid "Name"
4502
  msgstr ""
4503
 
4504
+ #: ../modules/mycred-module-settings.php:333
4505
  msgid "Accessible though the %singular% template tag."
4506
  msgstr ""
4507
 
4508
+ #: ../modules/mycred-module-settings.php:338
4509
  msgid "Accessible though the %plural% template tag."
4510
  msgstr ""
4511
 
4512
+ #: ../modules/mycred-module-settings.php:341
4513
  msgid "Tip"
4514
  msgstr ""
4515
 
4516
+ #: ../modules/mycred-module-settings.php:341
4517
  msgid ""
4518
  "Adding an underscore at the beginning of template tag for names will return "
4519
  "them in lowercase. i.e. %_singular%"
4520
  msgstr ""
4521
 
4522
+ #: ../modules/mycred-module-settings.php:359
4523
  msgid "Separator"
4524
  msgstr ""
4525
 
4526
+ #: ../modules/mycred-module-settings.php:366
4527
  msgid "Edit Settings"
4528
  msgstr ""
4529
 
4530
+ #: ../modules/mycred-module-settings.php:368 ../modules/mycred-module-settings.php:373
4531
  msgid "Capability to check for."
4532
  msgstr ""
4533
 
4534
+ #: ../modules/mycred-module-settings.php:371
4535
  msgid "Edit Users %plural%"
4536
  msgstr ""
4537
 
4538
+ #: ../modules/mycred-module-settings.php:395
4539
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4540
  msgstr ""
4541
 
4542
+ #: ../modules/mycred-module-settings.php:415
4543
  msgid "Management"
4544
  msgstr ""
4545
 
4546
+ #: ../modules/mycred-module-settings.php:417
4547
  msgid "The Log"
4548
  msgstr ""
4549
 
4550
+ #: ../modules/mycred-module-settings.php:420
4551
  msgid "Table Name"
4552
  msgstr ""
4553
 
4554
+ #: ../modules/mycred-module-settings.php:429
4555
  msgid "Empty Log"
4556
  msgstr ""
4557
 
4558
+ #: ../modules/mycred-module-settings.php:435
4559
  msgid "User Meta Key"
4560
  msgstr ""
4561
 
4562
+ #: ../modules/mycred-module-settings.php:444
4563
  msgid "Set all to zero"
4564
  msgstr ""
4565
 
4566
+ #: ../modules/mycred-module-settings.php:444
4567
  msgid "CSV Export"
4568
  msgstr ""
4569
 
4570
+ #: ../modules/mycred-module-settings.php:465
4571
  msgid "Default"
4572
  msgstr ""
4573
 
4574
+ #: ../modules/mycred-module-settings.php:468 ../modules/mycred-module-settings.php:487 ../modules/mycred-module-settings.php:509
4575
  msgid "Meta Key"
4576
  msgstr ""
4577
 
4578
+ #: ../modules/mycred-module-settings.php:506
4579
  msgid "Add New Type"
4580
  msgstr ""
4581
 
4582
+ #: ../modules/mycred-module-settings.php:511
4583
  msgid "A unique ID for this type."
4584
  msgstr ""
4585
 
4586
+ #: ../modules/mycred-module-settings.php:516
4587
  msgid "Menu and page title."
4588
  msgstr ""
4589
 
4590
+ #: ../modules/mycred-module-settings.php:519
4591
  msgid "The meta key will define where your users balances are saved."
4592
  msgstr ""
4593
 
4594
+ #: ../modules/mycred-module-settings.php:536
4595
  msgid "Identify users by"
4596
  msgstr ""
4597
 
4598
+ #: ../modules/mycred-module-settings.php:542
4599
  msgid "User Email"
4600
  msgstr ""
4601
 
4602
+ #: ../modules/mycred-module-settings.php:543
4603
  msgid "User Login"
4604
  msgstr ""
4605
 
4606
+ #: ../modules/mycred-module-settings.php:550
4607
  msgid ""
4608
  "Use ID if you intend to use this export as a backup of your current site while "
4609
  "Email is recommended if you want to export to a different site."
4610
  msgstr ""
4611
 
4612
+ #: ../modules/mycred-module-settings.php:553
4613
  msgid "Import Log Entry"
4614
  msgstr ""
4615
 
4616
+ #: ../modules/mycred-module-settings.php:555
4617
  msgid ""
4618
  "Optional log entry to use if you intend to import this file in a different %s "
4619
  "installation."
4822
  msgstr ""
4823
 
4824
  #: ../plugins/mycred-hook-buddypress.php:377
4825
+ msgid "Daily limit. Use zero for unlimited."
4826
  msgstr ""
4827
 
4828
  #: ../plugins/mycred-hook-buddypress.php:387
lang/mycred.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
- "POT-Revision-Date: Mon Mar 24 2014 18:43:43 GMT+0100 (CET)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: LANGUAGE <support@mycred.me>\n"
@@ -25,103 +25,103 @@ msgstr ""
25
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-content/plugins/mycred\n"
26
  "X-Poedit-SearchPath-1: ."
27
 
28
- #: ../mycred.php:395
29
  msgid "Balance"
30
  msgstr ""
31
 
32
- #: ../mycred.php:420
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
- #: ../mycred.php:472
37
  msgid "No balances available."
38
  msgstr ""
39
 
40
- #: ../mycred.php:518
41
  msgid "About %s"
42
  msgstr ""
43
 
44
- #: ../mycred.php:527 ../includes/mycred-about.php:149
45
  msgid "Awesome People"
46
  msgstr ""
47
 
48
- #: ../mycred.php:612 ../mycred.php:636 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:881 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:533
49
  msgid "Processing..."
50
  msgstr ""
51
 
52
- #: ../mycred.php:613
53
  msgid ""
54
  "Warning! All entries in your log will be permanently removed! This can not be "
55
  "undone!"
56
  msgstr ""
57
 
58
- #: ../mycred.php:614
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr ""
63
 
64
- #: ../mycred.php:615
65
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
66
  msgstr ""
67
 
68
- #: ../mycred.php:616
69
  msgid "Done!"
70
  msgstr ""
71
 
72
- #: ../mycred.php:617 ../mycred.php:635 ../mycred.php:653
73
  msgid "Close"
74
  msgstr ""
75
 
76
- #: ../mycred.php:618
77
  msgid "Export users %plural%"
78
  msgstr ""
79
 
80
- #: ../mycred.php:634
81
- msgid "Edit Users %s balance"
82
  msgstr ""
83
 
84
- #: ../mycred.php:652
85
  msgid "Edit Log Entry"
86
  msgstr ""
87
 
88
- #: ../mycred.php:654
89
  msgid "Updating..."
90
  msgstr ""
91
 
92
- #: ../mycred.php:656
93
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
94
  msgstr ""
95
 
96
- #: ../mycred.php:657
97
  msgid "Log entry updated"
98
  msgstr ""
99
 
100
- #: ../mycred.php:709 ../mycred.php:730 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr ""
103
 
104
- #: ../mycred.php:711 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:176 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
105
  msgid "Settings"
106
  msgstr ""
107
 
108
- #: ../mycred.php:734 ../modules/mycred-module-addons.php:362
109
  msgid "About"
110
  msgstr ""
111
 
112
- #: ../mycred.php:735
113
  msgid "Tutorials"
114
  msgstr ""
115
 
116
- #: ../mycred.php:736
117
  msgid "Codex"
118
  msgstr ""
119
 
120
- #: ../mycred.php:737
121
  msgid "Store"
122
  msgstr ""
123
 
124
- #: ../mycred.php:751
125
  msgid ""
126
  "Make sure to backup your database and files before updating, in case anything "
127
  "goes wrong!"
@@ -135,7 +135,7 @@ msgstr ""
135
  msgid "This Hook has no settings"
136
  msgstr ""
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1197
139
  msgid "No limit"
140
  msgstr ""
141
 
@@ -155,7 +155,7 @@ msgstr ""
155
  msgid "Once per day (reset at midnight)"
156
  msgstr ""
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr ""
161
 
@@ -167,19 +167,19 @@ msgstr ""
167
  msgid "Surprise"
168
  msgstr ""
169
 
170
- #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:104
171
  msgid "click to close"
172
  msgstr ""
173
 
174
- #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:105
175
  msgid "click to open"
176
  msgstr ""
177
 
178
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:476
179
  msgid "Settings Updated"
180
  msgstr ""
181
 
182
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:148
183
  msgid "Banking"
184
  msgstr ""
185
 
@@ -205,7 +205,7 @@ msgid ""
205
  "of times you want this payout to run (cycles)."
206
  msgstr ""
207
 
208
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:461 ../addons/buy-creds/myCRED-addon-buy-creds.php:591 ../includes/mycred-network.php:150 ../modules/mycred-module-addons.php:268 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:324 ../modules/mycred-module-log.php:584 ../modules/mycred-module-settings.php:299
209
  msgid "Access Denied"
210
  msgstr ""
211
 
@@ -213,7 +213,7 @@ msgstr ""
213
  msgid "%s Banking"
214
  msgstr ""
215
 
216
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:149
217
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
218
  msgstr ""
219
 
@@ -225,7 +225,7 @@ msgstr ""
225
  msgid "Warning! This add-on requires WP - Cron to work."
226
  msgstr ""
227
 
228
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:537 ../modules/mycred-module-hooks.php:182
229
  msgid "Enable"
230
  msgstr ""
231
 
@@ -293,7 +293,7 @@ msgstr ""
293
  msgid "The minimum requires balance for interest to apply."
294
  msgstr ""
295
 
296
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:356 ../addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:516 ../modules/mycred-module-hooks.php:1396 ../modules/mycred-module-hooks.php:1736 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
297
  msgid "Log Template"
298
  msgstr ""
299
 
@@ -320,7 +320,7 @@ msgstr ""
320
  msgid "Pay Users"
321
  msgstr ""
322
 
323
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:641 ../addons/buy-creds/myCRED-addon-buy-creds.php:1138 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:345 ../includes/mycred-admin.php:456
324
  msgid "Amount"
325
  msgstr ""
326
 
@@ -328,7 +328,7 @@ msgstr ""
328
  msgid "Can not be zero."
329
  msgstr ""
330
 
331
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1751
332
  msgid "Interval"
333
  msgstr ""
334
 
@@ -369,7 +369,7 @@ msgid ""
369
  "it gets re-activated. Set cycles to zero to reset."
370
  msgstr ""
371
 
372
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:562 ../modules/mycred-module-settings.php:380
373
  msgid "Excludes"
374
  msgstr ""
375
 
@@ -383,239 +383,239 @@ msgstr ""
383
  msgid "Payment Gateways"
384
  msgstr ""
385
 
386
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:176
387
  msgid "buyCRED Purchase Log"
388
  msgstr ""
389
 
390
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:177 ../addons/buy-creds/myCRED-addon-buy-creds.php:405 ../addons/buy-creds/myCRED-addon-buy-creds.php:472
391
  msgid "Purchase Log"
392
  msgstr ""
393
 
394
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
395
  msgid "Payments"
396
  msgstr ""
397
 
398
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:295
399
  msgid "Please login to purchase %_plural%"
400
  msgstr ""
401
 
402
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310
403
  msgid "Gift purchase from %display_name%."
404
  msgstr ""
405
 
406
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326 ../includes/mycred-overview.php:96 ../includes/mycred-overview.php:103 ../modules/mycred-module-addons.php:159
407
  msgid "buyCRED"
408
  msgstr ""
409
 
410
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:328 ../addons/ranks/myCRED-addon-ranks.php:608
411
  msgid "Minimum %plural%"
412
  msgstr ""
413
 
414
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:332
415
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
416
  msgstr ""
417
 
418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:337 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
419
  msgid "Point Type"
420
  msgstr ""
421
 
422
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349
423
  msgid "Login Template"
424
  msgstr ""
425
 
426
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353
427
  msgid "Content to show when a user is not logged in."
428
  msgstr ""
429
 
430
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:363
431
  msgid "Thank You Page"
432
  msgstr ""
433
 
434
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:366 ../addons/buy-creds/myCRED-addon-buy-creds.php:387
435
  msgid "Custom URL"
436
  msgstr ""
437
 
438
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:371 ../addons/buy-creds/myCRED-addon-buy-creds.php:392
439
  msgid "Page"
440
  msgstr ""
441
 
442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:384
443
  msgid "Cancellation Page"
444
  msgstr ""
445
 
446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:407
447
  msgid "Show seperate log for %_plural% purchases."
448
  msgstr ""
449
 
450
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:409
451
  msgid "Gifting"
452
  msgstr ""
453
 
454
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:411
455
  msgid "Allow users to buy %_plural% for other users."
456
  msgstr ""
457
 
458
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:412
459
  msgid "Allow users to buy %_plural% for content authors."
460
  msgstr ""
461
 
462
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472
463
  msgid "%s Payment Gateways"
464
  msgstr ""
465
 
466
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:472 ../addons/buy-creds/myCRED-addon-buy-creds.php:647
467
  msgid "buyCRED Settings"
468
  msgstr ""
469
 
470
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:478
471
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
472
  msgstr ""
473
 
474
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:485
475
  msgid "Last Payment Notification"
476
  msgstr ""
477
 
478
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:487
479
  msgid ""
480
  "Here you can view the last payment confirmation that was sent to buyCRED for "
481
  "processing."
482
  msgstr ""
483
 
484
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
485
  msgid "Details"
486
  msgstr ""
487
 
488
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:493 ../modules/mycred-module-log.php:550
489
  msgid "Time"
490
  msgstr ""
491
 
492
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497 ../addons/buy-creds/myCRED-addon-buy-creds.php:638 ../includes/mycred-overview.php:164 ../includes/mycred-overview.php:171 ../modules/mycred-module-addons.php:192
493
  msgid "Gateway"
494
  msgstr ""
495
 
496
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501 ../addons/buy-creds/myCRED-addon-buy-creds.php:643
497
  msgid "Transaction ID"
498
  msgstr ""
499
 
500
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505
501
  msgid "Outcome"
502
  msgstr ""
503
 
504
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509
505
  msgid "Gateway Log"
506
  msgstr ""
507
 
508
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
509
  msgid "No recorded calls found."
510
  msgstr ""
511
 
512
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:530
513
  msgid "Test Mode"
514
  msgstr ""
515
 
516
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:532
517
  msgid "Enabled"
518
  msgstr ""
519
 
520
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:535
521
  msgid "Disabled"
522
  msgstr ""
523
 
524
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
525
  msgid "Sandbox Mode"
526
  msgstr ""
527
 
528
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
529
  msgid "Enable for test purchases."
530
  msgstr ""
531
 
532
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:565
533
  msgid "Update Gateway Settings"
534
  msgstr ""
535
 
536
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:639 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:451 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:549
537
  msgid "User"
538
  msgstr ""
539
 
540
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640 ../includes/mycred-log.php:650
541
  msgid "Date"
542
  msgstr ""
543
 
544
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
545
  msgid "Payed"
546
  msgstr ""
547
 
548
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
549
  msgid "<strong>buy</strong>CRED Purchase Log"
550
  msgstr ""
551
 
552
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
553
  msgid "Gateway Settings"
554
  msgstr ""
555
 
556
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651
557
  msgid ""
558
  "Only completed purchases are shown here. Purchases that were cancelled or "
559
  "failed are not logged."
560
  msgstr ""
561
 
562
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:760 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:471
563
  msgid "User Missing"
564
  msgstr ""
565
 
566
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:817 ../addons/sell-content/myCRED-addon-sell-content.php:1110
567
  msgid "No purchases found"
568
  msgstr ""
569
 
570
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:889 ../addons/buy-creds/myCRED-addon-buy-creds.php:986
571
  msgid "This Add-on needs to setup before you can use this shortcode."
572
  msgstr ""
573
 
574
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
575
  msgid "No gateways installed."
576
  msgstr ""
577
 
578
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:908 ../addons/buy-creds/myCRED-addon-buy-creds.php:1005
579
  msgid "Gateway does not exist."
580
  msgstr ""
581
 
582
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:944
583
  msgid "Yourself"
584
  msgstr ""
585
 
586
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1006
587
  msgid "No active gateways found."
588
  msgstr ""
589
 
590
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1007
591
  msgid "The selected gateway is not active."
592
  msgstr ""
593
 
594
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1043
595
  msgid "Buy with %gateway%"
596
  msgstr ""
597
 
598
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1049 ../addons/sell-content/myCRED-addon-sell-content.php:44
599
  msgid "Buy Now"
600
  msgstr ""
601
 
602
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1089
603
  msgid "No users found"
604
  msgstr ""
605
 
606
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1099
607
  msgid "To"
608
  msgstr ""
609
 
610
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1116
611
  msgid "Select Amount"
612
  msgstr ""
613
 
614
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1140
615
  msgid "min."
616
  msgstr ""
617
 
618
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1148
619
  msgid "Select Gateway"
620
  msgstr ""
621
 
@@ -655,11 +655,11 @@ msgstr ""
655
  msgid "Cancel purchase"
656
  msgstr ""
657
 
658
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:338 ../includes/mycred-admin.php:444
659
  msgid "required"
660
  msgstr ""
661
 
662
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:340 ../includes/mycred-admin.php:446
663
  msgid "optional"
664
  msgstr ""
665
 
@@ -767,19 +767,19 @@ msgstr ""
767
  msgid "Validating sale"
768
  msgstr ""
769
 
770
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
771
  msgid "Token mismatch"
772
  msgstr ""
773
 
774
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
775
  msgid "Price mismatch"
776
  msgstr ""
777
 
778
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
779
  msgid "Currency mismatch"
780
  msgstr ""
781
 
782
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
783
  msgid "Duplicate transaction"
784
  msgstr ""
785
 
@@ -889,11 +889,11 @@ msgstr ""
889
  msgid "Full Notifications"
890
  msgstr ""
891
 
892
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:186 ../includes/mycred-network.php:200
893
  msgid "No"
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:182 ../includes/mycred-network.php:196
897
  msgid "Yes"
898
  msgstr ""
899
 
@@ -1051,7 +1051,7 @@ msgstr ""
1051
  msgid "Checkout Page"
1052
  msgstr ""
1053
 
1054
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:751 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:582 ../modules/mycred-module-hooks.php:2296
1055
  msgid "Title"
1056
  msgstr ""
1057
 
@@ -1136,7 +1136,7 @@ msgid ""
1136
  "address and click validate."
1137
  msgstr ""
1138
 
1139
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:186 ../includes/mycred-overview.php:193 ../modules/mycred-module-addons.php:170
1140
  msgid "Coupons"
1141
  msgstr ""
1142
 
@@ -1172,7 +1172,7 @@ msgstr ""
1172
  msgid "No coupons found in Trash"
1173
  msgstr ""
1174
 
1175
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:181
1176
  msgid "Email Notices"
1177
  msgstr ""
1178
 
@@ -1208,7 +1208,7 @@ msgstr ""
1208
  msgid "Usage"
1209
  msgstr ""
1210
 
1211
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1111 ../modules/mycred-module-hooks.php:1403
1212
  msgid "Limits"
1213
  msgstr ""
1214
 
@@ -1220,7 +1220,7 @@ msgstr ""
1220
  msgid "not yet used"
1221
  msgstr ""
1222
 
1223
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1841
1224
  msgid "Total"
1225
  msgstr ""
1226
 
@@ -1404,7 +1404,7 @@ msgstr ""
1404
  msgid "No email notices found in Trash"
1405
  msgstr ""
1406
 
1407
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/email-notices/myCRED-addon-email-notices.php:822 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:590
1408
  msgid "General"
1409
  msgstr ""
1410
 
@@ -1620,137 +1620,65 @@ msgstr ""
1620
  msgid "CSS Styling"
1621
  msgstr ""
1622
 
1623
- #: ../addons/email-notices/myCRED-addon-email-notices.php:815
1624
  msgid "Site Related"
1625
  msgstr ""
1626
 
1627
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1628
  msgid "Your websites title"
1629
  msgstr ""
1630
 
1631
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1632
  msgid "Your websites address"
1633
  msgstr ""
1634
 
1635
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1636
  msgid "Your websites tagline (description)"
1637
  msgstr ""
1638
 
1639
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1640
  msgid "Your websites admin email"
1641
  msgstr ""
1642
 
1643
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1644
  msgid "Total number of blog members"
1645
  msgstr ""
1646
 
1647
- #: ../addons/email-notices/myCRED-addon-email-notices.php:823
1648
- msgid "Points name in singular format"
1649
- msgstr ""
1650
-
1651
- #: ../addons/email-notices/myCRED-addon-email-notices.php:824
1652
- msgid "Points name in plural"
1653
- msgstr ""
1654
-
1655
- #: ../addons/email-notices/myCRED-addon-email-notices.php:825
1656
- msgid "Login URL"
1657
- msgstr ""
1658
-
1659
- #: ../addons/email-notices/myCRED-addon-email-notices.php:828 ../includes/mycred-functions.php:597
1660
- msgid "User Related"
1661
- msgstr ""
1662
-
1663
- #: ../addons/email-notices/myCRED-addon-email-notices.php:829
1664
- msgid "The users ID"
1665
- msgstr ""
1666
-
1667
- #: ../addons/email-notices/myCRED-addon-email-notices.php:830
1668
- msgid "The users login name (username)"
1669
- msgstr ""
1670
-
1671
- #: ../addons/email-notices/myCRED-addon-email-notices.php:831
1672
- msgid "The users display name"
1673
- msgstr ""
1674
-
1675
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
1676
- msgid "The users profile address"
1677
- msgstr ""
1678
-
1679
- #: ../addons/email-notices/myCRED-addon-email-notices.php:833
1680
- msgid "Link to the users profile address with their display name as title"
1681
- msgstr ""
1682
-
1683
- #: ../addons/email-notices/myCRED-addon-email-notices.php:834
1684
- msgid "The users current balance unformated"
1685
- msgstr ""
1686
-
1687
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
1688
- msgid "The users current balance formated"
1689
- msgstr ""
1690
-
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:837 ../includes/mycred-functions.php:604
1692
- msgid "Post Related"
1693
- msgstr ""
1694
-
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
1696
- msgid "Post Title"
1697
- msgstr ""
1698
-
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:839
1700
- msgid "Post URL address"
1701
- msgstr ""
1702
-
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
1704
- msgid "Link to post Post title"
1705
- msgstr ""
1706
-
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:841
1708
- msgid "The post type"
1709
- msgstr ""
1710
-
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917 ../addons/email-notices/myCRED-addon-email-notices.php:920
1712
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1713
  msgstr ""
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:918 ../addons/ranks/myCRED-addon-ranks.php:513
1716
- msgid "Custom field updated"
1717
- msgstr ""
1718
-
1719
- #: ../addons/email-notices/myCRED-addon-email-notices.php:919 ../addons/ranks/myCRED-addon-ranks.php:514
1720
- msgid "Custom filed updated"
1721
- msgstr ""
1722
-
1723
- #: ../addons/email-notices/myCRED-addon-email-notices.php:922
1724
  msgid "Email Notice Activated"
1725
  msgstr ""
1726
 
1727
- #: ../addons/email-notices/myCRED-addon-email-notices.php:923
1728
  msgid "Email Notice Saved"
1729
  msgstr ""
1730
 
1731
- #: ../addons/email-notices/myCRED-addon-email-notices.php:924
1732
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1733
  msgstr ""
1734
 
1735
- #: ../addons/email-notices/myCRED-addon-email-notices.php:926
1736
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1737
  msgstr ""
1738
 
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:945
1740
  msgid ""
1741
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1742
  "not yet ready to use this email notice!"
1743
  msgstr ""
1744
 
1745
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1746
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1747
  msgstr ""
1748
 
1749
- #: ../addons/email-notices/myCRED-addon-email-notices.php:949
1750
  msgid "This email notice is active."
1751
  msgstr ""
1752
 
1753
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:452
1754
  msgid "Current Balance"
1755
  msgstr ""
1756
 
@@ -1763,7 +1691,7 @@ msgid "Balance After Purchase"
1763
  msgstr ""
1764
 
1765
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1766
- msgid "<a href=\"%s\">Go Back</a>"
1767
  msgstr ""
1768
 
1769
  #: ../addons/gateway/carts/mycred-marketpress.php:185
@@ -1780,7 +1708,7 @@ msgstr ""
1780
  msgid "Paid"
1781
  msgstr ""
1782
 
1783
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:52 ../includes/mycred-network.php:53 ../plugins/mycred-hook-badgeOS.php:81
1784
  msgid "myCRED"
1785
  msgstr ""
1786
 
@@ -1854,8 +1782,8 @@ msgstr ""
1854
  msgid "Percentage"
1855
  msgstr ""
1856
 
1857
- #: ../addons/gateway/carts/mycred-marketpress.php:412
1858
- msgid "Option to share sales with the product owner. User zero to disable"
1859
  msgstr ""
1860
 
1861
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
@@ -1968,7 +1896,7 @@ msgstr ""
1968
  msgid "Show in Cart and on Checkout Page"
1969
  msgstr ""
1970
 
1971
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:471 ../modules/mycred-module-settings.php:490 ../modules/mycred-module-settings.php:513
1972
  msgid "Label"
1973
  msgstr ""
1974
 
@@ -1976,10 +1904,6 @@ msgstr ""
1976
  msgid "Order Total in %_plural%"
1977
  msgstr ""
1978
 
1979
- #: ../addons/gateway/carts/mycred-woocommerce.php:159
1980
- msgid "Option to share a percentage of the sale with the product owner."
1981
- msgstr ""
1982
-
1983
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1984
  msgid "Log entry template for profit sharing."
1985
  msgstr ""
@@ -2055,12 +1979,6 @@ msgstr ""
2055
  msgid "Payout"
2056
  msgstr ""
2057
 
2058
- #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2059
- msgid ""
2060
- "Option to share a percentage of the sale with the product owner (post author). "
2061
- "User zero to disable."
2062
- msgstr ""
2063
-
2064
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
2065
  msgid "Instructions"
2066
  msgstr ""
@@ -2147,15 +2065,11 @@ msgstr ""
2147
  msgid "Users must be logged in to use this gateway!"
2148
  msgstr ""
2149
 
2150
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2151
- msgid "Option to share sales with the event owner (post author). Use zero to disable."
2152
- msgstr ""
2153
-
2154
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2155
  msgid "Log"
2156
  msgstr ""
2157
 
2158
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:457
2159
  msgid "Log Entry"
2160
  msgstr ""
2161
 
@@ -2185,7 +2099,7 @@ msgstr ""
2185
  msgid "Message to show visitors (users not logged in) on the payment page."
2186
  msgstr ""
2187
 
2188
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:527
2189
  msgid "Update Settings"
2190
  msgstr ""
2191
 
@@ -2229,7 +2143,7 @@ msgstr ""
2229
  msgid "Reject"
2230
  msgstr ""
2231
 
2232
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:509 ../modules/mycred-module-settings.php:475 ../modules/mycred-module-settings.php:494
2233
  msgid "Delete"
2234
  msgstr ""
2235
 
@@ -2255,7 +2169,7 @@ msgstr ""
2255
 
2256
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2257
  msgid ""
2258
- "The percentage of the paid amount to refund if a user cancells their booking. "
2259
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2260
  msgstr ""
2261
 
@@ -2315,7 +2229,7 @@ msgid ""
2315
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2316
  msgstr ""
2317
 
2318
- #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:203
2319
  msgid "Notifications"
2320
  msgstr ""
2321
 
@@ -2363,11 +2277,11 @@ msgstr ""
2363
  msgid "Are you sure you want to re-assign user ranks?"
2364
  msgstr ""
2365
 
2366
- #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:746 ../addons/ranks/myCRED-addon-ranks.php:942 ../modules/mycred-module-addons.php:215
2367
  msgid "Ranks"
2368
  msgstr ""
2369
 
2370
- #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:441 ../addons/ranks/myCRED-addon-ranks.php:457 ../addons/ranks/myCRED-addon-ranks.php:552
2371
  msgid "Rank"
2372
  msgstr ""
2373
 
@@ -2399,233 +2313,233 @@ msgstr ""
2399
  msgid "No ranks found in Trash"
2400
  msgstr ""
2401
 
2402
- #: ../addons/ranks/myCRED-addon-ranks.php:316
2403
  msgid "Completed - Total of %d users effected"
2404
  msgstr ""
2405
 
2406
- #: ../addons/ranks/myCRED-addon-ranks.php:318
2407
  msgid "Log is Empty"
2408
  msgstr ""
2409
 
2410
- #: ../addons/ranks/myCRED-addon-ranks.php:512 ../addons/ranks/myCRED-addon-ranks.php:515
2411
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2412
  msgstr ""
2413
 
2414
- #: ../addons/ranks/myCRED-addon-ranks.php:517
2415
  msgid "Rank Activated"
2416
  msgstr ""
2417
 
2418
- #: ../addons/ranks/myCRED-addon-ranks.php:518
2419
  msgid "Rank Saved"
2420
  msgstr ""
2421
 
2422
- #: ../addons/ranks/myCRED-addon-ranks.php:519
2423
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2424
  msgstr ""
2425
 
2426
- #: ../addons/ranks/myCRED-addon-ranks.php:521
2427
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2428
  msgstr ""
2429
 
2430
- #: ../addons/ranks/myCRED-addon-ranks.php:578 ../addons/ranks/myCRED-addon-ranks.php:631
2431
  msgid "Rank Title"
2432
  msgstr ""
2433
 
2434
- #: ../addons/ranks/myCRED-addon-ranks.php:579
2435
  msgid "Logo"
2436
  msgstr ""
2437
 
2438
- #: ../addons/ranks/myCRED-addon-ranks.php:580
2439
  msgid "Requirement"
2440
  msgstr ""
2441
 
2442
- #: ../addons/ranks/myCRED-addon-ranks.php:581 ../modules/mycred-module-settings.php:438
2443
  msgid "Users"
2444
  msgstr ""
2445
 
2446
- #: ../addons/ranks/myCRED-addon-ranks.php:597
2447
  msgid "No Logo Set"
2448
  msgstr ""
2449
 
2450
- #: ../addons/ranks/myCRED-addon-ranks.php:606 ../addons/ranks/myCRED-addon-ranks.php:611
2451
  msgid "Any Value"
2452
  msgstr ""
2453
 
2454
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2455
  msgid "Maximum %plural%"
2456
  msgstr ""
2457
 
2458
- #: ../addons/ranks/myCRED-addon-ranks.php:644
2459
  msgid "Rank Settings"
2460
  msgstr ""
2461
 
2462
- #: ../addons/ranks/myCRED-addon-ranks.php:666
2463
  msgid "Minimum %plural% to reach this rank"
2464
  msgstr ""
2465
 
2466
- #: ../addons/ranks/myCRED-addon-ranks.php:670
2467
  msgid "Maximum %plural% to be included in this rank"
2468
  msgstr ""
2469
 
2470
- #: ../addons/ranks/myCRED-addon-ranks.php:677
2471
  msgid "All Published Ranks"
2472
  msgstr ""
2473
 
2474
- #: ../addons/ranks/myCRED-addon-ranks.php:683 ../addons/ranks/myCRED-addon-ranks.php:685
2475
  msgid "Not Set"
2476
  msgstr ""
2477
 
2478
- #: ../addons/ranks/myCRED-addon-ranks.php:690
2479
  msgid "No Ranks found"
2480
  msgstr ""
2481
 
2482
- #: ../addons/ranks/myCRED-addon-ranks.php:748
2483
  msgid "Rank Features"
2484
  msgstr ""
2485
 
2486
- #: ../addons/ranks/myCRED-addon-ranks.php:752
2487
  msgid "%plural% requirement"
2488
  msgstr ""
2489
 
2490
- #: ../addons/ranks/myCRED-addon-ranks.php:753
2491
  msgid "Featured Image (Logo)"
2492
  msgstr ""
2493
 
2494
- #: ../addons/ranks/myCRED-addon-ranks.php:754
2495
  msgid "Content"
2496
  msgstr ""
2497
 
2498
- #: ../addons/ranks/myCRED-addon-ranks.php:755
2499
  msgid "Excerpt"
2500
  msgstr ""
2501
 
2502
- #: ../addons/ranks/myCRED-addon-ranks.php:756
2503
  msgid "Comments"
2504
  msgstr ""
2505
 
2506
- #: ../addons/ranks/myCRED-addon-ranks.php:757
2507
  msgid "Page Attributes"
2508
  msgstr ""
2509
 
2510
- #: ../addons/ranks/myCRED-addon-ranks.php:758
2511
  msgid "Custom Fields"
2512
  msgstr ""
2513
 
2514
- #: ../addons/ranks/myCRED-addon-ranks.php:761
2515
  msgid "Public"
2516
  msgstr ""
2517
 
2518
- #: ../addons/ranks/myCRED-addon-ranks.php:765
2519
  msgid ""
2520
  "If you want to create a template archive for each rank, you must select to have "
2521
  "ranks public. Defaults to disabled."
2522
  msgstr ""
2523
 
2524
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2525
  msgid "Rank Basis"
2526
  msgstr ""
2527
 
2528
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2529
  msgid "Users are ranked according to their current balance."
2530
  msgstr ""
2531
 
2532
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2533
  msgid ""
2534
  "Users are ranked according to the total amount of %_plural% they have "
2535
  "accumulated."
2536
  msgstr ""
2537
 
2538
- #: ../addons/ranks/myCRED-addon-ranks.php:778 ../addons/ranks/myCRED-addon-ranks.php:783
2539
  msgid "Calculate Totals"
2540
  msgstr ""
2541
 
2542
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2543
  msgid ""
2544
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2545
  "the users current balance will be used as a starting point."
2546
  msgstr ""
2547
 
2548
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2549
  msgid ""
2550
  "Once a users total has been calculated, they will be assigned to their "
2551
  "appropriate roles. For this reason, it is highly recommended that you first "
2552
  "setup your ranks!"
2553
  msgstr ""
2554
 
2555
- #: ../addons/ranks/myCRED-addon-ranks.php:782
2556
  msgid ""
2557
  "Depending on your log size and number of users this process may take a while. "
2558
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2559
  "is completed!"
2560
  msgstr ""
2561
 
2562
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2563
  msgid "Archive URL"
2564
  msgstr ""
2565
 
2566
- #: ../addons/ranks/myCRED-addon-ranks.php:791
2567
  msgid "Ignored if Ranks are not public"
2568
  msgstr ""
2569
 
2570
- #: ../addons/ranks/myCRED-addon-ranks.php:794
2571
  msgid "Display Order"
2572
  msgstr ""
2573
 
2574
- #: ../addons/ranks/myCRED-addon-ranks.php:801
2575
  msgid "Ascending - Lowest rank to highest"
2576
  msgstr ""
2577
 
2578
- #: ../addons/ranks/myCRED-addon-ranks.php:802
2579
  msgid "Descending - Highest rank to lowest"
2580
  msgstr ""
2581
 
2582
- #: ../addons/ranks/myCRED-addon-ranks.php:811
2583
  msgid ""
2584
  "Select in what order ranks should be displayed in your admin area and/or front "
2585
  "if ranks are \"Public\""
2586
  msgstr ""
2587
 
2588
- #: ../addons/ranks/myCRED-addon-ranks.php:821 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2589
  msgid "Do not show."
2590
  msgstr ""
2591
 
2592
- #: ../addons/ranks/myCRED-addon-ranks.php:822 ../modules/mycred-module-buddypress.php:365
2593
  msgid "Include in Profile Header."
2594
  msgstr ""
2595
 
2596
- #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:366
2597
  msgid "Include under the \"Profile\" tab"
2598
  msgstr ""
2599
 
2600
- #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:367
2601
  msgid "Include under the \"Profile\" tab and Profile Header."
2602
  msgstr ""
2603
 
2604
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2605
  msgid "Rank in BuddyPress"
2606
  msgstr ""
2607
 
2608
- #: ../addons/ranks/myCRED-addon-ranks.php:895
2609
  msgid "Script Communication Error"
2610
  msgstr ""
2611
 
2612
- #: ../addons/ranks/myCRED-addon-ranks.php:945
2613
  msgid "Rank Post Type"
2614
  msgstr ""
2615
 
2616
- #: ../addons/ranks/myCRED-addon-ranks.php:949
2617
  msgid "No. of ranks"
2618
  msgstr ""
2619
 
2620
- #: ../addons/ranks/myCRED-addon-ranks.php:953 ../modules/mycred-module-log.php:370 ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.php:442
2621
  msgid "Actions"
2622
  msgstr ""
2623
 
2624
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2625
  msgid "Remove All Ranks"
2626
  msgstr ""
2627
 
2628
- #: ../addons/ranks/myCRED-addon-ranks.php:954
2629
  msgid "Assign Ranks to Users"
2630
  msgstr ""
2631
 
@@ -2641,7 +2555,7 @@ msgstr ""
2641
  msgid "No users found with this rank"
2642
  msgstr ""
2643
 
2644
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:415 ../includes/mycred-shortcodes.php:476 ../includes/mycred-shortcodes.php:480 ../includes/mycred-shortcodes.php:484
2645
  msgid "error"
2646
  msgstr ""
2647
 
@@ -2677,7 +2591,7 @@ msgstr ""
2677
  msgid "Pay Content Author."
2678
  msgstr ""
2679
 
2680
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:139 ../includes/mycred-overview.php:146 ../modules/mycred-module-addons.php:226
2681
  msgid "Sell Content"
2682
  msgstr ""
2683
 
@@ -2859,7 +2773,7 @@ msgstr ""
2859
  msgid "Transfer %plural%"
2860
  msgstr ""
2861
 
2862
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:588 ../modules/mycred-module-settings.php:456
2863
  msgid "Point Types"
2864
  msgstr ""
2865
 
@@ -3045,67 +2959,83 @@ msgid ""
3045
  "href=\"%s\">website</a>."
3046
  msgstr ""
3047
 
3048
- #: ../includes/mycred-admin.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3049
  msgid "User is excluded"
3050
  msgstr ""
3051
 
3052
- #: ../includes/mycred-admin.php:78
3053
  msgid "Log Entry can not be empty"
3054
  msgstr ""
3055
 
3056
- #: ../includes/mycred-admin.php:82
3057
  msgid "Amount can not be zero"
3058
  msgstr ""
3059
 
3060
- #: ../includes/mycred-admin.php:105
3061
  msgid "Failed to update this uses balance."
3062
  msgstr ""
3063
 
3064
- #: ../includes/mycred-admin.php:240
3065
  msgid "Excluded"
3066
  msgstr ""
3067
 
3068
- #: ../includes/mycred-admin.php:253 ../modules/mycred-module-log.php:252 ../modules/mycred-module-log.php:253
3069
  msgid "History"
3070
  msgstr ""
3071
 
3072
- #: ../includes/mycred-admin.php:254
3073
  msgid "Adjust"
3074
  msgstr ""
3075
 
3076
- #: ../includes/mycred-admin.php:309 ../includes/mycred-admin.php:368
3077
  msgid "%singular% balance"
3078
  msgstr ""
3079
 
3080
- #: ../includes/mycred-admin.php:333
3081
  msgid "Adjust Your Balance"
3082
  msgstr ""
3083
 
3084
- #: ../includes/mycred-admin.php:335
3085
  msgid "Adjust Users Balance"
3086
  msgstr ""
3087
 
3088
- #: ../includes/mycred-admin.php:346
3089
  msgid "Log description for adjustment"
3090
  msgstr ""
3091
 
3092
- #: ../includes/mycred-admin.php:349
3093
  msgid "Update"
3094
  msgstr ""
3095
 
3096
- #: ../includes/mycred-admin.php:350
3097
  msgid "Description is required!"
3098
  msgstr ""
3099
 
3100
- #: ../includes/mycred-admin.php:450
3101
  msgid "ID"
3102
  msgstr ""
3103
 
3104
- #: ../includes/mycred-admin.php:456
3105
  msgid "A positive or negative value"
3106
  msgstr ""
3107
 
3108
- #: ../includes/mycred-admin.php:458
3109
  msgid "Update Balance"
3110
  msgstr ""
3111
 
@@ -3117,67 +3047,75 @@ msgstr ""
3117
  msgid "Points"
3118
  msgstr ""
3119
 
3120
- #: ../includes/mycred-functions.php:396
3121
  msgid "Deleted"
3122
  msgstr ""
3123
 
3124
- #: ../includes/mycred-functions.php:533
3125
  msgid "Deleted Item"
3126
  msgstr ""
3127
 
3128
- #: ../includes/mycred-functions.php:611
 
 
 
 
 
 
 
 
3129
  msgid "Comment Related"
3130
  msgstr ""
3131
 
3132
- #: ../includes/mycred-functions.php:618
3133
  msgid "Widget Related"
3134
  msgstr ""
3135
 
3136
- #: ../includes/mycred-functions.php:625
3137
  msgid "Amount Related"
3138
  msgstr ""
3139
 
3140
- #: ../includes/mycred-functions.php:632
3141
  msgid "Video Related"
3142
  msgstr ""
3143
 
3144
- #: ../includes/mycred-functions.php:643
3145
  msgid "and"
3146
  msgstr ""
3147
 
3148
- #: ../includes/mycred-functions.php:645
3149
  msgid "Available Template Tags:"
3150
  msgstr ""
3151
 
3152
- #: ../includes/mycred-functions.php:1568
3153
  msgid "Entire Log"
3154
  msgstr ""
3155
 
3156
- #: ../includes/mycred-functions.php:1573 ../includes/mycred-functions.php:1574
3157
  msgid "Displayed Rows"
3158
  msgstr ""
3159
 
3160
- #: ../includes/mycred-functions.php:1578
3161
  msgid "Search Results"
3162
  msgstr ""
3163
 
3164
- #: ../includes/mycred-functions.php:1579
3165
  msgid "My Entire Log"
3166
  msgstr ""
3167
 
3168
- #: ../includes/mycred-functions.php:1699
3169
  msgid "ref empty"
3170
  msgstr ""
3171
 
3172
- #: ../includes/mycred-functions.php:1707
3173
  msgid "incorrect user id format"
3174
  msgstr ""
3175
 
3176
- #: ../includes/mycred-functions.php:1720
3177
  msgid "incorrect unix timestamp (from):"
3178
  msgstr ""
3179
 
3180
- #: ../includes/mycred-functions.php:1729
3181
  msgid "incorrect unix timestamp (to):"
3182
  msgstr ""
3183
 
@@ -3190,14 +3128,22 @@ msgid "Import log entries via a CSV file."
3190
  msgstr ""
3191
 
3192
  #: ../includes/mycred-importer.php:43
 
 
 
 
 
 
 
 
3193
  msgid "%s CubePoints Import"
3194
  msgstr ""
3195
 
3196
- #: ../includes/mycred-importer.php:44 ../includes/importers/mycred-cubepoints.php:344
3197
  msgid "Import CubePoints log entries and / or balances."
3198
  msgstr ""
3199
 
3200
- #: ../includes/mycred-importer.php:60
3201
  msgid "No CubePoints log exists."
3202
  msgstr ""
3203
 
@@ -3219,140 +3165,140 @@ msgid ""
3219
  "for running myCRED. The following errors were given:"
3220
  msgstr ""
3221
 
3222
- #: ../includes/mycred-install.php:246
3223
  msgid "myCRED needs your attention."
3224
  msgstr ""
3225
 
3226
- #: ../includes/mycred-install.php:246
3227
  msgid "Run Setup"
3228
  msgstr ""
3229
 
3230
- #: ../includes/mycred-install.php:258 ../includes/mycred-install.php:259
3231
  msgid "myCRED Setup"
3232
  msgstr ""
3233
 
3234
- #: ../includes/mycred-install.php:388
3235
  msgid "%s Setup"
3236
  msgstr ""
3237
 
3238
- #: ../includes/mycred-install.php:390
3239
  msgid "Step"
3240
  msgstr ""
3241
 
3242
- #: ../includes/mycred-install.php:414
3243
  msgid ""
3244
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3245
  "format, layout and security settings."
3246
  msgstr ""
3247
 
3248
- #: ../includes/mycred-install.php:415
3249
  msgid "Begin Setup"
3250
  msgstr ""
3251
 
3252
- #: ../includes/mycred-install.php:470
3253
  msgid "Select the format you want to use for your points."
3254
  msgstr ""
3255
 
3256
- #: ../includes/mycred-install.php:471 ../includes/mycred-widgets.php:223
3257
  msgid "Format"
3258
  msgstr ""
3259
 
3260
- #: ../includes/mycred-install.php:474
3261
  msgid "Separators"
3262
  msgstr ""
3263
 
3264
- #: ../includes/mycred-install.php:484
3265
  msgid "Decimals"
3266
  msgstr ""
3267
 
3268
- #: ../includes/mycred-install.php:486
3269
  msgid "Use zero for no decimals."
3270
  msgstr ""
3271
 
3272
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3273
  msgid "Presentation"
3274
  msgstr ""
3275
 
3276
- #: ../includes/mycred-install.php:492 ../modules/mycred-module-settings.php:330
3277
  msgid "Name (Singular)"
3278
  msgstr ""
3279
 
3280
- #: ../includes/mycred-install.php:496 ../modules/mycred-module-settings.php:335
3281
  msgid "Name (Plural)"
3282
  msgstr ""
3283
 
3284
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:346
3285
  msgid "Prefix"
3286
  msgstr ""
3287
 
3288
- #: ../includes/mycred-install.php:510 ../modules/mycred-module-settings.php:354
3289
  msgid "Suffix"
3290
  msgstr ""
3291
 
3292
- #: ../includes/mycred-install.php:514
3293
  msgid "Cancel Setup"
3294
  msgstr ""
3295
 
3296
- #: ../includes/mycred-install.php:514
3297
  msgid "Cancel"
3298
  msgstr ""
3299
 
3300
- #: ../includes/mycred-install.php:514 ../includes/mycred-install.php:584
3301
  msgid "Next"
3302
  msgstr ""
3303
 
3304
- #: ../includes/mycred-install.php:546 ../modules/mycred-module-settings.php:362
3305
  msgid "Security"
3306
  msgstr ""
3307
 
3308
- #: ../includes/mycred-install.php:549
3309
  msgid "Edit Settings Capability"
3310
  msgstr ""
3311
 
3312
- #: ../includes/mycred-install.php:553
3313
  msgid "Edit Users %plural% Capability"
3314
  msgstr ""
3315
 
3316
- #: ../includes/mycred-install.php:557 ../modules/mycred-module-settings.php:375
3317
  msgid "Maximum %plural% payouts"
3318
  msgstr ""
3319
 
3320
- #: ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:377
3321
  msgid ""
3322
  "As an added security, you can set the maximum amount a user can gain or loose "
3323
  "in a single instance. If used, make sure this is the maximum amount a user "
3324
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3325
  msgstr ""
3326
 
3327
- #: ../includes/mycred-install.php:566 ../modules/mycred-module-settings.php:384
3328
  msgid "Exclude those who can \"Edit Settings\"."
3329
  msgstr ""
3330
 
3331
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:388
3332
  msgid "Exclude those who can \"Edit Users %plural%\"."
3333
  msgstr ""
3334
 
3335
- #: ../includes/mycred-install.php:573 ../modules/mycred-module-settings.php:392
3336
  msgid "Exclude the following user IDs:"
3337
  msgstr ""
3338
 
3339
- #: ../includes/mycred-install.php:577 ../modules/mycred-module-settings.php:397
3340
  msgid "User Deletions"
3341
  msgstr ""
3342
 
3343
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:400
3344
  msgid "Delete log entries when user is deleted."
3345
  msgstr ""
3346
 
3347
- #: ../includes/mycred-install.php:602
3348
  msgid "Ready"
3349
  msgstr ""
3350
 
3351
- #: ../includes/mycred-install.php:603
3352
  msgid "Almost done! Click the button below to finish this setup."
3353
  msgstr ""
3354
 
3355
- #: ../includes/mycred-install.php:604
3356
  msgid "Install & Run"
3357
  msgstr ""
3358
 
@@ -3393,7 +3339,7 @@ msgstr ""
3393
  msgid "Show all references"
3394
  msgstr ""
3395
 
3396
- #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:540
3397
  msgid "User ID"
3398
  msgstr ""
3399
 
@@ -3459,77 +3405,77 @@ msgstr ""
3459
  msgid "This Month"
3460
  msgstr ""
3461
 
3462
- #: ../includes/mycred-network.php:61 ../includes/mycred-network.php:62
3463
  msgid "Network Settings"
3464
  msgstr ""
3465
 
3466
- #: ../includes/mycred-network.php:159
3467
  msgid "%s Network"
3468
  msgstr ""
3469
 
3470
- #: ../includes/mycred-network.php:165
3471
  msgid "Note! %s has not yet been setup."
3472
  msgstr ""
3473
 
3474
- #: ../includes/mycred-network.php:169
3475
  msgid "Network Settings Updated"
3476
  msgstr ""
3477
 
3478
- #: ../includes/mycred-network.php:171
3479
  msgid "Configure network settings for %s."
3480
  msgstr ""
3481
 
3482
- #: ../includes/mycred-network.php:178
3483
  msgid "Master Template"
3484
  msgstr ""
3485
 
3486
- #: ../includes/mycred-network.php:189
3487
  msgid ""
3488
  "If enabled, %s will use your main site's settings for all other sites in your "
3489
  "network."
3490
  msgstr ""
3491
 
3492
- #: ../includes/mycred-network.php:192
3493
  msgid "Central Logging"
3494
  msgstr ""
3495
 
3496
- #: ../includes/mycred-network.php:203
3497
  msgid "If enabled, %s will log all site actions in your main site's log."
3498
  msgstr ""
3499
 
3500
- #: ../includes/mycred-network.php:206
3501
  msgid "Site Block"
3502
  msgstr ""
3503
 
3504
- #: ../includes/mycred-network.php:210
3505
  msgid "Comma separated list of blog ids where %s is to be disabled."
3506
  msgstr ""
3507
 
3508
- #: ../includes/mycred-network.php:219
3509
  msgid "Save Network Settings"
3510
  msgstr ""
3511
 
3512
- #: ../includes/mycred-overview.php:23
3513
  msgid "%s Overview"
3514
  msgstr ""
3515
 
3516
- #: ../includes/mycred-overview.php:76
3517
  msgid "Total amount in circulation"
3518
  msgstr ""
3519
 
3520
- #: ../includes/mycred-overview.php:79
3521
  msgid "Awarded"
3522
  msgstr ""
3523
 
3524
- #: ../includes/mycred-overview.php:82
3525
  msgid "Deducted"
3526
  msgstr ""
3527
 
3528
- #: ../includes/mycred-overview.php:118 ../includes/mycred-overview.php:125 ../modules/mycred-module-addons.php:237
3529
  msgid "Transfers"
3530
  msgstr ""
3531
 
3532
- #: ../includes/mycred-overview.php:206
3533
  msgid "Manual"
3534
  msgstr ""
3535
 
@@ -3601,31 +3547,31 @@ msgstr ""
3601
  msgid "Leaderboard is empty."
3602
  msgstr ""
3603
 
3604
- #: ../includes/mycred-shortcodes.php:350 ../includes/mycred-shortcodes.php:476
3605
  msgid "Amount missing!"
3606
  msgstr ""
3607
 
3608
- #: ../includes/mycred-shortcodes.php:353 ../includes/mycred-shortcodes.php:484
3609
  msgid "Log Template Missing!"
3610
  msgstr ""
3611
 
3612
- #: ../includes/mycred-shortcodes.php:415
3613
  msgid "Anchor missing URL!"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-shortcodes.php:480
3617
  msgid "User ID missing for recipient."
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-shortcodes.php:534
3621
  msgid "Sent"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-shortcodes.php:535
3625
  msgid "Error - Try Again"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-shortcodes.php:643
3629
  msgid "A video ID is required for this shortcode"
3630
  msgstr ""
3631
 
@@ -3645,7 +3591,7 @@ msgstr ""
3645
  msgid "%plural% History"
3646
  msgstr ""
3647
 
3648
- #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:578
3649
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3650
  msgstr ""
3651
 
@@ -3677,11 +3623,11 @@ msgstr ""
3677
  msgid "Row layout"
3678
  msgstr ""
3679
 
3680
- #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:602
3681
  msgid "Show message when not logged in"
3682
  msgstr ""
3683
 
3684
- #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:603
3685
  msgid "Message"
3686
  msgstr ""
3687
 
@@ -3727,19 +3673,19 @@ msgid ""
3727
  "at the end with their current position."
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-widgets.php:490
3731
  msgid "Shows the current users balances for each point type."
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-widgets.php:492
3735
  msgid "(%s) Wallet"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-widgets.php:572
3739
  msgid "My Wallet"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-widgets.php:594
3743
  msgid "Row Layout"
3744
  msgstr ""
3745
 
@@ -3757,11 +3703,11 @@ msgid ""
3757
  "imported. <strong>%d</strong> was skipped."
3758
  msgstr ""
3759
 
3760
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3761
  msgid "View Log"
3762
  msgstr ""
3763
 
3764
- #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3765
  msgid "Import More"
3766
  msgstr ""
3767
 
@@ -3801,15 +3747,15 @@ msgstr ""
3801
  msgid "Import Log"
3802
  msgstr ""
3803
 
3804
- #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
3805
  msgid "Sorry, there has been an error."
3806
  msgstr ""
3807
 
3808
- #: ../includes/importers/mycred-log-entries.php:82
3809
  msgid "The file does not exist, please try again."
3810
  msgstr ""
3811
 
3812
- #: ../includes/importers/mycred-log-entries.php:127
3813
  msgid "The CSV is invalid."
3814
  msgstr ""
3815
 
@@ -3821,132 +3767,146 @@ msgstr ""
3821
  msgid "Import log entries from a CSV file."
3822
  msgstr ""
3823
 
3824
- #: ../includes/importers/mycred-log-entries.php:219
3825
  msgid ""
3826
  "Before you can upload your import file, you will need to fix the following "
3827
  "error:"
3828
  msgstr ""
3829
 
3830
- #: ../includes/importers/mycred-log-entries.php:228
3831
  msgid "Choose a file from your computer:"
3832
  msgstr ""
3833
 
3834
- #: ../includes/importers/mycred-log-entries.php:234
3835
  msgid "Maximum size: %s"
3836
  msgstr ""
3837
 
3838
- #: ../includes/importers/mycred-log-entries.php:239
3839
  msgid "OR enter path to file:"
3840
  msgstr ""
3841
 
3842
- #: ../includes/importers/mycred-log-entries.php:246
3843
  msgid "Delimiter"
3844
  msgstr ""
3845
 
3846
- #: ../includes/importers/mycred-log-entries.php:252
3847
  msgid "Upload file and import"
3848
  msgstr ""
3849
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3850
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3851
  msgid "Add-ons"
3852
  msgstr ""
3853
 
3854
- #: ../modules/mycred-module-addons.php:160
3855
  msgid ""
3856
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3857
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3858
  "let your users buy points for other members."
3859
  msgstr ""
3860
 
3861
- #: ../modules/mycred-module-addons.php:171
3862
  msgid ""
3863
- "The coupons add-on allows you you to create coupons that users can use to add "
3864
  "points to their accounts."
3865
  msgstr ""
3866
 
3867
- #: ../modules/mycred-module-addons.php:182
3868
  msgid "Create email notices for any type of myCRED instance."
3869
  msgstr ""
3870
 
3871
- #: ../modules/mycred-module-addons.php:193
3872
  msgid ""
3873
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3874
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3875
  "Bookings: Event Espresso and Events Manager (free & pro)."
3876
  msgstr ""
3877
 
3878
- #: ../modules/mycred-module-addons.php:204
3879
  msgid "Create pop-up notifications for when users gain or loose points."
3880
  msgstr ""
3881
 
3882
- #: ../modules/mycred-module-addons.php:216
3883
  msgid ""
3884
  "Create ranks for users reaching a certain number of %_plural% with the option "
3885
  "to add logos for each rank."
3886
  msgstr ""
3887
 
3888
- #: ../modules/mycred-module-addons.php:227
3889
  msgid ""
3890
  "This add-on allows you to sell posts, pages or any public post types on your "
3891
  "website. You can either sell the entire content or using our shortcode, sell "
3892
  "parts of your content allowing you to offer \"teasers\"."
3893
  msgstr ""
3894
 
3895
- #: ../modules/mycred-module-addons.php:238
3896
  msgid ""
3897
  "Allow your users to send or \"donate\" points to other members by either using "
3898
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3899
  msgstr ""
3900
 
3901
- #: ../modules/mycred-module-addons.php:274
3902
  msgid "%s Add-ons"
3903
  msgstr ""
3904
 
3905
- #: ../modules/mycred-module-addons.php:280
3906
  msgid "Add-on Activated"
3907
  msgstr ""
3908
 
3909
- #: ../modules/mycred-module-addons.php:283
3910
  msgid "Add-on Deactivated"
3911
  msgstr ""
3912
 
3913
- #: ../modules/mycred-module-addons.php:287
3914
  msgid "Add-ons can expand your current installation with further features."
3915
  msgstr ""
3916
 
3917
- #: ../modules/mycred-module-addons.php:308
3918
  msgid "You can find more add-ons in our %s."
3919
  msgstr ""
3920
 
3921
- #: ../modules/mycred-module-addons.php:308
3922
  msgid "online store"
3923
  msgstr ""
3924
 
3925
- #: ../modules/mycred-module-addons.php:329
3926
  msgid "Deactivate Add-on"
3927
  msgstr ""
3928
 
3929
- #: ../modules/mycred-module-addons.php:330
3930
  msgid "Deactivate"
3931
  msgstr ""
3932
 
3933
- #: ../modules/mycred-module-addons.php:337
3934
  msgid "Activate Add-on"
3935
  msgstr ""
3936
 
3937
- #: ../modules/mycred-module-addons.php:338
3938
  msgid "Activate"
3939
  msgstr ""
3940
 
3941
- #: ../modules/mycred-module-addons.php:354
3942
  msgid "Version"
3943
  msgstr ""
3944
 
3945
- #: ../modules/mycred-module-addons.php:358
3946
  msgid "By"
3947
  msgstr ""
3948
 
3949
- #: ../modules/mycred-module-addons.php:366
3950
  msgid "Get Pro"
3951
  msgstr ""
3952
 
@@ -4104,465 +4064,465 @@ msgid ""
4104
  "depending on their actions around your website."
4105
  msgstr ""
4106
 
4107
- #: ../modules/mycred-module-hooks.php:321 ../modules/mycred-module-hooks.php:643 ../modules/mycred-module-hooks.php:656 ../modules/mycred-module-hooks.php:692 ../modules/mycred-module-hooks.php:1072 ../modules/mycred-module-hooks.php:1089 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:2206 ../modules/mycred-module-hooks.php:2235 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4108
  msgid "Log template"
4109
  msgstr ""
4110
 
4111
- #: ../modules/mycred-module-hooks.php:523 ../modules/mycred-module-hooks.php:2214 ../modules/mycred-module-hooks.php:2243 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4112
  msgid "Limit"
4113
  msgstr ""
4114
 
4115
- #: ../modules/mycred-module-hooks.php:637
4116
  msgid "%plural% for Posts"
4117
  msgstr ""
4118
 
4119
- #: ../modules/mycred-module-hooks.php:650
4120
  msgid "%plural% for Pages"
4121
  msgstr ""
4122
 
4123
- #: ../modules/mycred-module-hooks.php:686
4124
  msgid "%plural% for %s"
4125
  msgstr ""
4126
 
4127
- #: ../modules/mycred-module-hooks.php:1058
4128
  msgid ""
4129
  "%plural% are only awarded when your website has been synced with the Disqus "
4130
  "server!"
4131
  msgstr ""
4132
 
4133
- #: ../modules/mycred-module-hooks.php:1060
4134
  msgid "Approved Comment"
4135
  msgstr ""
4136
 
4137
- #: ../modules/mycred-module-hooks.php:1063 ../modules/mycred-module-hooks.php:1080 ../modules/mycred-module-hooks.php:1097
4138
  msgid "Comment Author"
4139
  msgstr ""
4140
 
4141
- #: ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101
4142
  msgid "Content Author"
4143
  msgstr ""
4144
 
4145
- #: ../modules/mycred-module-hooks.php:1077
4146
  msgid "Comment Marked SPAM"
4147
  msgstr ""
4148
 
4149
- #: ../modules/mycred-module-hooks.php:1094
4150
  msgid "Trashed / Unapproved Comments"
4151
  msgstr ""
4152
 
4153
- #: ../modules/mycred-module-hooks.php:1114
4154
  msgid "Limit per post"
4155
  msgstr ""
4156
 
4157
- #: ../modules/mycred-module-hooks.php:1116
4158
  msgid ""
4159
  "The number of comments per post that grants %_plural% to the comment author. "
4160
  "Use zero for unlimited."
4161
  msgstr ""
4162
 
4163
- #: ../modules/mycred-module-hooks.php:1120
4164
  msgid "Limit per day"
4165
  msgstr ""
4166
 
4167
- #: ../modules/mycred-module-hooks.php:1122
4168
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4169
  msgstr ""
4170
 
4171
- #: ../modules/mycred-module-hooks.php:1127
4172
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4173
  msgstr ""
4174
 
4175
- #: ../modules/mycred-module-hooks.php:1198
4176
  msgid "Once for each unique URL"
4177
  msgstr ""
4178
 
4179
- #: ../modules/mycred-module-hooks.php:1199
4180
  msgid "Once for each unique link id"
4181
  msgstr ""
4182
 
4183
- #: ../modules/mycred-module-hooks.php:1393
4184
  msgid ""
4185
  "The default amount to award for clicking on links. You can override this in the "
4186
  "shortcode."
4187
  msgstr ""
4188
 
4189
- #: ../modules/mycred-module-hooks.php:1400
4190
  msgid "Custom tags: %url%, %title% or %id%."
4191
  msgstr ""
4192
 
4193
- #: ../modules/mycred-module-hooks.php:1411 ../modules/mycred-module-hooks.php:2317
4194
  msgid "Note!"
4195
  msgstr ""
4196
 
4197
- #: ../modules/mycred-module-hooks.php:1411
4198
  msgid ""
4199
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4200
  "generate one automatically based on the value set under href. If you are using "
4201
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4202
  msgstr ""
4203
 
4204
- #: ../modules/mycred-module-hooks.php:1413 ../modules/mycred-module-hooks.php:1769
4205
  msgid "Available Shortcode"
4206
  msgstr ""
4207
 
4208
- #: ../modules/mycred-module-hooks.php:1733
4209
  msgid "Amount to award for viewing videos."
4210
  msgstr ""
4211
 
4212
- #: ../modules/mycred-module-hooks.php:1743
4213
  msgid "Award Logic"
4214
  msgstr ""
4215
 
4216
- #: ../modules/mycred-module-hooks.php:1745
4217
  msgid "Select when %_plural% should be awarded or deducted."
4218
  msgstr ""
4219
 
4220
- #: ../modules/mycred-module-hooks.php:1746
4221
  msgid "Play - As soon as video starts playing."
4222
  msgstr ""
4223
 
4224
- #: ../modules/mycred-module-hooks.php:1747
4225
  msgid "Full - First when the entire video has played."
4226
  msgstr ""
4227
 
4228
- #: ../modules/mycred-module-hooks.php:1748
4229
  msgid "Interval - For each x number of seconds watched."
4230
  msgstr ""
4231
 
4232
- #: ../modules/mycred-module-hooks.php:1753
4233
  msgid "Number of seconds"
4234
  msgstr ""
4235
 
4236
- #: ../modules/mycred-module-hooks.php:1760
4237
  msgid "Leniency"
4238
  msgstr ""
4239
 
4240
- #: ../modules/mycred-module-hooks.php:1762
4241
  msgid ""
4242
  "The maximum percentage a users view of a movie can differ from the actual "
4243
  "length."
4244
  msgstr ""
4245
 
4246
- #: ../modules/mycred-module-hooks.php:1765
4247
  msgid ""
4248
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4249
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4250
  "play back errors."
4251
  msgstr ""
4252
 
4253
- #: ../modules/mycred-module-hooks.php:1833
4254
  msgid "Affiliate Program"
4255
  msgstr ""
4256
 
4257
- #: ../modules/mycred-module-hooks.php:1842
4258
  msgid "Per Day"
4259
  msgstr ""
4260
 
4261
- #: ../modules/mycred-module-hooks.php:1949
4262
  msgid "Link"
4263
  msgstr ""
4264
 
4265
- #: ../modules/mycred-module-hooks.php:2200
4266
  msgid "Referring Visitors"
4267
  msgstr ""
4268
 
4269
- #: ../modules/mycred-module-hooks.php:2224 ../modules/mycred-module-hooks.php:2253
4270
  msgid "The number of referrals each member can make. Use zero for unlimited."
4271
  msgstr ""
4272
 
4273
- #: ../modules/mycred-module-hooks.php:2228 ../modules/mycred-module-hooks.php:2257
4274
  msgid "Referring Signups"
4275
  msgstr ""
4276
 
4277
- #: ../modules/mycred-module-hooks.php:2232
4278
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4279
  msgstr ""
4280
 
4281
- #: ../modules/mycred-module-hooks.php:2259
4282
  msgid "Registrations are disabled."
4283
  msgstr ""
4284
 
4285
- #: ../modules/mycred-module-hooks.php:2266
4286
  msgid "Referral Links"
4287
  msgstr ""
4288
 
4289
- #: ../modules/mycred-module-hooks.php:2270
4290
  msgid "Assign numeric referral IDs to each user."
4291
  msgstr ""
4292
 
4293
- #: ../modules/mycred-module-hooks.php:2271 ../modules/mycred-module-hooks.php:2277
4294
  msgid "Example"
4295
  msgstr ""
4296
 
4297
- #: ../modules/mycred-module-hooks.php:2276
4298
  msgid "Assign usernames as IDs for each user."
4299
  msgstr ""
4300
 
4301
- #: ../modules/mycred-module-hooks.php:2280
4302
  msgid "IP Limit"
4303
  msgstr ""
4304
 
4305
- #: ../modules/mycred-module-hooks.php:2284
4306
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4307
  msgstr ""
4308
 
4309
- #: ../modules/mycred-module-hooks.php:2288 ../modules/mycred-module-hooks.php:2321
4310
  msgid "BuddyPress Profile"
4311
  msgstr ""
4312
 
4313
- #: ../modules/mycred-module-hooks.php:2291
4314
  msgid "Insert Link in users Profile"
4315
  msgstr ""
4316
 
4317
- #: ../modules/mycred-module-hooks.php:2292
4318
  msgid ""
4319
  "Option to inser the referral link in users profiles. Links will only be visible "
4320
  "to users viewing their own profiles or administrators."
4321
  msgstr ""
4322
 
4323
- #: ../modules/mycred-module-hooks.php:2298
4324
  msgid "Leave empty to hide."
4325
  msgstr ""
4326
 
4327
- #: ../modules/mycred-module-hooks.php:2301
4328
  msgid "Description"
4329
  msgstr ""
4330
 
4331
- #: ../modules/mycred-module-hooks.php:2302
4332
  msgid "Optional description to insert under the link."
4333
  msgstr ""
4334
 
4335
- #: ../modules/mycred-module-hooks.php:2314
4336
  msgid "Profile Positioning"
4337
  msgstr ""
4338
 
4339
- #: ../modules/mycred-module-hooks.php:2316
4340
  msgid ""
4341
  "You can move around the referral link on your users profile by changing the "
4342
- "position. Increase to move up, decrese to move down."
4343
  msgstr ""
4344
 
4345
- #: ../modules/mycred-module-hooks.php:2317
4346
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4347
  msgstr ""
4348
 
4349
- #: ../modules/mycred-module-hooks.php:2323
4350
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4351
  msgstr ""
4352
 
4353
- #: ../modules/mycred-module-hooks.php:2331
4354
  msgid "Available Shortcodes"
4355
  msgstr ""
4356
 
4357
- #: ../modules/mycred-module-log.php:183 ../modules/mycred-module-log.php:204 ../modules/mycred-module-settings.php:60 ../modules/mycred-module-settings.php:101
4358
  msgid "Access denied for this action"
4359
  msgstr ""
4360
 
4361
- #: ../modules/mycred-module-log.php:190
4362
  msgid "Row Deleted"
4363
  msgstr ""
4364
 
4365
- #: ../modules/mycred-module-log.php:217
4366
  msgid "Log entry not found"
4367
  msgstr ""
4368
 
4369
- #: ../modules/mycred-module-log.php:230
4370
  msgid "Entry Updated"
4371
  msgstr ""
4372
 
4373
- #: ../modules/mycred-module-log.php:288 ../modules/mycred-module-settings.php:423
4374
  msgid "Entries"
4375
  msgstr ""
4376
 
4377
- #: ../modules/mycred-module-log.php:303 ../modules/mycred-module-log.php:390 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:557
4378
  msgid "Export"
4379
  msgstr ""
4380
 
4381
- #: ../modules/mycred-module-log.php:309
4382
  msgid "Search results for"
4383
  msgstr ""
4384
 
4385
- #: ../modules/mycred-module-log.php:384
4386
  msgid "%s Log"
4387
  msgstr ""
4388
 
4389
- #: ../modules/mycred-module-log.php:509
4390
  msgid "Edit"
4391
  msgstr ""
4392
 
4393
- #: ../modules/mycred-module-log.php:554
4394
  msgid "Current Log Entry"
4395
  msgstr ""
4396
 
4397
- #: ../modules/mycred-module-log.php:556
4398
  msgid "The current saved log entry"
4399
  msgstr ""
4400
 
4401
- #: ../modules/mycred-module-log.php:559
4402
  msgid "Adjust Log Entry"
4403
  msgstr ""
4404
 
4405
- #: ../modules/mycred-module-log.php:561
4406
  msgid "The new log entry"
4407
  msgstr ""
4408
 
4409
- #: ../modules/mycred-module-log.php:564
4410
  msgid "Update Log Entry"
4411
  msgstr ""
4412
 
4413
- #: ../modules/mycred-module-log.php:596
4414
  msgid "My %s History"
4415
  msgstr ""
4416
 
4417
- #: ../modules/mycred-module-settings.php:63 ../modules/mycred-module-settings.php:104
4418
  msgid "Missing point type"
4419
  msgstr ""
4420
 
4421
- #: ../modules/mycred-module-settings.php:127
4422
  msgid "Accounts successfully reset"
4423
  msgstr ""
4424
 
4425
- #: ../modules/mycred-module-settings.php:167
4426
  msgid "No users found to export"
4427
  msgstr ""
4428
 
4429
- #: ../modules/mycred-module-settings.php:313
4430
  msgid "Facebook"
4431
  msgstr ""
4432
 
4433
- #: ../modules/mycred-module-settings.php:314
4434
  msgid "Google Plus"
4435
  msgstr ""
4436
 
4437
- #: ../modules/mycred-module-settings.php:317
4438
  msgid "%s Settings"
4439
  msgstr ""
4440
 
4441
- #: ../modules/mycred-module-settings.php:320
4442
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4443
  msgstr ""
4444
 
4445
- #: ../modules/mycred-module-settings.php:325
4446
  msgid "Core Settings"
4447
  msgstr ""
4448
 
4449
- #: ../modules/mycred-module-settings.php:327
4450
  msgid "Name"
4451
  msgstr ""
4452
 
4453
- #: ../modules/mycred-module-settings.php:332
4454
  msgid "Accessible though the %singular% template tag."
4455
  msgstr ""
4456
 
4457
- #: ../modules/mycred-module-settings.php:337
4458
  msgid "Accessible though the %plural% template tag."
4459
  msgstr ""
4460
 
4461
- #: ../modules/mycred-module-settings.php:340
4462
  msgid "Tip"
4463
  msgstr ""
4464
 
4465
- #: ../modules/mycred-module-settings.php:340
4466
  msgid ""
4467
  "Adding an underscore at the beginning of template tag for names will return "
4468
  "them in lowercase. i.e. %_singular%"
4469
  msgstr ""
4470
 
4471
- #: ../modules/mycred-module-settings.php:358
4472
  msgid "Separator"
4473
  msgstr ""
4474
 
4475
- #: ../modules/mycred-module-settings.php:365
4476
  msgid "Edit Settings"
4477
  msgstr ""
4478
 
4479
- #: ../modules/mycred-module-settings.php:367 ../modules/mycred-module-settings.php:372
4480
  msgid "Capability to check for."
4481
  msgstr ""
4482
 
4483
- #: ../modules/mycred-module-settings.php:370
4484
  msgid "Edit Users %plural%"
4485
  msgstr ""
4486
 
4487
- #: ../modules/mycred-module-settings.php:394
4488
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4489
  msgstr ""
4490
 
4491
- #: ../modules/mycred-module-settings.php:414
4492
  msgid "Management"
4493
  msgstr ""
4494
 
4495
- #: ../modules/mycred-module-settings.php:416
4496
  msgid "The Log"
4497
  msgstr ""
4498
 
4499
- #: ../modules/mycred-module-settings.php:419
4500
  msgid "Table Name"
4501
  msgstr ""
4502
 
4503
- #: ../modules/mycred-module-settings.php:428
4504
  msgid "Empty Log"
4505
  msgstr ""
4506
 
4507
- #: ../modules/mycred-module-settings.php:434
4508
  msgid "User Meta Key"
4509
  msgstr ""
4510
 
4511
- #: ../modules/mycred-module-settings.php:443
4512
  msgid "Set all to zero"
4513
  msgstr ""
4514
 
4515
- #: ../modules/mycred-module-settings.php:443
4516
  msgid "CSV Export"
4517
  msgstr ""
4518
 
4519
- #: ../modules/mycred-module-settings.php:464
4520
  msgid "Default"
4521
  msgstr ""
4522
 
4523
- #: ../modules/mycred-module-settings.php:467 ../modules/mycred-module-settings.php:486 ../modules/mycred-module-settings.php:508
4524
  msgid "Meta Key"
4525
  msgstr ""
4526
 
4527
- #: ../modules/mycred-module-settings.php:505
4528
  msgid "Add New Type"
4529
  msgstr ""
4530
 
4531
- #: ../modules/mycred-module-settings.php:510
4532
  msgid "A unique ID for this type."
4533
  msgstr ""
4534
 
4535
- #: ../modules/mycred-module-settings.php:515
4536
  msgid "Menu and page title."
4537
  msgstr ""
4538
 
4539
- #: ../modules/mycred-module-settings.php:518
4540
  msgid "The meta key will define where your users balances are saved."
4541
  msgstr ""
4542
 
4543
- #: ../modules/mycred-module-settings.php:535
4544
  msgid "Identify users by"
4545
  msgstr ""
4546
 
4547
- #: ../modules/mycred-module-settings.php:541
4548
  msgid "User Email"
4549
  msgstr ""
4550
 
4551
- #: ../modules/mycred-module-settings.php:542
4552
  msgid "User Login"
4553
  msgstr ""
4554
 
4555
- #: ../modules/mycred-module-settings.php:549
4556
  msgid ""
4557
  "Use ID if you intend to use this export as a backup of your current site while "
4558
  "Email is recommended if you want to export to a different site."
4559
  msgstr ""
4560
 
4561
- #: ../modules/mycred-module-settings.php:552
4562
  msgid "Import Log Entry"
4563
  msgstr ""
4564
 
4565
- #: ../modules/mycred-module-settings.php:554
4566
  msgid ""
4567
  "Optional log entry to use if you intend to import this file in a different %s "
4568
  "installation."
@@ -4771,7 +4731,7 @@ msgid "%plural% for Profile Updates"
4771
  msgstr ""
4772
 
4773
  #: ../plugins/mycred-hook-buddypress.php:377
4774
- msgid "Daily limit. User zero for unlimited."
4775
  msgstr ""
4776
 
4777
  #: ../plugins/mycred-hook-buddypress.php:387
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
+ "POT-Revision-Date: Wed Apr 16 2014 13:04:19 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: LANGUAGE <support@mycred.me>\n"
25
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-content/plugins/mycred\n"
26
  "X-Poedit-SearchPath-1: ."
27
 
28
+ #: ../mycred.php:397
29
  msgid "Balance"
30
  msgstr ""
31
 
32
+ #: ../mycred.php:422
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
+ #: ../mycred.php:474
37
  msgid "No balances available."
38
  msgstr ""
39
 
40
+ #: ../mycred.php:520
41
  msgid "About %s"
42
  msgstr ""
43
 
44
+ #: ../mycred.php:529 ../includes/mycred-about.php:149
45
  msgid "Awesome People"
46
  msgstr ""
47
 
48
+ #: ../mycred.php:614 ../mycred.php:638 ../addons/ranks/myCRED-addon-ranks.php:225 ../addons/ranks/myCRED-addon-ranks.php:883 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
49
  msgid "Processing..."
50
  msgstr ""
51
 
52
+ #: ../mycred.php:615
53
  msgid ""
54
  "Warning! All entries in your log will be permanently removed! This can not be "
55
  "undone!"
56
  msgstr ""
57
 
58
+ #: ../mycred.php:616
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr ""
63
 
64
+ #: ../mycred.php:617
65
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
66
  msgstr ""
67
 
68
+ #: ../mycred.php:618
69
  msgid "Done!"
70
  msgstr ""
71
 
72
+ #: ../mycred.php:619 ../mycred.php:637 ../mycred.php:655
73
  msgid "Close"
74
  msgstr ""
75
 
76
+ #: ../mycred.php:620
77
  msgid "Export users %plural%"
78
  msgstr ""
79
 
80
+ #: ../mycred.php:636
81
+ msgid "Edit Users Balance"
82
  msgstr ""
83
 
84
+ #: ../mycred.php:654
85
  msgid "Edit Log Entry"
86
  msgstr ""
87
 
88
+ #: ../mycred.php:656
89
  msgid "Updating..."
90
  msgstr ""
91
 
92
+ #: ../mycred.php:658
93
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
94
  msgstr ""
95
 
96
+ #: ../mycred.php:659
97
  msgid "Log entry updated"
98
  msgstr ""
99
 
100
+ #: ../mycred.php:711 ../mycred.php:732 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
101
  msgid "Setup"
102
  msgstr ""
103
 
104
+ #: ../mycred.php:713 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
105
  msgid "Settings"
106
  msgstr ""
107
 
108
+ #: ../mycred.php:736 ../modules/mycred-module-addons.php:360
109
  msgid "About"
110
  msgstr ""
111
 
112
+ #: ../mycred.php:737
113
  msgid "Tutorials"
114
  msgstr ""
115
 
116
+ #: ../mycred.php:738
117
  msgid "Codex"
118
  msgstr ""
119
 
120
+ #: ../mycred.php:739
121
  msgid "Store"
122
  msgstr ""
123
 
124
+ #: ../mycred.php:753
125
  msgid ""
126
  "Make sure to backup your database and files before updating, in case anything "
127
  "goes wrong!"
135
  msgid "This Hook has no settings"
136
  msgstr ""
137
 
138
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
139
  msgid "No limit"
140
  msgstr ""
141
 
155
  msgid "Once per day (reset at midnight)"
156
  msgstr ""
157
 
158
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:806 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:829 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
159
  msgid "Select"
160
  msgstr ""
161
 
167
  msgid "Surprise"
168
  msgstr ""
169
 
170
+ #: ../abstracts/mycred-abstract-module.php:438 ../includes/mycred-network.php:118
171
  msgid "click to close"
172
  msgstr ""
173
 
174
+ #: ../abstracts/mycred-abstract-module.php:439 ../includes/mycred-network.php:119
175
  msgid "click to open"
176
  msgstr ""
177
 
178
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
179
  msgid "Settings Updated"
180
  msgstr ""
181
 
182
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
183
  msgid "Banking"
184
  msgstr ""
185
 
205
  "of times you want this payout to run (cycles)."
206
  msgstr ""
207
 
208
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:326 ../modules/mycred-module-log.php:586 ../modules/mycred-module-settings.php:300
209
  msgid "Access Denied"
210
  msgstr ""
211
 
213
  msgid "%s Banking"
214
  msgstr ""
215
 
216
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
217
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
218
  msgstr ""
219
 
225
  msgid "Warning! This add-on requires WP - Cron to work."
226
  msgstr ""
227
 
228
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
229
  msgid "Enable"
230
  msgstr ""
231
 
293
  msgid "The minimum requires balance for interest to apply."
294
  msgstr ""
295
 
296
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
297
  msgid "Log Template"
298
  msgstr ""
299
 
320
  msgid "Pay Users"
321
  msgstr ""
322
 
323
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:427 ../includes/mycred-admin.php:367 ../includes/mycred-admin.php:478
324
  msgid "Amount"
325
  msgstr ""
326
 
328
  msgid "Can not be zero."
329
  msgstr ""
330
 
331
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
332
  msgid "Interval"
333
  msgstr ""
334
 
369
  "it gets re-activated. Set cycles to zero to reset."
370
  msgstr ""
371
 
372
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:381
373
  msgid "Excludes"
374
  msgstr ""
375
 
383
  msgid "Payment Gateways"
384
  msgstr ""
385
 
386
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
387
  msgid "buyCRED Purchase Log"
388
  msgstr ""
389
 
390
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
391
  msgid "Purchase Log"
392
  msgstr ""
393
 
394
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
395
  msgid "Payments"
396
  msgstr ""
397
 
398
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
399
  msgid "Please login to purchase %_plural%"
400
  msgstr ""
401
 
402
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
403
  msgid "Gift purchase from %display_name%."
404
  msgstr ""
405
 
406
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:338 ../includes/mycred-overview.php:98 ../includes/mycred-overview.php:105 ../modules/mycred-module-addons.php:157
407
  msgid "buyCRED"
408
  msgstr ""
409
 
410
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:610
411
  msgid "Minimum %plural%"
412
  msgstr ""
413
 
414
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
415
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
416
  msgstr ""
417
 
418
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
419
  msgid "Point Type"
420
  msgstr ""
421
 
422
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
423
  msgid "Login Template"
424
  msgstr ""
425
 
426
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
427
  msgid "Content to show when a user is not logged in."
428
  msgstr ""
429
 
430
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
431
  msgid "Thank You Page"
432
  msgstr ""
433
 
434
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
435
  msgid "Custom URL"
436
  msgstr ""
437
 
438
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
439
  msgid "Page"
440
  msgstr ""
441
 
442
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
443
  msgid "Cancellation Page"
444
  msgstr ""
445
 
446
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
447
  msgid "Show seperate log for %_plural% purchases."
448
  msgstr ""
449
 
450
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
451
  msgid "Gifting"
452
  msgstr ""
453
 
454
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
455
  msgid "Allow users to buy %_plural% for other users."
456
  msgstr ""
457
 
458
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
459
  msgid "Allow users to buy %_plural% for content authors."
460
  msgstr ""
461
 
462
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
463
  msgid "%s Payment Gateways"
464
  msgstr ""
465
 
466
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
467
  msgid "buyCRED Settings"
468
  msgstr ""
469
 
470
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
471
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
472
  msgstr ""
473
 
474
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
475
  msgid "Last Payment Notification"
476
  msgstr ""
477
 
478
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
479
  msgid ""
480
  "Here you can view the last payment confirmation that was sent to buyCRED for "
481
  "processing."
482
  msgstr ""
483
 
484
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
485
  msgid "Details"
486
  msgstr ""
487
 
488
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:552
489
  msgid "Time"
490
  msgstr ""
491
 
492
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
493
  msgid "Gateway"
494
  msgstr ""
495
 
496
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
497
  msgid "Transaction ID"
498
  msgstr ""
499
 
500
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
501
  msgid "Outcome"
502
  msgstr ""
503
 
504
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
505
  msgid "Gateway Log"
506
  msgstr ""
507
 
508
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
509
  msgid "No recorded calls found."
510
  msgstr ""
511
 
512
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
513
  msgid "Test Mode"
514
  msgstr ""
515
 
516
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
517
  msgid "Enabled"
518
  msgstr ""
519
 
520
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
521
  msgid "Disabled"
522
  msgstr ""
523
 
524
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
525
  msgid "Sandbox Mode"
526
  msgstr ""
527
 
528
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
529
  msgid "Enable for test purchases."
530
  msgstr ""
531
 
532
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
533
  msgid "Update Gateway Settings"
534
  msgstr ""
535
 
536
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:473 ../includes/mycred-log.php:649 ../modules/mycred-module-log.php:551
537
  msgid "User"
538
  msgstr ""
539
 
540
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:650
541
  msgid "Date"
542
  msgstr ""
543
 
544
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
545
  msgid "Payed"
546
  msgstr ""
547
 
548
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
549
  msgid "<strong>buy</strong>CRED Purchase Log"
550
  msgstr ""
551
 
552
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
553
  msgid "Gateway Settings"
554
  msgstr ""
555
 
556
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
557
  msgid ""
558
  "Only completed purchases are shown here. Purchases that were cancelled or "
559
  "failed are not logged."
560
  msgstr ""
561
 
562
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:753 ../modules/mycred-module-log.php:473
563
  msgid "User Missing"
564
  msgstr ""
565
 
566
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1110
567
  msgid "No purchases found"
568
  msgstr ""
569
 
570
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
571
  msgid "This Add-on needs to setup before you can use this shortcode."
572
  msgstr ""
573
 
574
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
575
  msgid "No gateways installed."
576
  msgstr ""
577
 
578
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
579
  msgid "Gateway does not exist."
580
  msgstr ""
581
 
582
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
583
  msgid "Yourself"
584
  msgstr ""
585
 
586
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
587
  msgid "No active gateways found."
588
  msgstr ""
589
 
590
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
591
  msgid "The selected gateway is not active."
592
  msgstr ""
593
 
594
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
595
  msgid "Buy with %gateway%"
596
  msgstr ""
597
 
598
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
599
  msgid "Buy Now"
600
  msgstr ""
601
 
602
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
603
  msgid "No users found"
604
  msgstr ""
605
 
606
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
607
  msgid "To"
608
  msgstr ""
609
 
610
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
611
  msgid "Select Amount"
612
  msgstr ""
613
 
614
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
615
  msgid "min."
616
  msgstr ""
617
 
618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
619
  msgid "Select Gateway"
620
  msgstr ""
621
 
655
  msgid "Cancel purchase"
656
  msgstr ""
657
 
658
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:362 ../includes/mycred-admin.php:360 ../includes/mycred-admin.php:466
659
  msgid "required"
660
  msgstr ""
661
 
662
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:363 ../includes/mycred-admin.php:362 ../includes/mycred-admin.php:468
663
  msgid "optional"
664
  msgstr ""
665
 
767
  msgid "Validating sale"
768
  msgstr ""
769
 
770
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1289
771
  msgid "Token mismatch"
772
  msgstr ""
773
 
774
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1301
775
  msgid "Price mismatch"
776
  msgstr ""
777
 
778
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1306
779
  msgid "Currency mismatch"
780
  msgstr ""
781
 
782
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
783
  msgid "Duplicate transaction"
784
  msgstr ""
785
 
889
  msgid "Full Notifications"
890
  msgstr ""
891
 
892
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
893
  msgid "No"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
897
  msgid "Yes"
898
  msgstr ""
899
 
1051
  msgid "Checkout Page"
1052
  msgstr ""
1053
 
1054
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:753 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2289
1055
  msgid "Title"
1056
  msgstr ""
1057
 
1136
  "address and click validate."
1137
  msgstr ""
1138
 
1139
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
1140
  msgid "Coupons"
1141
  msgstr ""
1142
 
1172
  msgid "No coupons found in Trash"
1173
  msgstr ""
1174
 
1175
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
1176
  msgid "Email Notices"
1177
  msgstr ""
1178
 
1208
  msgid "Usage"
1209
  msgstr ""
1210
 
1211
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
1212
  msgid "Limits"
1213
  msgstr ""
1214
 
1220
  msgid "not yet used"
1221
  msgstr ""
1222
 
1223
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
1224
  msgid "Total"
1225
  msgstr ""
1226
 
1404
  msgid "No email notices found in Trash"
1405
  msgstr ""
1406
 
1407
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
1408
  msgid "General"
1409
  msgstr ""
1410
 
1620
  msgid "CSS Styling"
1621
  msgstr ""
1622
 
1623
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1624
  msgid "Site Related"
1625
  msgstr ""
1626
 
1627
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1628
  msgid "Your websites title"
1629
  msgstr ""
1630
 
1631
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1632
  msgid "Your websites address"
1633
  msgstr ""
1634
 
1635
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1636
  msgid "Your websites tagline (description)"
1637
  msgstr ""
1638
 
1639
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1640
  msgid "Your websites admin email"
1641
  msgstr ""
1642
 
1643
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1644
  msgid "Total number of blog members"
1645
  msgstr ""
1646
 
1647
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1648
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1649
  msgstr ""
1650
 
1651
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:902
 
 
 
 
 
 
 
 
1652
  msgid "Email Notice Activated"
1653
  msgstr ""
1654
 
1655
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1656
  msgid "Email Notice Saved"
1657
  msgstr ""
1658
 
1659
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1660
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1661
  msgstr ""
1662
 
1663
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:906
1664
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1665
  msgstr ""
1666
 
1667
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1668
  msgid ""
1669
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1670
  "not yet ready to use this email notice!"
1671
  msgstr ""
1672
 
1673
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:927
1674
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1675
  msgstr ""
1676
 
1677
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1678
  msgid "This email notice is active."
1679
  msgstr ""
1680
 
1681
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:474
1682
  msgid "Current Balance"
1683
  msgstr ""
1684
 
1691
  msgstr ""
1692
 
1693
  #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
1694
+ msgid "Go Back"
1695
  msgstr ""
1696
 
1697
  #: ../addons/gateway/carts/mycred-marketpress.php:185
1708
  msgid "Paid"
1709
  msgstr ""
1710
 
1711
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1712
  msgid "myCRED"
1713
  msgstr ""
1714
 
1782
  msgid "Percentage"
1783
  msgstr ""
1784
 
1785
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
1786
+ msgid "Option to share sales with the product owner. Use zero to disable."
1787
  msgstr ""
1788
 
1789
  #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
1896
  msgid "Show in Cart and on Checkout Page"
1897
  msgstr ""
1898
 
1899
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:472 ../modules/mycred-module-settings.php:491 ../modules/mycred-module-settings.php:514
1900
  msgid "Label"
1901
  msgstr ""
1902
 
1904
  msgid "Order Total in %_plural%"
1905
  msgstr ""
1906
 
 
 
 
 
1907
  #: ../addons/gateway/carts/mycred-woocommerce.php:166
1908
  msgid "Log entry template for profit sharing."
1909
  msgstr ""
1979
  msgid "Payout"
1980
  msgstr ""
1981
 
 
 
 
 
 
 
1982
  #: ../addons/gateway/carts/mycred-wpecommerce.php:374
1983
  msgid "Instructions"
1984
  msgstr ""
2065
  msgid "Users must be logged in to use this gateway!"
2066
  msgstr ""
2067
 
 
 
 
 
2068
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2069
  msgid "Log"
2070
  msgstr ""
2071
 
2072
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:479
2073
  msgid "Log Entry"
2074
  msgstr ""
2075
 
2099
  msgid "Message to show visitors (users not logged in) on the payment page."
2100
  msgstr ""
2101
 
2102
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:528
2103
  msgid "Update Settings"
2104
  msgstr ""
2105
 
2143
  msgid "Reject"
2144
  msgstr ""
2145
 
2146
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:511 ../modules/mycred-module-settings.php:476 ../modules/mycred-module-settings.php:495
2147
  msgid "Delete"
2148
  msgstr ""
2149
 
2169
 
2170
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
2171
  msgid ""
2172
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2173
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2174
  msgstr ""
2175
 
2229
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2230
  msgstr ""
2231
 
2232
+ #: ../addons/notifications/myCRED-addon-notifications.php:165 ../modules/mycred-module-addons.php:201
2233
  msgid "Notifications"
2234
  msgstr ""
2235
 
2277
  msgid "Are you sure you want to re-assign user ranks?"
2278
  msgstr ""
2279
 
2280
+ #: ../addons/ranks/myCRED-addon-ranks.php:241 ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:253 ../addons/ranks/myCRED-addon-ranks.php:748 ../addons/ranks/myCRED-addon-ranks.php:944 ../modules/mycred-module-addons.php:213
2281
  msgid "Ranks"
2282
  msgstr ""
2283
 
2284
+ #: ../addons/ranks/myCRED-addon-ranks.php:242 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-addon-ranks.php:459 ../addons/ranks/myCRED-addon-ranks.php:554
2285
  msgid "Rank"
2286
  msgstr ""
2287
 
2313
  msgid "No ranks found in Trash"
2314
  msgstr ""
2315
 
2316
+ #: ../addons/ranks/myCRED-addon-ranks.php:318
2317
  msgid "Completed - Total of %d users effected"
2318
  msgstr ""
2319
 
2320
+ #: ../addons/ranks/myCRED-addon-ranks.php:320
2321
  msgid "Log is Empty"
2322
  msgstr ""
2323
 
2324
+ #: ../addons/ranks/myCRED-addon-ranks.php:514 ../addons/ranks/myCRED-addon-ranks.php:517
2325
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2326
  msgstr ""
2327
 
2328
+ #: ../addons/ranks/myCRED-addon-ranks.php:519
2329
  msgid "Rank Activated"
2330
  msgstr ""
2331
 
2332
+ #: ../addons/ranks/myCRED-addon-ranks.php:520
2333
  msgid "Rank Saved"
2334
  msgstr ""
2335
 
2336
+ #: ../addons/ranks/myCRED-addon-ranks.php:521
2337
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2338
  msgstr ""
2339
 
2340
+ #: ../addons/ranks/myCRED-addon-ranks.php:523
2341
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2342
  msgstr ""
2343
 
2344
+ #: ../addons/ranks/myCRED-addon-ranks.php:580 ../addons/ranks/myCRED-addon-ranks.php:633
2345
  msgid "Rank Title"
2346
  msgstr ""
2347
 
2348
+ #: ../addons/ranks/myCRED-addon-ranks.php:581
2349
  msgid "Logo"
2350
  msgstr ""
2351
 
2352
+ #: ../addons/ranks/myCRED-addon-ranks.php:582
2353
  msgid "Requirement"
2354
  msgstr ""
2355
 
2356
+ #: ../addons/ranks/myCRED-addon-ranks.php:583 ../modules/mycred-module-settings.php:439
2357
  msgid "Users"
2358
  msgstr ""
2359
 
2360
+ #: ../addons/ranks/myCRED-addon-ranks.php:599
2361
  msgid "No Logo Set"
2362
  msgstr ""
2363
 
2364
+ #: ../addons/ranks/myCRED-addon-ranks.php:608 ../addons/ranks/myCRED-addon-ranks.php:613
2365
  msgid "Any Value"
2366
  msgstr ""
2367
 
2368
+ #: ../addons/ranks/myCRED-addon-ranks.php:615
2369
  msgid "Maximum %plural%"
2370
  msgstr ""
2371
 
2372
+ #: ../addons/ranks/myCRED-addon-ranks.php:646
2373
  msgid "Rank Settings"
2374
  msgstr ""
2375
 
2376
+ #: ../addons/ranks/myCRED-addon-ranks.php:668
2377
  msgid "Minimum %plural% to reach this rank"
2378
  msgstr ""
2379
 
2380
+ #: ../addons/ranks/myCRED-addon-ranks.php:672
2381
  msgid "Maximum %plural% to be included in this rank"
2382
  msgstr ""
2383
 
2384
+ #: ../addons/ranks/myCRED-addon-ranks.php:679
2385
  msgid "All Published Ranks"
2386
  msgstr ""
2387
 
2388
+ #: ../addons/ranks/myCRED-addon-ranks.php:685 ../addons/ranks/myCRED-addon-ranks.php:687
2389
  msgid "Not Set"
2390
  msgstr ""
2391
 
2392
+ #: ../addons/ranks/myCRED-addon-ranks.php:692
2393
  msgid "No Ranks found"
2394
  msgstr ""
2395
 
2396
+ #: ../addons/ranks/myCRED-addon-ranks.php:750
2397
  msgid "Rank Features"
2398
  msgstr ""
2399
 
2400
+ #: ../addons/ranks/myCRED-addon-ranks.php:754
2401
  msgid "%plural% requirement"
2402
  msgstr ""
2403
 
2404
+ #: ../addons/ranks/myCRED-addon-ranks.php:755
2405
  msgid "Featured Image (Logo)"
2406
  msgstr ""
2407
 
2408
+ #: ../addons/ranks/myCRED-addon-ranks.php:756
2409
  msgid "Content"
2410
  msgstr ""
2411
 
2412
+ #: ../addons/ranks/myCRED-addon-ranks.php:757
2413
  msgid "Excerpt"
2414
  msgstr ""
2415
 
2416
+ #: ../addons/ranks/myCRED-addon-ranks.php:758
2417
  msgid "Comments"
2418
  msgstr ""
2419
 
2420
+ #: ../addons/ranks/myCRED-addon-ranks.php:759
2421
  msgid "Page Attributes"
2422
  msgstr ""
2423
 
2424
+ #: ../addons/ranks/myCRED-addon-ranks.php:760
2425
  msgid "Custom Fields"
2426
  msgstr ""
2427
 
2428
+ #: ../addons/ranks/myCRED-addon-ranks.php:763
2429
  msgid "Public"
2430
  msgstr ""
2431
 
2432
+ #: ../addons/ranks/myCRED-addon-ranks.php:767
2433
  msgid ""
2434
  "If you want to create a template archive for each rank, you must select to have "
2435
  "ranks public. Defaults to disabled."
2436
  msgstr ""
2437
 
2438
+ #: ../addons/ranks/myCRED-addon-ranks.php:770
2439
  msgid "Rank Basis"
2440
  msgstr ""
2441
 
2442
+ #: ../addons/ranks/myCRED-addon-ranks.php:773
2443
  msgid "Users are ranked according to their current balance."
2444
  msgstr ""
2445
 
2446
+ #: ../addons/ranks/myCRED-addon-ranks.php:776
2447
  msgid ""
2448
  "Users are ranked according to the total amount of %_plural% they have "
2449
  "accumulated."
2450
  msgstr ""
2451
 
2452
+ #: ../addons/ranks/myCRED-addon-ranks.php:780 ../addons/ranks/myCRED-addon-ranks.php:785
2453
  msgid "Calculate Totals"
2454
  msgstr ""
2455
 
2456
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2457
  msgid ""
2458
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2459
  "the users current balance will be used as a starting point."
2460
  msgstr ""
2461
 
2462
+ #: ../addons/ranks/myCRED-addon-ranks.php:783
2463
  msgid ""
2464
  "Once a users total has been calculated, they will be assigned to their "
2465
  "appropriate roles. For this reason, it is highly recommended that you first "
2466
  "setup your ranks!"
2467
  msgstr ""
2468
 
2469
+ #: ../addons/ranks/myCRED-addon-ranks.php:784
2470
  msgid ""
2471
  "Depending on your log size and number of users this process may take a while. "
2472
  "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2473
  "is completed!"
2474
  msgstr ""
2475
 
2476
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2477
  msgid "Archive URL"
2478
  msgstr ""
2479
 
2480
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2481
  msgid "Ignored if Ranks are not public"
2482
  msgstr ""
2483
 
2484
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2485
  msgid "Display Order"
2486
  msgstr ""
2487
 
2488
+ #: ../addons/ranks/myCRED-addon-ranks.php:803
2489
  msgid "Ascending - Lowest rank to highest"
2490
  msgstr ""
2491
 
2492
+ #: ../addons/ranks/myCRED-addon-ranks.php:804
2493
  msgid "Descending - Highest rank to lowest"
2494
  msgstr ""
2495
 
2496
+ #: ../addons/ranks/myCRED-addon-ranks.php:813
2497
  msgid ""
2498
  "Select in what order ranks should be displayed in your admin area and/or front "
2499
  "if ranks are \"Public\""
2500
  msgstr ""
2501
 
2502
+ #: ../addons/ranks/myCRED-addon-ranks.php:823 ../modules/mycred-module-buddypress.php:364 ../modules/mycred-module-buddypress.php:371
2503
  msgid "Do not show."
2504
  msgstr ""
2505
 
2506
+ #: ../addons/ranks/myCRED-addon-ranks.php:824 ../modules/mycred-module-buddypress.php:365
2507
  msgid "Include in Profile Header."
2508
  msgstr ""
2509
 
2510
+ #: ../addons/ranks/myCRED-addon-ranks.php:825 ../modules/mycred-module-buddypress.php:366
2511
  msgid "Include under the \"Profile\" tab"
2512
  msgstr ""
2513
 
2514
+ #: ../addons/ranks/myCRED-addon-ranks.php:826 ../modules/mycred-module-buddypress.php:367
2515
  msgid "Include under the \"Profile\" tab and Profile Header."
2516
  msgstr ""
2517
 
2518
+ #: ../addons/ranks/myCRED-addon-ranks.php:829
2519
  msgid "Rank in BuddyPress"
2520
  msgstr ""
2521
 
2522
+ #: ../addons/ranks/myCRED-addon-ranks.php:897
2523
  msgid "Script Communication Error"
2524
  msgstr ""
2525
 
2526
+ #: ../addons/ranks/myCRED-addon-ranks.php:947
2527
  msgid "Rank Post Type"
2528
  msgstr ""
2529
 
2530
+ #: ../addons/ranks/myCRED-addon-ranks.php:951
2531
  msgid "No. of ranks"
2532
  msgstr ""
2533
 
2534
+ #: ../addons/ranks/myCRED-addon-ranks.php:955 ../modules/mycred-module-log.php:372 ../modules/mycred-module-settings.php:428 ../modules/mycred-module-settings.php:443
2535
  msgid "Actions"
2536
  msgstr ""
2537
 
2538
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2539
  msgid "Remove All Ranks"
2540
  msgstr ""
2541
 
2542
+ #: ../addons/ranks/myCRED-addon-ranks.php:956
2543
  msgid "Assign Ranks to Users"
2544
  msgstr ""
2545
 
2555
  msgid "No users found with this rank"
2556
  msgstr ""
2557
 
2558
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2559
  msgid "error"
2560
  msgstr ""
2561
 
2591
  msgid "Pay Content Author."
2592
  msgstr ""
2593
 
2594
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
2595
  msgid "Sell Content"
2596
  msgstr ""
2597
 
2773
  msgid "Transfer %plural%"
2774
  msgstr ""
2775
 
2776
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:457
2777
  msgid "Point Types"
2778
  msgstr ""
2779
 
2959
  "href=\"%s\">website</a>."
2960
  msgstr ""
2961
 
2962
+ #: ../includes/mycred-admin.php:63
2963
+ msgid ""
2964
+ "Re-save your myCRED Settings & all myCRED widget settings that you are "
2965
+ "currently using."
2966
+ msgstr ""
2967
+
2968
+ #: ../includes/mycred-admin.php:67
2969
+ msgid "Re-save your myCRED Hook Settings."
2970
+ msgstr ""
2971
+
2972
+ #: ../includes/mycred-admin.php:71
2973
+ msgid ""
2974
+ "Please complete the following tasks in order to finish updating myCRED to "
2975
+ "version 1.4:"
2976
+ msgstr ""
2977
+
2978
+ #: ../includes/mycred-admin.php:97
2979
  msgid "User is excluded"
2980
  msgstr ""
2981
 
2982
+ #: ../includes/mycred-admin.php:102
2983
  msgid "Log Entry can not be empty"
2984
  msgstr ""
2985
 
2986
+ #: ../includes/mycred-admin.php:106
2987
  msgid "Amount can not be zero"
2988
  msgstr ""
2989
 
2990
+ #: ../includes/mycred-admin.php:127
2991
  msgid "Failed to update this uses balance."
2992
  msgstr ""
2993
 
2994
+ #: ../includes/mycred-admin.php:262
2995
  msgid "Excluded"
2996
  msgstr ""
2997
 
2998
+ #: ../includes/mycred-admin.php:275 ../modules/mycred-module-log.php:254 ../modules/mycred-module-log.php:255
2999
  msgid "History"
3000
  msgstr ""
3001
 
3002
+ #: ../includes/mycred-admin.php:276
3003
  msgid "Adjust"
3004
  msgstr ""
3005
 
3006
+ #: ../includes/mycred-admin.php:331 ../includes/mycred-admin.php:390
3007
  msgid "%singular% balance"
3008
  msgstr ""
3009
 
3010
+ #: ../includes/mycred-admin.php:355
3011
  msgid "Adjust Your Balance"
3012
  msgstr ""
3013
 
3014
+ #: ../includes/mycred-admin.php:357
3015
  msgid "Adjust Users Balance"
3016
  msgstr ""
3017
 
3018
+ #: ../includes/mycred-admin.php:368
3019
  msgid "Log description for adjustment"
3020
  msgstr ""
3021
 
3022
+ #: ../includes/mycred-admin.php:371
3023
  msgid "Update"
3024
  msgstr ""
3025
 
3026
+ #: ../includes/mycred-admin.php:372
3027
  msgid "Description is required!"
3028
  msgstr ""
3029
 
3030
+ #: ../includes/mycred-admin.php:472
3031
  msgid "ID"
3032
  msgstr ""
3033
 
3034
+ #: ../includes/mycred-admin.php:478
3035
  msgid "A positive or negative value"
3036
  msgstr ""
3037
 
3038
+ #: ../includes/mycred-admin.php:480
3039
  msgid "Update Balance"
3040
  msgstr ""
3041
 
3047
  msgid "Points"
3048
  msgstr ""
3049
 
3050
+ #: ../includes/mycred-functions.php:395
3051
  msgid "Deleted"
3052
  msgstr ""
3053
 
3054
+ #: ../includes/mycred-functions.php:532
3055
  msgid "Deleted Item"
3056
  msgstr ""
3057
 
3058
+ #: ../includes/mycred-functions.php:596
3059
+ msgid "User Related"
3060
+ msgstr ""
3061
+
3062
+ #: ../includes/mycred-functions.php:603
3063
+ msgid "Post Related"
3064
+ msgstr ""
3065
+
3066
+ #: ../includes/mycred-functions.php:610
3067
  msgid "Comment Related"
3068
  msgstr ""
3069
 
3070
+ #: ../includes/mycred-functions.php:617
3071
  msgid "Widget Related"
3072
  msgstr ""
3073
 
3074
+ #: ../includes/mycred-functions.php:624
3075
  msgid "Amount Related"
3076
  msgstr ""
3077
 
3078
+ #: ../includes/mycred-functions.php:631
3079
  msgid "Video Related"
3080
  msgstr ""
3081
 
3082
+ #: ../includes/mycred-functions.php:642
3083
  msgid "and"
3084
  msgstr ""
3085
 
3086
+ #: ../includes/mycred-functions.php:644
3087
  msgid "Available Template Tags:"
3088
  msgstr ""
3089
 
3090
+ #: ../includes/mycred-functions.php:1565
3091
  msgid "Entire Log"
3092
  msgstr ""
3093
 
3094
+ #: ../includes/mycred-functions.php:1570 ../includes/mycred-functions.php:1571
3095
  msgid "Displayed Rows"
3096
  msgstr ""
3097
 
3098
+ #: ../includes/mycred-functions.php:1575
3099
  msgid "Search Results"
3100
  msgstr ""
3101
 
3102
+ #: ../includes/mycred-functions.php:1576
3103
  msgid "My Entire Log"
3104
  msgstr ""
3105
 
3106
+ #: ../includes/mycred-functions.php:1696
3107
  msgid "ref empty"
3108
  msgstr ""
3109
 
3110
+ #: ../includes/mycred-functions.php:1704
3111
  msgid "incorrect user id format"
3112
  msgstr ""
3113
 
3114
+ #: ../includes/mycred-functions.php:1717
3115
  msgid "incorrect unix timestamp (from):"
3116
  msgstr ""
3117
 
3118
+ #: ../includes/mycred-functions.php:1726
3119
  msgid "incorrect unix timestamp (to):"
3120
  msgstr ""
3121
 
3128
  msgstr ""
3129
 
3130
  #: ../includes/mycred-importer.php:43
3131
+ msgid "%s Balance Import"
3132
+ msgstr ""
3133
+
3134
+ #: ../includes/mycred-importer.php:44
3135
+ msgid "Import balances."
3136
+ msgstr ""
3137
+
3138
+ #: ../includes/mycred-importer.php:75
3139
  msgid "%s CubePoints Import"
3140
  msgstr ""
3141
 
3142
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
3143
  msgid "Import CubePoints log entries and / or balances."
3144
  msgstr ""
3145
 
3146
+ #: ../includes/mycred-importer.php:92
3147
  msgid "No CubePoints log exists."
3148
  msgstr ""
3149
 
3165
  "for running myCRED. The following errors were given:"
3166
  msgstr ""
3167
 
3168
+ #: ../includes/mycred-install.php:243
3169
  msgid "myCRED needs your attention."
3170
  msgstr ""
3171
 
3172
+ #: ../includes/mycred-install.php:243
3173
  msgid "Run Setup"
3174
  msgstr ""
3175
 
3176
+ #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3177
  msgid "myCRED Setup"
3178
  msgstr ""
3179
 
3180
+ #: ../includes/mycred-install.php:385
3181
  msgid "%s Setup"
3182
  msgstr ""
3183
 
3184
+ #: ../includes/mycred-install.php:387
3185
  msgid "Step"
3186
  msgstr ""
3187
 
3188
+ #: ../includes/mycred-install.php:411
3189
  msgid ""
3190
  "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3191
  "format, layout and security settings."
3192
  msgstr ""
3193
 
3194
+ #: ../includes/mycred-install.php:412
3195
  msgid "Begin Setup"
3196
  msgstr ""
3197
 
3198
+ #: ../includes/mycred-install.php:467
3199
  msgid "Select the format you want to use for your points."
3200
  msgstr ""
3201
 
3202
+ #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3203
  msgid "Format"
3204
  msgstr ""
3205
 
3206
+ #: ../includes/mycred-install.php:471
3207
  msgid "Separators"
3208
  msgstr ""
3209
 
3210
+ #: ../includes/mycred-install.php:481
3211
  msgid "Decimals"
3212
  msgstr ""
3213
 
3214
+ #: ../includes/mycred-install.php:483
3215
  msgid "Use zero for no decimals."
3216
  msgstr ""
3217
 
3218
+ #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:344
3219
  msgid "Presentation"
3220
  msgstr ""
3221
 
3222
+ #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:331
3223
  msgid "Name (Singular)"
3224
  msgstr ""
3225
 
3226
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:336
3227
  msgid "Name (Plural)"
3228
  msgstr ""
3229
 
3230
+ #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:347
3231
  msgid "Prefix"
3232
  msgstr ""
3233
 
3234
+ #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:355
3235
  msgid "Suffix"
3236
  msgstr ""
3237
 
3238
+ #: ../includes/mycred-install.php:511
3239
  msgid "Cancel Setup"
3240
  msgstr ""
3241
 
3242
+ #: ../includes/mycred-install.php:511
3243
  msgid "Cancel"
3244
  msgstr ""
3245
 
3246
+ #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3247
  msgid "Next"
3248
  msgstr ""
3249
 
3250
+ #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:363
3251
  msgid "Security"
3252
  msgstr ""
3253
 
3254
+ #: ../includes/mycred-install.php:546
3255
  msgid "Edit Settings Capability"
3256
  msgstr ""
3257
 
3258
+ #: ../includes/mycred-install.php:550
3259
  msgid "Edit Users %plural% Capability"
3260
  msgstr ""
3261
 
3262
+ #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:376
3263
  msgid "Maximum %plural% payouts"
3264
  msgstr ""
3265
 
3266
+ #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:378
3267
  msgid ""
3268
  "As an added security, you can set the maximum amount a user can gain or loose "
3269
  "in a single instance. If used, make sure this is the maximum amount a user "
3270
  "would be able to transfer, buy, or spend in your store. Use zero to disable."
3271
  msgstr ""
3272
 
3273
+ #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:385
3274
  msgid "Exclude those who can \"Edit Settings\"."
3275
  msgstr ""
3276
 
3277
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:389
3278
  msgid "Exclude those who can \"Edit Users %plural%\"."
3279
  msgstr ""
3280
 
3281
+ #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:393
3282
  msgid "Exclude the following user IDs:"
3283
  msgstr ""
3284
 
3285
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:398
3286
  msgid "User Deletions"
3287
  msgstr ""
3288
 
3289
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:401
3290
  msgid "Delete log entries when user is deleted."
3291
  msgstr ""
3292
 
3293
+ #: ../includes/mycred-install.php:599
3294
  msgid "Ready"
3295
  msgstr ""
3296
 
3297
+ #: ../includes/mycred-install.php:600
3298
  msgid "Almost done! Click the button below to finish this setup."
3299
  msgstr ""
3300
 
3301
+ #: ../includes/mycred-install.php:601
3302
  msgid "Install & Run"
3303
  msgstr ""
3304
 
3339
  msgid "Show all references"
3340
  msgstr ""
3341
 
3342
+ #: ../includes/mycred-log.php:541 ../modules/mycred-module-settings.php:541
3343
  msgid "User ID"
3344
  msgstr ""
3345
 
3405
  msgid "This Month"
3406
  msgstr ""
3407
 
3408
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
3409
  msgid "Network Settings"
3410
  msgstr ""
3411
 
3412
+ #: ../includes/mycred-network.php:169
3413
  msgid "%s Network"
3414
  msgstr ""
3415
 
3416
+ #: ../includes/mycred-network.php:175
3417
  msgid "Note! %s has not yet been setup."
3418
  msgstr ""
3419
 
3420
+ #: ../includes/mycred-network.php:179
3421
  msgid "Network Settings Updated"
3422
  msgstr ""
3423
 
3424
+ #: ../includes/mycred-network.php:181
3425
  msgid "Configure network settings for %s."
3426
  msgstr ""
3427
 
3428
+ #: ../includes/mycred-network.php:188
3429
  msgid "Master Template"
3430
  msgstr ""
3431
 
3432
+ #: ../includes/mycred-network.php:199
3433
  msgid ""
3434
  "If enabled, %s will use your main site's settings for all other sites in your "
3435
  "network."
3436
  msgstr ""
3437
 
3438
+ #: ../includes/mycred-network.php:202
3439
  msgid "Central Logging"
3440
  msgstr ""
3441
 
3442
+ #: ../includes/mycred-network.php:213
3443
  msgid "If enabled, %s will log all site actions in your main site's log."
3444
  msgstr ""
3445
 
3446
+ #: ../includes/mycred-network.php:216
3447
  msgid "Site Block"
3448
  msgstr ""
3449
 
3450
+ #: ../includes/mycred-network.php:220
3451
  msgid "Comma separated list of blog ids where %s is to be disabled."
3452
  msgstr ""
3453
 
3454
+ #: ../includes/mycred-network.php:229
3455
  msgid "Save Network Settings"
3456
  msgstr ""
3457
 
3458
+ #: ../includes/mycred-overview.php:25
3459
  msgid "%s Overview"
3460
  msgstr ""
3461
 
3462
+ #: ../includes/mycred-overview.php:78
3463
  msgid "Total amount in circulation"
3464
  msgstr ""
3465
 
3466
+ #: ../includes/mycred-overview.php:81
3467
  msgid "Awarded"
3468
  msgstr ""
3469
 
3470
+ #: ../includes/mycred-overview.php:84
3471
  msgid "Deducted"
3472
  msgstr ""
3473
 
3474
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
3475
  msgid "Transfers"
3476
  msgstr ""
3477
 
3478
+ #: ../includes/mycred-overview.php:208
3479
  msgid "Manual"
3480
  msgstr ""
3481
 
3547
  msgid "Leaderboard is empty."
3548
  msgstr ""
3549
 
3550
+ #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3551
  msgid "Amount missing!"
3552
  msgstr ""
3553
 
3554
+ #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3555
  msgid "Log Template Missing!"
3556
  msgstr ""
3557
 
3558
+ #: ../includes/mycred-shortcodes.php:417
3559
  msgid "Anchor missing URL!"
3560
  msgstr ""
3561
 
3562
+ #: ../includes/mycred-shortcodes.php:482
3563
  msgid "User ID missing for recipient."
3564
  msgstr ""
3565
 
3566
+ #: ../includes/mycred-shortcodes.php:536
3567
  msgid "Sent"
3568
  msgstr ""
3569
 
3570
+ #: ../includes/mycred-shortcodes.php:537
3571
  msgid "Error - Try Again"
3572
  msgstr ""
3573
 
3574
+ #: ../includes/mycred-shortcodes.php:645
3575
  msgid "A video ID is required for this shortcode"
3576
  msgstr ""
3577
 
3591
  msgid "%plural% History"
3592
  msgstr ""
3593
 
3594
+ #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3595
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3596
  msgstr ""
3597
 
3623
  msgid "Row layout"
3624
  msgstr ""
3625
 
3626
+ #: ../includes/mycred-widgets.php:246 ../includes/mycred-widgets.php:607
3627
  msgid "Show message when not logged in"
3628
  msgstr ""
3629
 
3630
+ #: ../includes/mycred-widgets.php:248 ../includes/mycred-widgets.php:608
3631
  msgid "Message"
3632
  msgstr ""
3633
 
3673
  "at the end with their current position."
3674
  msgstr ""
3675
 
3676
+ #: ../includes/mycred-widgets.php:495
3677
  msgid "Shows the current users balances for each point type."
3678
  msgstr ""
3679
 
3680
+ #: ../includes/mycred-widgets.php:497
3681
  msgid "(%s) Wallet"
3682
  msgstr ""
3683
 
3684
+ #: ../includes/mycred-widgets.php:577
3685
  msgid "My Wallet"
3686
  msgstr ""
3687
 
3688
+ #: ../includes/mycred-widgets.php:599
3689
  msgid "Row Layout"
3690
  msgstr ""
3691
 
3703
  "imported. <strong>%d</strong> was skipped."
3704
  msgstr ""
3705
 
3706
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3707
  msgid "View Log"
3708
  msgstr ""
3709
 
3710
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148 ../includes/importers/mycred-balances.php:166
3711
  msgid "Import More"
3712
  msgstr ""
3713
 
3747
  msgid "Import Log"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180 ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:144 ../includes/importers/mycred-balances.php:183 ../includes/importers/mycred-balances.php:198
3751
  msgid "Sorry, there has been an error."
3752
  msgstr ""
3753
 
3754
+ #: ../includes/importers/mycred-log-entries.php:82 ../includes/importers/mycred-balances.php:82
3755
  msgid "The file does not exist, please try again."
3756
  msgstr ""
3757
 
3758
+ #: ../includes/importers/mycred-log-entries.php:127 ../includes/importers/mycred-balances.php:145
3759
  msgid "The CSV is invalid."
3760
  msgstr ""
3761
 
3767
  msgid "Import log entries from a CSV file."
3768
  msgstr ""
3769
 
3770
+ #: ../includes/importers/mycred-log-entries.php:219 ../includes/importers/mycred-balances.php:237
3771
  msgid ""
3772
  "Before you can upload your import file, you will need to fix the following "
3773
  "error:"
3774
  msgstr ""
3775
 
3776
+ #: ../includes/importers/mycred-log-entries.php:228 ../includes/importers/mycred-balances.php:246
3777
  msgid "Choose a file from your computer:"
3778
  msgstr ""
3779
 
3780
+ #: ../includes/importers/mycred-log-entries.php:234 ../includes/importers/mycred-balances.php:252
3781
  msgid "Maximum size: %s"
3782
  msgstr ""
3783
 
3784
+ #: ../includes/importers/mycred-log-entries.php:239 ../includes/importers/mycred-balances.php:257
3785
  msgid "OR enter path to file:"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/importers/mycred-log-entries.php:246 ../includes/importers/mycred-balances.php:264
3789
  msgid "Delimiter"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/importers/mycred-log-entries.php:252 ../includes/importers/mycred-balances.php:270
3793
  msgid "Upload file and import"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/importers/mycred-balances.php:156
3797
+ msgid ""
3798
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3799
+ "imported. <strong>%d</strong> was skipped."
3800
+ msgstr ""
3801
+
3802
+ #: ../includes/importers/mycred-balances.php:212
3803
+ msgid "Import Balances"
3804
+ msgstr ""
3805
+
3806
+ #: ../includes/importers/mycred-balances.php:229
3807
+ msgid "Import balances from a CSV file."
3808
+ msgstr ""
3809
+
3810
  #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
3811
  msgid "Add-ons"
3812
  msgstr ""
3813
 
3814
+ #: ../modules/mycred-module-addons.php:158
3815
  msgid ""
3816
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3817
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3818
  "let your users buy points for other members."
3819
  msgstr ""
3820
 
3821
+ #: ../modules/mycred-module-addons.php:169
3822
  msgid ""
3823
+ "The coupons add-on allows you to create coupons that users can use to add "
3824
  "points to their accounts."
3825
  msgstr ""
3826
 
3827
+ #: ../modules/mycred-module-addons.php:180
3828
  msgid "Create email notices for any type of myCRED instance."
3829
  msgstr ""
3830
 
3831
+ #: ../modules/mycred-module-addons.php:191
3832
  msgid ""
3833
  "Let your users pay using their <strong>my</strong>CRED points balance. "
3834
  "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3835
  "Bookings: Event Espresso and Events Manager (free & pro)."
3836
  msgstr ""
3837
 
3838
+ #: ../modules/mycred-module-addons.php:202
3839
  msgid "Create pop-up notifications for when users gain or loose points."
3840
  msgstr ""
3841
 
3842
+ #: ../modules/mycred-module-addons.php:214
3843
  msgid ""
3844
  "Create ranks for users reaching a certain number of %_plural% with the option "
3845
  "to add logos for each rank."
3846
  msgstr ""
3847
 
3848
+ #: ../modules/mycred-module-addons.php:225
3849
  msgid ""
3850
  "This add-on allows you to sell posts, pages or any public post types on your "
3851
  "website. You can either sell the entire content or using our shortcode, sell "
3852
  "parts of your content allowing you to offer \"teasers\"."
3853
  msgstr ""
3854
 
3855
+ #: ../modules/mycred-module-addons.php:236
3856
  msgid ""
3857
  "Allow your users to send or \"donate\" points to other members by either using "
3858
  "the mycred_transfer shortcode or the myCRED Transfer widget."
3859
  msgstr ""
3860
 
3861
+ #: ../modules/mycred-module-addons.php:272
3862
  msgid "%s Add-ons"
3863
  msgstr ""
3864
 
3865
+ #: ../modules/mycred-module-addons.php:278
3866
  msgid "Add-on Activated"
3867
  msgstr ""
3868
 
3869
+ #: ../modules/mycred-module-addons.php:281
3870
  msgid "Add-on Deactivated"
3871
  msgstr ""
3872
 
3873
+ #: ../modules/mycred-module-addons.php:285
3874
  msgid "Add-ons can expand your current installation with further features."
3875
  msgstr ""
3876
 
3877
+ #: ../modules/mycred-module-addons.php:306
3878
  msgid "You can find more add-ons in our %s."
3879
  msgstr ""
3880
 
3881
+ #: ../modules/mycred-module-addons.php:306
3882
  msgid "online store"
3883
  msgstr ""
3884
 
3885
+ #: ../modules/mycred-module-addons.php:327
3886
  msgid "Deactivate Add-on"
3887
  msgstr ""
3888
 
3889
+ #: ../modules/mycred-module-addons.php:328
3890
  msgid "Deactivate"
3891
  msgstr ""
3892
 
3893
+ #: ../modules/mycred-module-addons.php:335
3894
  msgid "Activate Add-on"
3895
  msgstr ""
3896
 
3897
+ #: ../modules/mycred-module-addons.php:336
3898
  msgid "Activate"
3899
  msgstr ""
3900
 
3901
+ #: ../modules/mycred-module-addons.php:352
3902
  msgid "Version"
3903
  msgstr ""
3904
 
3905
+ #: ../modules/mycred-module-addons.php:356
3906
  msgid "By"
3907
  msgstr ""
3908
 
3909
+ #: ../modules/mycred-module-addons.php:364
3910
  msgid "Get Pro"
3911
  msgstr ""
3912
 
4064
  "depending on their actions around your website."
4065
  msgstr ""
4066
 
4067
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2199 ../modules/mycred-module-hooks.php:2228 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
4068
  msgid "Log template"
4069
  msgstr ""
4070
 
4071
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2207 ../modules/mycred-module-hooks.php:2236 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
4072
  msgid "Limit"
4073
  msgstr ""
4074
 
4075
+ #: ../modules/mycred-module-hooks.php:632
4076
  msgid "%plural% for Posts"
4077
  msgstr ""
4078
 
4079
+ #: ../modules/mycred-module-hooks.php:645
4080
  msgid "%plural% for Pages"
4081
  msgstr ""
4082
 
4083
+ #: ../modules/mycred-module-hooks.php:681
4084
  msgid "%plural% for %s"
4085
  msgstr ""
4086
 
4087
+ #: ../modules/mycred-module-hooks.php:1053
4088
  msgid ""
4089
  "%plural% are only awarded when your website has been synced with the Disqus "
4090
  "server!"
4091
  msgstr ""
4092
 
4093
+ #: ../modules/mycred-module-hooks.php:1055
4094
  msgid "Approved Comment"
4095
  msgstr ""
4096
 
4097
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
4098
  msgid "Comment Author"
4099
  msgstr ""
4100
 
4101
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
4102
  msgid "Content Author"
4103
  msgstr ""
4104
 
4105
+ #: ../modules/mycred-module-hooks.php:1072
4106
  msgid "Comment Marked SPAM"
4107
  msgstr ""
4108
 
4109
+ #: ../modules/mycred-module-hooks.php:1089
4110
  msgid "Trashed / Unapproved Comments"
4111
  msgstr ""
4112
 
4113
+ #: ../modules/mycred-module-hooks.php:1109
4114
  msgid "Limit per post"
4115
  msgstr ""
4116
 
4117
+ #: ../modules/mycred-module-hooks.php:1111
4118
  msgid ""
4119
  "The number of comments per post that grants %_plural% to the comment author. "
4120
  "Use zero for unlimited."
4121
  msgstr ""
4122
 
4123
+ #: ../modules/mycred-module-hooks.php:1115
4124
  msgid "Limit per day"
4125
  msgstr ""
4126
 
4127
+ #: ../modules/mycred-module-hooks.php:1117
4128
  msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
4129
  msgstr ""
4130
 
4131
+ #: ../modules/mycred-module-hooks.php:1122
4132
  msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4133
  msgstr ""
4134
 
4135
+ #: ../modules/mycred-module-hooks.php:1193
4136
  msgid "Once for each unique URL"
4137
  msgstr ""
4138
 
4139
+ #: ../modules/mycred-module-hooks.php:1194
4140
  msgid "Once for each unique link id"
4141
  msgstr ""
4142
 
4143
+ #: ../modules/mycred-module-hooks.php:1386
4144
  msgid ""
4145
  "The default amount to award for clicking on links. You can override this in the "
4146
  "shortcode."
4147
  msgstr ""
4148
 
4149
+ #: ../modules/mycred-module-hooks.php:1393
4150
  msgid "Custom tags: %url%, %title% or %id%."
4151
  msgstr ""
4152
 
4153
+ #: ../modules/mycred-module-hooks.php:1404 ../modules/mycred-module-hooks.php:2310
4154
  msgid "Note!"
4155
  msgstr ""
4156
 
4157
+ #: ../modules/mycred-module-hooks.php:1404
4158
  msgid ""
4159
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4160
  "generate one automatically based on the value set under href. If you are using "
4161
  "this feature for \"sharing\" content, it is recommended that you limit by ID."
4162
  msgstr ""
4163
 
4164
+ #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4165
  msgid "Available Shortcode"
4166
  msgstr ""
4167
 
4168
+ #: ../modules/mycred-module-hooks.php:1726
4169
  msgid "Amount to award for viewing videos."
4170
  msgstr ""
4171
 
4172
+ #: ../modules/mycred-module-hooks.php:1736
4173
  msgid "Award Logic"
4174
  msgstr ""
4175
 
4176
+ #: ../modules/mycred-module-hooks.php:1738
4177
  msgid "Select when %_plural% should be awarded or deducted."
4178
  msgstr ""
4179
 
4180
+ #: ../modules/mycred-module-hooks.php:1739
4181
  msgid "Play - As soon as video starts playing."
4182
  msgstr ""
4183
 
4184
+ #: ../modules/mycred-module-hooks.php:1740
4185
  msgid "Full - First when the entire video has played."
4186
  msgstr ""
4187
 
4188
+ #: ../modules/mycred-module-hooks.php:1741
4189
  msgid "Interval - For each x number of seconds watched."
4190
  msgstr ""
4191
 
4192
+ #: ../modules/mycred-module-hooks.php:1746
4193
  msgid "Number of seconds"
4194
  msgstr ""
4195
 
4196
+ #: ../modules/mycred-module-hooks.php:1753
4197
  msgid "Leniency"
4198
  msgstr ""
4199
 
4200
+ #: ../modules/mycred-module-hooks.php:1755
4201
  msgid ""
4202
  "The maximum percentage a users view of a movie can differ from the actual "
4203
  "length."
4204
  msgstr ""
4205
 
4206
+ #: ../modules/mycred-module-hooks.php:1758
4207
  msgid ""
4208
  "Do not set this value to zero! A lot of thing can happen while a user watches a "
4209
  "movie and sometimes a few seconds can drop of the counter due to buffering or "
4210
  "play back errors."
4211
  msgstr ""
4212
 
4213
+ #: ../modules/mycred-module-hooks.php:1826
4214
  msgid "Affiliate Program"
4215
  msgstr ""
4216
 
4217
+ #: ../modules/mycred-module-hooks.php:1835
4218
  msgid "Per Day"
4219
  msgstr ""
4220
 
4221
+ #: ../modules/mycred-module-hooks.php:1942
4222
  msgid "Link"
4223
  msgstr ""
4224
 
4225
+ #: ../modules/mycred-module-hooks.php:2193
4226
  msgid "Referring Visitors"
4227
  msgstr ""
4228
 
4229
+ #: ../modules/mycred-module-hooks.php:2217 ../modules/mycred-module-hooks.php:2246
4230
  msgid "The number of referrals each member can make. Use zero for unlimited."
4231
  msgstr ""
4232
 
4233
+ #: ../modules/mycred-module-hooks.php:2221 ../modules/mycred-module-hooks.php:2250
4234
  msgid "Referring Signups"
4235
  msgstr ""
4236
 
4237
+ #: ../modules/mycred-module-hooks.php:2225
4238
  msgid "Visitors who have Cookies disabled will not award %_plural%."
4239
  msgstr ""
4240
 
4241
+ #: ../modules/mycred-module-hooks.php:2252
4242
  msgid "Registrations are disabled."
4243
  msgstr ""
4244
 
4245
+ #: ../modules/mycred-module-hooks.php:2259
4246
  msgid "Referral Links"
4247
  msgstr ""
4248
 
4249
+ #: ../modules/mycred-module-hooks.php:2263
4250
  msgid "Assign numeric referral IDs to each user."
4251
  msgstr ""
4252
 
4253
+ #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:2270
4254
  msgid "Example"
4255
  msgstr ""
4256
 
4257
+ #: ../modules/mycred-module-hooks.php:2269
4258
  msgid "Assign usernames as IDs for each user."
4259
  msgstr ""
4260
 
4261
+ #: ../modules/mycred-module-hooks.php:2273
4262
  msgid "IP Limit"
4263
  msgstr ""
4264
 
4265
+ #: ../modules/mycred-module-hooks.php:2277
4266
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4267
  msgstr ""
4268
 
4269
+ #: ../modules/mycred-module-hooks.php:2281 ../modules/mycred-module-hooks.php:2314
4270
  msgid "BuddyPress Profile"
4271
  msgstr ""
4272
 
4273
+ #: ../modules/mycred-module-hooks.php:2284
4274
  msgid "Insert Link in users Profile"
4275
  msgstr ""
4276
 
4277
+ #: ../modules/mycred-module-hooks.php:2285
4278
  msgid ""
4279
  "Option to inser the referral link in users profiles. Links will only be visible "
4280
  "to users viewing their own profiles or administrators."
4281
  msgstr ""
4282
 
4283
+ #: ../modules/mycred-module-hooks.php:2291
4284
  msgid "Leave empty to hide."
4285
  msgstr ""
4286
 
4287
+ #: ../modules/mycred-module-hooks.php:2294
4288
  msgid "Description"
4289
  msgstr ""
4290
 
4291
+ #: ../modules/mycred-module-hooks.php:2295
4292
  msgid "Optional description to insert under the link."
4293
  msgstr ""
4294
 
4295
+ #: ../modules/mycred-module-hooks.php:2307
4296
  msgid "Profile Positioning"
4297
  msgstr ""
4298
 
4299
+ #: ../modules/mycred-module-hooks.php:2309
4300
  msgid ""
4301
  "You can move around the referral link on your users profile by changing the "
4302
+ "position. Increase to move up, decrease to move down."
4303
  msgstr ""
4304
 
4305
+ #: ../modules/mycred-module-hooks.php:2310
4306
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4307
  msgstr ""
4308
 
4309
+ #: ../modules/mycred-module-hooks.php:2316
4310
  msgid "Requires BuddyPress Extended Profiles to be enabled."
4311
  msgstr ""
4312
 
4313
+ #: ../modules/mycred-module-hooks.php:2324
4314
  msgid "Available Shortcodes"
4315
  msgstr ""
4316
 
4317
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4318
  msgid "Access denied for this action"
4319
  msgstr ""
4320
 
4321
+ #: ../modules/mycred-module-log.php:192
4322
  msgid "Row Deleted"
4323
  msgstr ""
4324
 
4325
+ #: ../modules/mycred-module-log.php:219
4326
  msgid "Log entry not found"
4327
  msgstr ""
4328
 
4329
+ #: ../modules/mycred-module-log.php:232
4330
  msgid "Entry Updated"
4331
  msgstr ""
4332
 
4333
+ #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:424
4334
  msgid "Entries"
4335
  msgstr ""
4336
 
4337
+ #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:392 ../modules/mycred-module-log.php:643 ../modules/mycred-module-settings.php:558
4338
  msgid "Export"
4339
  msgstr ""
4340
 
4341
+ #: ../modules/mycred-module-log.php:311
4342
  msgid "Search results for"
4343
  msgstr ""
4344
 
4345
+ #: ../modules/mycred-module-log.php:386
4346
  msgid "%s Log"
4347
  msgstr ""
4348
 
4349
+ #: ../modules/mycred-module-log.php:511
4350
  msgid "Edit"
4351
  msgstr ""
4352
 
4353
+ #: ../modules/mycred-module-log.php:556
4354
  msgid "Current Log Entry"
4355
  msgstr ""
4356
 
4357
+ #: ../modules/mycred-module-log.php:558
4358
  msgid "The current saved log entry"
4359
  msgstr ""
4360
 
4361
+ #: ../modules/mycred-module-log.php:561
4362
  msgid "Adjust Log Entry"
4363
  msgstr ""
4364
 
4365
+ #: ../modules/mycred-module-log.php:563
4366
  msgid "The new log entry"
4367
  msgstr ""
4368
 
4369
+ #: ../modules/mycred-module-log.php:566
4370
  msgid "Update Log Entry"
4371
  msgstr ""
4372
 
4373
+ #: ../modules/mycred-module-log.php:598
4374
  msgid "My %s History"
4375
  msgstr ""
4376
 
4377
+ #: ../modules/mycred-module-settings.php:64 ../modules/mycred-module-settings.php:105
4378
  msgid "Missing point type"
4379
  msgstr ""
4380
 
4381
+ #: ../modules/mycred-module-settings.php:128
4382
  msgid "Accounts successfully reset"
4383
  msgstr ""
4384
 
4385
+ #: ../modules/mycred-module-settings.php:168
4386
  msgid "No users found to export"
4387
  msgstr ""
4388
 
4389
+ #: ../modules/mycred-module-settings.php:314
4390
  msgid "Facebook"
4391
  msgstr ""
4392
 
4393
+ #: ../modules/mycred-module-settings.php:315
4394
  msgid "Google Plus"
4395
  msgstr ""
4396
 
4397
+ #: ../modules/mycred-module-settings.php:318
4398
  msgid "%s Settings"
4399
  msgstr ""
4400
 
4401
+ #: ../modules/mycred-module-settings.php:321
4402
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4403
  msgstr ""
4404
 
4405
+ #: ../modules/mycred-module-settings.php:326
4406
  msgid "Core Settings"
4407
  msgstr ""
4408
 
4409
+ #: ../modules/mycred-module-settings.php:328
4410
  msgid "Name"
4411
  msgstr ""
4412
 
4413
+ #: ../modules/mycred-module-settings.php:333
4414
  msgid "Accessible though the %singular% template tag."
4415
  msgstr ""
4416
 
4417
+ #: ../modules/mycred-module-settings.php:338
4418
  msgid "Accessible though the %plural% template tag."
4419
  msgstr ""
4420
 
4421
+ #: ../modules/mycred-module-settings.php:341
4422
  msgid "Tip"
4423
  msgstr ""
4424
 
4425
+ #: ../modules/mycred-module-settings.php:341
4426
  msgid ""
4427
  "Adding an underscore at the beginning of template tag for names will return "
4428
  "them in lowercase. i.e. %_singular%"
4429
  msgstr ""
4430
 
4431
+ #: ../modules/mycred-module-settings.php:359
4432
  msgid "Separator"
4433
  msgstr ""
4434
 
4435
+ #: ../modules/mycred-module-settings.php:366
4436
  msgid "Edit Settings"
4437
  msgstr ""
4438
 
4439
+ #: ../modules/mycred-module-settings.php:368 ../modules/mycred-module-settings.php:373
4440
  msgid "Capability to check for."
4441
  msgstr ""
4442
 
4443
+ #: ../modules/mycred-module-settings.php:371
4444
  msgid "Edit Users %plural%"
4445
  msgstr ""
4446
 
4447
+ #: ../modules/mycred-module-settings.php:395
4448
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4449
  msgstr ""
4450
 
4451
+ #: ../modules/mycred-module-settings.php:415
4452
  msgid "Management"
4453
  msgstr ""
4454
 
4455
+ #: ../modules/mycred-module-settings.php:417
4456
  msgid "The Log"
4457
  msgstr ""
4458
 
4459
+ #: ../modules/mycred-module-settings.php:420
4460
  msgid "Table Name"
4461
  msgstr ""
4462
 
4463
+ #: ../modules/mycred-module-settings.php:429
4464
  msgid "Empty Log"
4465
  msgstr ""
4466
 
4467
+ #: ../modules/mycred-module-settings.php:435
4468
  msgid "User Meta Key"
4469
  msgstr ""
4470
 
4471
+ #: ../modules/mycred-module-settings.php:444
4472
  msgid "Set all to zero"
4473
  msgstr ""
4474
 
4475
+ #: ../modules/mycred-module-settings.php:444
4476
  msgid "CSV Export"
4477
  msgstr ""
4478
 
4479
+ #: ../modules/mycred-module-settings.php:465
4480
  msgid "Default"
4481
  msgstr ""
4482
 
4483
+ #: ../modules/mycred-module-settings.php:468 ../modules/mycred-module-settings.php:487 ../modules/mycred-module-settings.php:509
4484
  msgid "Meta Key"
4485
  msgstr ""
4486
 
4487
+ #: ../modules/mycred-module-settings.php:506
4488
  msgid "Add New Type"
4489
  msgstr ""
4490
 
4491
+ #: ../modules/mycred-module-settings.php:511
4492
  msgid "A unique ID for this type."
4493
  msgstr ""
4494
 
4495
+ #: ../modules/mycred-module-settings.php:516
4496
  msgid "Menu and page title."
4497
  msgstr ""
4498
 
4499
+ #: ../modules/mycred-module-settings.php:519
4500
  msgid "The meta key will define where your users balances are saved."
4501
  msgstr ""
4502
 
4503
+ #: ../modules/mycred-module-settings.php:536
4504
  msgid "Identify users by"
4505
  msgstr ""
4506
 
4507
+ #: ../modules/mycred-module-settings.php:542
4508
  msgid "User Email"
4509
  msgstr ""
4510
 
4511
+ #: ../modules/mycred-module-settings.php:543
4512
  msgid "User Login"
4513
  msgstr ""
4514
 
4515
+ #: ../modules/mycred-module-settings.php:550
4516
  msgid ""
4517
  "Use ID if you intend to use this export as a backup of your current site while "
4518
  "Email is recommended if you want to export to a different site."
4519
  msgstr ""
4520
 
4521
+ #: ../modules/mycred-module-settings.php:553
4522
  msgid "Import Log Entry"
4523
  msgstr ""
4524
 
4525
+ #: ../modules/mycred-module-settings.php:555
4526
  msgid ""
4527
  "Optional log entry to use if you intend to import this file in a different %s "
4528
  "installation."
4731
  msgstr ""
4732
 
4733
  #: ../plugins/mycred-hook-buddypress.php:377
4734
+ msgid "Daily limit. Use zero for unlimited."
4735
  msgstr ""
4736
 
4737
  #: ../plugins/mycred-hook-buddypress.php:387
modules/mycred-module-addons.php CHANGED
@@ -166,7 +166,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
166
  // Coupons Add-on
167
  $installed['coupons'] = array(
168
  'name' => __( 'Coupons', 'mycred' ),
169
- 'description' => __( 'The coupons add-on allows you you to create coupons that users can use to add points to their accounts.', 'mycred' ),
170
  'addon_url' => 'http://mycred.me/add-ons/coupons/',
171
  'version' => '1.0',
172
  'author' => 'Gabriel S Merovingi',
166
  // Coupons Add-on
167
  $installed['coupons'] = array(
168
  'name' => __( 'Coupons', 'mycred' ),
169
+ 'description' => __( 'The coupons add-on allows you to create coupons that users can use to add points to their accounts.', 'mycred' ),
170
  'addon_url' => 'http://mycred.me/add-ons/coupons/',
171
  'version' => '1.0',
172
  'author' => 'Gabriel S Merovingi',
modules/mycred-module-hooks.php CHANGED
@@ -292,8 +292,10 @@ if ( ! class_exists( 'myCRED_Hook_Registration' ) ) {
292
  // Make sure user is not excluded
293
  if ( $this->core->exclude_user( $user_id ) === true ) return;
294
 
 
 
295
  // Make sure this is unique
296
- if ( $this->core->has_entry( 'registration', $user_id, $user_id ) ) return;
297
 
298
  // Execute
299
  $this->core->add_creds(
@@ -302,7 +304,7 @@ if ( ! class_exists( 'myCRED_Hook_Registration' ) ) {
302
  $this->prefs['creds'],
303
  $this->prefs['log'],
304
  $user_id,
305
- array( 'ref_type' => 'user' ),
306
  $this->mycred_type
307
  );
308
  }
@@ -324,7 +326,7 @@ if ( ! class_exists( 'myCRED_Hook_Registration' ) ) {
324
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
325
  <ol>
326
  <li>
327
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
328
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
329
  </li>
330
  </ol>
@@ -518,7 +520,7 @@ if ( ! class_exists( 'myCRED_Hook_Logging_In' ) ) {
518
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
519
  <ol>
520
  <li>
521
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
522
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
523
  </li>
524
  </ol>
@@ -537,7 +539,7 @@ if ( ! class_exists( 'myCRED_Hook_Logging_In' ) ) {
537
  /**
538
  * Hook for publishing content
539
  * @since 0.1
540
- * @version 1.0.1
541
  */
542
  if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
543
  class myCRED_Hook_Publishing_Content extends myCRED_Hook {
@@ -557,17 +559,8 @@ if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
557
  )
558
  );
559
 
560
- $post_type_args = array(
561
- 'public' => true,
562
- '_builtin' => false
563
- );
564
- $post_types = get_post_types( $post_type_args, 'objects', 'and' );
565
- foreach ( $post_types as $post_type ) {
566
- $defaults[ $post_type->name ] = array(
567
- 'creds' => 0,
568
- 'log' => ''
569
- );
570
- }
571
 
572
  parent::__construct( array(
573
  'id' => 'publishing_content',
@@ -608,13 +601,13 @@ if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
608
 
609
  if ( in_array( $old_status, $status ) && in_array( $new_status, $publish_status ) && array_key_exists( $post_type, $this->prefs ) ) {
610
 
611
- // Make sure this is unique
612
- if ( $this->core->has_entry( 'publishing_content', $post_id, $user_id ) ) return;
613
-
614
  // Prep
615
  $entry = $this->prefs[ $post_type ]['log'];
616
  $data = array( 'ref_type' => 'post' );
617
 
 
 
 
618
  // Add Creds
619
  $this->core->add_creds(
620
  'publishing_content',
@@ -645,7 +638,7 @@ if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
645
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
646
  <ol>
647
  <li>
648
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'log' ) ); ?>" value="<?php echo $prefs['post']['log']; ?>" class="long" /></div>
649
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
650
  </li>
651
  </ol>
@@ -658,7 +651,7 @@ if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
658
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
659
  <ol>
660
  <li>
661
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'log' ) ); ?>" value="<?php echo $prefs['page']['log']; ?>" class="long" /></div>
662
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
663
  </li>
664
  </ol>
@@ -694,7 +687,7 @@ if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
694
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
695
  <ol>
696
  <li>
697
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'log' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'log' ) ); ?>" value="<?php echo $_log; ?>" class="long" /></div>
698
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
699
  </li>
700
  </ol>
@@ -1072,7 +1065,7 @@ if ( ! class_exists( 'myCRED_Hook_Comments' ) ) {
1072
  <li class="block empty">&nbsp;</li>
1073
  <li class="block">
1074
  <label for="<?php echo $this->field_id( array( 'approved' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1075
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'log' ) ); ?>" value="<?php echo $prefs['approved']['log']; ?>" class="long" /></div>
1076
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1077
  </li>
1078
  </ol>
@@ -1089,7 +1082,7 @@ if ( ! class_exists( 'myCRED_Hook_Comments' ) ) {
1089
  <li class="block empty">&nbsp;</li>
1090
  <li class="block">
1091
  <label for="<?php echo $this->field_id( array( 'spam' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1092
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'log' ) ); ?>" value="<?php echo $prefs['spam']['log']; ?>" class="long" /></div>
1093
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1094
  </li>
1095
  </ol>
@@ -1106,7 +1099,7 @@ if ( ! class_exists( 'myCRED_Hook_Comments' ) ) {
1106
  <li class="block empty">&nbsp;</li>
1107
  <li class="block">
1108
  <label for="<?php echo $this->field_id( array( 'trash' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1109
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'log' ) ); ?>" value="<?php echo $prefs['trash']['log']; ?>" class="long" /></div>
1110
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1111
  </li>
1112
  </ol>
@@ -1396,7 +1389,7 @@ if ( ! class_exists( 'myCRED_Hook_Click_Links' ) ) {
1396
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
1397
  <ol>
1398
  <li>
1399
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
1400
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?> <?php _e( 'Custom tags: %url%, %title% or %id%.', 'mycred' ); ?></span>
1401
  </li>
1402
  </ol>
@@ -1553,7 +1546,7 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
1553
  case 'play' :
1554
 
1555
  if ( $state == 1 ) {
1556
- if ( ! $this->has_entry( 'watching_video', '', $user_id, $video_id ) ) {
1557
  // Execute
1558
  $this->core->add_creds(
1559
  'watching_video',
@@ -1580,7 +1573,7 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
1580
  // Check for skipping or if we watched more (with leniency) then the video length
1581
  if ( ! preg_match( '/22/', $actions, $matches ) || $watched >= $duration ) {
1582
  if ( $state == 0 ) {
1583
- if ( ! $this->has_entry( 'watching_video', '', $user_id, $video_id ) ) {
1584
  // Execute
1585
  $this->core->add_creds(
1586
  'watching_video',
@@ -1589,7 +1582,7 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
1589
  $this->prefs['log'],
1590
  '',
1591
  $video_id,
1592
- $this->mycred_type
1593
  );
1594
 
1595
  $status = 'added';
@@ -1736,7 +1729,7 @@ if ( ! class_exists( 'myCRED_Hook_Video_Views' ) ) {
1736
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
1737
  <ol>
1738
  <li>
1739
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
1740
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'video' ) ); ?></span>
1741
  </li>
1742
  </ol>
@@ -1902,7 +1895,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
1902
  if ( ! is_user_logged_in() )
1903
  return $url;
1904
 
1905
- return $this->get_ref_link( $user_id, $url );
1906
  }
1907
 
1908
  /**
@@ -2206,7 +2199,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2206
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
2207
  <ol>
2208
  <li>
2209
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'visit' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'visit' => 'log' ) ); ?>" value="<?php echo $prefs['visit']['log']; ?>" class="long" /></div>
2210
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
2211
  </li>
2212
  <li class="empty">&nbsp;</li>
@@ -2235,7 +2228,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2235
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
2236
  <ol>
2237
  <li>
2238
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo $prefs['signup']['log']; ?>" class="long" /></div>
2239
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
2240
  </li>
2241
  <li class="empty">&nbsp;</li>
@@ -2258,7 +2251,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2258
  <ol>
2259
  <li><?php _e( 'Registrations are disabled.', 'mycred' ); ?>
2260
  <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['signup']['creds'] ); ?>" />
2261
- <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo $prefs['signup']['log']; ?>" />
2262
  <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'limit' ) ); ?>" value="<?php echo $prefs['signup']['limit_by']; ?>" />
2263
  </li>
2264
  </ol>
@@ -2313,7 +2306,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) {
2313
  <li>
2314
  <label><?php _e( 'Profile Positioning', 'mycred' ); ?></label><br />
2315
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'buddypress' => 'priority' ) ); ?>" id="<?php echo $this->field_id( array( 'buddypress' => 'priority' ) ); ?>" value="<?php echo $this->core->number( $prefs['buddypress']['priority'] ); ?>" size="8" /></div><br />
2316
- <span class="description"><?php _e( 'You can move around the referral link on your users profile by changing the position. Increase to move up, decrese to move down.', 'mycred' ); ?></span><br />
2317
  <span class="description"><?php printf( '<strong>%s</strong> %s', __( 'Note!', 'mycred' ), __( 'You can not move the referral link above the users "Base" profile details!', 'mycred' ) ); ?></span><br />
2318
  </li>
2319
  </ol>
292
  // Make sure user is not excluded
293
  if ( $this->core->exclude_user( $user_id ) === true ) return;
294
 
295
+ $data = array( 'ref_type' => 'user' );
296
+
297
  // Make sure this is unique
298
+ if ( $this->core->has_entry( 'registration', $user_id, $user_id, $data, $this->mycred_type ) ) return;
299
 
300
  // Execute
301
  $this->core->add_creds(
304
  $this->prefs['creds'],
305
  $this->prefs['log'],
306
  $user_id,
307
+ $data,
308
  $this->mycred_type
309
  );
310
  }
326
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
327
  <ol>
328
  <li>
329
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
330
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
331
  </li>
332
  </ol>
520
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
521
  <ol>
522
  <li>
523
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
524
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
525
  </li>
526
  </ol>
539
  /**
540
  * Hook for publishing content
541
  * @since 0.1
542
+ * @version 1.1
543
  */
544
  if ( ! class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
545
  class myCRED_Hook_Publishing_Content extends myCRED_Hook {
559
  )
560
  );
561
 
562
+ if ( isset( $hook_prefs['publishing_content'] ) )
563
+ $defaults = $hook_prefs['publishing_content'];
 
 
 
 
 
 
 
 
 
564
 
565
  parent::__construct( array(
566
  'id' => 'publishing_content',
601
 
602
  if ( in_array( $old_status, $status ) && in_array( $new_status, $publish_status ) && array_key_exists( $post_type, $this->prefs ) ) {
603
 
 
 
 
604
  // Prep
605
  $entry = $this->prefs[ $post_type ]['log'];
606
  $data = array( 'ref_type' => 'post' );
607
 
608
+ // Make sure this is unique
609
+ if ( $this->core->has_entry( 'publishing_content', $post_id, $user_id, $data, $this->mycred_type ) ) return;
610
+
611
  // Add Creds
612
  $this->core->add_creds(
613
  'publishing_content',
638
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
639
  <ol>
640
  <li>
641
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['post']['log'] ); ?>" class="long" /></div>
642
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
643
  </li>
644
  </ol>
651
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
652
  <ol>
653
  <li>
654
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['page']['log'] ); ?>" class="long" /></div>
655
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
656
  </li>
657
  </ol>
687
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
688
  <ol>
689
  <li>
690
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'log' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'log' ) ); ?>" value="<?php echo esc_attr( $_log ); ?>" class="long" /></div>
691
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
692
  </li>
693
  </ol>
1065
  <li class="block empty">&nbsp;</li>
1066
  <li class="block">
1067
  <label for="<?php echo $this->field_id( array( 'approved' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1068
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['approved']['log'] ); ?>" class="long" /></div>
1069
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1070
  </li>
1071
  </ol>
1082
  <li class="block empty">&nbsp;</li>
1083
  <li class="block">
1084
  <label for="<?php echo $this->field_id( array( 'spam' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1085
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['spam']['log'] ); ?>" class="long" /></div>
1086
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1087
  </li>
1088
  </ol>
1099
  <li class="block empty">&nbsp;</li>
1100
  <li class="block">
1101
  <label for="<?php echo $this->field_id( array( 'trash' => 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1102
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['trash']['log'] ); ?>" class="long" /></div>
1103
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'comment' ) ); ?></span>
1104
  </li>
1105
  </ol>
1389
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
1390
  <ol>
1391
  <li>
1392
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
1393
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?> <?php _e( 'Custom tags: %url%, %title% or %id%.', 'mycred' ); ?></span>
1394
  </li>
1395
  </ol>
1546
  case 'play' :
1547
 
1548
  if ( $state == 1 ) {
1549
+ if ( ! $this->has_entry( 'watching_video', '', $user_id, $video_id, $this->mycred_type ) ) {
1550
  // Execute
1551
  $this->core->add_creds(
1552
  'watching_video',
1573
  // Check for skipping or if we watched more (with leniency) then the video length
1574
  if ( ! preg_match( '/22/', $actions, $matches ) || $watched >= $duration ) {
1575
  if ( $state == 0 ) {
1576
+ if ( ! $this->has_entry( 'watching_video', '', $user_id, $video_id, $this->mycred_type ) ) {
1577
  // Execute
1578
  $this->core->add_creds(
1579
  'watching_video',
1582
  $this->prefs['log'],
1583
  '',
1584
  $video_id,
1585
+ $this->mycred_type
1586
  );
1587
 
1588
  $status = 'added';
1729
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
1730
  <ol>
1731
  <li>
1732
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
1733
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'video' ) ); ?></span>
1734
  </li>
1735
  </ol>
1895
  if ( ! is_user_logged_in() )
1896
  return $url;
1897
 
1898
+ return $this->get_ref_link( get_current_user_id(), $url );
1899
  }
1900
 
1901
  /**
2199
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
2200
  <ol>
2201
  <li>
2202
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'visit' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'visit' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['visit']['log'] ); ?>" class="long" /></div>
2203
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
2204
  </li>
2205
  <li class="empty">&nbsp;</li>
2228
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
2229
  <ol>
2230
  <li>
2231
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['signup']['log'] ); ?>" class="long" /></div>
2232
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
2233
  </li>
2234
  <li class="empty">&nbsp;</li>
2251
  <ol>
2252
  <li><?php _e( 'Registrations are disabled.', 'mycred' ); ?>
2253
  <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['signup']['creds'] ); ?>" />
2254
+ <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['signup']['log'] ); ?>" />
2255
  <input type="hidden" name="<?php echo $this->field_name( array( 'signup' => 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'signup' => 'limit' ) ); ?>" value="<?php echo $prefs['signup']['limit_by']; ?>" />
2256
  </li>
2257
  </ol>
2306
  <li>
2307
  <label><?php _e( 'Profile Positioning', 'mycred' ); ?></label><br />
2308
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'buddypress' => 'priority' ) ); ?>" id="<?php echo $this->field_id( array( 'buddypress' => 'priority' ) ); ?>" value="<?php echo $this->core->number( $prefs['buddypress']['priority'] ); ?>" size="8" /></div><br />
2309
+ <span class="description"><?php _e( 'You can move around the referral link on your users profile by changing the position. Increase to move up, decrease to move down.', 'mycred' ); ?></span><br />
2310
  <span class="description"><?php printf( '<strong>%s</strong> %s', __( 'Note!', 'mycred' ), __( 'You can not move the referral link above the users "Base" profile details!', 'mycred' ) ); ?></span><br />
2311
  </li>
2312
  </ol>
mycred.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
- * Version: 1.4
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
@@ -20,7 +20,7 @@
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.4' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -276,7 +276,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
276
  require_once( myCRED_PLUGINS_DIR . 'mycred-hook-buddypress.php' );
277
 
278
  require_once( myCRED_MODULES_DIR . 'mycred-module-buddypress.php' );
279
- $mycred_modules['mycred_default']['buddypress'] = new myCRED_BuddyPress_Module( $type );
280
  $mycred_modules['mycred_default']['buddypress']->load();
281
  }
282
 
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
+ * Version: 1.4.1
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
+ define( 'myCRED_VERSION', '1.4.1' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
276
  require_once( myCRED_PLUGINS_DIR . 'mycred-hook-buddypress.php' );
277
 
278
  require_once( myCRED_MODULES_DIR . 'mycred-module-buddypress.php' );
279
+ $mycred_modules['mycred_default']['buddypress'] = new myCRED_BuddyPress_Module( 'mycred_default' );
280
  $mycred_modules['mycred_default']['buddypress']->load();
281
  }
282
 
plugins/mycred-hook-badgeOS.php CHANGED
@@ -115,7 +115,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
115
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
116
  <p>
117
  <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
118
- <input type="text" name="mycred_values[log]" id="mycred-values-log" value="<?php echo $achievement_data['log']; ?>" style="width:99%;" />
119
  </p>
120
  <?php
121
  // If deduction is enabled
@@ -124,7 +124,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
124
  <p><strong><?php _e( 'Deduction Log Template', 'mycred' ); ?></strong></p>
125
  <p>
126
  <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
127
- <input type="text" name="mycred_values[deduct_log]" id="mycred-values-deduct-log" value="<?php echo $achievement_data['deduct_log']; ?>" style="width:99%;" />
128
  </p>
129
  <?php
130
  }
@@ -269,7 +269,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
269
  <li class="empty">&nbsp;</li>
270
  <li>
271
  <label for="<?php echo $this->field_id( array( $post_type, 'log' ) ); ?>"><?php _e( 'Default Log template', 'mycred' ); ?></label>
272
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>" value="<?php echo $prefs[ $post_type ]['log']; ?>" class="long" /></div>
273
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
274
  </li>
275
  <li>
@@ -279,7 +279,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
279
  <li class="empty">&nbsp;</li>
280
  <li>
281
  <label for="<?php echo $this->field_id( array( $post_type, 'deduct_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
282
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'deduct_log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'deduct_log' ) ); ?>" value="<?php echo $prefs[ $post_type ]['deduct_log']; ?>" class="long" /></div>
283
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
284
  </li>
285
  </ol>
115
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
116
  <p>
117
  <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
118
+ <input type="text" name="mycred_values[log]" id="mycred-values-log" value="<?php echo esc_attr( $achievement_data['log'] ); ?>" style="width:99%;" />
119
  </p>
120
  <?php
121
  // If deduction is enabled
124
  <p><strong><?php _e( 'Deduction Log Template', 'mycred' ); ?></strong></p>
125
  <p>
126
  <label class="screen-reader-text" for="mycred-values-log"><?php _e( 'Log Template', 'mycred' ); ?></label>
127
+ <input type="text" name="mycred_values[deduct_log]" id="mycred-values-deduct-log" value="<?php echo esc_attr( $achievement_data['deduct_log'] ); ?>" style="width:99%;" />
128
  </p>
129
  <?php
130
  }
269
  <li class="empty">&nbsp;</li>
270
  <li>
271
  <label for="<?php echo $this->field_id( array( $post_type, 'log' ) ); ?>"><?php _e( 'Default Log template', 'mycred' ); ?></label>
272
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['log'] ); ?>" class="long" /></div>
273
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
274
  </li>
275
  <li>
279
  <li class="empty">&nbsp;</li>
280
  <li>
281
  <label for="<?php echo $this->field_id( array( $post_type, 'deduct_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
282
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'deduct_log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'deduct_log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $post_type ]['deduct_log'] ); ?>" class="long" /></div>
283
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
284
  </li>
285
  </ol>
plugins/mycred-hook-bbPress.php CHANGED
@@ -469,7 +469,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
469
  <li class="empty">&nbsp;</li>
470
  <li>
471
  <label for="<?php echo $this->field_id( array( 'new_forum', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
472
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_forum', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_forum', 'log' ) ); ?>" value="<?php echo $prefs['new_forum']['log']; ?>" class="long" /></div>
473
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
474
  </li>
475
  </ol>
@@ -482,7 +482,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
482
  <li class="empty">&nbsp;</li>
483
  <li>
484
  <label for="<?php echo $this->field_id( array( 'delete_forum', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
485
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_forum', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_forum', 'log' ) ); ?>" value="<?php echo $prefs['delete_forum']['log']; ?>" class="long" /></div>
486
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
487
  </li>
488
  </ol>
@@ -495,7 +495,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
495
  <li class="empty">&nbsp;</li>
496
  <li>
497
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
498
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo $prefs['new_topic']['log']; ?>" class="long" /></div>
499
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
500
  </li>
501
  <li class="empty">&nbsp;</li>
@@ -513,7 +513,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
513
  <li class="empty">&nbsp;</li>
514
  <li>
515
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
516
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>" value="<?php echo $prefs['delete_topic']['log']; ?>" class="long" /></div>
517
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
518
  </li>
519
  </ol>
@@ -526,7 +526,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
526
  <li class="empty">&nbsp;</li>
527
  <li>
528
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
529
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'log' ) ); ?>" value="<?php echo $prefs['fav_topic']['log']; ?>" class="long" /></div>
530
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
531
  </li>
532
  <li class="empty">&nbsp;</li>
@@ -545,7 +545,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
545
  <li class="empty">&nbsp;</li>
546
  <li>
547
  <label for="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
548
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>" value="<?php echo $prefs['new_reply']['log']; ?>" class="long" /></div>
549
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
550
  </li>
551
  <li class="empty">&nbsp;</li>
@@ -573,7 +573,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
573
  <li class="empty">&nbsp;</li>
574
  <li>
575
  <label for="<?php echo $this->field_id( array( 'delete_reply', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
576
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_reply', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_reply', 'log' ) ); ?>" value="<?php echo $prefs['delete_reply']['log']; ?>" class="long" /></div>
577
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
578
  </li>
579
  </ol>
469
  <li class="empty">&nbsp;</li>
470
  <li>
471
  <label for="<?php echo $this->field_id( array( 'new_forum', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
472
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_forum', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_forum', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_forum']['log'] ); ?>" class="long" /></div>
473
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
474
  </li>
475
  </ol>
482
  <li class="empty">&nbsp;</li>
483
  <li>
484
  <label for="<?php echo $this->field_id( array( 'delete_forum', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
485
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_forum', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_forum', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_forum']['log'] ); ?>" class="long" /></div>
486
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
487
  </li>
488
  </ol>
495
  <li class="empty">&nbsp;</li>
496
  <li>
497
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
498
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_topic']['log'] ); ?>" class="long" /></div>
499
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
500
  </li>
501
  <li class="empty">&nbsp;</li>
513
  <li class="empty">&nbsp;</li>
514
  <li>
515
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
516
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_topic']['log'] ); ?>" class="long" /></div>
517
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
518
  </li>
519
  </ol>
526
  <li class="empty">&nbsp;</li>
527
  <li>
528
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
529
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['fav_topic']['log'] ); ?>" class="long" /></div>
530
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
531
  </li>
532
  <li class="empty">&nbsp;</li>
545
  <li class="empty">&nbsp;</li>
546
  <li>
547
  <label for="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
548
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_reply']['log'] ); ?>" class="long" /></div>
549
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
550
  </li>
551
  <li class="empty">&nbsp;</li>
573
  <li class="empty">&nbsp;</li>
574
  <li>
575
  <label for="<?php echo $this->field_id( array( 'delete_reply', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
576
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_reply', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_reply', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_reply']['log'] ); ?>" class="long" /></div>
577
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
578
  </li>
579
  </ol>
plugins/mycred-hook-buddypress-gallery.php CHANGED
@@ -102,7 +102,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
102
  <li class="empty">&nbsp;</li>
103
  <li>
104
  <label for="<?php echo $this->field_id( array( 'new_gallery', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
105
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_gallery', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_gallery', 'log' ) ); ?>" value="<?php echo $prefs['new_gallery']['log']; ?>" class="long" /></div>
106
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
107
  </li>
108
  </ol>
102
  <li class="empty">&nbsp;</li>
103
  <li>
104
  <label for="<?php echo $this->field_id( array( 'new_gallery', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
105
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_gallery', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_gallery', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_gallery']['log'] ); ?>" class="long" /></div>
106
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
107
  </li>
108
  </ol>
plugins/mycred-hook-buddypress-links.php CHANGED
@@ -252,7 +252,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
252
  <li class="empty">&nbsp;</li>
253
  <li>
254
  <label for="<?php echo $this->field_id( array( 'new_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
255
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_link', 'log' ) ); ?>" value="<?php echo $prefs['new_link']['log']; ?>" class="long" /></div>
256
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
257
  </li>
258
  </ol>
@@ -265,7 +265,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
265
  <li class="empty">&nbsp;</li>
266
  <li>
267
  <label for="<?php echo $this->field_id( array( 'vote_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
268
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link', 'log' ) ); ?>" value="<?php echo $prefs['vote_link']['log']; ?>" class="long" /></div>
269
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
270
  </li>
271
  </ol>
@@ -278,7 +278,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
278
  <li class="empty">&nbsp;</li>
279
  <li>
280
  <label for="<?php echo $this->field_id( array( 'vote_link_up', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
281
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link_up', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link_up', 'log' ) ); ?>" value="<?php echo $prefs['vote_link_up']['log']; ?>" class="long" /></div>
282
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
283
  </li>
284
  <li class="empty">&nbsp;</li>
@@ -289,7 +289,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
289
  <li class="empty">&nbsp;</li>
290
  <li>
291
  <label for="<?php echo $this->field_id( array( 'vote_link_down', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
292
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link_down', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link_down', 'log' ) ); ?>" value="<?php echo $prefs['vote_link_down']['log']; ?>" class="long" /></div>
293
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
294
  </li>
295
  </ol>
@@ -302,7 +302,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
302
  <li class="empty">&nbsp;</li>
303
  <li>
304
  <label for="<?php echo $this->field_id( array( 'update_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
305
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'update_link', 'log' ) ); ?>" value="<?php echo $prefs['update_link']['log']; ?>" class="long" /></div>
306
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
307
  </li>
308
  </ol>
@@ -315,7 +315,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
315
  <li class="empty">&nbsp;</li>
316
  <li>
317
  <label for="<?php echo $this->field_id( array( 'delete_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
318
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_link', 'log' ) ); ?>" value="<?php echo $prefs['delete_link']['log']; ?>" class="long" /></div>
319
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
320
  </li>
321
  </ol>
252
  <li class="empty">&nbsp;</li>
253
  <li>
254
  <label for="<?php echo $this->field_id( array( 'new_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
255
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_link', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_link']['log'] ); ?>" class="long" /></div>
256
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
257
  </li>
258
  </ol>
265
  <li class="empty">&nbsp;</li>
266
  <li>
267
  <label for="<?php echo $this->field_id( array( 'vote_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
268
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['vote_link']['log'] ); ?>" class="long" /></div>
269
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
270
  </li>
271
  </ol>
278
  <li class="empty">&nbsp;</li>
279
  <li>
280
  <label for="<?php echo $this->field_id( array( 'vote_link_up', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
281
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link_up', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link_up', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['vote_link_up']['log'] ); ?>" class="long" /></div>
282
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
283
  </li>
284
  <li class="empty">&nbsp;</li>
289
  <li class="empty">&nbsp;</li>
290
  <li>
291
  <label for="<?php echo $this->field_id( array( 'vote_link_down', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
292
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'vote_link_down', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'vote_link_down', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['vote_link_down']['log'] ); ?>" class="long" /></div>
293
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
294
  </li>
295
  </ol>
302
  <li class="empty">&nbsp;</li>
303
  <li>
304
  <label for="<?php echo $this->field_id( array( 'update_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
305
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'update_link', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['update_link']['log'] ); ?>" class="long" /></div>
306
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
307
  </li>
308
  </ol>
315
  <li class="empty">&nbsp;</li>
316
  <li>
317
  <label for="<?php echo $this->field_id( array( 'delete_link', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
318
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_link', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_link', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_link']['log'] ); ?>" class="long" /></div>
319
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
320
  </li>
321
  </ol>
plugins/mycred-hook-buddypress-media.php CHANGED
@@ -168,7 +168,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
168
  </li>
169
  <li>
170
  <label for="<?php echo $this->field_id( array( 'new_media', 'photo_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
171
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'photo_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'photo_log' ) ); ?>"<?php echo $photos; ?> value="<?php echo $prefs['new_media']['photo_log']; ?>" class="long" /></div>
172
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
173
  </li>
174
  <li class="empty">&nbsp;</li>
@@ -178,7 +178,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
178
  </li>
179
  <li>
180
  <label for="<?php echo $this->field_id( array( 'new_media', 'video_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
181
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'video_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'video_log' ) ); ?>"<?php echo $videos; ?> value="<?php echo $prefs['new_media']['video_log']; ?>" class="long" /></div>
182
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
183
  </li>
184
  <li class="empty">&nbsp;</li>
@@ -188,7 +188,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
188
  </li>
189
  <li>
190
  <label for="<?php echo $this->field_id( array( 'new_media', 'music_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
191
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'music_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'music_log' ) ); ?>"<?php echo $music; ?> value="<?php echo $prefs['new_media']['music_log']; ?>" class="long" /></div>
192
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
193
  </li>
194
  </ol>
@@ -201,7 +201,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
201
  </li>
202
  <li>
203
  <label for="<?php echo $this->field_id( array( 'delete_media', 'photo_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
204
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'photo_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'photo_log' ) ); ?>"<?php echo $photos; ?> value="<?php echo $prefs['delete_media']['photo_log']; ?>" class="long" /></div>
205
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
206
  </li>
207
  <li class="empty">&nbsp;</li>
@@ -211,7 +211,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
211
  </li>
212
  <li>
213
  <label for="<?php echo $this->field_id( array( 'delete_media', 'video_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
214
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'video_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'video_log' ) ); ?>"<?php echo $videos; ?> value="<?php echo $prefs['delete_media']['video_log']; ?>" class="long" /></div>
215
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
216
  </li>
217
  <li class="empty">&nbsp;</li>
@@ -221,7 +221,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
221
  </li>
222
  <li>
223
  <label for="<?php echo $this->field_id( array( 'delete_media', 'music_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
224
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'music_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'music_log' ) ); ?>"<?php echo $music; ?> value="<?php echo $prefs['delete_media']['music_log']; ?>" class="long" /></div>
225
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
226
  </li>
227
  </ol>
168
  </li>
169
  <li>
170
  <label for="<?php echo $this->field_id( array( 'new_media', 'photo_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
171
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'photo_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'photo_log' ) ); ?>"<?php echo $photos; ?> value="<?php echo esc_attr( $prefs['new_media']['photo_log'] ); ?>" class="long" /></div>
172
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
173
  </li>
174
  <li class="empty">&nbsp;</li>
178
  </li>
179
  <li>
180
  <label for="<?php echo $this->field_id( array( 'new_media', 'video_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
181
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'video_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'video_log' ) ); ?>"<?php echo $videos; ?> value="<?php echo esc_attr( $prefs['new_media']['video_log'] ); ?>" class="long" /></div>
182
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
183
  </li>
184
  <li class="empty">&nbsp;</li>
188
  </li>
189
  <li>
190
  <label for="<?php echo $this->field_id( array( 'new_media', 'music_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
191
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_media', 'music_log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_media', 'music_log' ) ); ?>"<?php echo $music; ?> value="<?php echo esc_attr( $prefs['new_media']['music_log'] ); ?>" class="long" /></div>
192
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
193
  </li>
194
  </ol>
201
  </li>
202
  <li>
203
  <label for="<?php echo $this->field_id( array( 'delete_media', 'photo_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
204
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'photo_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'photo_log' ) ); ?>"<?php echo $photos; ?> value="<?php echo esc_attr( $prefs['delete_media']['photo_log'] ); ?>" class="long" /></div>
205
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
206
  </li>
207
  <li class="empty">&nbsp;</li>
211
  </li>
212
  <li>
213
  <label for="<?php echo $this->field_id( array( 'delete_media', 'video_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
214
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'video_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'video_log' ) ); ?>"<?php echo $videos; ?> value="<?php echo esc_attr( $prefs['delete_media']['video_log'] ); ?>" class="long" /></div>
215
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
216
  </li>
217
  <li class="empty">&nbsp;</li>
221
  </li>
222
  <li>
223
  <label for="<?php echo $this->field_id( array( 'delete_media', 'music_log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
224
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_media', 'music_log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_media', 'music_log' ) ); ?>"<?php echo $music; ?> value="<?php echo esc_attr( $prefs['delete_media']['music_log'] ); ?>" class="long" /></div>
225
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
226
  </li>
227
  </ol>
plugins/mycred-hook-buddypress.php CHANGED
@@ -374,12 +374,12 @@ if ( defined( 'myCRED_VERSION' ) ) {
374
  <li>
375
  <label for="<?php echo $this->field_id( array( 'update', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
376
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update', 'daily_limit' ) ); ?>" id="<?php echo $this->field_id( array( 'update', 'daily_limit' ) ); ?>" value="<?php echo abs( $prefs['update']['daily_limit'] ); ?>" size="8" /></div>
377
- <span class="description"><?php _e( 'Daily limit. User zero for unlimited.', 'mycred' ); ?></span>
378
  </li>
379
  <li class="empty">&nbsp;</li>
380
  <li>
381
  <label for="<?php echo $this->field_id( array( 'update', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
382
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'update', 'log' ) ); ?>" value="<?php echo $prefs['update']['log']; ?>" class="long" /></div>
383
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
384
  </li>
385
  </ol>
@@ -392,7 +392,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
392
  <li class="empty">&nbsp;</li>
393
  <li>
394
  <label for="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
395
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'avatar', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>" value="<?php echo $prefs['avatar']['log']; ?>" class="long" /></div>
396
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
397
  </li>
398
  </ol>
@@ -405,7 +405,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
405
  <li class="empty">&nbsp;</li>
406
  <li>
407
  <label for="<?php echo $this->field_id( array( 'new_friend', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
408
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_friend', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_friend', 'log' ) ); ?>" value="<?php echo $prefs['new_friend']['log']; ?>" class="long" /></div>
409
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
410
  </li>
411
  </ol>
@@ -418,7 +418,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
418
  <li class="empty">&nbsp;</li>
419
  <li>
420
  <label for="<?php echo $this->field_id( array( 'leave_friend', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
421
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'leave_friend', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'leave_friend', 'log' ) ); ?>" value="<?php echo $prefs['leave_friend']['log']; ?>" class="long" /></div>
422
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
423
  </li>
424
  </ol>
@@ -431,7 +431,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
431
  <li class="empty">&nbsp;</li>
432
  <li>
433
  <label for="<?php echo $this->field_id( array( 'new_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
434
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_comment', 'log' ) ); ?>" value="<?php echo $prefs['new_comment']['log']; ?>" class="long" /></div>
435
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
436
  </li>
437
  </ol>
@@ -444,7 +444,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
444
  <li class="empty">&nbsp;</li>
445
  <li>
446
  <label for="<?php echo $this->field_id( array( 'delete_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
447
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_comment', 'log' ) ); ?>" value="<?php echo $prefs['delete_comment']['log']; ?>" class="long" /></div>
448
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
449
  </li>
450
  </ol>
@@ -457,7 +457,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
457
  <li class="empty">&nbsp;</li>
458
  <li>
459
  <label for="<?php echo $this->field_id( array( 'message', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
460
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'message', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'message', 'log' ) ); ?>" value="<?php echo $prefs['message']['log']; ?>" class="long" /></div>
461
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
462
  </li>
463
  </ol>
@@ -470,7 +470,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
470
  <li class="empty">&nbsp;</li>
471
  <li>
472
  <label for="<?php echo $this->field_id( array( 'send_gift', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
473
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_gift', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'send_gift', 'log' ) ); ?>" value="<?php echo $prefs['send_gift']['log']; ?>" class="long" /></div>
474
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
475
  </li>
476
  </ol>
@@ -924,7 +924,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
924
  <li class="empty">&nbsp;</li>
925
  <li>
926
  <label for="<?php echo $this->field_id( array( 'create', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
927
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'create', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'create', 'log' ) ); ?>" value="<?php echo $prefs['create']['log']; ?>" class="long" /></div>
928
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
929
  </li>
930
  </ol>
@@ -937,7 +937,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
937
  <li class="empty">&nbsp;</li>
938
  <li>
939
  <label for="<?php echo $this->field_id( array( 'delete', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
940
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete', 'log' ) ); ?>" value="<?php echo $prefs['delete']['log']; ?>" class="long" /></div>
941
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
942
  </li>
943
  </ol>
@@ -950,7 +950,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
950
  <li class="empty">&nbsp;</li>
951
  <li>
952
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
953
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo $prefs['new_topic']['log']; ?>" class="long" /></div>
954
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
955
  </li>
956
  </ol>
@@ -963,7 +963,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
963
  <li class="empty">&nbsp;</li>
964
  <li>
965
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
966
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo $prefs['new_topic']['log']; ?>" class="long" /></div>
967
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
968
  </li>
969
  </ol>
@@ -976,7 +976,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
976
  <li class="empty">&nbsp;</li>
977
  <li>
978
  <label for="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
979
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>" value="<?php echo $prefs['new_post']['log']; ?>" class="long" /></div>
980
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
981
  </li>
982
  </ol>
@@ -989,7 +989,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
989
  <li class="empty">&nbsp;</li>
990
  <li>
991
  <label for="<?php echo $this->field_id( array( 'edit_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
992
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'edit_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'edit_post', 'log' ) ); ?>" value="<?php echo $prefs['edit_post']['log']; ?>" class="long" /></div>
993
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
994
  </li>
995
  </ol>
@@ -1003,7 +1003,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
1003
  <li class="empty">&nbsp;</li>
1004
  <li>
1005
  <label for="<?php echo $this->field_id( array( 'join', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1006
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'join', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'join', 'log' ) ); ?>" value="<?php echo $prefs['join']['log']; ?>" class="long" /></div>
1007
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1008
  </li>
1009
  </ol>
@@ -1016,7 +1016,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
1016
  <li class="empty">&nbsp;</li>
1017
  <li>
1018
  <label for="<?php echo $this->field_id( array( 'leave', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1019
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'leave', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'leave', 'log' ) ); ?>" value="<?php echo $prefs['leave']['log']; ?>" class="long" /></div>
1020
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1021
  </li>
1022
  </ol>
@@ -1029,7 +1029,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
1029
  <li class="empty">&nbsp;</li>
1030
  <li>
1031
  <label for="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1032
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'avatar', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>" value="<?php echo $prefs['avatar']['log']; ?>" class="long" /></div>
1033
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1034
  </li>
1035
  </ol>
@@ -1042,7 +1042,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
1042
  <li class="empty">&nbsp;</li>
1043
  <li>
1044
  <label for="<?php echo $this->field_id( array( 'new_group_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1045
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'comments', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'comments', 'log' ) ); ?>" value="<?php echo $prefs['comments']['log']; ?>" class="long" /></div>
1046
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1047
  </li>
1048
  </ol>
374
  <li>
375
  <label for="<?php echo $this->field_id( array( 'update', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
376
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update', 'daily_limit' ) ); ?>" id="<?php echo $this->field_id( array( 'update', 'daily_limit' ) ); ?>" value="<?php echo abs( $prefs['update']['daily_limit'] ); ?>" size="8" /></div>
377
+ <span class="description"><?php _e( 'Daily limit. Use zero for unlimited.', 'mycred' ); ?></span>
378
  </li>
379
  <li class="empty">&nbsp;</li>
380
  <li>
381
  <label for="<?php echo $this->field_id( array( 'update', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
382
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'update', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'update', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['update']['log'] ); ?>" class="long" /></div>
383
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
384
  </li>
385
  </ol>
392
  <li class="empty">&nbsp;</li>
393
  <li>
394
  <label for="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
395
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'avatar', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['avatar']['log'] ); ?>" class="long" /></div>
396
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
397
  </li>
398
  </ol>
405
  <li class="empty">&nbsp;</li>
406
  <li>
407
  <label for="<?php echo $this->field_id( array( 'new_friend', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
408
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_friend', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_friend', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_friend']['log'] ); ?>" class="long" /></div>
409
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
410
  </li>
411
  </ol>
418
  <li class="empty">&nbsp;</li>
419
  <li>
420
  <label for="<?php echo $this->field_id( array( 'leave_friend', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
421
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'leave_friend', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'leave_friend', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['leave_friend']['log'] ); ?>" class="long" /></div>
422
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'user' ) ); ?></span>
423
  </li>
424
  </ol>
431
  <li class="empty">&nbsp;</li>
432
  <li>
433
  <label for="<?php echo $this->field_id( array( 'new_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
434
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_comment', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_comment']['log'] ); ?>" class="long" /></div>
435
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
436
  </li>
437
  </ol>
444
  <li class="empty">&nbsp;</li>
445
  <li>
446
  <label for="<?php echo $this->field_id( array( 'delete_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
447
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_comment', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_comment']['log'] ); ?>" class="long" /></div>
448
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
449
  </li>
450
  </ol>
457
  <li class="empty">&nbsp;</li>
458
  <li>
459
  <label for="<?php echo $this->field_id( array( 'message', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
460
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'message', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'message', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['message']['log'] ); ?>" class="long" /></div>
461
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
462
  </li>
463
  </ol>
470
  <li class="empty">&nbsp;</li>
471
  <li>
472
  <label for="<?php echo $this->field_id( array( 'send_gift', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
473
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_gift', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'send_gift', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['send_gift']['log'] ); ?>" class="long" /></div>
474
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
475
  </li>
476
  </ol>
924
  <li class="empty">&nbsp;</li>
925
  <li>
926
  <label for="<?php echo $this->field_id( array( 'create', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
927
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'create', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'create', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['create']['log'] ); ?>" class="long" /></div>
928
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
929
  </li>
930
  </ol>
937
  <li class="empty">&nbsp;</li>
938
  <li>
939
  <label for="<?php echo $this->field_id( array( 'delete', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
940
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete']['log'] ); ?>" class="long" /></div>
941
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
942
  </li>
943
  </ol>
950
  <li class="empty">&nbsp;</li>
951
  <li>
952
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
953
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_topic']['log'] ); ?>" class="long" /></div>
954
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
955
  </li>
956
  </ol>
963
  <li class="empty">&nbsp;</li>
964
  <li>
965
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
966
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_topic']['log'] ); ?>" class="long" /></div>
967
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
968
  </li>
969
  </ol>
976
  <li class="empty">&nbsp;</li>
977
  <li>
978
  <label for="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
979
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_post']['log'] ); ?>" class="long" /></div>
980
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
981
  </li>
982
  </ol>
989
  <li class="empty">&nbsp;</li>
990
  <li>
991
  <label for="<?php echo $this->field_id( array( 'edit_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
992
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'edit_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'edit_post', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['edit_post']['log'] ); ?>" class="long" /></div>
993
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
994
  </li>
995
  </ol>
1003
  <li class="empty">&nbsp;</li>
1004
  <li>
1005
  <label for="<?php echo $this->field_id( array( 'join', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1006
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'join', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'join', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['join']['log'] ); ?>" class="long" /></div>
1007
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1008
  </li>
1009
  </ol>
1016
  <li class="empty">&nbsp;</li>
1017
  <li>
1018
  <label for="<?php echo $this->field_id( array( 'leave', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1019
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'leave', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'leave', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['leave']['log'] ); ?>" class="long" /></div>
1020
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1021
  </li>
1022
  </ol>
1029
  <li class="empty">&nbsp;</li>
1030
  <li>
1031
  <label for="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1032
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'avatar', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'avatar', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['avatar']['log'] ); ?>" class="long" /></div>
1033
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1034
  </li>
1035
  </ol>
1042
  <li class="empty">&nbsp;</li>
1043
  <li>
1044
  <label for="<?php echo $this->field_id( array( 'new_group_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
1045
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'comments', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'comments', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['comments']['log'] ); ?>" class="long" /></div>
1046
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
1047
  </li>
1048
  </ol>
plugins/mycred-hook-contact-form7.php CHANGED
@@ -135,7 +135,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
135
  <li class="empty">&nbsp;</li>
136
  <li>
137
  <label for="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
138
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form_id, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>" value="<?php echo $prefs[ $form_id ]['log']; ?>" class="long" /></div>
139
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
140
  </li>
141
  </ol>
135
  <li class="empty">&nbsp;</li>
136
  <li>
137
  <label for="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
138
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form_id, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $form_id ]['log'] ); ?>" class="long" /></div>
139
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
140
  </li>
141
  </ol>
plugins/mycred-hook-events-manager-light.php CHANGED
@@ -153,7 +153,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
153
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
154
  <ol>
155
  <li>
156
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'attend' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>" value="<?php echo $prefs['attend']['log']; ?>" class="long" /></div>
157
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
158
  </li>
159
  </ol>
@@ -166,7 +166,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
166
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
167
  <ol>
168
  <li>
169
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'cancel' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>" value="<?php echo $prefs['cancel']['log']; ?>" class="long" /></div>
170
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
171
  </li>
172
  </ol>
153
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
154
  <ol>
155
  <li>
156
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'attend' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['attend']['log'] ); ?>" class="long" /></div>
157
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
158
  </li>
159
  </ol>
166
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
167
  <ol>
168
  <li>
169
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'cancel' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['cancel']['log'] ); ?>" class="long" /></div>
170
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
171
  </li>
172
  </ol>
plugins/mycred-hook-gd-star-rating.php CHANGED
@@ -109,7 +109,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
109
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
110
  <ol>
111
  <li>
112
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'star_rating' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>" value="<?php echo $prefs['star_rating']['log']; ?>" class="long" /></div>
113
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
114
  </li>
115
  </ol>
@@ -122,7 +122,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
122
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
123
  <ol>
124
  <li>
125
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'up_down' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>" value="<?php echo $prefs['up_down']['log']; ?>" class="long" /></div>
126
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
127
  </li>
128
  </ol>
109
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
110
  <ol>
111
  <li>
112
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'star_rating' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['star_rating']['log'] ); ?>" class="long" /></div>
113
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
114
  </li>
115
  </ol>
122
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
123
  <ol>
124
  <li>
125
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'up_down' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['up_down']['log'] ); ?>" class="long" /></div>
126
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
127
  </li>
128
  </ol>
plugins/mycred-hook-gravityforms.php CHANGED
@@ -111,7 +111,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
111
  <li class="empty">&nbsp;</li>
112
  <li>
113
  <label for="<?php echo $this->field_id( array( $form->id, 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
114
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form->id, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form->id, 'log' ) ); ?>" value="<?php echo $prefs[ $form->id ]['log']; ?>" class="long" /></div>
115
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
116
  </li>
117
  </ol>
111
  <li class="empty">&nbsp;</li>
112
  <li>
113
  <label for="<?php echo $this->field_id( array( $form->id, 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
114
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form->id, 'log' ) ); ?>" id="<?php echo $this->field_id( array( $form->id, 'log' ) ); ?>" value="<?php echo esc_attr( $prefs[ $form->id ]['log'] ); ?>" class="long" /></div>
115
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
116
  </li>
117
  </ol>
plugins/mycred-hook-invite-anyone.php CHANGED
@@ -158,7 +158,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
158
  <li class="empty">&nbsp;</li>
159
  <li>
160
  <label for="<?php echo $this->field_id( array( 'send_invite', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
161
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_invite', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'send_invite', 'log' ) ); ?>" value="<?php echo $prefs['send_invite']['log']; ?>" class="long" /></div>
162
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
163
  </li>
164
  </ol>
@@ -179,7 +179,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
179
  <li class="empty">&nbsp;</li>
180
  <li>
181
  <label for="<?php echo $this->field_id( array( 'accept_invite', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
182
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'accept_invite', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'accept_invite', 'log' ) ); ?>" value="<?php echo $prefs['accept_invite']['log']; ?>" class="long" /></div>
183
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
184
  </li>
185
  </ol>
158
  <li class="empty">&nbsp;</li>
159
  <li>
160
  <label for="<?php echo $this->field_id( array( 'send_invite', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
161
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_invite', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'send_invite', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['send_invite']['log'] ); ?>" class="long" /></div>
162
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
163
  </li>
164
  </ol>
179
  <li class="empty">&nbsp;</li>
180
  <li>
181
  <label for="<?php echo $this->field_id( array( 'accept_invite', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
182
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'accept_invite', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'accept_invite', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['accept_invite']['log'] ); ?>" class="long" /></div>
183
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
184
  </li>
185
  </ol>
plugins/mycred-hook-jetpack.php CHANGED
@@ -504,7 +504,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
504
  <li class="empty">&nbsp;</li>
505
  <li>
506
  <label for="<?php echo $this->field_id( array( 'subscribe_site', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
507
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_site', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_site', 'log' ) ); ?>" value="<?php echo $prefs['subscribe_site']['log']; ?>" class="long" /></div>
508
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
509
  </li>
510
  </ol>
@@ -517,7 +517,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
517
  <li class="empty">&nbsp;</li>
518
  <li>
519
  <label for="<?php echo $this->field_id( array( 'subscribe_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
520
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_comment', 'log' ) ); ?>" value="<?php echo $prefs['subscribe_comment']['log']; ?>" class="long" /></div>
521
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
522
  </li>
523
  </ol>
504
  <li class="empty">&nbsp;</li>
505
  <li>
506
  <label for="<?php echo $this->field_id( array( 'subscribe_site', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
507
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_site', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_site', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['subscribe_site']['log'] ); ?>" class="long" /></div>
508
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
509
  </li>
510
  </ol>
517
  <li class="empty">&nbsp;</li>
518
  <li>
519
  <label for="<?php echo $this->field_id( array( 'subscribe_comment', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
520
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_comment', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_comment', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['subscribe_comment']['log'] ); ?>" class="long" /></div>
521
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
522
  </li>
523
  </ol>
plugins/mycred-hook-simplepress.php CHANGED
@@ -328,7 +328,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
328
  <li class="empty">&nbsp;</li>
329
  <li>
330
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
331
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo $prefs['new_topic']['log']; ?>" class="long" /></div>
332
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ), '%topic_name%' ); ?></span>
333
  </li>
334
  </ol>
@@ -341,7 +341,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
341
  <li class="empty">&nbsp;</li>
342
  <li>
343
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
344
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>" value="<?php echo $prefs['delete_topic']['log']; ?>" class="long" /></div>
345
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
346
  </li>
347
  </ol>
@@ -354,7 +354,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
354
  <li class="empty">&nbsp;</li>
355
  <li>
356
  <label for="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
357
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>" value="<?php echo $prefs['new_post']['log']; ?>" class="long" /></div>
358
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
359
  </li>
360
  <li class="empty">&nbsp;</li>
@@ -378,7 +378,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
378
  <li class="empty">&nbsp;</li>
379
  <li>
380
  <label for="<?php echo $this->field_id( array( 'delete_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
381
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_post', 'log' ) ); ?>" value="<?php echo $prefs['delete_post']['log']; ?>" class="long" /></div>
382
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
383
  </li>
384
  </ol>
328
  <li class="empty">&nbsp;</li>
329
  <li>
330
  <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
331
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_topic']['log'] ); ?>" class="long" /></div>
332
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ), '%topic_name%' ); ?></span>
333
  </li>
334
  </ol>
341
  <li class="empty">&nbsp;</li>
342
  <li>
343
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
344
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_topic']['log'] ); ?>" class="long" /></div>
345
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
346
  </li>
347
  </ol>
354
  <li class="empty">&nbsp;</li>
355
  <li>
356
  <label for="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
357
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_post', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['new_post']['log'] ); ?>" class="long" /></div>
358
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
359
  </li>
360
  <li class="empty">&nbsp;</li>
378
  <li class="empty">&nbsp;</li>
379
  <li>
380
  <label for="<?php echo $this->field_id( array( 'delete_post', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
381
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_post', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_post', 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['delete_post']['log'] ); ?>" class="long" /></div>
382
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ) ); ?></span>
383
  </li>
384
  </ol>
plugins/mycred-hook-wp-favorite-posts.php CHANGED
@@ -135,7 +135,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
135
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
136
  <ol>
137
  <li>
138
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'add' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>" value="<?php echo $prefs['add']['log']; ?>" class="long" /></div>
139
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
140
  </li>
141
  </ol>
@@ -148,7 +148,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
148
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
149
  <ol>
150
  <li>
151
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'remove' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>" value="<?php echo $prefs['remove']['log']; ?>" class="long" /></div>
152
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
153
  </li>
154
  </ol>
135
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
136
  <ol>
137
  <li>
138
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'add' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['add']['log'] ); ?>" class="long" /></div>
139
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
140
  </li>
141
  </ol>
148
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
149
  <ol>
150
  <li>
151
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'remove' => 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>" value="<?php echo esc_attr( $prefs['remove']['log'] ); ?>" class="long" /></div>
152
  <span class="description"><?php echo $this->available_template_tags( array( 'general', 'post' ) ); ?></span>
153
  </li>
154
  </ol>
plugins/mycred-hook-wp-polls.php CHANGED
@@ -136,7 +136,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
136
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
137
  <ol>
138
  <li>
139
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo $prefs['log']; ?>" class="long" /></div>
140
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ), '%poll_id% and %poll_question%' ); ?></span>
141
  </li>
142
  </ol>
136
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
137
  <ol>
138
  <li>
139
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'log' ); ?>" id="<?php echo $this->field_id( 'log' ); ?>" value="<?php echo esc_attr( $prefs['log'] ); ?>" class="long" /></div>
140
  <span class="description"><?php echo $this->available_template_tags( array( 'general' ), '%poll_id% and %poll_question%' ); ?></span>
141
  </li>
142
  </ol>
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce, marketpress, wp e-commerce, gravity forms
4
  Requires at least: 3.5
5
  Tested up to: 3.8.1
6
- Stable tag: 1.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -95,8 +95,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
95
 
96
  == Upgrade Notice ==
97
 
98
- = 1.4 =
99
- User requested features.
100
 
101
  == Other Notes ==
102
 
@@ -114,36 +114,22 @@ User requested features.
114
 
115
  == Changelog ==
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  = 1.4 =
118
  http://mycred.me/support/changelog/
119
 
120
- * NEW - myCRED now requires minimum WordPress 3.5!
121
- * NEW - Mobile support for Log table and BuddyPress Points History page.
122
- * FIX - Improved how myCRED displays balances in the Tool Bar even with BuddyPress enabled.
123
- * FIX - Add-ons are no longer added by searching for files. Instead they are loaded just like hooks.
124
- * NEW - All modules are now loaded under the new global variable $mycred_modules.
125
- * FIX - Removed the BuddyPress add-on and instead added the BuddyPress module and hooks just like any other plugin.
126
- * FIX - Cleaned up the code.
127
- * NEW - Points for referrals hook.
128
- * NEW - Added appropriate links for available shortcodes for hooks.
129
- * NEW - Depreciated rankings for new leaderboard.
130
- * NEW - Depreciated mycred_get_settings() for mycred()
131
- * FIX - Improved buyCRED add-on by updating the purchase page, added new logos and option to show a log over purchases in a separate page.
132
- * FIX - Re-wrote NETbilling gateway to use remote forms.
133
- * NEW - Added BitPay (Bitcoin) payment gateway for buyCRED.
134
- * NEW - Added support for Disqus Comments which will override the default comments hook. Points are only awarded on sync!
135
- * FIX - Redesigned the myCRED Overview Dashboard widget to also include support for multiple point types.
136
- * NEW - Removed the Import add-on and moved the importers to Tools > Import. Added support for CubePoints Log import and CSV myCRED Log import.
137
- * FIX - Rewrote the mycred_find_users_rank function to use a single SQL query to retrieve a given users rank post ID.
138
- * FIX - Improved Email Notice add-on.
139
- * NEW - Added new Coupons add-on.
140
- * FIX - Added new mycred_get_option function to always get the correct option depending on site setup.
141
- * NEW - Added support for Multiple Point Types.
142
- * NEW - myCRED Wallet widget to show the current users point balances. Requires more then one points type to be setup to be visible!
143
- * NEW - Added support for Gravity Forms allowing points to be awarded for form submissions by users.
144
- * NEW - Added support for rtMedia Uploads.
145
- * NEW - Added support for awarding / deducting points for up / down votes using BuddyPress Links.
146
-
147
  = 1.3.3.2 =
148
  http://mycred.me/support/changelog/2/
149
 
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce, marketpress, wp e-commerce, gravity forms
4
  Requires at least: 3.5
5
  Tested up to: 3.8.1
6
+ Stable tag: 1.4.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
95
 
96
  == Upgrade Notice ==
97
 
98
+ = 1.4.1 =
99
+ Resolving issues with 1.4
100
 
101
  == Other Notes ==
102
 
114
 
115
  == Changelog ==
116
 
117
+ = 1.4.1 =
118
+ FIX - Social Connect not giving points for registrations or logins.
119
+ FIX - Multiple Point Type history in toolbar links are incorrect.
120
+ FIX - Multiple Point Type history page is not sorting by type.
121
+ FIX - MU Network settings display messages incorrectly.
122
+ FIX - MU Network icons not showing in pre 3.8.
123
+ FIX - Points for referral hook IDs are not saved, constantly regenerated.
124
+ FIX - The word mycred_default is shown when inserting users point balance in bbPress.
125
+ FIX - Transfer add-on and multiple point types does not work as intended.
126
+ FIX - Ranks are not fully locked to one point type.
127
+ FIX - Dashboard Widget visible to all who can see the Dashboard.
128
+ QUICK FIX - myCRED Abstract Module uses a function that PHP 5.2.17 does not support.
129
+
130
  = 1.4 =
131
  http://mycred.me/support/changelog/
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  = 1.3.3.2 =
134
  http://mycred.me/support/changelog/2/
135