myCRED - Version 1.4.7

Version Description

Important bug fixes for myCRED.

=

Download this release

Release Info

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

Code changes from version 1.4.6 to 1.4.7

addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -599,7 +599,7 @@ jQuery(function($) {
599
  /**
600
  * Custom Log Page
601
  * @since 1.4
602
- * @version 1.0
603
  */
604
  public function purchase_log_page() {
605
  // Security
@@ -614,7 +614,8 @@ jQuery(function($) {
614
  'buy_creds_with_paypal_standard',
615
  'buy_creds_with_skrill',
616
  'buy_creds_with_zombaio',
617
- 'buy_creds_with_netbilling'
 
618
  ), $this );
619
 
620
  // Prep
599
  /**
600
  * Custom Log Page
601
  * @since 1.4
602
+ * @version 1.1
603
  */
604
  public function purchase_log_page() {
605
  // Security
614
  'buy_creds_with_paypal_standard',
615
  'buy_creds_with_skrill',
616
  'buy_creds_with_zombaio',
617
+ 'buy_creds_with_netbilling',
618
+ 'buy_creds_with_bitpay'
619
  ), $this );
620
 
621
  // Prep
addons/coupons/includes/mycred-coupon-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * @filter mycred_get_coupon_by_code
7
  * @action mycred_load_coupon
8
  * @since 1.4
9
- * @version 1.0
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
@@ -28,8 +28,8 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
28
  // On submits
29
  if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
30
 
31
- $coupon = mycred_get_coupon_post( $_POST['mycred_coupon_load']['code'] );
32
- $load = mycred_use_coupon( $_POST['mycred_coupon_load']['code'], $user_id );
33
 
34
  // Coupon does not exist
35
  if ( $load === 'missing' )
@@ -67,7 +67,7 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
67
  <form action="" method="post">
68
  <p>
69
  <label for="mycred-coupon-code">' . __( 'Coupon', 'mycred' ) . '</label><br />
70
- <input type="text" name="mycred_coupon_load[code]" id="mycred-coupon-code" value="" />
71
  <input type="hidden" name="mycred_coupon_load[token]" value="' . wp_create_nonce( 'mycred-load-coupon' . $user_id ) . '" />
72
  <input type="submit" class="btn btn-primary btn-large button button-large button-primary" value="' . __( 'Apply Coupon', 'mycred' ) . '" />
73
  </p>
6
  * @filter mycred_get_coupon_by_code
7
  * @action mycred_load_coupon
8
  * @since 1.4
9
+ * @version 1.0.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
28
  // On submits
29
  if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
30
 
31
+ $coupon = mycred_get_coupon_post( $_POST['mycred_coupon_load']['couponkey'] );
32
+ $load = mycred_use_coupon( $_POST['mycred_coupon_load']['couponkey'], $user_id );
33
 
34
  // Coupon does not exist
35
  if ( $load === 'missing' )
67
  <form action="" method="post">
68
  <p>
69
  <label for="mycred-coupon-code">' . __( 'Coupon', 'mycred' ) . '</label><br />
70
+ <input type="text" name="mycred_coupon_load[couponkey]" id="mycred-coupon-couponkey" value="" />
71
  <input type="hidden" name="mycred_coupon_load[token]" value="' . wp_create_nonce( 'mycred-load-coupon' . $user_id ) . '" />
72
  <input type="submit" class="btn btn-primary btn-large button button-large button-primary" value="' . __( 'Apply Coupon', 'mycred' ) . '" />
73
  </p>
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -61,7 +61,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
61
  add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
62
  add_filter( 'mycred_add', array( $this, 'email_check' ), 999, 3 );
63
  add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
64
-
65
  add_shortcode( 'mycred_email_subscriptions', array( $this, 'render_subscription_shortcode' ) );
66
 
67
  // Schedule Cron
@@ -158,7 +158,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
158
  * @since 1.1
159
  * @version 1.0
160
  */
161
- protected function register_post_type() {
162
  $labels = array(
163
  'name' => __( 'Email Notices', 'mycred' ),
164
  'singular_name' => __( 'Email Notice', 'mycred' ),
@@ -1156,7 +1156,7 @@ if ( ! function_exists( 'mycred_email_notice_cron_job' ) ) :
1156
  if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) return;
1157
 
1158
  $email_notice = new myCRED_Email_Notice_Module();
1159
-
1160
  global $wpdb;
1161
 
1162
  $pending = $wpdb->get_results( "
61
  add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
62
  add_filter( 'mycred_add', array( $this, 'email_check' ), 999, 3 );
63
  add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
64
+
65
  add_shortcode( 'mycred_email_subscriptions', array( $this, 'render_subscription_shortcode' ) );
66
 
67
  // Schedule Cron
158
  * @since 1.1
159
  * @version 1.0
160
  */
161
+ public function register_post_type() {
162
  $labels = array(
163
  'name' => __( 'Email Notices', 'mycred' ),
164
  'singular_name' => __( 'Email Notice', 'mycred' ),
1156
  if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) return;
1157
 
1158
  $email_notice = new myCRED_Email_Notice_Module();
1159
+
1160
  global $wpdb;
1161
 
1162
  $pending = $wpdb->get_results( "
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -128,7 +128,7 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) {
128
  $count = 0;
129
  foreach ( $users as $user ) {
130
  foreach ( $ranks as $rank ) {
131
- if ( $rank['min'] <= $user['balance'] && $rank['max'] >= $user['balance'] ) {
132
  update_user_meta( $user['ID'], $rank_meta_key, $rank['ID'] );
133
  $count = $count+1;
134
  break 1;
@@ -238,14 +238,14 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) {
238
  * @uses $wpdb
239
  * @returns (string) users rank ID.
240
  * @since 1.1
241
- * @version 1.4.1
242
  */
243
  if ( ! function_exists( 'mycred_find_users_rank' ) ) {
244
  function mycred_find_users_rank( $user_id = NULL, $save = false, $amount = 0 ) {
245
  global $wpdb;
246
 
247
- $balance_key = 'mycred_default';
248
- $mycred = mycred( $balance_key );
249
 
250
  // Check for exclusion
251
  if ( $mycred->exclude_user( $user_id ) ) return false;
@@ -257,6 +257,7 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
257
  if ( ! isset( $mycred->rank ) ) return false;
258
 
259
  // Get balance key
 
260
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
261
  $balance_key .= '_' . $GLOBALS['blog_id'];
262
 
@@ -270,8 +271,16 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
270
  WHERE user_id = %d
271
  AND meta_key = %s;", $user_id, $balance_key ) );
272
 
273
- if ( $balance === NULL || $balance == 0 )
274
- $balance = $mycred->get_users_balance( $user_id, 'mycred_default' );
 
 
 
 
 
 
 
 
275
 
276
  // The new balance before it is saved
277
  if ( $amount < 0 )
@@ -281,7 +290,7 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
281
 
282
  $balance_format = '%d';
283
  if ( isset( $mycred->format['decimals'] ) && $mycred->format['decimals'] > 0 )
284
- $balance_format = '%f';
285
 
286
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
287
  SELECT rank.ID
128
  $count = 0;
129
  foreach ( $users as $user ) {
130
  foreach ( $ranks as $rank ) {
131
+ if ( $user['balance'] >= $rank['min'] && $user['balance'] <= $rank['max'] ) {
132
  update_user_meta( $user['ID'], $rank_meta_key, $rank['ID'] );
133
  $count = $count+1;
134
  break 1;
238
  * @uses $wpdb
239
  * @returns (string) users rank ID.
240
  * @since 1.1
241
+ * @version 1.4.2
242
  */
243
  if ( ! function_exists( 'mycred_find_users_rank' ) ) {
244
  function mycred_find_users_rank( $user_id = NULL, $save = false, $amount = 0 ) {
245
  global $wpdb;
246
 
247
+ $type = 'mycred_default';
248
+ $mycred = mycred( $type );
249
 
250
  // Check for exclusion
251
  if ( $mycred->exclude_user( $user_id ) ) return false;
257
  if ( ! isset( $mycred->rank ) ) return false;
258
 
259
  // Get balance key
260
+ $balance_key = $type;
261
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
262
  $balance_key .= '_' . $GLOBALS['blog_id'];
263
 
271
  WHERE user_id = %d
272
  AND meta_key = %s;", $user_id, $balance_key ) );
273
 
274
+ // User does not yet have a balance.
275
+ if ( $balance === NULL ) {
276
+ // If rank is based on total, we get their current balance
277
+ if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' )
278
+ $balance = $mycred->get_users_balance( $user_id, $type );
279
+
280
+ // Else it's zero
281
+ else
282
+ $balance = $mycred->zero();
283
+ }
284
 
285
  // The new balance before it is saved
286
  if ( $amount < 0 )
290
 
291
  $balance_format = '%d';
292
  if ( isset( $mycred->format['decimals'] ) && $mycred->format['decimals'] > 0 )
293
+ $balance_format = 'CAST( %f AS DECIMAL( 10, ' . $mycred->format['decimals'] . ' ) )';
294
 
295
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
296
  SELECT rank.ID
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -366,7 +366,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
366
 
367
  $balance_format = '%d';
368
  if ( isset( $this->core->format['decimals'] ) && $this->core->format['decimals'] > 0 )
369
- $balance_format = '%f';
370
 
371
  global $wpdb;
372
 
366
 
367
  $balance_format = '%d';
368
  if ( isset( $this->core->format['decimals'] ) && $this->core->format['decimals'] > 0 )
369
+ $balance_format = 'CAST( %f AS DECIMAL( 10, ' . $this->core->format['decimals'] . ' ) )';
370
 
371
  global $wpdb;
372
 
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -66,7 +66,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
66
  /**
67
  * Load
68
  * @since 0.1
69
- * @version 1.1
70
  */
71
  public function module_init() {
72
  $this->make_purchase();
@@ -74,9 +74,10 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
74
 
75
  add_filter( 'the_content', array( $this, 'the_content' ), 30 );
76
 
77
- add_shortcode( 'mycred_sell_this', array( $this, 'render_shortcode' ) );
78
- add_shortcode( 'mycred_sell_this_ajax', array( $this, 'render_ajax_shortcode' ) );
79
- add_shortcode( 'mycred_sales_history', array( $this, 'render_sales_history' ) );
 
80
 
81
  add_action( 'add_meta_boxes', array( $this, 'add_metabox' ) );
82
  add_action( 'save_post', array( $this, 'save_metabox' ) );
@@ -166,7 +167,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
166
  /**
167
  * Make Purchase AJAX
168
  * @since 1.1
169
- * @version 1.1
170
  */
171
  public function make_purchase_ajax() {
172
  // We must be logged in
@@ -210,26 +211,22 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
210
 
211
  // Pay
212
  if ( $sell_content['pay'] == 'author' ) {
213
- $content_price = $prefs['price'];
214
  // If we are paying the author less then 100%
215
- if ( (int) $sell_content['pay_percent'] != 100 ) {
216
- $percent = (int) $sell_content['pay_percent']/100;
217
- $price = $percent*$content_price;
218
- $content_price = number_format( $price, $this->core->format['decimals'], '.', '' );
219
- }
220
- $log = $sell_content['logs']['sell'];
221
- $data = array(
222
- 'ref_type' => 'post',
223
- 'purchase_id' => 'TXID' . date_i18n( 'U' ),
224
- 'buyer' => $user_id
225
- );
226
  $this->core->add_creds(
227
  'buy_content',
228
  $author,
229
- $content_price,
230
- $log,
231
  $post_id,
232
- $data,
 
 
 
 
233
  $this->mycred_type
234
  );
235
  }
@@ -511,7 +508,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
511
  *
512
  * @return (array) sales settings
513
  * @since 0.1
514
- * @version 1.0
515
  */
516
  public function get_sale_prefs( $post_id ) {
517
  $sell_content = $this->sell_content;
@@ -519,7 +516,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
519
  $sell_content['defaults']['expire'] = 0;
520
 
521
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
522
- if ( empty( $prefs ) ) {
523
  $sales_data = array(
524
  'status' => 'disabled',
525
  'price' => $sell_content['defaults']['price'],
@@ -534,13 +531,13 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
534
  $sales_data = $prefs;
535
  }
536
 
537
- return $sales_data;
538
  }
539
 
540
  /**
541
  * Sell Meta Box
542
  * @since 0.1
543
- * @version 1.0
544
  */
545
  public function metabox( $post ) {
546
  // Make sure add-on has been setup
@@ -577,8 +574,8 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
577
  $op = (bool) $sell_content['defaults']['overwrite_price'];
578
  $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel']; ?>
579
 
580
- <p><input type="checkbox" name="mycred_sell_this" id="mycred-sell-this"<?php checked( $status, 'enabled' ); ?> value="enabled" /><label for="mycred-sell-this"><?php echo __( 'Enable sale of this ', 'mycred' ) . $post_type . '.'; ?></label></p>
581
- <div id="mycred-sale-settings " style="<?php echo $style; ?>">
582
  <input type="hidden" name="mycred-sell-this-token" value="<?php echo wp_create_nonce( 'mycred-sell-this' ); ?>" />
583
  <input type="hidden" name="mycred-sell-this-status" value="<?php echo $status; ?>" />
584
  <ul>
@@ -599,8 +596,8 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
599
  <div class="clear"></div>
600
  <script type="text/javascript">//<![CDATA[
601
  jQuery(function($) {
602
- $('#mycred-sell-this').click(function(){
603
- $('#mycred-sale-settings').toggle();
604
  });
605
  });//]]>
606
  </script>
@@ -1100,7 +1097,7 @@ jQuery(function($) {
1100
  * Render Sales History Shortcode
1101
  * @see http://mycred.me/shortcodes/mycred_sales_history/
1102
  * @since 1.0.9
1103
- * @version 1.1
1104
  */
1105
  public function render_sales_history( $atts ) {
1106
  extract( shortcode_atts( array(
@@ -1134,18 +1131,17 @@ jQuery(function($) {
1134
  }
1135
 
1136
  // Query
1137
- $sql = "
1138
  SELECT *
1139
  FROM {$this->core->log_table}
1140
  WHERE user_id = %d
1141
  AND ref = %s
1142
  AND ctype = %s
1143
- ORDER BY time;";
1144
- $results = $wpdb->get_results( $wpdb->prepare( $sql, $user_id, 'buy_content', $this->mycred_type ) );
1145
- $rows = array();
1146
 
1147
  // Results
1148
- if ( $wpdb->num_rows > 0 ) {
 
1149
  foreach ( $results as $item ) {
1150
  // Row
1151
  $row = '<span class="item-link"><a href="' . get_permalink( $item->ref_id ) . '">' . get_the_title( $item->ref_id ) . '</a></span>';
@@ -1173,7 +1169,36 @@ jQuery(function($) {
1173
 
1174
  return $output;
1175
  }
1176
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1177
  /**
1178
  * Support for Email Notices
1179
  * @since 1.1
66
  /**
67
  * Load
68
  * @since 0.1
69
+ * @version 1.2
70
  */
71
  public function module_init() {
72
  $this->make_purchase();
74
 
75
  add_filter( 'the_content', array( $this, 'the_content' ), 30 );
76
 
77
+ add_shortcode( 'mycred_sell_this', array( $this, 'render_shortcode' ) );
78
+ add_shortcode( 'mycred_sell_this_ajax', array( $this, 'render_ajax_shortcode' ) );
79
+ add_shortcode( 'mycred_sales_history', array( $this, 'render_sales_history' ) );
80
+ add_shortcode( 'mycred_content_sale_count', array( $this, 'render_no_of_sales' ) );
81
 
82
  add_action( 'add_meta_boxes', array( $this, 'add_metabox' ) );
83
  add_action( 'save_post', array( $this, 'save_metabox' ) );
167
  /**
168
  * Make Purchase AJAX
169
  * @since 1.1
170
+ * @version 1.2.1
171
  */
172
  public function make_purchase_ajax() {
173
  // We must be logged in
211
 
212
  // Pay
213
  if ( $sell_content['pay'] == 'author' ) {
 
214
  // If we are paying the author less then 100%
215
+ $payout_percent = apply_filters( 'mycred_profit_share_sell_content', $sell_content['pay_percent'], $post_id, $this );
216
+
217
+ $share = ( $payout_percent / 100 ) * $prefs['price'];
218
+
 
 
 
 
 
 
 
219
  $this->core->add_creds(
220
  'buy_content',
221
  $author,
222
+ $share,
223
+ $sell_content['logs']['sell'],
224
  $post_id,
225
+ array(
226
+ 'ref_type' => 'post',
227
+ 'purchase_id' => 'TXID' . date_i18n( 'U' ),
228
+ 'buyer' => $user_id
229
+ ),
230
  $this->mycred_type
231
  );
232
  }
508
  *
509
  * @return (array) sales settings
510
  * @since 0.1
511
+ * @version 1.1
512
  */
513
  public function get_sale_prefs( $post_id ) {
514
  $sell_content = $this->sell_content;
516
  $sell_content['defaults']['expire'] = 0;
517
 
518
  $prefs = get_post_meta( $post_id, 'myCRED_sell_content', true );
519
+ if ( $prefs == '' ) {
520
  $sales_data = array(
521
  'status' => 'disabled',
522
  'price' => $sell_content['defaults']['price'],
531
  $sales_data = $prefs;
532
  }
533
 
534
+ return apply_filters( 'mycred_sell_content_post_prefs', $sales_data, $post_id, $this );
535
  }
536
 
537
  /**
538
  * Sell Meta Box
539
  * @since 0.1
540
+ * @version 1.1
541
  */
542
  public function metabox( $post ) {
543
  // Make sure add-on has been setup
574
  $op = (bool) $sell_content['defaults']['overwrite_price'];
575
  $ob = (bool) $sell_content['defaults']['overwrite_buttonlabel']; ?>
576
 
577
+ <p><label for="mycred-sell-this"><input type="checkbox" name="mycred_sell_this" id="mycred-sell-this"<?php checked( $status, 'enabled' ); ?> value="enabled" /> <?php printf( __( 'Enable sale of this %s', 'mycred' ), $post_type ); ?></label></p>
578
+ <div id="mycred-sale-settings" style="<?php echo $style; ?>">
579
  <input type="hidden" name="mycred-sell-this-token" value="<?php echo wp_create_nonce( 'mycred-sell-this' ); ?>" />
580
  <input type="hidden" name="mycred-sell-this-status" value="<?php echo $status; ?>" />
581
  <ul>
596
  <div class="clear"></div>
597
  <script type="text/javascript">//<![CDATA[
598
  jQuery(function($) {
599
+ $( '#mycred-sell-this' ).click(function(){
600
+ $( '#mycred-sale-settings' ).toggle();
601
  });
602
  });//]]>
603
  </script>
1097
  * Render Sales History Shortcode
1098
  * @see http://mycred.me/shortcodes/mycred_sales_history/
1099
  * @since 1.0.9
1100
+ * @version 1.2
1101
  */
1102
  public function render_sales_history( $atts ) {
1103
  extract( shortcode_atts( array(
1131
  }
1132
 
1133
  // Query
1134
+ $results = $wpdb->get_results( $wpdb->prepare( "
1135
  SELECT *
1136
  FROM {$this->core->log_table}
1137
  WHERE user_id = %d
1138
  AND ref = %s
1139
  AND ctype = %s
1140
+ ORDER BY time;", $user_id, 'buy_content', $this->mycred_type ) );
 
 
1141
 
1142
  // Results
1143
+ $rows = array();
1144
+ if ( ! empty( $results ) ) {
1145
  foreach ( $results as $item ) {
1146
  // Row
1147
  $row = '<span class="item-link"><a href="' . get_permalink( $item->ref_id ) . '">' . get_the_title( $item->ref_id ) . '</a></span>';
1169
 
1170
  return $output;
1171
  }
1172
+
1173
+ /**
1174
+ * Shortcode: Number of Sales
1175
+ * @since 1.4.7
1176
+ * @version 1.0
1177
+ */
1178
+ function render_no_of_sales( $atts ) {
1179
+
1180
+ extract( shortcode_atts( array(
1181
+ 'post_id' => NULL
1182
+ ), $atts ) );
1183
+
1184
+ if ( $post_id === NULL )
1185
+ $post_id = $this->get_post_ID();
1186
+
1187
+ global $wpdb;
1188
+
1189
+ $total = $wpdb->get_var( "
1190
+ SELECT COUNT( * )
1191
+ FROM {$this->core->log_table}
1192
+ WHERE ref = 'buy_content'
1193
+ AND creds < 0
1194
+ AND ref_id = {$post_id};" );
1195
+
1196
+ if ( $total === NULL )
1197
+ $total = 0;
1198
+
1199
+ return apply_filters( 'mycred_content_sales_count', $total, $post_id );
1200
+ }
1201
+
1202
  /**
1203
  * Support for Email Notices
1204
  * @since 1.1
addons/transfer/js/transfer.js CHANGED
@@ -6,7 +6,7 @@
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
- * @version 1.2
10
  */
11
  jQuery(function($){
12
  // Transfer function
@@ -122,7 +122,7 @@ jQuery(function($){
122
  var creds = $(this).prev().children( 'input[name=mycred-transfer-amount]' ).val();
123
 
124
  // Type:
125
- var point_type = $(this).prev().children( 'input[name=mycred-transfer-type]' ).val();
126
 
127
  // If elements are not emepty attempt transfer
128
  if ( receipient != '' && creds != '' ) {
6
  * @requires jQuery UI
7
  * @requires jQuery Autocomplete
8
  * @since 0.1
9
+ * @version 1.2.1
10
  */
11
  jQuery(function($){
12
  // Transfer function
122
  var creds = $(this).prev().children( 'input[name=mycred-transfer-amount]' ).val();
123
 
124
  // Type:
125
+ var point_type = $(this).prev().children( 'select[name=mycred-transfer-type]' ).val();
126
 
127
  // If elements are not emepty attempt transfer
128
  if ( receipient != '' && creds != '' ) {
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -363,11 +363,11 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) {
363
 
364
  // Type
365
  $mycred_types = mycred_get_types();
366
- $type = 'mycred_default';
367
- if ( isset( $_POST['type'] ) && in_array( $_POST['type'], $mycred_types ) )
368
  $type = sanitize_text_field( $_POST['type'] );
369
 
370
- if ( empty( $type ) )
371
  $type = 'mycred_default';
372
 
373
  $mycred = mycred( $type );
@@ -906,7 +906,7 @@ if ( ! function_exists( 'mycred_user_can_transfer' ) ) {
906
  // Account Limit
907
  // The lowest amount a user can have on their account. By default, this
908
  // is zero. But you can override this via the mycred_transfer_acc_limit hook.
909
- $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero ) );
910
 
911
  // Check if users balance is below the account limit
912
  if ( $balance < $account_limit ) return 'low';
@@ -920,7 +920,7 @@ if ( ! function_exists( 'mycred_user_can_transfer' ) ) {
920
  $max = $mycred->number( $pref['limit']['amount'] );
921
 
922
  // Get users "limit log"
923
- $history = mycred_get_users_transfer_history( $user_id );
924
 
925
  // Get Current amount
926
  $current = $mycred->number( $history['amount'] );
363
 
364
  // Type
365
  $mycred_types = mycred_get_types();
366
+ $type = '';
367
+ if ( isset( $_POST['type'] ) && array_key_exists( $_POST['type'], $mycred_types ) )
368
  $type = sanitize_text_field( $_POST['type'] );
369
 
370
+ if ( $type == '' )
371
  $type = 'mycred_default';
372
 
373
  $mycred = mycred( $type );
906
  // Account Limit
907
  // The lowest amount a user can have on their account. By default, this
908
  // is zero. But you can override this via the mycred_transfer_acc_limit hook.
909
+ $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero, $type ) );
910
 
911
  // Check if users balance is below the account limit
912
  if ( $balance < $account_limit ) return 'low';
920
  $max = $mycred->number( $pref['limit']['amount'] );
921
 
922
  // Get users "limit log"
923
+ $history = mycred_get_users_transfer_history( $user_id, $type );
924
 
925
  // Get Current amount
926
  $current = $mycred->number( $history['amount'] );
includes/mycred-admin.php CHANGED
@@ -267,11 +267,17 @@ LEFT JOIN {$wpdb->usermeta}
267
 
268
  $user = get_userdata( $user_id );
269
 
 
270
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
271
  $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
272
 
 
273
  if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' ) {
274
- $total = get_user_meta( $user_id, $column_name . '_total', true );
 
 
 
 
275
  if ( $total != '' )
276
  $balance .= '<small style="display:block;">' . sprintf( __( 'Total: %s', 'mycred' ), $mycred->format_number( $total ) ) . '</small>';
277
  }
@@ -287,6 +293,7 @@ LEFT JOIN {$wpdb->usermeta}
287
 
288
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
289
  $balance .= $this->row_actions( $rows );
 
290
  return $balance;
291
  }
292
 
267
 
268
  $user = get_userdata( $user_id );
269
 
270
+ // Show balance
271
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
272
  $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
273
 
274
+ // Show total
275
  if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' ) {
276
+ $key = $column_name;
277
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
278
+ $key .= '_' . $GLOBALS['blog_id'];
279
+
280
+ $total = get_user_meta( $user_id, $key . '_total', true );
281
  if ( $total != '' )
282
  $balance .= '<small style="display:block;">' . sprintf( __( 'Total: %s', 'mycred' ), $mycred->format_number( $total ) ) . '</small>';
283
  }
293
 
294
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
295
  $balance .= $this->row_actions( $rows );
296
+
297
  return $balance;
298
  }
299
 
includes/mycred-functions.php CHANGED
@@ -219,7 +219,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
219
  else
220
  $layout = $before . $prefix . $creds . $suffix . $after;
221
 
222
- return apply_filters( 'mycred_format_creds', $layout, $creds, $this->core );
223
  }
224
 
225
  /**
@@ -858,19 +858,19 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
858
  * @param $type (string), optional cred type to check for
859
  * @returns zero if user id is not set or if no creds were found, else returns amount
860
  * @since 0.1
861
- * @version 1.3
862
  */
863
- public function get_users_cred( $user_id = '', $type = '' ) {
864
- if ( empty( $user_id ) ) return $this->zero();
865
 
866
- if ( empty( $type ) ) $type = $this->get_cred_id();
867
 
868
  // Handle multisites without centralized log
869
  if ( $this->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->use_central_logging )
870
  $type .= '_' . $GLOBALS['blog_id'];
871
 
872
  $balance = get_user_meta( $user_id, $type, true );
873
- if ( empty( $balance ) ) $balance = $this->zero();
874
 
875
  // Let others play
876
  $balance = apply_filters( 'mycred_get_users_cred', $balance, $this, $user_id, $type );
@@ -1363,12 +1363,12 @@ endif;
1363
  * Returns the name given to creds.
1364
  * @param $signular (boolean) option to return the plural version, returns singular by default
1365
  * @since 0.1
1366
- * @version 1.0
1367
  */
1368
  if ( ! function_exists( 'mycred_name' ) ) :
1369
- function mycred_name( $singular = true )
1370
  {
1371
- $mycred = mycred();
1372
  if ( $singular )
1373
  return $mycred->singular();
1374
  else
@@ -1402,9 +1402,9 @@ endif;
1402
  * @version 1.0
1403
  */
1404
  if ( ! function_exists( 'mycred_is_admin' ) ) :
1405
- function mycred_is_admin( $user_id = NULL )
1406
  {
1407
- $mycred = mycred();
1408
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1409
 
1410
  if ( $mycred->can_edit_creds( $user_id ) || $mycred->can_edit_plugin( $user_id ) ) return true;
@@ -1419,12 +1419,12 @@ endif;
1419
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
1420
  * @param $user_id (int), optional user to check, defaults to current user
1421
  * @since 0.1
1422
- * @version 1.0
1423
  */
1424
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
1425
- function mycred_exclude_user( $user_id = NULL )
1426
  {
1427
- $mycred = mycred();
1428
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1429
  return $mycred->exclude_user( $user_id );
1430
  }
@@ -1437,14 +1437,14 @@ endif;
1437
  * @param $user_id (int) user id
1438
  * @return users balance (int|float)
1439
  * @since 0.1
1440
- * @version 1.0
1441
  */
1442
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
1443
- function mycred_get_users_cred( $user_id = NULL, $type = '' )
1444
  {
1445
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1446
 
1447
- $mycred = mycred();
1448
  return $mycred->get_users_cred( $user_id, $type );
1449
  }
1450
  endif;
@@ -1456,14 +1456,14 @@ endif;
1456
  * @param $user_id (int), required user id
1457
  * @return users balance (string) or false if no user id is given
1458
  * @since 0.1
1459
- * @version 1.0
1460
  */
1461
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
1462
- function mycred_get_users_fcred( $user_id = NULL, $type = '' )
1463
  {
1464
  if ( $user_id === NULL ) return false;
1465
 
1466
- $mycred = mycred();
1467
  $cred = $mycred->get_users_cred( $user_id, $type );
1468
  return $mycred->format_creds( $cred );
1469
  }
@@ -1485,12 +1485,12 @@ endif;
1485
  /**
1486
  * Format Number
1487
  * @since 1.3.3
1488
- * @version 1.0
1489
  */
1490
  if ( ! function_exists( 'mycred_format_number' ) ) :
1491
- function mycred_format_number( $value = NULL )
1492
  {
1493
- $mycred = mycred();
1494
  if ( $value === NULL )
1495
  return $mycred->zero();
1496
 
@@ -1501,12 +1501,12 @@ endif;
1501
  /**
1502
  * Format Creds
1503
  * @since 1.3.3
1504
- * @version 1.0
1505
  */
1506
  if ( ! function_exists( 'mycred_format_creds' ) ) :
1507
- function mycred_format_creds( $value = NULL )
1508
  {
1509
- $mycred = mycred();
1510
  if ( $value === NULL ) $mycred->zero();
1511
 
1512
  return $mycred->format_creds( $value );
@@ -1527,7 +1527,7 @@ endif;
1527
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1528
  * @returns boolean true on success or false on fail
1529
  * @since 0.1
1530
- * @version 1.1
1531
  */
1532
  if ( ! function_exists( 'mycred_add' ) ) :
1533
  function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
@@ -1535,8 +1535,8 @@ if ( ! function_exists( 'mycred_add' ) ) :
1535
  // $ref, $user_id and $cred is required
1536
  if ( empty( $ref ) || empty( $user_id ) || empty( $amount ) ) return false;
1537
 
1538
- $mycred = mycred();
1539
- if ( empty( $type ) ) $type = $mycred->get_cred_id();
1540
 
1541
  // Add creds
1542
  return $mycred->add_creds( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
@@ -1630,13 +1630,13 @@ endif;
1630
  * @param $order (string) order to return ASC or DESC
1631
  * @filter mycred_count_all_refs
1632
  * @since 1.3.3
1633
- * @version 1.0
1634
  */
1635
  if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
1636
  function mycred_count_all_ref_instances( $number = 5, $order = 'DESC', $type = 'mycred_default' )
1637
  {
1638
  global $wpdb;
1639
- $mycred = mycred();
1640
 
1641
  if ( $number == '-1' )
1642
  $limit = '';
@@ -1737,7 +1737,7 @@ if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
1737
  $prep[] = $to;
1738
 
1739
  // Type
1740
- if ( empty( $type ) )
1741
  $type = $mycred->get_cred_id();
1742
 
1743
  $wheres[] = 'ctype = %s';
@@ -1771,7 +1771,7 @@ endif;
1771
  * @param $type (string), optional cred type to check for
1772
  * @returns zero if user id is not set or if no total were found, else returns creds
1773
  * @since 1.2
1774
- * @version 1.2
1775
  */
1776
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
1777
  function mycred_get_users_total( $user_id = '', $type = 'mycred_default' )
@@ -1781,18 +1781,53 @@ if ( ! function_exists( 'mycred_get_users_total' ) ) :
1781
  if ( $type == '' ) $type = 'mycred_default';
1782
  $mycred = mycred( $type );
1783
 
 
1784
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1785
- $type .= '_' . $GLOBALS['blog_id'];
1786
 
1787
- $type .= '_total';
1788
 
1789
- $total = get_user_meta( $user_id, $type, true );
1790
- if ( $total == '' ) $total = $mycred->get_users_cred( $user_id, $type );
 
 
 
1791
 
 
1792
  return $mycred->number( $total );
1793
  }
1794
  endif;
1795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1796
  /**
1797
  * Update users total creds
1798
  * Updates a given users total creds balance.
@@ -1802,38 +1837,33 @@ endif;
1802
  * @param $mycred (myCRED_Settings object), required myCRED settings object
1803
  * @returns zero if user id is not set or if no total were found, else returns total
1804
  * @since 1.2
1805
- * @version 1.2
1806
  */
1807
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
1808
  function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL )
1809
  {
1810
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
1811
- if ( empty( $type ) ) $type = $mycred->get_cred_id();
1812
 
1813
- if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1814
- $type .= '_' . $GLOBALS['blog_id'];
1815
 
1816
- $type .= '_total';
 
 
1817
 
1818
- do_action( 'mycred_update_users_total', $request, $type, $mycred );
1819
 
1820
  $amount = $mycred->number( $request['amount'] );
1821
- $user_id = $request['user_id'];
1822
- $users_total = get_user_meta( $user_id, $type, true );
1823
- if ( empty( $users_total ) ) {
1824
- global $wpdb;
1825
- $users_total = $wpdb->get_var( $wpdb->prepare( "
1826
- SELECT SUM( creds )
1827
- FROM {$mycred->log_table}
1828
- WHERE user_id = %d
1829
- AND ( ( creds > 0 ) OR ( creds < 0 AND ref = %s ) )
1830
- AND ctype = %s;", $user_id, 'manual', $type ) );
1831
- }
1832
 
1833
  $new_total = $mycred->number( $users_total+$amount );
1834
- update_user_meta( $user_id, $type, $new_total );
1835
 
1836
- return $new_total;
1837
  }
1838
  endif;
1839
 
219
  else
220
  $layout = $before . $prefix . $creds . $suffix . $after;
221
 
222
+ return apply_filters( 'mycred_format_creds', $layout, $creds, $this );
223
  }
224
 
225
  /**
858
  * @param $type (string), optional cred type to check for
859
  * @returns zero if user id is not set or if no creds were found, else returns amount
860
  * @since 0.1
861
+ * @version 1.3.1
862
  */
863
+ public function get_users_cred( $user_id = NULL, $type = NULL ) {
864
+ if ( $user_id === NULL ) return $this->zero();
865
 
866
+ if ( $type === NULL ) $type = $this->get_cred_id();
867
 
868
  // Handle multisites without centralized log
869
  if ( $this->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->use_central_logging )
870
  $type .= '_' . $GLOBALS['blog_id'];
871
 
872
  $balance = get_user_meta( $user_id, $type, true );
873
+ if ( $balance == '' ) $balance = $this->zero();
874
 
875
  // Let others play
876
  $balance = apply_filters( 'mycred_get_users_cred', $balance, $this, $user_id, $type );
1363
  * Returns the name given to creds.
1364
  * @param $signular (boolean) option to return the plural version, returns singular by default
1365
  * @since 0.1
1366
+ * @version 1.1
1367
  */
1368
  if ( ! function_exists( 'mycred_name' ) ) :
1369
+ function mycred_name( $singular = true, $type = 'mycred_default' )
1370
  {
1371
+ $mycred = mycred( $type );
1372
  if ( $singular )
1373
  return $mycred->singular();
1374
  else
1402
  * @version 1.0
1403
  */
1404
  if ( ! function_exists( 'mycred_is_admin' ) ) :
1405
+ function mycred_is_admin( $user_id = NULL, $type = 'mycred_default' )
1406
  {
1407
+ $mycred = mycred( $type );
1408
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1409
 
1410
  if ( $mycred->can_edit_creds( $user_id ) || $mycred->can_edit_plugin( $user_id ) ) return true;
1419
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
1420
  * @param $user_id (int), optional user to check, defaults to current user
1421
  * @since 0.1
1422
+ * @version 1.1
1423
  */
1424
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
1425
+ function mycred_exclude_user( $user_id = NULL, $type = 'mycred_default' )
1426
  {
1427
+ $mycred = mycred( $type );
1428
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1429
  return $mycred->exclude_user( $user_id );
1430
  }
1437
  * @param $user_id (int) user id
1438
  * @return users balance (int|float)
1439
  * @since 0.1
1440
+ * @version 1.1
1441
  */
1442
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
1443
+ function mycred_get_users_cred( $user_id = NULL, $type = 'mycred_default' )
1444
  {
1445
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1446
 
1447
+ $mycred = mycred( $type );
1448
  return $mycred->get_users_cred( $user_id, $type );
1449
  }
1450
  endif;
1456
  * @param $user_id (int), required user id
1457
  * @return users balance (string) or false if no user id is given
1458
  * @since 0.1
1459
+ * @version 1.1
1460
  */
1461
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
1462
+ function mycred_get_users_fcred( $user_id = NULL, $type = 'mycred_default' )
1463
  {
1464
  if ( $user_id === NULL ) return false;
1465
 
1466
+ $mycred = mycred( $type );
1467
  $cred = $mycred->get_users_cred( $user_id, $type );
1468
  return $mycred->format_creds( $cred );
1469
  }
1485
  /**
1486
  * Format Number
1487
  * @since 1.3.3
1488
+ * @version 1.1
1489
  */
1490
  if ( ! function_exists( 'mycred_format_number' ) ) :
1491
+ function mycred_format_number( $value = NULL, $type = 'mycred_default' )
1492
  {
1493
+ $mycred = mycred( $type );
1494
  if ( $value === NULL )
1495
  return $mycred->zero();
1496
 
1501
  /**
1502
  * Format Creds
1503
  * @since 1.3.3
1504
+ * @version 1.1
1505
  */
1506
  if ( ! function_exists( 'mycred_format_creds' ) ) :
1507
+ function mycred_format_creds( $value = NULL, $type = 'mycred_default' )
1508
  {
1509
+ $mycred = mycred( $type );
1510
  if ( $value === NULL ) $mycred->zero();
1511
 
1512
  return $mycred->format_creds( $value );
1527
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1528
  * @returns boolean true on success or false on fail
1529
  * @since 0.1
1530
+ * @version 1.3
1531
  */
1532
  if ( ! function_exists( 'mycred_add' ) ) :
1533
  function mycred_add( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1535
  // $ref, $user_id and $cred is required
1536
  if ( empty( $ref ) || empty( $user_id ) || empty( $amount ) ) return false;
1537
 
1538
+ if ( $type == '' ) $type = 'mycred_default';
1539
+ $mycred = mycred( $type );
1540
 
1541
  // Add creds
1542
  return $mycred->add_creds( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1630
  * @param $order (string) order to return ASC or DESC
1631
  * @filter mycred_count_all_refs
1632
  * @since 1.3.3
1633
+ * @version 1.1
1634
  */
1635
  if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
1636
  function mycred_count_all_ref_instances( $number = 5, $order = 'DESC', $type = 'mycred_default' )
1637
  {
1638
  global $wpdb;
1639
+ $mycred = mycred( $type );
1640
 
1641
  if ( $number == '-1' )
1642
  $limit = '';
1737
  $prep[] = $to;
1738
 
1739
  // Type
1740
+ if ( $type == '' )
1741
  $type = $mycred->get_cred_id();
1742
 
1743
  $wheres[] = 'ctype = %s';
1771
  * @param $type (string), optional cred type to check for
1772
  * @returns zero if user id is not set or if no total were found, else returns creds
1773
  * @since 1.2
1774
+ * @version 1.3
1775
  */
1776
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
1777
  function mycred_get_users_total( $user_id = '', $type = 'mycred_default' )
1781
  if ( $type == '' ) $type = 'mycred_default';
1782
  $mycred = mycred( $type );
1783
 
1784
+ $key = $type;
1785
  if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1786
+ $key .= '_' . $GLOBALS['blog_id'];
1787
 
1788
+ $key .= '_total';
1789
 
1790
+ $total = get_user_meta( $user_id, $key, true );
1791
+ if ( $total == '' ) {
1792
+ $total = mycred_query_users_total( $user_id, $type );
1793
+ update_user_meta( $user_id, $key, $total );
1794
+ }
1795
 
1796
+ $total = apply_filters( 'mycred_get_users_total', $total, $user_id, $type, $key );
1797
  return $mycred->number( $total );
1798
  }
1799
  endif;
1800
 
1801
+ /**
1802
+ * Query Users Total
1803
+ * Queries the database for the users total acculimated points.
1804
+ *
1805
+ * @param $user_id (int), required user id
1806
+ * @param $type (string), required point type
1807
+ * @since 1.4.7
1808
+ * @version 1.0
1809
+ */
1810
+ if ( ! function_exists( 'mycred_query_users_total' ) ) :
1811
+ function mycred_query_users_total( $user_id, $type = 'mycred_default' )
1812
+ {
1813
+ global $wpdb;
1814
+
1815
+ $mycred = mycred( $type );
1816
+
1817
+ $total = $wpdb->get_var( $wpdb->prepare( "
1818
+ SELECT SUM( creds )
1819
+ FROM {$mycred->log_table}
1820
+ WHERE user_id = %d
1821
+ AND ( ( creds > 0 ) OR ( creds < 0 AND ref = 'manual' ) )
1822
+ AND ctype = %s;", $user_id, $type ) );
1823
+
1824
+ if ( $total === NULL )
1825
+ $total = 0;
1826
+
1827
+ return apply_filters( 'mycred_query_users_total', $total, $user_id, $type, $mycred );
1828
+ }
1829
+ endif;
1830
+
1831
  /**
1832
  * Update users total creds
1833
  * Updates a given users total creds balance.
1837
  * @param $mycred (myCRED_Settings object), required myCRED settings object
1838
  * @returns zero if user id is not set or if no total were found, else returns total
1839
  * @since 1.2
1840
+ * @version 1.3
1841
  */
1842
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
1843
  function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL )
1844
  {
1845
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
 
1846
 
1847
+ if ( $type == '' )
1848
+ $type = $mycred->get_cred_id();
1849
 
1850
+ $key = $type;
1851
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1852
+ $key .= '_' . $GLOBALS['blog_id'];
1853
 
1854
+ $key .= '_total';
1855
 
1856
  $amount = $mycred->number( $request['amount'] );
1857
+ $user_id = absint( $request['user_id'] );
1858
+
1859
+ $users_total = get_user_meta( $user_id, $key, true );
1860
+ if ( $users_total == '' )
1861
+ $users_total = mycred_query_users_total( $user_id, $type );
 
 
 
 
 
 
1862
 
1863
  $new_total = $mycred->number( $users_total+$amount );
1864
+ update_user_meta( $user_id, $key, $new_total );
1865
 
1866
+ return apply_filters( 'mycred_update_users_total', $new_total, $type, $request, $mycred );
1867
  }
1868
  endif;
1869
 
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:25:46 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
@@ -47,8 +47,8 @@ msgstr ""
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
- #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr ""
54
 
@@ -101,7 +101,7 @@ msgid "Log entry updated"
101
  msgstr ""
102
 
103
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
104
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr ""
@@ -169,7 +169,7 @@ msgstr ""
169
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
170
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
171
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
172
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
173
  msgid "Select"
174
  msgstr ""
175
 
@@ -367,9 +367,9 @@ msgid "Pay Users"
367
  msgstr ""
368
 
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
370
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
371
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
372
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
373
  msgid "Amount"
374
  msgstr ""
375
 
@@ -423,7 +423,7 @@ msgid ""
423
  msgstr ""
424
 
425
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
426
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
427
  msgid "Excludes"
428
  msgstr ""
429
 
@@ -450,7 +450,7 @@ msgstr ""
450
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
451
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
452
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
453
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
454
  msgid "Payments"
455
  msgstr ""
456
 
@@ -478,7 +478,7 @@ msgstr ""
478
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
479
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
480
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
481
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
482
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
483
  #: includes/importers/mycred-cubepoints.php:365
484
  msgid "Point Type"
@@ -534,7 +534,7 @@ msgid "%s Payment Gateways"
534
  msgstr ""
535
 
536
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
537
- #: addon-buy-creds.php:663
538
  msgid "buyCRED Settings"
539
  msgstr ""
540
 
@@ -562,13 +562,13 @@ msgid "Time"
562
  msgstr ""
563
 
564
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
565
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
566
  #: overview.php:173 ../modules/mycred-module-addons.php:190
567
  msgid "Gateway"
568
  msgstr ""
569
 
570
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
571
- #: addon-buy-creds.php:659
572
  msgid "Transaction ID"
573
  msgstr ""
574
 
@@ -608,101 +608,101 @@ msgstr ""
608
  msgid "Update Gateway Settings"
609
  msgstr ""
610
 
611
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
612
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
613
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
614
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
615
  msgid "User"
616
  msgstr ""
617
 
618
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
619
  #: 640
620
  msgid "Date"
621
  msgstr ""
622
 
623
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
624
  msgid "Payed"
625
  msgstr ""
626
 
627
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
628
  msgid "<strong>buy</strong>CRED Purchase Log"
629
  msgstr ""
630
 
631
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
632
  #: booking/mycred-eventespresso3.php:367
633
  msgid "Gateway Settings"
634
  msgstr ""
635
 
636
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
637
  msgid ""
638
  "Only completed purchases are shown here. Purchases that were cancelled or "
639
  "failed are not logged."
640
  msgstr ""
641
 
642
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
643
  #: 743 ../modules/mycred-module-log.php:462
644
  msgid "User Missing"
645
  msgstr ""
646
 
647
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
648
- #: content/myCRED-addon-sell-content.php:1112
649
  msgid "No purchases found"
650
  msgstr ""
651
 
652
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
653
- #: addon-buy-creds.php:1008
654
  msgid "This Add-on needs to setup before you can use this shortcode."
655
  msgstr ""
656
 
657
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
658
- #: addon-buy-creds.php:1026
659
  msgid "No gateways installed."
660
  msgstr ""
661
 
662
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
663
- #: addon-buy-creds.php:1027
664
  msgid "Gateway does not exist."
665
  msgstr ""
666
 
667
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
668
  msgid "Yourself"
669
  msgstr ""
670
 
671
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
672
  msgid "No active gateways found."
673
  msgstr ""
674
 
675
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
676
  msgid "The selected gateway is not active."
677
  msgstr ""
678
 
679
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
680
  #, php-format
681
  msgid "Buy with %gateway%"
682
  msgstr ""
683
 
684
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
685
  #: content/myCRED-addon-sell-content.php:44
686
  msgid "Buy Now"
687
  msgstr ""
688
 
689
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
690
  msgid "No users found"
691
  msgstr ""
692
 
693
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
694
  msgid "To"
695
  msgstr ""
696
 
697
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
698
  msgid "Select Amount"
699
  msgstr ""
700
 
701
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
702
  msgid "min."
703
  msgstr ""
704
 
705
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
706
  msgid "Select Gateway"
707
  msgstr ""
708
 
@@ -747,12 +747,12 @@ msgid "Cancel purchase"
747
  msgstr ""
748
 
749
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
750
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
751
  msgid "required"
752
  msgstr ""
753
 
754
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
755
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
756
  msgid "optional"
757
  msgstr ""
758
 
@@ -1333,9 +1333,9 @@ msgid "No coupons found in Trash"
1333
  msgstr ""
1334
 
1335
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1336
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1337
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1338
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1339
  #: module-addons.php:179
1340
  msgid "Email Notices"
1341
  msgstr ""
@@ -1539,403 +1539,403 @@ msgstr ""
1539
  msgid "Apply Coupon"
1540
  msgstr ""
1541
 
1542
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1543
- #: notices/myCRED-addon-email-notices.php:1138
1544
  msgid "Email Notice"
1545
  msgstr ""
1546
 
1547
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1548
  #: addons/ranks/myCRED-addon-ranks.php:248
1549
  msgid "Add New"
1550
  msgstr ""
1551
 
1552
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1553
  msgid "Add New Notice"
1554
  msgstr ""
1555
 
1556
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1557
  msgid "Edit Notice"
1558
  msgstr ""
1559
 
1560
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1561
  msgid "New Notice"
1562
  msgstr ""
1563
 
1564
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1565
  msgid "View Notice"
1566
  msgstr ""
1567
 
1568
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1569
  msgid "Search Email Notices"
1570
  msgstr ""
1571
 
1572
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1573
  msgid "No email notices found"
1574
  msgstr ""
1575
 
1576
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1577
  msgid "No email notices found in Trash"
1578
  msgstr ""
1579
 
1580
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1581
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1582
  #: php:589
1583
  msgid "General"
1584
  msgstr ""
1585
 
1586
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1587
  msgid "users balance changes"
1588
  msgstr ""
1589
 
1590
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1591
  msgid "user gains %_plural%"
1592
  msgstr ""
1593
 
1594
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1595
  msgid "user lose %_plural%"
1596
  msgstr ""
1597
 
1598
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1599
  msgid "users balance reaches zero"
1600
  msgstr ""
1601
 
1602
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1603
  msgid "users balance goes minus"
1604
  msgstr ""
1605
 
1606
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1607
  msgid "Sell Content Add-on"
1608
  msgstr ""
1609
 
1610
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1611
  msgid "user buys content"
1612
  msgstr ""
1613
 
1614
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1615
  msgid "authors content gets sold"
1616
  msgstr ""
1617
 
1618
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1619
  msgid "buyCREDs Add-on"
1620
  msgstr ""
1621
 
1622
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1623
  msgid "user buys %_plural%"
1624
  msgstr ""
1625
 
1626
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1627
  msgid "Transfer Add-on"
1628
  msgstr ""
1629
 
1630
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1631
  msgid "user sends %_plural%"
1632
  msgstr ""
1633
 
1634
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1635
  msgid "user receives %_plural%"
1636
  msgstr ""
1637
 
1638
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1639
  msgid "Ranks Add-on"
1640
  msgstr ""
1641
 
1642
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1643
  msgid "user is demoted"
1644
  msgstr ""
1645
 
1646
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1647
  msgid "user is promoted"
1648
  msgstr ""
1649
 
1650
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1651
  msgid ""
1652
  "Settings that apply to all email notices and can not be overridden for "
1653
  "individual emails."
1654
  msgstr ""
1655
 
1656
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1657
  msgid "Email Format"
1658
  msgstr ""
1659
 
1660
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1661
  msgid "Plain text emails only."
1662
  msgstr ""
1663
 
1664
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1665
  msgid "HTML or Plain text emails."
1666
  msgstr ""
1667
 
1668
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1669
  msgid "Filters"
1670
  msgstr ""
1671
 
1672
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1673
  msgid ""
1674
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1675
  "an email is sent."
1676
  msgstr ""
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1679
  msgid ""
1680
  "Allow WordPress and Third Party Plugins to filter the email content before "
1681
  "an email is sent."
1682
  msgstr ""
1683
 
1684
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1685
- #: notices/myCRED-addon-email-notices.php:303
1686
  msgid "Email Schedule"
1687
  msgstr ""
1688
 
1689
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1690
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1691
  msgstr ""
1692
 
1693
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1694
  msgid "Send emails immediately"
1695
  msgstr ""
1696
 
1697
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1698
  msgid "Send emails once an hour"
1699
  msgstr ""
1700
 
1701
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1702
  msgid "Send emails once a day"
1703
  msgstr ""
1704
 
1705
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1706
  msgid "Subscriptions"
1707
  msgstr ""
1708
 
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1710
  #, php-format
1711
  msgid ""
1712
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1713
  "updates."
1714
  msgstr ""
1715
 
1716
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1717
  msgid "SMTP Override"
1718
  msgstr ""
1719
 
1720
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1721
  msgid ""
1722
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1723
  "use a SMTP plugin for emails."
1724
  msgstr ""
1725
 
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1727
  msgid ""
1728
  "Default email settings. These settings can be individually overridden when "
1729
  "editing emails."
1730
  msgstr ""
1731
 
1732
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1733
- #: notices/myCRED-addon-email-notices.php:802
1734
  msgid "Email Settings"
1735
  msgstr ""
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1738
- #: notices/myCRED-addon-email-notices.php:925
1739
  msgid "Senders Name:"
1740
  msgstr ""
1741
 
1742
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1743
- #: notices/myCRED-addon-email-notices.php:927
1744
  msgid "Senders Email:"
1745
  msgstr ""
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1748
  msgid "Reply-To:"
1749
  msgstr ""
1750
 
1751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1752
  msgid "Default Email Content"
1753
  msgstr ""
1754
 
1755
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1756
  msgid "Default email content."
1757
  msgstr ""
1758
 
1759
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1760
  msgid "Default Email Styling"
1761
  msgstr ""
1762
 
1763
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1764
  msgid "Ignored if HTML is not allowed in emails."
1765
  msgstr ""
1766
 
1767
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1768
- #: notices/myCRED-addon-email-notices.php:851
1769
  msgid "Email Subject"
1770
  msgstr ""
1771
 
1772
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1773
  msgid "Status"
1774
  msgstr ""
1775
 
1776
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1777
  msgid "Not Active"
1778
  msgstr ""
1779
 
1780
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1781
  #, php-format
1782
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1783
  msgstr ""
1784
 
1785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1786
  msgid "Active"
1787
  msgstr ""
1788
 
1789
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1790
  #, php-format
1791
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1792
  msgstr ""
1793
 
1794
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1795
  msgid "Email is sent when"
1796
  msgstr ""
1797
 
1798
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1799
  msgid "Missing instance for this notice!"
1800
  msgstr ""
1801
 
1802
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1803
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1804
- #: addon-email-notices.php:790
1805
  msgid "Sent To"
1806
  msgstr ""
1807
 
1808
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1809
- #: notices/myCRED-addon-email-notices.php:916
1810
  msgid "Administrator"
1811
  msgstr ""
1812
 
1813
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1814
  msgid "Both Administrator and User"
1815
  msgstr ""
1816
 
1817
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1818
  msgid "Available Template Tags"
1819
  msgstr ""
1820
 
1821
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1822
  msgid "Email Header"
1823
  msgstr ""
1824
 
1825
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1826
  msgid "Send this email notice when..."
1827
  msgstr ""
1828
 
1829
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1830
  msgid "Recipient:"
1831
  msgstr ""
1832
 
1833
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1834
  msgid "Both"
1835
  msgstr ""
1836
 
1837
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1838
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1839
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1840
  #: module-settings.php:526
1841
  msgid "Label"
1842
  msgstr ""
1843
 
1844
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1845
  msgid "Reply-To Email:"
1846
  msgstr ""
1847
 
1848
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1849
  msgid "Save"
1850
  msgstr ""
1851
 
1852
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1853
  msgid "CSS Styling"
1854
  msgstr ""
1855
 
1856
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1857
  msgid "Site Related"
1858
  msgstr ""
1859
 
1860
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1861
  msgid "Your websites title"
1862
  msgstr ""
1863
 
1864
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1865
  msgid "Your websites address"
1866
  msgstr ""
1867
 
1868
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1869
  msgid "Your websites tagline (description)"
1870
  msgstr ""
1871
 
1872
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1873
  msgid "Your websites admin email"
1874
  msgstr ""
1875
 
1876
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1877
  msgid "Total number of blog members"
1878
  msgstr ""
1879
 
1880
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1881
- #: notices/myCRED-addon-email-notices.php:1049
1882
  #, php-format
1883
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1884
  msgstr ""
1885
 
1886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1887
  msgid "Email Notice Activated"
1888
  msgstr ""
1889
 
1890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1891
  msgid "Email Notice Saved"
1892
  msgstr ""
1893
 
1894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1895
  #, php-format
1896
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1897
  msgstr ""
1898
 
1899
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1900
  #, php-format
1901
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1902
  msgstr ""
1903
 
1904
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
1905
  msgid ""
1906
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1907
  "are not yet ready to use this email notice!"
1908
  msgstr ""
1909
 
1910
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
1911
  #, php-format
1912
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1913
  msgstr ""
1914
 
1915
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
1916
  msgid "This email notice is active."
1917
  msgstr ""
1918
 
1919
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
1920
  msgid "Settings saved."
1921
  msgstr ""
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
1924
  msgid "Unsubscribe"
1925
  msgstr ""
1926
 
1927
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
1928
  msgid "There are no email notifications yet."
1929
  msgstr ""
1930
 
1931
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
1932
  msgid "Save Changes"
1933
  msgstr ""
1934
 
1935
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1936
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1937
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1938
- #: php:412 ../includes/mycred-admin.php:478
1939
  msgid "Current Balance"
1940
  msgstr ""
1941
 
@@ -2355,8 +2355,8 @@ msgstr ""
2355
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2356
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2357
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2358
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2359
- #: sell-content.php:590
2360
  msgid "Button Label"
2361
  msgstr ""
2362
 
@@ -2369,8 +2369,8 @@ msgstr ""
2369
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2370
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2371
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2372
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2373
- #: sell-content.php:586
2374
  msgid "Price"
2375
  msgstr ""
2376
 
@@ -2390,7 +2390,7 @@ msgid "Log"
2390
  msgstr ""
2391
 
2392
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2393
- #: includes/mycred-admin.php:483
2394
  msgid "Log Entry"
2395
  msgstr ""
2396
 
@@ -2933,9 +2933,9 @@ msgid "No users found with this rank"
2933
  msgstr ""
2934
 
2935
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2936
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
2937
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
2938
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2939
  msgid "error"
2940
  msgstr ""
2941
 
@@ -2955,135 +2955,136 @@ msgstr ""
2955
  msgid "Hours"
2956
  msgstr ""
2957
 
2958
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
2959
  msgid "You can not buy this content."
2960
  msgstr ""
2961
 
2962
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
2963
  msgid "Error. Try Again"
2964
  msgstr ""
2965
 
2966
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
2967
  msgid "No Payout. Just charge."
2968
  msgstr ""
2969
 
2970
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
2971
  msgid "Pay Content Author."
2972
  msgstr ""
2973
 
2974
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
2975
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2976
  #: addons.php:224
2977
  msgid "Sell Content"
2978
  msgstr ""
2979
 
2980
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
2981
  msgid "Post Types"
2982
  msgstr ""
2983
 
2984
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
2985
  msgid "Comma separated list of post types that can be sold."
2986
  msgstr ""
2987
 
2988
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
2989
  msgid "Percentage to pay Author"
2990
  msgstr ""
2991
 
2992
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
2993
  msgid ""
2994
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2995
  "authors are not paid."
2996
  msgstr ""
2997
 
2998
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
2999
  msgid "Defaults"
3000
  msgstr ""
3001
 
3002
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3003
  msgid "Allow authors to change price."
3004
  msgstr ""
3005
 
3006
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3007
  msgid "Allow authors to change button label."
3008
  msgstr ""
3009
 
3010
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3011
  msgid "Purchases expire after"
3012
  msgstr ""
3013
 
3014
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3015
  msgid "Use zero for permanent sales."
3016
  msgstr ""
3017
 
3018
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3019
  msgid "Sale Template for non members"
3020
  msgstr ""
3021
 
3022
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3023
  #, php-format
3024
  msgid ""
3025
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3026
  "be logged in to buy content!"
3027
  msgstr ""
3028
 
3029
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3030
  msgid "Sale Template for members"
3031
  msgstr ""
3032
 
3033
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3034
- #: content/myCRED-addon-sell-content.php:431
3035
  #, php-format
3036
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3037
  msgstr ""
3038
 
3039
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3040
  msgid "Insufficient funds template"
3041
  msgstr ""
3042
 
3043
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3044
  msgid "Log template for Purchases"
3045
  msgstr ""
3046
 
3047
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3048
  msgid "Log template for Sales"
3049
  msgstr ""
3050
 
3051
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3052
  #, php-format
3053
  msgid "%s Sell This"
3054
  msgstr ""
3055
 
3056
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3057
  #, php-format
3058
  msgid "%s Sell Content needs to be setup before you can use this feature."
3059
  msgstr ""
3060
 
3061
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3062
  msgid "Setup add-on"
3063
  msgstr ""
3064
 
3065
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3066
  msgid "Lets do it"
3067
  msgstr ""
3068
 
3069
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3070
- msgid "Enable sale of this "
 
3071
  msgstr ""
3072
 
3073
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3074
  msgid "Purchase expires after"
3075
  msgstr ""
3076
 
3077
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3078
  msgid "Thank you for your purchase!"
3079
  msgstr ""
3080
 
3081
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3082
- #: content/myCRED-addon-sell-content.php:1094
3083
  msgid "The following content is set for sale:"
3084
  msgstr ""
3085
 
3086
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3087
  msgid "Purchased"
3088
  msgstr ""
3089
 
@@ -3350,49 +3351,54 @@ msgstr ""
3350
  msgid "Excluded"
3351
  msgstr ""
3352
 
3353
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3354
  #: modules/mycred-module-log.php:251
3355
  msgid "History"
3356
  msgstr ""
3357
 
3358
- #: ../includes/mycred-admin.php:280
3359
  msgid "Adjust"
3360
  msgstr ""
3361
 
3362
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3363
  #, php-format
3364
  msgid "%singular% balance"
3365
  msgstr ""
3366
 
3367
- #: ../includes/mycred-admin.php:359
3368
  msgid "Adjust Your Balance"
3369
  msgstr ""
3370
 
3371
- #: ../includes/mycred-admin.php:361
3372
  msgid "Adjust Users Balance"
3373
  msgstr ""
3374
 
3375
- #: ../includes/mycred-admin.php:372
3376
  msgid "Log description for adjustment"
3377
  msgstr ""
3378
 
3379
- #: ../includes/mycred-admin.php:375
3380
  msgid "Update"
3381
  msgstr ""
3382
 
3383
- #: ../includes/mycred-admin.php:376
3384
  msgid "Description is required!"
3385
  msgstr ""
3386
 
3387
- #: ../includes/mycred-admin.php:476
3388
  msgid "ID"
3389
  msgstr ""
3390
 
3391
- #: ../includes/mycred-admin.php:482
3392
  msgid "A positive or negative value"
3393
  msgstr ""
3394
 
3395
- #: ../includes/mycred-admin.php:484
3396
  msgid "Update Balance"
3397
  msgstr ""
3398
 
@@ -3520,112 +3526,119 @@ msgstr ""
3520
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3521
  msgstr ""
3522
 
3523
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3524
  msgid ""
3525
  "Sorry but your WordPress installation does not reach the minimum "
3526
  "requirements for running myCRED. The following errors were given:"
3527
  msgstr ""
3528
 
3529
- #: ../includes/mycred-install.php:243
3530
  msgid "myCRED needs your attention."
3531
  msgstr ""
3532
 
3533
- #: ../includes/mycred-install.php:243
3534
  msgid "Run Setup"
3535
  msgstr ""
3536
 
3537
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3538
  msgid "myCRED Setup"
3539
  msgstr ""
3540
 
3541
- #: ../includes/mycred-install.php:385
3542
  #, php-format
3543
  msgid "%s Setup"
3544
  msgstr ""
3545
 
3546
- #: ../includes/mycred-install.php:387
3547
  msgid "Step"
3548
  msgstr ""
3549
 
3550
- #: ../includes/mycred-install.php:411
3551
  msgid ""
3552
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3553
  "points format, layout and security settings."
3554
  msgstr ""
3555
 
3556
- #: ../includes/mycred-install.php:412
3557
  msgid "Begin Setup"
3558
  msgstr ""
3559
 
3560
- #: ../includes/mycred-install.php:467
3561
  msgid "Select the format you want to use for your points."
3562
  msgstr ""
3563
 
3564
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3565
  msgid "Format"
3566
  msgstr ""
3567
 
3568
- #: ../includes/mycred-install.php:471
3569
  msgid "Separators"
3570
  msgstr ""
3571
 
3572
- #: ../includes/mycred-install.php:481
3573
  msgid "Decimals"
3574
  msgstr ""
3575
 
3576
- #: ../includes/mycred-install.php:483
3577
  msgid "Use zero for no decimals."
3578
  msgstr ""
3579
 
3580
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3581
  msgid "Presentation"
3582
  msgstr ""
3583
 
3584
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3585
  msgid "Name (Singular)"
3586
  msgstr ""
3587
 
3588
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3589
  msgid "Name (Plural)"
3590
  msgstr ""
3591
 
3592
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3593
  msgid "Prefix"
3594
  msgstr ""
3595
 
3596
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3597
  msgid "Suffix"
3598
  msgstr ""
3599
 
3600
- #: ../includes/mycred-install.php:511
3601
  msgid "Cancel Setup"
3602
  msgstr ""
3603
 
3604
- #: ../includes/mycred-install.php:511
3605
  msgid "Cancel"
3606
  msgstr ""
3607
 
3608
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3609
  msgid "Next"
3610
  msgstr ""
3611
 
3612
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3613
  msgid "Security"
3614
  msgstr ""
3615
 
3616
- #: ../includes/mycred-install.php:546
3617
  msgid "Edit Settings Capability"
3618
  msgstr ""
3619
 
3620
- #: ../includes/mycred-install.php:550
3621
  msgid "Edit Users %plural% Capability"
3622
  msgstr ""
3623
 
3624
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3625
  msgid "Maximum %plural% payouts"
3626
  msgstr ""
3627
 
3628
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3629
  msgid ""
3630
  "As an added security, you can set the maximum amount a user can gain or "
3631
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3633,35 +3646,35 @@ msgid ""
3633
  "disable."
3634
  msgstr ""
3635
 
3636
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3637
  msgid "Exclude those who can \"Edit Settings\"."
3638
  msgstr ""
3639
 
3640
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3641
  msgid "Exclude those who can \"Edit Users %plural%\"."
3642
  msgstr ""
3643
 
3644
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3645
  msgid "Exclude the following user IDs:"
3646
  msgstr ""
3647
 
3648
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3649
  msgid "User Deletions"
3650
  msgstr ""
3651
 
3652
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3653
  msgid "Delete log entries when user is deleted."
3654
  msgstr ""
3655
 
3656
- #: ../includes/mycred-install.php:599
3657
  msgid "Ready"
3658
  msgstr ""
3659
 
3660
- #: ../includes/mycred-install.php:600
3661
  msgid "Almost done! Click the button below to finish this setup."
3662
  msgstr ""
3663
 
3664
- #: ../includes/mycred-install.php:601
3665
  msgid "Install & Run"
3666
  msgstr ""
3667
 
@@ -3925,31 +3938,31 @@ msgstr ""
3925
  msgid "Leaderboard is empty."
3926
  msgstr ""
3927
 
3928
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3929
  msgid "Amount missing!"
3930
  msgstr ""
3931
 
3932
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3933
  msgid "Log Template Missing!"
3934
  msgstr ""
3935
 
3936
- #: ../includes/mycred-shortcodes.php:417
3937
  msgid "Anchor missing URL!"
3938
  msgstr ""
3939
 
3940
- #: ../includes/mycred-shortcodes.php:482
3941
  msgid "User ID missing for recipient."
3942
  msgstr ""
3943
 
3944
- #: ../includes/mycred-shortcodes.php:536
3945
  msgid "Sent"
3946
  msgstr ""
3947
 
3948
- #: ../includes/mycred-shortcodes.php:537
3949
  msgid "Error - Try Again"
3950
  msgstr ""
3951
 
3952
- #: ../includes/mycred-shortcodes.php:645
3953
  msgid "A video ID is required for this shortcode"
3954
  msgstr ""
3955
 
@@ -4528,7 +4541,7 @@ msgstr ""
4528
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4529
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4530
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4531
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4532
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4533
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4534
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5365,7 +5378,7 @@ msgid "Awards %_plural% for successful form submissions (by logged in users)."
5365
  msgstr ""
5366
 
5367
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5368
- #: gravityforms.php:86
5369
  msgid "No forms found."
5370
  msgstr ""
5371
 
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 Jun 25 2014 19:44:55 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:562
52
  msgid "Processing..."
53
  msgstr ""
54
 
101
  msgstr ""
102
 
103
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
104
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr ""
169
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
170
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
171
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
172
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
173
  msgid "Select"
174
  msgstr ""
175
 
367
  msgstr ""
368
 
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
370
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
371
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
372
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
373
  msgid "Amount"
374
  msgstr ""
375
 
423
  msgstr ""
424
 
425
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
426
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
427
  msgid "Excludes"
428
  msgstr ""
429
 
450
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
451
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
452
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
453
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
454
  msgid "Payments"
455
  msgstr ""
456
 
478
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
479
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
480
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
481
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
482
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
483
  #: includes/importers/mycred-cubepoints.php:365
484
  msgid "Point Type"
534
  msgstr ""
535
 
536
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
537
+ #: addon-buy-creds.php:664
538
  msgid "buyCRED Settings"
539
  msgstr ""
540
 
562
  msgstr ""
563
 
564
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
566
  #: overview.php:173 ../modules/mycred-module-addons.php:190
567
  msgid "Gateway"
568
  msgstr ""
569
 
570
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
571
+ #: addon-buy-creds.php:660
572
  msgid "Transaction ID"
573
  msgstr ""
574
 
608
  msgid "Update Gateway Settings"
609
  msgstr ""
610
 
611
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
612
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
613
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
614
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
615
  msgid "User"
616
  msgstr ""
617
 
618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
619
  #: 640
620
  msgid "Date"
621
  msgstr ""
622
 
623
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
624
  msgid "Payed"
625
  msgstr ""
626
 
627
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
628
  msgid "<strong>buy</strong>CRED Purchase Log"
629
  msgstr ""
630
 
631
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
632
  #: booking/mycred-eventespresso3.php:367
633
  msgid "Gateway Settings"
634
  msgstr ""
635
 
636
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
637
  msgid ""
638
  "Only completed purchases are shown here. Purchases that were cancelled or "
639
  "failed are not logged."
640
  msgstr ""
641
 
642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
643
  #: 743 ../modules/mycred-module-log.php:462
644
  msgid "User Missing"
645
  msgstr ""
646
 
647
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
648
+ #: content/myCRED-addon-sell-content.php:1109
649
  msgid "No purchases found"
650
  msgstr ""
651
 
652
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
653
+ #: addon-buy-creds.php:1009
654
  msgid "This Add-on needs to setup before you can use this shortcode."
655
  msgstr ""
656
 
657
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
658
+ #: addon-buy-creds.php:1027
659
  msgid "No gateways installed."
660
  msgstr ""
661
 
662
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
663
+ #: addon-buy-creds.php:1028
664
  msgid "Gateway does not exist."
665
  msgstr ""
666
 
667
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
668
  msgid "Yourself"
669
  msgstr ""
670
 
671
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
672
  msgid "No active gateways found."
673
  msgstr ""
674
 
675
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
676
  msgid "The selected gateway is not active."
677
  msgstr ""
678
 
679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
680
  #, php-format
681
  msgid "Buy with %gateway%"
682
  msgstr ""
683
 
684
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
685
  #: content/myCRED-addon-sell-content.php:44
686
  msgid "Buy Now"
687
  msgstr ""
688
 
689
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
690
  msgid "No users found"
691
  msgstr ""
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
694
  msgid "To"
695
  msgstr ""
696
 
697
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
698
  msgid "Select Amount"
699
  msgstr ""
700
 
701
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
702
  msgid "min."
703
  msgstr ""
704
 
705
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
706
  msgid "Select Gateway"
707
  msgstr ""
708
 
747
  msgstr ""
748
 
749
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
750
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
751
  msgid "required"
752
  msgstr ""
753
 
754
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
755
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
756
  msgid "optional"
757
  msgstr ""
758
 
1333
  msgstr ""
1334
 
1335
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1336
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1337
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1338
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1339
  #: module-addons.php:179
1340
  msgid "Email Notices"
1341
  msgstr ""
1539
  msgid "Apply Coupon"
1540
  msgstr ""
1541
 
1542
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1543
+ #: notices/myCRED-addon-email-notices.php:1107
1544
  msgid "Email Notice"
1545
  msgstr ""
1546
 
1547
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1548
  #: addons/ranks/myCRED-addon-ranks.php:248
1549
  msgid "Add New"
1550
  msgstr ""
1551
 
1552
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1553
  msgid "Add New Notice"
1554
  msgstr ""
1555
 
1556
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1557
  msgid "Edit Notice"
1558
  msgstr ""
1559
 
1560
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1561
  msgid "New Notice"
1562
  msgstr ""
1563
 
1564
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1565
  msgid "View Notice"
1566
  msgstr ""
1567
 
1568
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1569
  msgid "Search Email Notices"
1570
  msgstr ""
1571
 
1572
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1573
  msgid "No email notices found"
1574
  msgstr ""
1575
 
1576
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1577
  msgid "No email notices found in Trash"
1578
  msgstr ""
1579
 
1580
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1581
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1582
  #: php:589
1583
  msgid "General"
1584
  msgstr ""
1585
 
1586
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1587
  msgid "users balance changes"
1588
  msgstr ""
1589
 
1590
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1591
  msgid "user gains %_plural%"
1592
  msgstr ""
1593
 
1594
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1595
  msgid "user lose %_plural%"
1596
  msgstr ""
1597
 
1598
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1599
  msgid "users balance reaches zero"
1600
  msgstr ""
1601
 
1602
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1603
  msgid "users balance goes minus"
1604
  msgstr ""
1605
 
1606
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1607
  msgid "Sell Content Add-on"
1608
  msgstr ""
1609
 
1610
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1611
  msgid "user buys content"
1612
  msgstr ""
1613
 
1614
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1615
  msgid "authors content gets sold"
1616
  msgstr ""
1617
 
1618
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1619
  msgid "buyCREDs Add-on"
1620
  msgstr ""
1621
 
1622
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1623
  msgid "user buys %_plural%"
1624
  msgstr ""
1625
 
1626
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1627
  msgid "Transfer Add-on"
1628
  msgstr ""
1629
 
1630
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1631
  msgid "user sends %_plural%"
1632
  msgstr ""
1633
 
1634
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1635
  msgid "user receives %_plural%"
1636
  msgstr ""
1637
 
1638
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1639
  msgid "Ranks Add-on"
1640
  msgstr ""
1641
 
1642
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1643
  msgid "user is demoted"
1644
  msgstr ""
1645
 
1646
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1647
  msgid "user is promoted"
1648
  msgstr ""
1649
 
1650
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1651
  msgid ""
1652
  "Settings that apply to all email notices and can not be overridden for "
1653
  "individual emails."
1654
  msgstr ""
1655
 
1656
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1657
  msgid "Email Format"
1658
  msgstr ""
1659
 
1660
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1661
  msgid "Plain text emails only."
1662
  msgstr ""
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1665
  msgid "HTML or Plain text emails."
1666
  msgstr ""
1667
 
1668
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1669
  msgid "Filters"
1670
  msgstr ""
1671
 
1672
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1673
  msgid ""
1674
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1675
  "an email is sent."
1676
  msgstr ""
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1679
  msgid ""
1680
  "Allow WordPress and Third Party Plugins to filter the email content before "
1681
  "an email is sent."
1682
  msgstr ""
1683
 
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1685
+ #: notices/myCRED-addon-email-notices.php:305
1686
  msgid "Email Schedule"
1687
  msgstr ""
1688
 
1689
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1690
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1691
  msgstr ""
1692
 
1693
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1694
  msgid "Send emails immediately"
1695
  msgstr ""
1696
 
1697
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1698
  msgid "Send emails once an hour"
1699
  msgstr ""
1700
 
1701
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1702
  msgid "Send emails once a day"
1703
  msgstr ""
1704
 
1705
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1706
  msgid "Subscriptions"
1707
  msgstr ""
1708
 
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1710
  #, php-format
1711
  msgid ""
1712
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1713
  "updates."
1714
  msgstr ""
1715
 
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1717
  msgid "SMTP Override"
1718
  msgstr ""
1719
 
1720
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1721
  msgid ""
1722
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1723
  "use a SMTP plugin for emails."
1724
  msgstr ""
1725
 
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1727
  msgid ""
1728
  "Default email settings. These settings can be individually overridden when "
1729
  "editing emails."
1730
  msgstr ""
1731
 
1732
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1733
+ #: notices/myCRED-addon-email-notices.php:771
1734
  msgid "Email Settings"
1735
  msgstr ""
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1738
+ #: notices/myCRED-addon-email-notices.php:894
1739
  msgid "Senders Name:"
1740
  msgstr ""
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1743
+ #: notices/myCRED-addon-email-notices.php:896
1744
  msgid "Senders Email:"
1745
  msgstr ""
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1748
  msgid "Reply-To:"
1749
  msgstr ""
1750
 
1751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1752
  msgid "Default Email Content"
1753
  msgstr ""
1754
 
1755
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1756
  msgid "Default email content."
1757
  msgstr ""
1758
 
1759
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1760
  msgid "Default Email Styling"
1761
  msgstr ""
1762
 
1763
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1764
  msgid "Ignored if HTML is not allowed in emails."
1765
  msgstr ""
1766
 
1767
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1768
+ #: notices/myCRED-addon-email-notices.php:820
1769
  msgid "Email Subject"
1770
  msgstr ""
1771
 
1772
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1773
  msgid "Status"
1774
  msgstr ""
1775
 
1776
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1777
  msgid "Not Active"
1778
  msgstr ""
1779
 
1780
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1781
  #, php-format
1782
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1783
  msgstr ""
1784
 
1785
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1786
  msgid "Active"
1787
  msgstr ""
1788
 
1789
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1790
  #, php-format
1791
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1792
  msgstr ""
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1795
  msgid "Email is sent when"
1796
  msgstr ""
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1799
  msgid "Missing instance for this notice!"
1800
  msgstr ""
1801
 
1802
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1803
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1804
+ #: addon-email-notices.php:759
1805
  msgid "Sent To"
1806
  msgstr ""
1807
 
1808
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1809
+ #: notices/myCRED-addon-email-notices.php:885
1810
  msgid "Administrator"
1811
  msgstr ""
1812
 
1813
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1814
  msgid "Both Administrator and User"
1815
  msgstr ""
1816
 
1817
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1818
  msgid "Available Template Tags"
1819
  msgstr ""
1820
 
1821
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1822
  msgid "Email Header"
1823
  msgstr ""
1824
 
1825
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1826
  msgid "Send this email notice when..."
1827
  msgstr ""
1828
 
1829
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1830
  msgid "Recipient:"
1831
  msgstr ""
1832
 
1833
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1834
  msgid "Both"
1835
  msgstr ""
1836
 
1837
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1838
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1839
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1840
  #: module-settings.php:526
1841
  msgid "Label"
1842
  msgstr ""
1843
 
1844
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1845
  msgid "Reply-To Email:"
1846
  msgstr ""
1847
 
1848
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1849
  msgid "Save"
1850
  msgstr ""
1851
 
1852
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1853
  msgid "CSS Styling"
1854
  msgstr ""
1855
 
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1857
  msgid "Site Related"
1858
  msgstr ""
1859
 
1860
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1861
  msgid "Your websites title"
1862
  msgstr ""
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1865
  msgid "Your websites address"
1866
  msgstr ""
1867
 
1868
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1869
  msgid "Your websites tagline (description)"
1870
  msgstr ""
1871
 
1872
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1873
  msgid "Your websites admin email"
1874
  msgstr ""
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1877
  msgid "Total number of blog members"
1878
  msgstr ""
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1881
+ #: notices/myCRED-addon-email-notices.php:1018
1882
  #, php-format
1883
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1884
  msgstr ""
1885
 
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
1887
  msgid "Email Notice Activated"
1888
  msgstr ""
1889
 
1890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
1891
  msgid "Email Notice Saved"
1892
  msgstr ""
1893
 
1894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
1895
  #, php-format
1896
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1897
  msgstr ""
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
1900
  #, php-format
1901
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1902
  msgstr ""
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
1905
  msgid ""
1906
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1907
  "are not yet ready to use this email notice!"
1908
  msgstr ""
1909
 
1910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
1911
  #, php-format
1912
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1913
  msgstr ""
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
1916
  msgid "This email notice is active."
1917
  msgstr ""
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
1920
  msgid "Settings saved."
1921
  msgstr ""
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
1924
  msgid "Unsubscribe"
1925
  msgstr ""
1926
 
1927
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
1928
  msgid "There are no email notifications yet."
1929
  msgstr ""
1930
 
1931
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
1932
  msgid "Save Changes"
1933
  msgstr ""
1934
 
1935
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1936
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1937
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1938
+ #: php:412 ../includes/mycred-admin.php:491
1939
  msgid "Current Balance"
1940
  msgstr ""
1941
 
2355
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2356
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2357
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2358
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2359
+ #: sell-content.php:587
2360
  msgid "Button Label"
2361
  msgstr ""
2362
 
2369
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2370
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2371
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2372
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2373
+ #: sell-content.php:583
2374
  msgid "Price"
2375
  msgstr ""
2376
 
2390
  msgstr ""
2391
 
2392
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2393
+ #: includes/mycred-admin.php:496
2394
  msgid "Log Entry"
2395
  msgstr ""
2396
 
2933
  msgstr ""
2934
 
2935
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2936
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
2937
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
2938
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
2939
  msgid "error"
2940
  msgstr ""
2941
 
2955
  msgid "Hours"
2956
  msgstr ""
2957
 
2958
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
2959
  msgid "You can not buy this content."
2960
  msgstr ""
2961
 
2962
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
2963
  msgid "Error. Try Again"
2964
  msgstr ""
2965
 
2966
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
2967
  msgid "No Payout. Just charge."
2968
  msgstr ""
2969
 
2970
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
2971
  msgid "Pay Content Author."
2972
  msgstr ""
2973
 
2974
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
2975
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2976
  #: addons.php:224
2977
  msgid "Sell Content"
2978
  msgstr ""
2979
 
2980
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
2981
  msgid "Post Types"
2982
  msgstr ""
2983
 
2984
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
2985
  msgid "Comma separated list of post types that can be sold."
2986
  msgstr ""
2987
 
2988
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
2989
  msgid "Percentage to pay Author"
2990
  msgstr ""
2991
 
2992
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
2993
  msgid ""
2994
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2995
  "authors are not paid."
2996
  msgstr ""
2997
 
2998
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
2999
  msgid "Defaults"
3000
  msgstr ""
3001
 
3002
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3003
  msgid "Allow authors to change price."
3004
  msgstr ""
3005
 
3006
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3007
  msgid "Allow authors to change button label."
3008
  msgstr ""
3009
 
3010
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3011
  msgid "Purchases expire after"
3012
  msgstr ""
3013
 
3014
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3015
  msgid "Use zero for permanent sales."
3016
  msgstr ""
3017
 
3018
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3019
  msgid "Sale Template for non members"
3020
  msgstr ""
3021
 
3022
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3023
  #, php-format
3024
  msgid ""
3025
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3026
  "be logged in to buy content!"
3027
  msgstr ""
3028
 
3029
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3030
  msgid "Sale Template for members"
3031
  msgstr ""
3032
 
3033
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3034
+ #: content/myCRED-addon-sell-content.php:428
3035
  #, php-format
3036
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3037
  msgstr ""
3038
 
3039
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3040
  msgid "Insufficient funds template"
3041
  msgstr ""
3042
 
3043
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3044
  msgid "Log template for Purchases"
3045
  msgstr ""
3046
 
3047
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3048
  msgid "Log template for Sales"
3049
  msgstr ""
3050
 
3051
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3052
  #, php-format
3053
  msgid "%s Sell This"
3054
  msgstr ""
3055
 
3056
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3057
  #, php-format
3058
  msgid "%s Sell Content needs to be setup before you can use this feature."
3059
  msgstr ""
3060
 
3061
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3062
  msgid "Setup add-on"
3063
  msgstr ""
3064
 
3065
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3066
  msgid "Lets do it"
3067
  msgstr ""
3068
 
3069
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3070
+ #, php-format
3071
+ msgid "Enable sale of this %s"
3072
  msgstr ""
3073
 
3074
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3075
  msgid "Purchase expires after"
3076
  msgstr ""
3077
 
3078
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3079
  msgid "Thank you for your purchase!"
3080
  msgstr ""
3081
 
3082
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3083
+ #: content/myCRED-addon-sell-content.php:1091
3084
  msgid "The following content is set for sale:"
3085
  msgstr ""
3086
 
3087
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3088
  msgid "Purchased"
3089
  msgstr ""
3090
 
3351
  msgid "Excluded"
3352
  msgstr ""
3353
 
3354
+ #: ../includes/mycred-admin.php:282
3355
+ #, php-format
3356
+ msgid "Total: %s"
3357
+ msgstr ""
3358
+
3359
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3360
  #: modules/mycred-module-log.php:251
3361
  msgid "History"
3362
  msgstr ""
3363
 
3364
+ #: ../includes/mycred-admin.php:292
3365
  msgid "Adjust"
3366
  msgstr ""
3367
 
3368
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3369
  #, php-format
3370
  msgid "%singular% balance"
3371
  msgstr ""
3372
 
3373
+ #: ../includes/mycred-admin.php:372
3374
  msgid "Adjust Your Balance"
3375
  msgstr ""
3376
 
3377
+ #: ../includes/mycred-admin.php:374
3378
  msgid "Adjust Users Balance"
3379
  msgstr ""
3380
 
3381
+ #: ../includes/mycred-admin.php:385
3382
  msgid "Log description for adjustment"
3383
  msgstr ""
3384
 
3385
+ #: ../includes/mycred-admin.php:388
3386
  msgid "Update"
3387
  msgstr ""
3388
 
3389
+ #: ../includes/mycred-admin.php:389
3390
  msgid "Description is required!"
3391
  msgstr ""
3392
 
3393
+ #: ../includes/mycred-admin.php:489
3394
  msgid "ID"
3395
  msgstr ""
3396
 
3397
+ #: ../includes/mycred-admin.php:495
3398
  msgid "A positive or negative value"
3399
  msgstr ""
3400
 
3401
+ #: ../includes/mycred-admin.php:497
3402
  msgid "Update Balance"
3403
  msgstr ""
3404
 
3526
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3527
  msgstr ""
3528
 
3529
+ #: ../includes/mycred-install.php:53
3530
+ msgid ""
3531
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3532
+ "check your PHP configuration or contact your host and ask them to enable it "
3533
+ "for you!"
3534
+ msgstr ""
3535
+
3536
+ #: ../includes/mycred-install.php:58
3537
  msgid ""
3538
  "Sorry but your WordPress installation does not reach the minimum "
3539
  "requirements for running myCRED. The following errors were given:"
3540
  msgstr ""
3541
 
3542
+ #: ../includes/mycred-install.php:247
3543
  msgid "myCRED needs your attention."
3544
  msgstr ""
3545
 
3546
+ #: ../includes/mycred-install.php:247
3547
  msgid "Run Setup"
3548
  msgstr ""
3549
 
3550
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3551
  msgid "myCRED Setup"
3552
  msgstr ""
3553
 
3554
+ #: ../includes/mycred-install.php:389
3555
  #, php-format
3556
  msgid "%s Setup"
3557
  msgstr ""
3558
 
3559
+ #: ../includes/mycred-install.php:391
3560
  msgid "Step"
3561
  msgstr ""
3562
 
3563
+ #: ../includes/mycred-install.php:415
3564
  msgid ""
3565
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3566
  "points format, layout and security settings."
3567
  msgstr ""
3568
 
3569
+ #: ../includes/mycred-install.php:416
3570
  msgid "Begin Setup"
3571
  msgstr ""
3572
 
3573
+ #: ../includes/mycred-install.php:471
3574
  msgid "Select the format you want to use for your points."
3575
  msgstr ""
3576
 
3577
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3578
  msgid "Format"
3579
  msgstr ""
3580
 
3581
+ #: ../includes/mycred-install.php:475
3582
  msgid "Separators"
3583
  msgstr ""
3584
 
3585
+ #: ../includes/mycred-install.php:485
3586
  msgid "Decimals"
3587
  msgstr ""
3588
 
3589
+ #: ../includes/mycred-install.php:487
3590
  msgid "Use zero for no decimals."
3591
  msgstr ""
3592
 
3593
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3594
  msgid "Presentation"
3595
  msgstr ""
3596
 
3597
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3598
  msgid "Name (Singular)"
3599
  msgstr ""
3600
 
3601
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3602
  msgid "Name (Plural)"
3603
  msgstr ""
3604
 
3605
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3606
  msgid "Prefix"
3607
  msgstr ""
3608
 
3609
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3610
  msgid "Suffix"
3611
  msgstr ""
3612
 
3613
+ #: ../includes/mycred-install.php:515
3614
  msgid "Cancel Setup"
3615
  msgstr ""
3616
 
3617
+ #: ../includes/mycred-install.php:515
3618
  msgid "Cancel"
3619
  msgstr ""
3620
 
3621
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3622
  msgid "Next"
3623
  msgstr ""
3624
 
3625
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3626
  msgid "Security"
3627
  msgstr ""
3628
 
3629
+ #: ../includes/mycred-install.php:550
3630
  msgid "Edit Settings Capability"
3631
  msgstr ""
3632
 
3633
+ #: ../includes/mycred-install.php:554
3634
  msgid "Edit Users %plural% Capability"
3635
  msgstr ""
3636
 
3637
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3638
  msgid "Maximum %plural% payouts"
3639
  msgstr ""
3640
 
3641
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3642
  msgid ""
3643
  "As an added security, you can set the maximum amount a user can gain or "
3644
  "loose in a single instance. If used, make sure this is the maximum amount a "
3646
  "disable."
3647
  msgstr ""
3648
 
3649
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3650
  msgid "Exclude those who can \"Edit Settings\"."
3651
  msgstr ""
3652
 
3653
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3654
  msgid "Exclude those who can \"Edit Users %plural%\"."
3655
  msgstr ""
3656
 
3657
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3658
  msgid "Exclude the following user IDs:"
3659
  msgstr ""
3660
 
3661
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3662
  msgid "User Deletions"
3663
  msgstr ""
3664
 
3665
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3666
  msgid "Delete log entries when user is deleted."
3667
  msgstr ""
3668
 
3669
+ #: ../includes/mycred-install.php:603
3670
  msgid "Ready"
3671
  msgstr ""
3672
 
3673
+ #: ../includes/mycred-install.php:604
3674
  msgid "Almost done! Click the button below to finish this setup."
3675
  msgstr ""
3676
 
3677
+ #: ../includes/mycred-install.php:605
3678
  msgid "Install & Run"
3679
  msgstr ""
3680
 
3938
  msgid "Leaderboard is empty."
3939
  msgstr ""
3940
 
3941
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
3942
  msgid "Amount missing!"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
3946
  msgid "Log Template Missing!"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-shortcodes.php:444
3950
  msgid "Anchor missing URL!"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-shortcodes.php:509
3954
  msgid "User ID missing for recipient."
3955
  msgstr ""
3956
 
3957
+ #: ../includes/mycred-shortcodes.php:563
3958
  msgid "Sent"
3959
  msgstr ""
3960
 
3961
+ #: ../includes/mycred-shortcodes.php:564
3962
  msgid "Error - Try Again"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/mycred-shortcodes.php:672
3966
  msgid "A video ID is required for this shortcode"
3967
  msgstr ""
3968
 
4541
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4542
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4543
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4544
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4545
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4546
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4547
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5378
  msgstr ""
5379
 
5380
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5381
+ #: gravityforms.php:115
5382
  msgid "No forms found."
5383
  msgstr ""
5384
 
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:25:58 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
@@ -47,8 +47,8 @@ msgstr "Gente genial"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
- #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
@@ -109,7 +109,7 @@ msgid "Log entry updated"
109
  msgstr "Entrada de registro actualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
@@ -179,7 +179,7 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
@@ -393,9 +393,9 @@ msgid "Pay Users"
393
  msgstr "Pagar a los Usuarios"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
397
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
@@ -461,7 +461,7 @@ msgstr ""
461
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
@@ -490,7 +490,7 @@ msgstr "Registro de Compras"
490
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
@@ -520,7 +520,7 @@ msgstr ""
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
@@ -576,7 +576,7 @@ msgid "%s Payment Gateways"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
- #: addon-buy-creds.php:663
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
@@ -608,13 +608,13 @@ msgid "Time"
608
  msgstr "Tiempo"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
- #: addon-buy-creds.php:659
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
@@ -655,32 +655,32 @@ msgstr "Habilitar para compras de prueba."
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
659
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
660
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
661
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
666
  #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
679
  #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
@@ -690,72 +690,72 @@ msgstr ""
690
  "\n"
691
  "\n"
692
 
693
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
694
  #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
699
- #: content/myCRED-addon-sell-content.php:1112
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
704
- #: addon-buy-creds.php:1008
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
711
- #: addon-buy-creds.php:1026
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
716
- #: addon-buy-creds.php:1027
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
733
  #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
738
  #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
747
  msgid "To"
748
  msgstr "A"
749
 
750
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
755
  msgid "min."
756
  msgstr "min."
757
 
758
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
@@ -803,12 +803,12 @@ msgid "Cancel purchase"
803
  msgstr "Cancelar la compra"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
812
  msgid "optional"
813
  msgstr "opcional"
814
 
@@ -1439,9 +1439,9 @@ msgid "No coupons found in Trash"
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1443
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1444
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1445
  #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
@@ -1661,117 +1661,117 @@ msgstr "Canje de cupones"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1665
- #: notices/myCRED-addon-email-notices.php:1138
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1670
  #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
  #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
@@ -1779,23 +1779,23 @@ msgstr ""
1779
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
  "anulados para correos electronicos especificos."
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1799
  msgid ""
1800
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
  "an email is sent."
@@ -1803,7 +1803,7 @@ msgstr ""
1803
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
  "correo electrónico antes de enviarlo."
1805
 
1806
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1807
  msgid ""
1808
  "Allow WordPress and Third Party Plugins to filter the email content before "
1809
  "an email is sent."
@@ -1811,49 +1811,49 @@ msgstr ""
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1815
- #: notices/myCRED-addon-email-notices.php:303
1816
  msgid "Email Schedule"
1817
  msgstr ""
1818
 
1819
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1820
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
  msgstr ""
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1824
  msgid "Send emails immediately"
1825
  msgstr ""
1826
 
1827
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1828
  msgid "Send emails once an hour"
1829
  msgstr ""
1830
 
1831
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1832
  msgid "Send emails once a day"
1833
  msgstr ""
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1836
  msgid "Subscriptions"
1837
  msgstr ""
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1840
  #, php-format
1841
  msgid ""
1842
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
  "updates."
1844
  msgstr ""
1845
 
1846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1847
  msgid "SMTP Override"
1848
  msgstr ""
1849
 
1850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1851
  msgid ""
1852
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
  "use a SMTP plugin for emails."
1854
  msgstr ""
1855
 
1856
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
@@ -1861,181 +1861,181 @@ msgstr ""
1861
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1865
- #: notices/myCRED-addon-email-notices.php:802
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:925
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1875
- #: notices/myCRED-addon-email-notices.php:927
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1900
- #: notices/myCRED-addon-email-notices.php:851
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1913
  #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1922
  #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1935
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1936
- #: addon-email-notices.php:790
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1941
- #: notices/myCRED-addon-email-notices.php:916
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1970
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
  #: module-settings.php:526
1973
  msgid "Label"
1974
  msgstr "Etiqueta"
1975
 
1976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2013
- #: notices/myCRED-addon-email-notices.php:1049
2014
  #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2027
  #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
  msgstr ""
2030
  "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
  "Avisos</a>."
2032
 
2033
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2034
  #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2039
  msgid ""
2040
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
  "are not yet ready to use this email notice!"
@@ -2043,35 +2043,35 @@ msgstr ""
2043
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
  "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2047
  #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2056
  msgid "Settings saved."
2057
  msgstr ""
2058
 
2059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2060
  msgid "Unsubscribe"
2061
  msgstr ""
2062
 
2063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2064
  msgid "There are no email notifications yet."
2065
  msgstr ""
2066
 
2067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2068
  msgid "Save Changes"
2069
  msgstr ""
2070
 
2071
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
- #: php:412 ../includes/mycred-admin.php:478
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
@@ -2525,8 +2525,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2525
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2529
- #: sell-content.php:590
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
@@ -2539,8 +2539,8 @@ msgstr "Botón de Pago"
2539
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2543
- #: sell-content.php:586
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
@@ -2562,7 +2562,7 @@ msgid "Log"
2562
  msgstr "Registro"
2563
 
2564
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
- #: includes/mycred-admin.php:483
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
@@ -3147,9 +3147,9 @@ msgid "No users found with this rank"
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3151
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3152
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3153
  msgid "error"
3154
  msgstr "error"
3155
 
@@ -3169,41 +3169,41 @@ msgstr "Venta de "
3169
  msgid "Hours"
3170
  msgstr "Horas"
3171
 
3172
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3173
  msgid "You can not buy this content."
3174
  msgstr "No puedes comprar este contenido."
3175
 
3176
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3177
  msgid "Error. Try Again"
3178
  msgstr "Error. Inténtelo de nuevo"
3179
 
3180
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3181
  msgid "No Payout. Just charge."
3182
  msgstr "No Desembolsar. Solo cobrar."
3183
 
3184
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3189
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
  #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3194
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3195
  msgid "Post Types"
3196
  msgstr "Post Types"
3197
 
3198
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3199
  msgid "Comma separated list of post types that can be sold."
3200
  msgstr "Lista separada por comas de post types que se puede vender."
3201
 
3202
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3203
  msgid "Percentage to pay Author"
3204
  msgstr "Porcentaje que pagar al Autor"
3205
 
3206
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3207
  msgid ""
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
@@ -3212,31 +3212,31 @@ msgstr ""
3212
  "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3216
  msgid "Defaults"
3217
  msgstr "Predefinidos"
3218
 
3219
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3220
  msgid "Allow authors to change price."
3221
  msgstr "Permitir que los Autores cambien el precio."
3222
 
3223
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3224
  msgid "Allow authors to change button label."
3225
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3226
 
3227
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3228
  msgid "Purchases expire after"
3229
  msgstr "Compras caducan despues de"
3230
 
3231
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3232
  msgid "Use zero for permanent sales."
3233
  msgstr "Usa cero para ventas permanentes."
3234
 
3235
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3236
  msgid "Sale Template for non members"
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3240
  #, php-format
3241
  msgid ""
3242
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3245,68 +3245,69 @@ msgstr ""
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3247
 
3248
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3253
- #: content/myCRED-addon-sell-content.php:431
3254
  #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
  "realizar compras!"
3259
 
3260
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3261
  msgid "Insufficient funds template"
3262
  msgstr "Plantilla de fondos insuficientes"
3263
 
3264
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3265
  msgid "Log template for Purchases"
3266
  msgstr "Plantilla de registros para Compras"
3267
 
3268
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3269
  msgid "Log template for Sales"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3273
  #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3278
  #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
  "esta característica técnica."
3283
 
3284
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3285
  msgid "Setup add-on"
3286
  msgstr "Configurar Extensión"
3287
 
3288
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3289
  msgid "Lets do it"
3290
  msgstr "Vamos a hacerlo."
3291
 
3292
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3293
- msgid "Enable sale of this "
3294
- msgstr "Activar la venta de esto"
 
3295
 
3296
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3297
  msgid "Purchase expires after"
3298
  msgstr "Compra caduca despues de"
3299
 
3300
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3301
  msgid "Thank you for your purchase!"
3302
  msgstr "¡Gracias por su compra!"
3303
 
3304
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3305
- #: content/myCRED-addon-sell-content.php:1094
3306
  msgid "The following content is set for sale:"
3307
  msgstr "El siguiente contenido esta listo para la venta:"
3308
 
3309
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3310
  msgid "Purchased"
3311
  msgstr "Comprado"
3312
 
@@ -3597,49 +3598,54 @@ msgstr "No se pudo actualizar el saldo de este usuario."
3597
  msgid "Excluded"
3598
  msgstr "Excluido"
3599
 
3600
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3601
  #: modules/mycred-module-log.php:251
3602
  msgid "History"
3603
  msgstr "Historial"
3604
 
3605
- #: ../includes/mycred-admin.php:280
3606
  msgid "Adjust"
3607
  msgstr "Modificar"
3608
 
3609
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3610
  #, php-format
3611
  msgid "%singular% balance"
3612
  msgstr "%singular% saldo"
3613
 
3614
- #: ../includes/mycred-admin.php:359
3615
  msgid "Adjust Your Balance"
3616
  msgstr "Modificar tu Saldo"
3617
 
3618
- #: ../includes/mycred-admin.php:361
3619
  msgid "Adjust Users Balance"
3620
  msgstr "Modificar el Saldo de los Usuarios"
3621
 
3622
- #: ../includes/mycred-admin.php:372
3623
  msgid "Log description for adjustment"
3624
  msgstr "Registro de la Descripción por Ajustes"
3625
 
3626
- #: ../includes/mycred-admin.php:375
3627
  msgid "Update"
3628
  msgstr "Actualizar"
3629
 
3630
- #: ../includes/mycred-admin.php:376
3631
  msgid "Description is required!"
3632
  msgstr "¡La Descripción es obligatorio!"
3633
 
3634
- #: ../includes/mycred-admin.php:476
3635
  msgid "ID"
3636
  msgstr "ID"
3637
 
3638
- #: ../includes/mycred-admin.php:482
3639
  msgid "A positive or negative value"
3640
  msgstr "Un valor positivo o negativo"
3641
 
3642
- #: ../includes/mycred-admin.php:484
3643
  msgid "Update Balance"
3644
  msgstr "Actualizar Saldo"
3645
 
@@ -3767,7 +3773,14 @@ msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
3767
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3768
  msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3769
 
3770
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3771
  msgid ""
3772
  "Sorry but your WordPress installation does not reach the minimum "
3773
  "requirements for running myCRED. The following errors were given:"
@@ -3775,28 +3788,28 @@ msgstr ""
3775
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3776
  "mínimos de mycred. Se produce los siguientes errores:"
3777
 
3778
- #: ../includes/mycred-install.php:243
3779
  msgid "myCRED needs your attention."
3780
  msgstr "myCRED precisa tu atención."
3781
 
3782
- #: ../includes/mycred-install.php:243
3783
  msgid "Run Setup"
3784
  msgstr "Ejecutar Configuración"
3785
 
3786
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3787
  msgid "myCRED Setup"
3788
  msgstr "Instalación de myCRED"
3789
 
3790
- #: ../includes/mycred-install.php:385
3791
  #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configurar %s"
3794
 
3795
- #: ../includes/mycred-install.php:387
3796
  msgid "Step"
3797
  msgstr "Paso"
3798
 
3799
- #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
  "points format, layout and security settings."
@@ -3804,80 +3817,80 @@ msgstr ""
3804
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3805
  "el formato de puntos, disposiciones y configuraciones de seguridad."
3806
 
3807
- #: ../includes/mycred-install.php:412
3808
  msgid "Begin Setup"
3809
  msgstr "Empezar la Instalación"
3810
 
3811
- #: ../includes/mycred-install.php:467
3812
  msgid "Select the format you want to use for your points."
3813
  msgstr "Elige el formato que quieres usar para tus puntos."
3814
 
3815
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3816
  msgid "Format"
3817
  msgstr "Formato"
3818
 
3819
- #: ../includes/mycred-install.php:471
3820
  msgid "Separators"
3821
  msgstr "Separadores"
3822
 
3823
- #: ../includes/mycred-install.php:481
3824
  msgid "Decimals"
3825
  msgstr "Decimales"
3826
 
3827
- #: ../includes/mycred-install.php:483
3828
  msgid "Use zero for no decimals."
3829
  msgstr "Usa cero para no tener decimales."
3830
 
3831
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3832
  msgid "Presentation"
3833
  msgstr "Presentación"
3834
 
3835
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3836
  msgid "Name (Singular)"
3837
  msgstr "Nombre (singular)"
3838
 
3839
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3840
  msgid "Name (Plural)"
3841
  msgstr "Nombre (plural)"
3842
 
3843
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3844
  msgid "Prefix"
3845
  msgstr "Prefijo"
3846
 
3847
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3848
  msgid "Suffix"
3849
  msgstr "Sufijo"
3850
 
3851
- #: ../includes/mycred-install.php:511
3852
  msgid "Cancel Setup"
3853
  msgstr "Cancelar la Instalación"
3854
 
3855
- #: ../includes/mycred-install.php:511
3856
  msgid "Cancel"
3857
  msgstr "Cancelar"
3858
 
3859
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3860
  msgid "Next"
3861
  msgstr "Siguiente"
3862
 
3863
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3864
  msgid "Security"
3865
  msgstr "Seguridad"
3866
 
3867
- #: ../includes/mycred-install.php:546
3868
  msgid "Edit Settings Capability"
3869
  msgstr "Editar la capacidad de las configuraciones"
3870
 
3871
  #. is this user's or users (plural)?
3872
- #: ../includes/mycred-install.php:550
3873
  msgid "Edit Users %plural% Capability"
3874
  msgstr "Editar la Capacidad de %plural% del Usuario"
3875
 
3876
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3877
  msgid "Maximum %plural% payouts"
3878
  msgstr "Desembolso %plural% Máximo"
3879
 
3880
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
  "As an added security, you can set the maximum amount a user can gain or "
3883
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3889,37 +3902,37 @@ msgstr ""
3889
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3890
  "o gastar en tu tienda. Ponga zero para desactivar."
3891
 
3892
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3893
  msgid "Exclude those who can \"Edit Settings\"."
3894
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
3895
 
3896
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3897
  msgid "Exclude those who can \"Edit Users %plural%\"."
3898
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
3899
 
3900
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3901
  msgid "Exclude the following user IDs:"
3902
  msgstr "Excluir a los siguientes IDs de usuarios"
3903
 
3904
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3905
  msgid "User Deletions"
3906
  msgstr "Eliminación de Usuarios"
3907
 
3908
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3909
  msgid "Delete log entries when user is deleted."
3910
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3911
 
3912
- #: ../includes/mycred-install.php:599
3913
  msgid "Ready"
3914
  msgstr "Listo"
3915
 
3916
- #: ../includes/mycred-install.php:600
3917
  msgid "Almost done! Click the button below to finish this setup."
3918
  msgstr ""
3919
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3920
  "configuración."
3921
 
3922
- #: ../includes/mycred-install.php:601
3923
  msgid "Install & Run"
3924
  msgstr "Instalar e ejecutar"
3925
 
@@ -4203,31 +4216,31 @@ msgstr ""
4203
  msgid "Leaderboard is empty."
4204
  msgstr "La Tabla de Clasificación esta vacía"
4205
 
4206
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4207
  msgid "Amount missing!"
4208
  msgstr "¡Falta la cantidad!"
4209
 
4210
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4211
  msgid "Log Template Missing!"
4212
  msgstr "¡Plantilla de Registro No Encontrado!"
4213
 
4214
- #: ../includes/mycred-shortcodes.php:417
4215
  msgid "Anchor missing URL!"
4216
  msgstr "¡La Ancla falta el URL!"
4217
 
4218
- #: ../includes/mycred-shortcodes.php:482
4219
  msgid "User ID missing for recipient."
4220
  msgstr "ID del Usuario falta para el destinatario"
4221
 
4222
- #: ../includes/mycred-shortcodes.php:536
4223
  msgid "Sent"
4224
  msgstr "Enviado"
4225
 
4226
- #: ../includes/mycred-shortcodes.php:537
4227
  msgid "Error - Try Again"
4228
  msgstr "Error - Inténtelo de nuevo."
4229
 
4230
- #: ../includes/mycred-shortcodes.php:645
4231
  msgid "A video ID is required for this shortcode"
4232
  msgstr "Este código corto (shortcode) precisa un ID del video."
4233
 
@@ -4854,7 +4867,7 @@ msgstr ""
4854
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4855
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4856
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4857
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4858
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4859
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4860
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5746,7 +5759,7 @@ msgstr ""
5746
  "iniciado sesión)"
5747
 
5748
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5749
- #: gravityforms.php:86
5750
  msgid "No forms found."
5751
  msgstr "No se ha encontrado ningun formulario."
5752
 
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 Jun 25 2014 19:45:06 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:562
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
109
  msgstr "Entrada de registro actualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
393
  msgstr "Pagar a los Usuarios"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
397
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
461
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
490
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
+ #: addon-buy-creds.php:664
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
608
  msgstr "Tiempo"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
+ #: addon-buy-creds.php:660
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
659
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
660
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
661
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
666
  #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
679
  #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
690
  "\n"
691
  "\n"
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
694
  #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
699
+ #: content/myCRED-addon-sell-content.php:1109
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
704
+ #: addon-buy-creds.php:1009
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
711
+ #: addon-buy-creds.php:1027
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
716
+ #: addon-buy-creds.php:1028
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
733
  #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
738
  #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
747
  msgid "To"
748
  msgstr "A"
749
 
750
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
755
  msgid "min."
756
  msgstr "min."
757
 
758
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
803
  msgstr "Cancelar la compra"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
812
  msgid "optional"
813
  msgstr "opcional"
814
 
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1443
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1444
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1445
  #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1665
+ #: notices/myCRED-addon-email-notices.php:1107
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1670
  #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
  #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
1779
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
  "anulados para correos electronicos especificos."
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1799
  msgid ""
1800
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
  "an email is sent."
1803
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
  "correo electrónico antes de enviarlo."
1805
 
1806
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1807
  msgid ""
1808
  "Allow WordPress and Third Party Plugins to filter the email content before "
1809
  "an email is sent."
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1815
+ #: notices/myCRED-addon-email-notices.php:305
1816
  msgid "Email Schedule"
1817
  msgstr ""
1818
 
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1820
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
  msgstr ""
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1824
  msgid "Send emails immediately"
1825
  msgstr ""
1826
 
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1828
  msgid "Send emails once an hour"
1829
  msgstr ""
1830
 
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1832
  msgid "Send emails once a day"
1833
  msgstr ""
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1836
  msgid "Subscriptions"
1837
  msgstr ""
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1840
  #, php-format
1841
  msgid ""
1842
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
  "updates."
1844
  msgstr ""
1845
 
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1847
  msgid "SMTP Override"
1848
  msgstr ""
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1851
  msgid ""
1852
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
  "use a SMTP plugin for emails."
1854
  msgstr ""
1855
 
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
1861
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:771
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:894
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1875
+ #: notices/myCRED-addon-email-notices.php:896
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1900
+ #: notices/myCRED-addon-email-notices.php:820
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1913
  #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1922
  #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1935
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1936
+ #: addon-email-notices.php:759
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1941
+ #: notices/myCRED-addon-email-notices.php:885
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1970
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
  #: module-settings.php:526
1973
  msgid "Label"
1974
  msgstr "Etiqueta"
1975
 
1976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2013
+ #: notices/myCRED-addon-email-notices.php:1018
2014
  #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
2027
  #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
  msgstr ""
2030
  "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
  "Avisos</a>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
2034
  #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2039
  msgid ""
2040
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
  "are not yet ready to use this email notice!"
2043
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
  "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2047
  #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2056
  msgid "Settings saved."
2057
  msgstr ""
2058
 
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2060
  msgid "Unsubscribe"
2061
  msgstr ""
2062
 
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2064
  msgid "There are no email notifications yet."
2065
  msgstr ""
2066
 
2067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2068
  msgid "Save Changes"
2069
  msgstr ""
2070
 
2071
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
+ #: php:412 ../includes/mycred-admin.php:491
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
2525
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2529
+ #: sell-content.php:587
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
2539
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2543
+ #: sell-content.php:583
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
2562
  msgstr "Registro"
2563
 
2564
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
+ #: includes/mycred-admin.php:496
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3151
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3152
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3153
  msgid "error"
3154
  msgstr "error"
3155
 
3169
  msgid "Hours"
3170
  msgstr "Horas"
3171
 
3172
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3173
  msgid "You can not buy this content."
3174
  msgstr "No puedes comprar este contenido."
3175
 
3176
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3177
  msgid "Error. Try Again"
3178
  msgstr "Error. Inténtelo de nuevo"
3179
 
3180
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3181
  msgid "No Payout. Just charge."
3182
  msgstr "No Desembolsar. Solo cobrar."
3183
 
3184
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3189
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
  #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3194
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3195
  msgid "Post Types"
3196
  msgstr "Post Types"
3197
 
3198
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3199
  msgid "Comma separated list of post types that can be sold."
3200
  msgstr "Lista separada por comas de post types que se puede vender."
3201
 
3202
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3203
  msgid "Percentage to pay Author"
3204
  msgstr "Porcentaje que pagar al Autor"
3205
 
3206
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3207
  msgid ""
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
3212
  "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3216
  msgid "Defaults"
3217
  msgstr "Predefinidos"
3218
 
3219
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3220
  msgid "Allow authors to change price."
3221
  msgstr "Permitir que los Autores cambien el precio."
3222
 
3223
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3224
  msgid "Allow authors to change button label."
3225
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3226
 
3227
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3228
  msgid "Purchases expire after"
3229
  msgstr "Compras caducan despues de"
3230
 
3231
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3232
  msgid "Use zero for permanent sales."
3233
  msgstr "Usa cero para ventas permanentes."
3234
 
3235
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3236
  msgid "Sale Template for non members"
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3240
  #, php-format
3241
  msgid ""
3242
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3247
 
3248
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3253
+ #: content/myCRED-addon-sell-content.php:428
3254
  #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
  "realizar compras!"
3259
 
3260
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3261
  msgid "Insufficient funds template"
3262
  msgstr "Plantilla de fondos insuficientes"
3263
 
3264
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3265
  msgid "Log template for Purchases"
3266
  msgstr "Plantilla de registros para Compras"
3267
 
3268
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3269
  msgid "Log template for Sales"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3273
  #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3278
  #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
  "esta característica técnica."
3283
 
3284
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3285
  msgid "Setup add-on"
3286
  msgstr "Configurar Extensión"
3287
 
3288
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3289
  msgid "Lets do it"
3290
  msgstr "Vamos a hacerlo."
3291
 
3292
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3293
+ #, php-format
3294
+ msgid "Enable sale of this %s"
3295
+ msgstr ""
3296
 
3297
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3298
  msgid "Purchase expires after"
3299
  msgstr "Compra caduca despues de"
3300
 
3301
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3302
  msgid "Thank you for your purchase!"
3303
  msgstr "¡Gracias por su compra!"
3304
 
3305
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3306
+ #: content/myCRED-addon-sell-content.php:1091
3307
  msgid "The following content is set for sale:"
3308
  msgstr "El siguiente contenido esta listo para la venta:"
3309
 
3310
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3311
  msgid "Purchased"
3312
  msgstr "Comprado"
3313
 
3598
  msgid "Excluded"
3599
  msgstr "Excluido"
3600
 
3601
+ #: ../includes/mycred-admin.php:282
3602
+ #, php-format
3603
+ msgid "Total: %s"
3604
+ msgstr ""
3605
+
3606
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3607
  #: modules/mycred-module-log.php:251
3608
  msgid "History"
3609
  msgstr "Historial"
3610
 
3611
+ #: ../includes/mycred-admin.php:292
3612
  msgid "Adjust"
3613
  msgstr "Modificar"
3614
 
3615
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3616
  #, php-format
3617
  msgid "%singular% balance"
3618
  msgstr "%singular% saldo"
3619
 
3620
+ #: ../includes/mycred-admin.php:372
3621
  msgid "Adjust Your Balance"
3622
  msgstr "Modificar tu Saldo"
3623
 
3624
+ #: ../includes/mycred-admin.php:374
3625
  msgid "Adjust Users Balance"
3626
  msgstr "Modificar el Saldo de los Usuarios"
3627
 
3628
+ #: ../includes/mycred-admin.php:385
3629
  msgid "Log description for adjustment"
3630
  msgstr "Registro de la Descripción por Ajustes"
3631
 
3632
+ #: ../includes/mycred-admin.php:388
3633
  msgid "Update"
3634
  msgstr "Actualizar"
3635
 
3636
+ #: ../includes/mycred-admin.php:389
3637
  msgid "Description is required!"
3638
  msgstr "¡La Descripción es obligatorio!"
3639
 
3640
+ #: ../includes/mycred-admin.php:489
3641
  msgid "ID"
3642
  msgstr "ID"
3643
 
3644
+ #: ../includes/mycred-admin.php:495
3645
  msgid "A positive or negative value"
3646
  msgstr "Un valor positivo o negativo"
3647
 
3648
+ #: ../includes/mycred-admin.php:497
3649
  msgid "Update Balance"
3650
  msgstr "Actualizar Saldo"
3651
 
3773
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3774
  msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3775
 
3776
+ #: ../includes/mycred-install.php:53
3777
+ msgid ""
3778
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3779
+ "check your PHP configuration or contact your host and ask them to enable it "
3780
+ "for you!"
3781
+ msgstr ""
3782
+
3783
+ #: ../includes/mycred-install.php:58
3784
  msgid ""
3785
  "Sorry but your WordPress installation does not reach the minimum "
3786
  "requirements for running myCRED. The following errors were given:"
3788
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3789
  "mínimos de mycred. Se produce los siguientes errores:"
3790
 
3791
+ #: ../includes/mycred-install.php:247
3792
  msgid "myCRED needs your attention."
3793
  msgstr "myCRED precisa tu atención."
3794
 
3795
+ #: ../includes/mycred-install.php:247
3796
  msgid "Run Setup"
3797
  msgstr "Ejecutar Configuración"
3798
 
3799
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3800
  msgid "myCRED Setup"
3801
  msgstr "Instalación de myCRED"
3802
 
3803
+ #: ../includes/mycred-install.php:389
3804
  #, php-format
3805
  msgid "%s Setup"
3806
  msgstr "Configurar %s"
3807
 
3808
+ #: ../includes/mycred-install.php:391
3809
  msgid "Step"
3810
  msgstr "Paso"
3811
 
3812
+ #: ../includes/mycred-install.php:415
3813
  msgid ""
3814
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3815
  "points format, layout and security settings."
3817
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3818
  "el formato de puntos, disposiciones y configuraciones de seguridad."
3819
 
3820
+ #: ../includes/mycred-install.php:416
3821
  msgid "Begin Setup"
3822
  msgstr "Empezar la Instalación"
3823
 
3824
+ #: ../includes/mycred-install.php:471
3825
  msgid "Select the format you want to use for your points."
3826
  msgstr "Elige el formato que quieres usar para tus puntos."
3827
 
3828
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3829
  msgid "Format"
3830
  msgstr "Formato"
3831
 
3832
+ #: ../includes/mycred-install.php:475
3833
  msgid "Separators"
3834
  msgstr "Separadores"
3835
 
3836
+ #: ../includes/mycred-install.php:485
3837
  msgid "Decimals"
3838
  msgstr "Decimales"
3839
 
3840
+ #: ../includes/mycred-install.php:487
3841
  msgid "Use zero for no decimals."
3842
  msgstr "Usa cero para no tener decimales."
3843
 
3844
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3845
  msgid "Presentation"
3846
  msgstr "Presentación"
3847
 
3848
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3849
  msgid "Name (Singular)"
3850
  msgstr "Nombre (singular)"
3851
 
3852
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3853
  msgid "Name (Plural)"
3854
  msgstr "Nombre (plural)"
3855
 
3856
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3857
  msgid "Prefix"
3858
  msgstr "Prefijo"
3859
 
3860
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3861
  msgid "Suffix"
3862
  msgstr "Sufijo"
3863
 
3864
+ #: ../includes/mycred-install.php:515
3865
  msgid "Cancel Setup"
3866
  msgstr "Cancelar la Instalación"
3867
 
3868
+ #: ../includes/mycred-install.php:515
3869
  msgid "Cancel"
3870
  msgstr "Cancelar"
3871
 
3872
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3873
  msgid "Next"
3874
  msgstr "Siguiente"
3875
 
3876
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3877
  msgid "Security"
3878
  msgstr "Seguridad"
3879
 
3880
+ #: ../includes/mycred-install.php:550
3881
  msgid "Edit Settings Capability"
3882
  msgstr "Editar la capacidad de las configuraciones"
3883
 
3884
  #. is this user's or users (plural)?
3885
+ #: ../includes/mycred-install.php:554
3886
  msgid "Edit Users %plural% Capability"
3887
  msgstr "Editar la Capacidad de %plural% del Usuario"
3888
 
3889
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3890
  msgid "Maximum %plural% payouts"
3891
  msgstr "Desembolso %plural% Máximo"
3892
 
3893
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3894
  msgid ""
3895
  "As an added security, you can set the maximum amount a user can gain or "
3896
  "loose in a single instance. If used, make sure this is the maximum amount a "
3902
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3903
  "o gastar en tu tienda. Ponga zero para desactivar."
3904
 
3905
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3906
  msgid "Exclude those who can \"Edit Settings\"."
3907
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
3908
 
3909
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3910
  msgid "Exclude those who can \"Edit Users %plural%\"."
3911
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
3912
 
3913
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3914
  msgid "Exclude the following user IDs:"
3915
  msgstr "Excluir a los siguientes IDs de usuarios"
3916
 
3917
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3918
  msgid "User Deletions"
3919
  msgstr "Eliminación de Usuarios"
3920
 
3921
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3922
  msgid "Delete log entries when user is deleted."
3923
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3924
 
3925
+ #: ../includes/mycred-install.php:603
3926
  msgid "Ready"
3927
  msgstr "Listo"
3928
 
3929
+ #: ../includes/mycred-install.php:604
3930
  msgid "Almost done! Click the button below to finish this setup."
3931
  msgstr ""
3932
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3933
  "configuración."
3934
 
3935
+ #: ../includes/mycred-install.php:605
3936
  msgid "Install & Run"
3937
  msgstr "Instalar e ejecutar"
3938
 
4216
  msgid "Leaderboard is empty."
4217
  msgstr "La Tabla de Clasificación esta vacía"
4218
 
4219
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4220
  msgid "Amount missing!"
4221
  msgstr "¡Falta la cantidad!"
4222
 
4223
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4224
  msgid "Log Template Missing!"
4225
  msgstr "¡Plantilla de Registro No Encontrado!"
4226
 
4227
+ #: ../includes/mycred-shortcodes.php:444
4228
  msgid "Anchor missing URL!"
4229
  msgstr "¡La Ancla falta el URL!"
4230
 
4231
+ #: ../includes/mycred-shortcodes.php:509
4232
  msgid "User ID missing for recipient."
4233
  msgstr "ID del Usuario falta para el destinatario"
4234
 
4235
+ #: ../includes/mycred-shortcodes.php:563
4236
  msgid "Sent"
4237
  msgstr "Enviado"
4238
 
4239
+ #: ../includes/mycred-shortcodes.php:564
4240
  msgid "Error - Try Again"
4241
  msgstr "Error - Inténtelo de nuevo."
4242
 
4243
+ #: ../includes/mycred-shortcodes.php:672
4244
  msgid "A video ID is required for this shortcode"
4245
  msgstr "Este código corto (shortcode) precisa un ID del video."
4246
 
4867
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4868
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4869
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4870
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4871
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4872
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4873
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5759
  "iniciado sesión)"
5760
 
5761
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5762
+ #: gravityforms.php:115
5763
  msgid "No forms found."
5764
  msgstr "No se ha encontrado ningun formulario."
5765
 
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:26:12 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
@@ -47,8 +47,8 @@ msgstr "Gente genial"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
- #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
@@ -109,7 +109,7 @@ msgid "Log entry updated"
109
  msgstr "Entrada de registro actualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
@@ -179,7 +179,7 @@ msgstr "Una vez al dia (reinicializado al medianoche)"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
@@ -393,9 +393,9 @@ msgid "Pay Users"
393
  msgstr "Pagar a los Usuarios"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
397
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
@@ -461,7 +461,7 @@ msgstr ""
461
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
@@ -490,7 +490,7 @@ msgstr "Registro de Compras"
490
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
@@ -520,7 +520,7 @@ msgstr ""
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
@@ -576,7 +576,7 @@ msgid "%s Payment Gateways"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
- #: addon-buy-creds.php:663
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
@@ -608,13 +608,13 @@ msgid "Time"
608
  msgstr "Tiempo"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
- #: addon-buy-creds.php:659
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
@@ -655,32 +655,32 @@ msgstr "Habilitar para compras de prueba."
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
659
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
660
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
661
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
666
  #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
679
  #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
@@ -690,72 +690,72 @@ msgstr ""
690
  "\n"
691
  "\n"
692
 
693
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
694
  #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
699
- #: content/myCRED-addon-sell-content.php:1112
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
704
- #: addon-buy-creds.php:1008
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
711
- #: addon-buy-creds.php:1026
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
716
- #: addon-buy-creds.php:1027
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
733
  #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
738
  #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
747
  msgid "To"
748
  msgstr "A"
749
 
750
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
755
  msgid "min."
756
  msgstr "min."
757
 
758
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
@@ -803,12 +803,12 @@ msgid "Cancel purchase"
803
  msgstr "Cancelar la compra"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
812
  msgid "optional"
813
  msgstr "opcional"
814
 
@@ -1439,9 +1439,9 @@ msgid "No coupons found in Trash"
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1443
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1444
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1445
  #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
@@ -1661,117 +1661,117 @@ msgstr "Canje de cupones"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1665
- #: notices/myCRED-addon-email-notices.php:1138
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1670
  #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
  #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
@@ -1779,23 +1779,23 @@ msgstr ""
1779
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
  "anulados para correos electronicos especificos."
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1799
  msgid ""
1800
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
  "an email is sent."
@@ -1803,7 +1803,7 @@ msgstr ""
1803
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
  "correo electrónico antes de enviarlo."
1805
 
1806
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1807
  msgid ""
1808
  "Allow WordPress and Third Party Plugins to filter the email content before "
1809
  "an email is sent."
@@ -1811,49 +1811,49 @@ msgstr ""
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1815
- #: notices/myCRED-addon-email-notices.php:303
1816
  msgid "Email Schedule"
1817
  msgstr ""
1818
 
1819
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1820
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
  msgstr ""
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1824
  msgid "Send emails immediately"
1825
  msgstr ""
1826
 
1827
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1828
  msgid "Send emails once an hour"
1829
  msgstr ""
1830
 
1831
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1832
  msgid "Send emails once a day"
1833
  msgstr ""
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1836
  msgid "Subscriptions"
1837
  msgstr ""
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1840
  #, php-format
1841
  msgid ""
1842
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
  "updates."
1844
  msgstr ""
1845
 
1846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1847
  msgid "SMTP Override"
1848
  msgstr ""
1849
 
1850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1851
  msgid ""
1852
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
  "use a SMTP plugin for emails."
1854
  msgstr ""
1855
 
1856
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
@@ -1861,181 +1861,181 @@ msgstr ""
1861
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1865
- #: notices/myCRED-addon-email-notices.php:802
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:925
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1875
- #: notices/myCRED-addon-email-notices.php:927
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1900
- #: notices/myCRED-addon-email-notices.php:851
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1913
  #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1922
  #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1935
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1936
- #: addon-email-notices.php:790
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1941
- #: notices/myCRED-addon-email-notices.php:916
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1970
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
  #: module-settings.php:526
1973
  msgid "Label"
1974
  msgstr "Etiqueta"
1975
 
1976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2013
- #: notices/myCRED-addon-email-notices.php:1049
2014
  #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2027
  #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
  msgstr ""
2030
  "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
  "Avisos</a>."
2032
 
2033
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2034
  #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2039
  msgid ""
2040
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
  "are not yet ready to use this email notice!"
@@ -2043,35 +2043,35 @@ msgstr ""
2043
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
  "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2047
  #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2056
  msgid "Settings saved."
2057
  msgstr ""
2058
 
2059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2060
  msgid "Unsubscribe"
2061
  msgstr ""
2062
 
2063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2064
  msgid "There are no email notifications yet."
2065
  msgstr ""
2066
 
2067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2068
  msgid "Save Changes"
2069
  msgstr ""
2070
 
2071
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
- #: php:412 ../includes/mycred-admin.php:478
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
@@ -2525,8 +2525,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2525
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2529
- #: sell-content.php:590
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
@@ -2539,8 +2539,8 @@ msgstr "Botón de Pago"
2539
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2543
- #: sell-content.php:586
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
@@ -2562,7 +2562,7 @@ msgid "Log"
2562
  msgstr "Registro"
2563
 
2564
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
- #: includes/mycred-admin.php:483
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
@@ -3147,9 +3147,9 @@ msgid "No users found with this rank"
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3151
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3152
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3153
  msgid "error"
3154
  msgstr "error"
3155
 
@@ -3169,41 +3169,41 @@ msgstr "Venta de "
3169
  msgid "Hours"
3170
  msgstr "Horas"
3171
 
3172
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3173
  msgid "You can not buy this content."
3174
  msgstr "No puedes comprar este contenido."
3175
 
3176
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3177
  msgid "Error. Try Again"
3178
  msgstr "Error. Inténtelo de nuevo"
3179
 
3180
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3181
  msgid "No Payout. Just charge."
3182
  msgstr "No Desembolsar. Solo cobrar."
3183
 
3184
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3189
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
  #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3194
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3195
  msgid "Post Types"
3196
  msgstr "Post Types"
3197
 
3198
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3199
  msgid "Comma separated list of post types that can be sold."
3200
  msgstr "Lista separada por comas de post types que se puede vender."
3201
 
3202
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3203
  msgid "Percentage to pay Author"
3204
  msgstr "Porcentaje que pagar al Autor"
3205
 
3206
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3207
  msgid ""
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
@@ -3212,31 +3212,31 @@ msgstr ""
3212
  "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3216
  msgid "Defaults"
3217
  msgstr "Predefinidos"
3218
 
3219
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3220
  msgid "Allow authors to change price."
3221
  msgstr "Permitir que los Autores cambien el precio."
3222
 
3223
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3224
  msgid "Allow authors to change button label."
3225
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3226
 
3227
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3228
  msgid "Purchases expire after"
3229
  msgstr "Compras caducan despues de"
3230
 
3231
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3232
  msgid "Use zero for permanent sales."
3233
  msgstr "Usa cero para ventas permanentes."
3234
 
3235
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3236
  msgid "Sale Template for non members"
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3240
  #, php-format
3241
  msgid ""
3242
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3245,68 +3245,69 @@ msgstr ""
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3247
 
3248
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3253
- #: content/myCRED-addon-sell-content.php:431
3254
  #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
  "realizar compras!"
3259
 
3260
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3261
  msgid "Insufficient funds template"
3262
  msgstr "Plantilla de fondos insuficientes"
3263
 
3264
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3265
  msgid "Log template for Purchases"
3266
  msgstr "Plantilla de registros para Compras"
3267
 
3268
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3269
  msgid "Log template for Sales"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3273
  #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3278
  #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
  "esta característica técnica."
3283
 
3284
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3285
  msgid "Setup add-on"
3286
  msgstr "Configurar Extensión"
3287
 
3288
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3289
  msgid "Lets do it"
3290
  msgstr "Vamos a hacerlo."
3291
 
3292
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3293
- msgid "Enable sale of this "
3294
- msgstr "Activar la venta de esto"
 
3295
 
3296
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3297
  msgid "Purchase expires after"
3298
  msgstr "Compra caduca despues de"
3299
 
3300
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3301
  msgid "Thank you for your purchase!"
3302
  msgstr "¡Gracias por su compra!"
3303
 
3304
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3305
- #: content/myCRED-addon-sell-content.php:1094
3306
  msgid "The following content is set for sale:"
3307
  msgstr "El siguiente contenido esta listo para la venta:"
3308
 
3309
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3310
  msgid "Purchased"
3311
  msgstr "Comprado"
3312
 
@@ -3597,49 +3598,54 @@ msgstr "No se pudo actualizar el saldo de este usuario."
3597
  msgid "Excluded"
3598
  msgstr "Excluido"
3599
 
3600
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3601
  #: modules/mycred-module-log.php:251
3602
  msgid "History"
3603
  msgstr "Historial"
3604
 
3605
- #: ../includes/mycred-admin.php:280
3606
  msgid "Adjust"
3607
  msgstr "Modificar"
3608
 
3609
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3610
  #, php-format
3611
  msgid "%singular% balance"
3612
  msgstr "%singular% saldo"
3613
 
3614
- #: ../includes/mycred-admin.php:359
3615
  msgid "Adjust Your Balance"
3616
  msgstr "Modificar tu Saldo"
3617
 
3618
- #: ../includes/mycred-admin.php:361
3619
  msgid "Adjust Users Balance"
3620
  msgstr "Modificar el Saldo de los Usuarios"
3621
 
3622
- #: ../includes/mycred-admin.php:372
3623
  msgid "Log description for adjustment"
3624
  msgstr "Registro de la Descripción por Ajustes"
3625
 
3626
- #: ../includes/mycred-admin.php:375
3627
  msgid "Update"
3628
  msgstr "Actualizar"
3629
 
3630
- #: ../includes/mycred-admin.php:376
3631
  msgid "Description is required!"
3632
  msgstr "¡La Descripción es obligatorio!"
3633
 
3634
- #: ../includes/mycred-admin.php:476
3635
  msgid "ID"
3636
  msgstr "ID"
3637
 
3638
- #: ../includes/mycred-admin.php:482
3639
  msgid "A positive or negative value"
3640
  msgstr "Un valor positivo o negativo"
3641
 
3642
- #: ../includes/mycred-admin.php:484
3643
  msgid "Update Balance"
3644
  msgstr "Actualizar Saldo"
3645
 
@@ -3767,7 +3773,14 @@ msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
3767
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3768
  msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3769
 
3770
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3771
  msgid ""
3772
  "Sorry but your WordPress installation does not reach the minimum "
3773
  "requirements for running myCRED. The following errors were given:"
@@ -3775,28 +3788,28 @@ msgstr ""
3775
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3776
  "mínimos de mycred. Se produce los siguientes errores:"
3777
 
3778
- #: ../includes/mycred-install.php:243
3779
  msgid "myCRED needs your attention."
3780
  msgstr "myCRED precisa tu atención."
3781
 
3782
- #: ../includes/mycred-install.php:243
3783
  msgid "Run Setup"
3784
  msgstr "Ejecutar Configuración"
3785
 
3786
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3787
  msgid "myCRED Setup"
3788
  msgstr "Instalación de myCRED"
3789
 
3790
- #: ../includes/mycred-install.php:385
3791
  #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configurar %s"
3794
 
3795
- #: ../includes/mycred-install.php:387
3796
  msgid "Step"
3797
  msgstr "Paso"
3798
 
3799
- #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
  "points format, layout and security settings."
@@ -3804,80 +3817,80 @@ msgstr ""
3804
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3805
  "el formato de puntos, disposiciones y configuraciones de seguridad."
3806
 
3807
- #: ../includes/mycred-install.php:412
3808
  msgid "Begin Setup"
3809
  msgstr "Empezar la Instalación"
3810
 
3811
- #: ../includes/mycred-install.php:467
3812
  msgid "Select the format you want to use for your points."
3813
  msgstr "Elige el formato que quieres usar para tus puntos."
3814
 
3815
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3816
  msgid "Format"
3817
  msgstr "Formato"
3818
 
3819
- #: ../includes/mycred-install.php:471
3820
  msgid "Separators"
3821
  msgstr "Separadores"
3822
 
3823
- #: ../includes/mycred-install.php:481
3824
  msgid "Decimals"
3825
  msgstr "Decimales"
3826
 
3827
- #: ../includes/mycred-install.php:483
3828
  msgid "Use zero for no decimals."
3829
  msgstr "Usa cero para no tener decimales."
3830
 
3831
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3832
  msgid "Presentation"
3833
  msgstr "Presentación"
3834
 
3835
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3836
  msgid "Name (Singular)"
3837
  msgstr "Nombre (singular)"
3838
 
3839
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3840
  msgid "Name (Plural)"
3841
  msgstr "Nombre (plural)"
3842
 
3843
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3844
  msgid "Prefix"
3845
  msgstr "Prefijo"
3846
 
3847
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3848
  msgid "Suffix"
3849
  msgstr "Sufijo"
3850
 
3851
- #: ../includes/mycred-install.php:511
3852
  msgid "Cancel Setup"
3853
  msgstr "Cancelar la Instalación"
3854
 
3855
- #: ../includes/mycred-install.php:511
3856
  msgid "Cancel"
3857
  msgstr "Cancelar"
3858
 
3859
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3860
  msgid "Next"
3861
  msgstr "Siguiente"
3862
 
3863
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3864
  msgid "Security"
3865
  msgstr "Seguridad"
3866
 
3867
- #: ../includes/mycred-install.php:546
3868
  msgid "Edit Settings Capability"
3869
  msgstr "Editar la capacidad de las configuraciones"
3870
 
3871
  #. is this user's or users (plural)?
3872
- #: ../includes/mycred-install.php:550
3873
  msgid "Edit Users %plural% Capability"
3874
  msgstr "Editar la Capacidad de %plural% del Usuario"
3875
 
3876
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3877
  msgid "Maximum %plural% payouts"
3878
  msgstr "Desembolso %plural% Máximo"
3879
 
3880
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
  "As an added security, you can set the maximum amount a user can gain or "
3883
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3889,37 +3902,37 @@ msgstr ""
3889
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3890
  "o gastar en tu tienda. Ponga zero para desactivar."
3891
 
3892
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3893
  msgid "Exclude those who can \"Edit Settings\"."
3894
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
3895
 
3896
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3897
  msgid "Exclude those who can \"Edit Users %plural%\"."
3898
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
3899
 
3900
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3901
  msgid "Exclude the following user IDs:"
3902
  msgstr "Excluir a los siguientes IDs de usuarios"
3903
 
3904
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3905
  msgid "User Deletions"
3906
  msgstr "Eliminación de Usuarios"
3907
 
3908
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3909
  msgid "Delete log entries when user is deleted."
3910
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3911
 
3912
- #: ../includes/mycred-install.php:599
3913
  msgid "Ready"
3914
  msgstr "Listo"
3915
 
3916
- #: ../includes/mycred-install.php:600
3917
  msgid "Almost done! Click the button below to finish this setup."
3918
  msgstr ""
3919
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3920
  "configuración."
3921
 
3922
- #: ../includes/mycred-install.php:601
3923
  msgid "Install & Run"
3924
  msgstr "Instalar e ejecutar"
3925
 
@@ -4203,31 +4216,31 @@ msgstr ""
4203
  msgid "Leaderboard is empty."
4204
  msgstr "La Tabla de Clasificación esta vacía"
4205
 
4206
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4207
  msgid "Amount missing!"
4208
  msgstr "¡Falta la cantidad!"
4209
 
4210
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4211
  msgid "Log Template Missing!"
4212
  msgstr "¡Plantilla de Registro No Encontrado!"
4213
 
4214
- #: ../includes/mycred-shortcodes.php:417
4215
  msgid "Anchor missing URL!"
4216
  msgstr "¡La Ancla falta el URL!"
4217
 
4218
- #: ../includes/mycred-shortcodes.php:482
4219
  msgid "User ID missing for recipient."
4220
  msgstr "ID del Usuario falta para el destinatario"
4221
 
4222
- #: ../includes/mycred-shortcodes.php:536
4223
  msgid "Sent"
4224
  msgstr "Enviado"
4225
 
4226
- #: ../includes/mycred-shortcodes.php:537
4227
  msgid "Error - Try Again"
4228
  msgstr "Error - Inténtelo de nuevo."
4229
 
4230
- #: ../includes/mycred-shortcodes.php:645
4231
  msgid "A video ID is required for this shortcode"
4232
  msgstr "Este código corto (shortcode) precisa un ID del video."
4233
 
@@ -4854,7 +4867,7 @@ msgstr ""
4854
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4855
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4856
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4857
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4858
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4859
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4860
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5746,7 +5759,7 @@ msgstr ""
5746
  "iniciado sesión)"
5747
 
5748
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5749
- #: gravityforms.php:86
5750
  msgid "No forms found."
5751
  msgstr "No se ha encontrado ningun formulario."
5752
 
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 Jun 25 2014 19:45:17 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:562
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
109
  msgstr "Entrada de registro actualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
393
  msgstr "Pagar a los Usuarios"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
397
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
461
  "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
490
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
+ #: addon-buy-creds.php:664
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
608
  msgstr "Tiempo"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
+ #: addon-buy-creds.php:660
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
659
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
660
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
661
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
666
  #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
679
  #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
690
  "\n"
691
  "\n"
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
694
  #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
699
+ #: content/myCRED-addon-sell-content.php:1109
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
704
+ #: addon-buy-creds.php:1009
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
711
+ #: addon-buy-creds.php:1027
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
716
+ #: addon-buy-creds.php:1028
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
733
  #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
738
  #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
747
  msgid "To"
748
  msgstr "A"
749
 
750
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
755
  msgid "min."
756
  msgstr "min."
757
 
758
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
803
  msgstr "Cancelar la compra"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
812
  msgid "optional"
813
  msgstr "opcional"
814
 
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1443
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1444
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1445
  #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1665
+ #: notices/myCRED-addon-email-notices.php:1107
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1670
  #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1703
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
  #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
1779
  "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
  "anulados para correos electronicos especificos."
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1799
  msgid ""
1800
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
  "an email is sent."
1803
  "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
  "correo electrónico antes de enviarlo."
1805
 
1806
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1807
  msgid ""
1808
  "Allow WordPress and Third Party Plugins to filter the email content before "
1809
  "an email is sent."
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1815
+ #: notices/myCRED-addon-email-notices.php:305
1816
  msgid "Email Schedule"
1817
  msgstr ""
1818
 
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1820
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
  msgstr ""
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1824
  msgid "Send emails immediately"
1825
  msgstr ""
1826
 
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1828
  msgid "Send emails once an hour"
1829
  msgstr ""
1830
 
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1832
  msgid "Send emails once a day"
1833
  msgstr ""
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1836
  msgid "Subscriptions"
1837
  msgstr ""
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1840
  #, php-format
1841
  msgid ""
1842
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
  "updates."
1844
  msgstr ""
1845
 
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1847
  msgid "SMTP Override"
1848
  msgstr ""
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1851
  msgid ""
1852
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
  "use a SMTP plugin for emails."
1854
  msgstr ""
1855
 
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
1861
  "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
  "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:771
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:894
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1875
+ #: notices/myCRED-addon-email-notices.php:896
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1900
+ #: notices/myCRED-addon-email-notices.php:820
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1913
  #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1922
  #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1935
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1936
+ #: addon-email-notices.php:759
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1941
+ #: notices/myCRED-addon-email-notices.php:885
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1970
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
  #: module-settings.php:526
1973
  msgid "Label"
1974
  msgstr "Etiqueta"
1975
 
1976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2013
+ #: notices/myCRED-addon-email-notices.php:1018
2014
  #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
2027
  #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
  msgstr ""
2030
  "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
  "Avisos</a>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
2034
  #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2039
  msgid ""
2040
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
  "are not yet ready to use this email notice!"
2043
  "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
  "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2047
  #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2056
  msgid "Settings saved."
2057
  msgstr ""
2058
 
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2060
  msgid "Unsubscribe"
2061
  msgstr ""
2062
 
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2064
  msgid "There are no email notifications yet."
2065
  msgstr ""
2066
 
2067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2068
  msgid "Save Changes"
2069
  msgstr ""
2070
 
2071
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
+ #: php:412 ../includes/mycred-admin.php:491
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
2525
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2529
+ #: sell-content.php:587
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
2539
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2543
+ #: sell-content.php:583
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
2562
  msgstr "Registro"
2563
 
2564
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
+ #: includes/mycred-admin.php:496
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3151
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3152
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3153
  msgid "error"
3154
  msgstr "error"
3155
 
3169
  msgid "Hours"
3170
  msgstr "Horas"
3171
 
3172
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3173
  msgid "You can not buy this content."
3174
  msgstr "No puedes comprar este contenido."
3175
 
3176
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3177
  msgid "Error. Try Again"
3178
  msgstr "Error. Inténtelo de nuevo"
3179
 
3180
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3181
  msgid "No Payout. Just charge."
3182
  msgstr "No Desembolsar. Solo cobrar."
3183
 
3184
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3189
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
  #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3194
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3195
  msgid "Post Types"
3196
  msgstr "Post Types"
3197
 
3198
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3199
  msgid "Comma separated list of post types that can be sold."
3200
  msgstr "Lista separada por comas de post types que se puede vender."
3201
 
3202
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3203
  msgid "Percentage to pay Author"
3204
  msgstr "Porcentaje que pagar al Autor"
3205
 
3206
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3207
  msgid ""
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
3212
  "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3216
  msgid "Defaults"
3217
  msgstr "Predefinidos"
3218
 
3219
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3220
  msgid "Allow authors to change price."
3221
  msgstr "Permitir que los Autores cambien el precio."
3222
 
3223
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3224
  msgid "Allow authors to change button label."
3225
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3226
 
3227
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3228
  msgid "Purchases expire after"
3229
  msgstr "Compras caducan despues de"
3230
 
3231
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3232
  msgid "Use zero for permanent sales."
3233
  msgstr "Usa cero para ventas permanentes."
3234
 
3235
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3236
  msgid "Sale Template for non members"
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3240
  #, php-format
3241
  msgid ""
3242
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3247
 
3248
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3253
+ #: content/myCRED-addon-sell-content.php:428
3254
  #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
  "realizar compras!"
3259
 
3260
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3261
  msgid "Insufficient funds template"
3262
  msgstr "Plantilla de fondos insuficientes"
3263
 
3264
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3265
  msgid "Log template for Purchases"
3266
  msgstr "Plantilla de registros para Compras"
3267
 
3268
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3269
  msgid "Log template for Sales"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3273
  #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3278
  #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
  "esta característica técnica."
3283
 
3284
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3285
  msgid "Setup add-on"
3286
  msgstr "Configurar Extensión"
3287
 
3288
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3289
  msgid "Lets do it"
3290
  msgstr "Vamos a hacerlo."
3291
 
3292
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3293
+ #, php-format
3294
+ msgid "Enable sale of this %s"
3295
+ msgstr ""
3296
 
3297
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3298
  msgid "Purchase expires after"
3299
  msgstr "Compra caduca despues de"
3300
 
3301
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3302
  msgid "Thank you for your purchase!"
3303
  msgstr "¡Gracias por su compra!"
3304
 
3305
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3306
+ #: content/myCRED-addon-sell-content.php:1091
3307
  msgid "The following content is set for sale:"
3308
  msgstr "El siguiente contenido esta listo para la venta:"
3309
 
3310
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3311
  msgid "Purchased"
3312
  msgstr "Comprado"
3313
 
3598
  msgid "Excluded"
3599
  msgstr "Excluido"
3600
 
3601
+ #: ../includes/mycred-admin.php:282
3602
+ #, php-format
3603
+ msgid "Total: %s"
3604
+ msgstr ""
3605
+
3606
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3607
  #: modules/mycred-module-log.php:251
3608
  msgid "History"
3609
  msgstr "Historial"
3610
 
3611
+ #: ../includes/mycred-admin.php:292
3612
  msgid "Adjust"
3613
  msgstr "Modificar"
3614
 
3615
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3616
  #, php-format
3617
  msgid "%singular% balance"
3618
  msgstr "%singular% saldo"
3619
 
3620
+ #: ../includes/mycred-admin.php:372
3621
  msgid "Adjust Your Balance"
3622
  msgstr "Modificar tu Saldo"
3623
 
3624
+ #: ../includes/mycred-admin.php:374
3625
  msgid "Adjust Users Balance"
3626
  msgstr "Modificar el Saldo de los Usuarios"
3627
 
3628
+ #: ../includes/mycred-admin.php:385
3629
  msgid "Log description for adjustment"
3630
  msgstr "Registro de la Descripción por Ajustes"
3631
 
3632
+ #: ../includes/mycred-admin.php:388
3633
  msgid "Update"
3634
  msgstr "Actualizar"
3635
 
3636
+ #: ../includes/mycred-admin.php:389
3637
  msgid "Description is required!"
3638
  msgstr "¡La Descripción es obligatorio!"
3639
 
3640
+ #: ../includes/mycred-admin.php:489
3641
  msgid "ID"
3642
  msgstr "ID"
3643
 
3644
+ #: ../includes/mycred-admin.php:495
3645
  msgid "A positive or negative value"
3646
  msgstr "Un valor positivo o negativo"
3647
 
3648
+ #: ../includes/mycred-admin.php:497
3649
  msgid "Update Balance"
3650
  msgstr "Actualizar Saldo"
3651
 
3773
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3774
  msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3775
 
3776
+ #: ../includes/mycred-install.php:53
3777
+ msgid ""
3778
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3779
+ "check your PHP configuration or contact your host and ask them to enable it "
3780
+ "for you!"
3781
+ msgstr ""
3782
+
3783
+ #: ../includes/mycred-install.php:58
3784
  msgid ""
3785
  "Sorry but your WordPress installation does not reach the minimum "
3786
  "requirements for running myCRED. The following errors were given:"
3788
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3789
  "mínimos de mycred. Se produce los siguientes errores:"
3790
 
3791
+ #: ../includes/mycred-install.php:247
3792
  msgid "myCRED needs your attention."
3793
  msgstr "myCRED precisa tu atención."
3794
 
3795
+ #: ../includes/mycred-install.php:247
3796
  msgid "Run Setup"
3797
  msgstr "Ejecutar Configuración"
3798
 
3799
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3800
  msgid "myCRED Setup"
3801
  msgstr "Instalación de myCRED"
3802
 
3803
+ #: ../includes/mycred-install.php:389
3804
  #, php-format
3805
  msgid "%s Setup"
3806
  msgstr "Configurar %s"
3807
 
3808
+ #: ../includes/mycred-install.php:391
3809
  msgid "Step"
3810
  msgstr "Paso"
3811
 
3812
+ #: ../includes/mycred-install.php:415
3813
  msgid ""
3814
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3815
  "points format, layout and security settings."
3817
  "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3818
  "el formato de puntos, disposiciones y configuraciones de seguridad."
3819
 
3820
+ #: ../includes/mycred-install.php:416
3821
  msgid "Begin Setup"
3822
  msgstr "Empezar la Instalación"
3823
 
3824
+ #: ../includes/mycred-install.php:471
3825
  msgid "Select the format you want to use for your points."
3826
  msgstr "Elige el formato que quieres usar para tus puntos."
3827
 
3828
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3829
  msgid "Format"
3830
  msgstr "Formato"
3831
 
3832
+ #: ../includes/mycred-install.php:475
3833
  msgid "Separators"
3834
  msgstr "Separadores"
3835
 
3836
+ #: ../includes/mycred-install.php:485
3837
  msgid "Decimals"
3838
  msgstr "Decimales"
3839
 
3840
+ #: ../includes/mycred-install.php:487
3841
  msgid "Use zero for no decimals."
3842
  msgstr "Usa cero para no tener decimales."
3843
 
3844
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3845
  msgid "Presentation"
3846
  msgstr "Presentación"
3847
 
3848
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3849
  msgid "Name (Singular)"
3850
  msgstr "Nombre (singular)"
3851
 
3852
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3853
  msgid "Name (Plural)"
3854
  msgstr "Nombre (plural)"
3855
 
3856
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3857
  msgid "Prefix"
3858
  msgstr "Prefijo"
3859
 
3860
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3861
  msgid "Suffix"
3862
  msgstr "Sufijo"
3863
 
3864
+ #: ../includes/mycred-install.php:515
3865
  msgid "Cancel Setup"
3866
  msgstr "Cancelar la Instalación"
3867
 
3868
+ #: ../includes/mycred-install.php:515
3869
  msgid "Cancel"
3870
  msgstr "Cancelar"
3871
 
3872
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3873
  msgid "Next"
3874
  msgstr "Siguiente"
3875
 
3876
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3877
  msgid "Security"
3878
  msgstr "Seguridad"
3879
 
3880
+ #: ../includes/mycred-install.php:550
3881
  msgid "Edit Settings Capability"
3882
  msgstr "Editar la capacidad de las configuraciones"
3883
 
3884
  #. is this user's or users (plural)?
3885
+ #: ../includes/mycred-install.php:554
3886
  msgid "Edit Users %plural% Capability"
3887
  msgstr "Editar la Capacidad de %plural% del Usuario"
3888
 
3889
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3890
  msgid "Maximum %plural% payouts"
3891
  msgstr "Desembolso %plural% Máximo"
3892
 
3893
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3894
  msgid ""
3895
  "As an added security, you can set the maximum amount a user can gain or "
3896
  "loose in a single instance. If used, make sure this is the maximum amount a "
3902
  "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3903
  "o gastar en tu tienda. Ponga zero para desactivar."
3904
 
3905
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3906
  msgid "Exclude those who can \"Edit Settings\"."
3907
  msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
3908
 
3909
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3910
  msgid "Exclude those who can \"Edit Users %plural%\"."
3911
  msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
3912
 
3913
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3914
  msgid "Exclude the following user IDs:"
3915
  msgstr "Excluir a los siguientes IDs de usuarios"
3916
 
3917
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3918
  msgid "User Deletions"
3919
  msgstr "Eliminación de Usuarios"
3920
 
3921
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3922
  msgid "Delete log entries when user is deleted."
3923
  msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3924
 
3925
+ #: ../includes/mycred-install.php:603
3926
  msgid "Ready"
3927
  msgstr "Listo"
3928
 
3929
+ #: ../includes/mycred-install.php:604
3930
  msgid "Almost done! Click the button below to finish this setup."
3931
  msgstr ""
3932
  "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3933
  "configuración."
3934
 
3935
+ #: ../includes/mycred-install.php:605
3936
  msgid "Install & Run"
3937
  msgstr "Instalar e ejecutar"
3938
 
4216
  msgid "Leaderboard is empty."
4217
  msgstr "La Tabla de Clasificación esta vacía"
4218
 
4219
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4220
  msgid "Amount missing!"
4221
  msgstr "¡Falta la cantidad!"
4222
 
4223
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4224
  msgid "Log Template Missing!"
4225
  msgstr "¡Plantilla de Registro No Encontrado!"
4226
 
4227
+ #: ../includes/mycred-shortcodes.php:444
4228
  msgid "Anchor missing URL!"
4229
  msgstr "¡La Ancla falta el URL!"
4230
 
4231
+ #: ../includes/mycred-shortcodes.php:509
4232
  msgid "User ID missing for recipient."
4233
  msgstr "ID del Usuario falta para el destinatario"
4234
 
4235
+ #: ../includes/mycred-shortcodes.php:563
4236
  msgid "Sent"
4237
  msgstr "Enviado"
4238
 
4239
+ #: ../includes/mycred-shortcodes.php:564
4240
  msgid "Error - Try Again"
4241
  msgstr "Error - Inténtelo de nuevo."
4242
 
4243
+ #: ../includes/mycred-shortcodes.php:672
4244
  msgid "A video ID is required for this shortcode"
4245
  msgstr "Este código corto (shortcode) precisa un ID del video."
4246
 
4867
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4868
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4869
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4870
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4871
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4872
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4873
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5759
  "iniciado sesión)"
5760
 
5761
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5762
+ #: gravityforms.php:115
5763
  msgid "No forms found."
5764
  msgstr "No se ha encontrado ningun formulario."
5765
 
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:26:30 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
@@ -46,8 +46,8 @@ msgstr "\"اعتبار من\""
46
 
47
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
48
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
49
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
50
- #: includes/mycred-shortcodes.php:535
51
  msgid "Processing..."
52
  msgstr "در حال پردازش ..."
53
 
@@ -102,7 +102,7 @@ msgid "Log entry updated"
102
  msgstr ""
103
 
104
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
105
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "نصب"
@@ -170,7 +170,7 @@ msgstr "روزی یک بار ( نیمه شب ریست می شود )"
170
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
172
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
173
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
174
  msgid "Select"
175
  msgstr "انتخاب"
176
 
@@ -382,9 +382,9 @@ msgid "Pay Users"
382
  msgstr "پرداخت به کاربران :"
383
 
384
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
385
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
386
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
387
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
388
  msgid "Amount"
389
  msgstr "مقدار"
390
 
@@ -455,7 +455,7 @@ msgstr ""
455
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
456
 
457
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
458
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
459
  msgid "Excludes"
460
  msgstr "کاربران استثنا"
461
 
@@ -484,7 +484,7 @@ msgstr ""
484
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
485
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
486
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
487
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
488
  msgid "Payments"
489
  msgstr "پرداخت ها"
490
 
@@ -514,7 +514,7 @@ msgstr ""
514
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
515
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
516
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
517
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
518
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
519
  #: includes/importers/mycred-cubepoints.php:365
520
  msgid "Point Type"
@@ -570,7 +570,7 @@ msgid "%s Payment Gateways"
570
  msgstr "درگاه های پرداخت %s"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
573
- #: addon-buy-creds.php:663
574
  msgid "buyCRED Settings"
575
  msgstr ""
576
 
@@ -600,13 +600,13 @@ msgid "Time"
600
  msgstr ""
601
 
602
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
603
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
604
  #: overview.php:173 ../modules/mycred-module-addons.php:190
605
  msgid "Gateway"
606
  msgstr "درگاه"
607
 
608
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
609
- #: addon-buy-creds.php:659
610
  msgid "Transaction ID"
611
  msgstr ""
612
 
@@ -648,103 +648,103 @@ msgstr ""
648
  msgid "Update Gateway Settings"
649
  msgstr "به روزرسانی تنظیمات درگاه"
650
 
651
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
652
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
653
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
654
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
655
  msgid "User"
656
  msgstr "کاربر"
657
 
658
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
659
  #: 640
660
  msgid "Date"
661
  msgstr "تاریخ"
662
 
663
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
664
  msgid "Payed"
665
  msgstr ""
666
 
667
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
668
  msgid "<strong>buy</strong>CRED Purchase Log"
669
  msgstr ""
670
 
671
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
672
  #: booking/mycred-eventespresso3.php:367
673
  msgid "Gateway Settings"
674
  msgstr "تنظیمات درگاه پرداخت"
675
 
676
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
677
  msgid ""
678
  "Only completed purchases are shown here. Purchases that were cancelled or "
679
  "failed are not logged."
680
  msgstr ""
681
 
682
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
683
  #: 743 ../modules/mycred-module-log.php:462
684
  msgid "User Missing"
685
  msgstr "یافت نشدن کاربر"
686
 
687
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
688
- #: content/myCRED-addon-sell-content.php:1112
689
  msgid "No purchases found"
690
  msgstr "خریدی یافت نشد"
691
 
692
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
693
- #: addon-buy-creds.php:1008
694
  msgid "This Add-on needs to setup before you can use this shortcode."
695
  msgstr ""
696
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
697
  "جانبی را راه اندازی کنید ."
698
 
699
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
700
- #: addon-buy-creds.php:1026
701
  msgid "No gateways installed."
702
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
703
 
704
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
705
- #: addon-buy-creds.php:1027
706
  msgid "Gateway does not exist."
707
  msgstr "درگاه موجود نیست ."
708
 
709
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
710
  msgid "Yourself"
711
  msgstr "خودتان"
712
 
713
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
714
  msgid "No active gateways found."
715
  msgstr "درگاه پرداخت فعالی یافت نشد ."
716
 
717
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
718
  msgid "The selected gateway is not active."
719
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
720
 
721
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
722
  #, php-format
723
  msgid "Buy with %gateway%"
724
  msgstr ""
725
 
726
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
727
  #: content/myCRED-addon-sell-content.php:44
728
  msgid "Buy Now"
729
  msgstr "همین الان بخرید"
730
 
731
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
732
  msgid "No users found"
733
  msgstr "کاربری یافت نشد"
734
 
735
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
736
  msgid "To"
737
  msgstr "به"
738
 
739
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
740
  msgid "Select Amount"
741
  msgstr "مقدار را انتخاب کنید"
742
 
743
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
744
  msgid "min."
745
  msgstr "حداقل"
746
 
747
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
748
  msgid "Select Gateway"
749
  msgstr "درگاه پرداخت را انتخاب کنید"
750
 
@@ -791,12 +791,12 @@ msgid "Cancel purchase"
791
  msgstr ""
792
 
793
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
794
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
795
  msgid "required"
796
  msgstr "ضروری"
797
 
798
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
799
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
800
  msgid "optional"
801
  msgstr "اختیاری"
802
 
@@ -1411,9 +1411,9 @@ msgid "No coupons found in Trash"
1411
  msgstr ""
1412
 
1413
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1414
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1415
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1416
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1417
  #: module-addons.php:179
1418
  msgid "Email Notices"
1419
  msgstr "اطلاعیه های ایمیلی"
@@ -1617,115 +1617,115 @@ msgstr ""
1617
  msgid "Apply Coupon"
1618
  msgstr ""
1619
 
1620
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1621
- #: notices/myCRED-addon-email-notices.php:1138
1622
  msgid "Email Notice"
1623
  msgstr "اطلاعیه ایمیلی"
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1626
  #: addons/ranks/myCRED-addon-ranks.php:248
1627
  msgid "Add New"
1628
  msgstr "ساختن مورد جدید"
1629
 
1630
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1631
  msgid "Add New Notice"
1632
  msgstr "ساختن اطلاعیه ایمیل جدید"
1633
 
1634
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1635
  msgid "Edit Notice"
1636
  msgstr "ویرایش اطلاعیه"
1637
 
1638
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1639
  msgid "New Notice"
1640
  msgstr "اطلاعیه جدید"
1641
 
1642
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1643
  msgid "View Notice"
1644
  msgstr "نمایش اطلاعیه"
1645
 
1646
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1647
  msgid "Search Email Notices"
1648
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
1649
 
1650
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1651
  msgid "No email notices found"
1652
  msgstr "هیچ اطلاعیه ای یافت نشد"
1653
 
1654
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1655
  msgid "No email notices found in Trash"
1656
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1657
 
1658
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1659
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1660
  #: php:589
1661
  msgid "General"
1662
  msgstr "بخش عمومی"
1663
 
1664
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1665
  msgid "users balance changes"
1666
  msgstr "میزان امتیازات کاربران تغییر کند"
1667
 
1668
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1669
  msgid "user gains %_plural%"
1670
  msgstr "کاربران %_plural% کسب کنند"
1671
 
1672
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1673
  msgid "user lose %_plural%"
1674
  msgstr "کاربران %_plural% از دست بدهند"
1675
 
1676
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1677
  msgid "users balance reaches zero"
1678
  msgstr "میزان امتیازات کاربر به صفر برسد"
1679
 
1680
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1681
  msgid "users balance goes minus"
1682
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
1683
 
1684
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1685
  msgid "Sell Content Add-on"
1686
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
1687
 
1688
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1689
  msgid "user buys content"
1690
  msgstr "کاربران محتوایی را بخرند"
1691
 
1692
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1693
  msgid "authors content gets sold"
1694
  msgstr "متن نویسندگان به فروش برود"
1695
 
1696
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1697
  msgid "buyCREDs Add-on"
1698
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
1699
 
1700
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1701
  msgid "user buys %_plural%"
1702
  msgstr "کاربران %_plural% بخرند"
1703
 
1704
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1705
  msgid "Transfer Add-on"
1706
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
1707
 
1708
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1709
  msgid "user sends %_plural%"
1710
  msgstr "کاربران %_plural% ارسال کنند"
1711
 
1712
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1713
  msgid "user receives %_plural%"
1714
  msgstr "کاربران %_plural% دریافت کنند"
1715
 
1716
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1717
  msgid "Ranks Add-on"
1718
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
1719
 
1720
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1721
  msgid "user is demoted"
1722
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
1723
 
1724
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1725
  msgid "user is promoted"
1726
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
1727
 
1728
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1729
  msgid ""
1730
  "Settings that apply to all email notices and can not be overridden for "
1731
  "individual emails."
@@ -1736,25 +1736,25 @@ msgstr ""
1736
  "تنظیم رو تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می "
1737
  "تونی تغییر بدی ! دیگه ببخشید خودمونی گفتم :دی )"
1738
 
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1740
  msgid "Email Format"
1741
  msgstr "فرمت ایمیل"
1742
 
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1744
  msgid "Plain text emails only."
1745
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1748
  msgid "HTML or Plain text emails."
1749
  msgstr ""
1750
  "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل "
1751
  "هایی با صفحه بندی زیبا تولید کرد ."
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1754
  msgid "Filters"
1755
  msgstr "پالایش ایمیل ها"
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1758
  msgid ""
1759
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1760
  "an email is sent."
@@ -1762,7 +1762,7 @@ msgstr ""
1762
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل "
1763
  "از ارسال پالایش کنند ."
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1766
  msgid ""
1767
  "Allow WordPress and Third Party Plugins to filter the email content before "
1768
  "an email is sent."
@@ -1770,49 +1770,49 @@ msgstr ""
1770
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
1771
  "ارسال پالایش کنند ."
1772
 
1773
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1774
- #: notices/myCRED-addon-email-notices.php:303
1775
  msgid "Email Schedule"
1776
  msgstr ""
1777
 
1778
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1779
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1780
  msgstr ""
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1783
  msgid "Send emails immediately"
1784
  msgstr ""
1785
 
1786
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1787
  msgid "Send emails once an hour"
1788
  msgstr ""
1789
 
1790
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1791
  msgid "Send emails once a day"
1792
  msgstr ""
1793
 
1794
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1795
  msgid "Subscriptions"
1796
  msgstr ""
1797
 
1798
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1799
  #, php-format
1800
  msgid ""
1801
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1802
  "updates."
1803
  msgstr ""
1804
 
1805
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1806
  msgid "SMTP Override"
1807
  msgstr ""
1808
 
1809
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1810
  msgid ""
1811
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1812
  "use a SMTP plugin for emails."
1813
  msgstr ""
1814
 
1815
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1816
  msgid ""
1817
  "Default email settings. These settings can be individually overridden when "
1818
  "editing emails."
@@ -1820,186 +1820,186 @@ msgstr ""
1820
  "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی "
1821
  "نیز قابل ویرایش هستند ."
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1824
- #: notices/myCRED-addon-email-notices.php:802
1825
  msgid "Email Settings"
1826
  msgstr "تنظیمات ایمیل"
1827
 
1828
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1829
- #: notices/myCRED-addon-email-notices.php:925
1830
  msgid "Senders Name:"
1831
  msgstr "نام ارسال کننده :"
1832
 
1833
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1834
- #: notices/myCRED-addon-email-notices.php:927
1835
  msgid "Senders Email:"
1836
  msgstr "آدرس ایمیل ارسال کننده :"
1837
 
1838
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1839
  msgid "Reply-To:"
1840
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
1841
 
1842
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1843
  msgid "Default Email Content"
1844
  msgstr "محتوای پیش فرض ایمیل"
1845
 
1846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1847
  msgid "Default email content."
1848
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
1849
 
1850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1851
  msgid "Default Email Styling"
1852
  msgstr "قالب پیش فرض ایمیل"
1853
 
1854
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1855
  msgid "Ignored if HTML is not allowed in emails."
1856
  msgstr ""
1857
  "در اینجا هم قالب پیش فرض ایمیل رو تعیین می کنید که کد های HTML خواهند بود . "
1858
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
1859
  "."
1860
 
1861
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1862
- #: notices/myCRED-addon-email-notices.php:851
1863
  msgid "Email Subject"
1864
  msgstr "موضوع ایمیل"
1865
 
1866
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1867
  msgid "Status"
1868
  msgstr "وضعیت"
1869
 
1870
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1871
  msgid "Not Active"
1872
  msgstr "غیرفعال"
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1875
  #, php-format
1876
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1877
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
1878
 
1879
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1880
  msgid "Active"
1881
  msgstr "فعال"
1882
 
1883
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1884
  #, php-format
1885
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1886
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
1887
 
1888
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1889
  msgid "Email is sent when"
1890
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
1891
 
1892
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1893
  msgid "Missing instance for this notice!"
1894
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
1895
 
1896
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1897
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1898
- #: addon-email-notices.php:790
1899
  msgid "Sent To"
1900
  msgstr "ارسال شده به"
1901
 
1902
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1903
- #: notices/myCRED-addon-email-notices.php:916
1904
  msgid "Administrator"
1905
  msgstr "مدیر"
1906
 
1907
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1908
  msgid "Both Administrator and User"
1909
  msgstr "هم کاربر و هم مدیر"
1910
 
1911
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1912
  msgid "Available Template Tags"
1913
  msgstr "نمونه تگ های قابل استفاده"
1914
 
1915
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1916
  msgid "Email Header"
1917
  msgstr "سربرگ ایمیل"
1918
 
1919
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1920
  msgid "Send this email notice when..."
1921
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1924
  msgid "Recipient:"
1925
  msgstr "گیرندگان ایمیل :"
1926
 
1927
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1928
  msgid "Both"
1929
  msgstr "هر دو"
1930
 
1931
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1932
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1933
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1934
  #: module-settings.php:526
1935
  msgid "Label"
1936
  msgstr "برچسب ( اتیکت )"
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1939
  msgid "Reply-To Email:"
1940
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1943
  msgid "Save"
1944
  msgstr "ذخیره"
1945
 
1946
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1947
  msgid "CSS Styling"
1948
  msgstr "صفحه آرایی با CSS"
1949
 
1950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1951
  msgid "Site Related"
1952
  msgstr "مرتبط با سایت"
1953
 
1954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1955
  msgid "Your websites title"
1956
  msgstr "عنوان وبسایت شما"
1957
 
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1959
  msgid "Your websites address"
1960
  msgstr "آدرس وبسایت شما"
1961
 
1962
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1963
  msgid "Your websites tagline (description)"
1964
  msgstr "شرح وبسایت شما"
1965
 
1966
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1967
  msgid "Your websites admin email"
1968
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1969
 
1970
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1971
  msgid "Total number of blog members"
1972
  msgstr "تعداد کل کاربران سایت شما"
1973
 
1974
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1975
- #: notices/myCRED-addon-email-notices.php:1049
1976
  #, php-format
1977
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1978
  msgstr ""
1979
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1980
  "href=\"%1$s\">کلیک فرمایید</a>"
1981
 
1982
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1983
  msgid "Email Notice Activated"
1984
  msgstr "اطلاعیه فعال شد"
1985
 
1986
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1987
  msgid "Email Notice Saved"
1988
  msgstr "اطلاعیه ذخیره شد"
1989
 
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1991
  #, php-format
1992
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1993
  msgstr ""
1994
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1995
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1996
 
1997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1998
  #, php-format
1999
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2000
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
2001
 
2002
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2003
  msgid ""
2004
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2005
  "are not yet ready to use this email notice!"
@@ -2008,35 +2008,35 @@ msgstr ""
2008
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2009
  "گردد ."
2010
 
2011
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2012
  #, php-format
2013
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2014
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2015
 
2016
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2017
  msgid "This email notice is active."
2018
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2019
 
2020
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2021
  msgid "Settings saved."
2022
  msgstr ""
2023
 
2024
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2025
  msgid "Unsubscribe"
2026
  msgstr ""
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2029
  msgid "There are no email notifications yet."
2030
  msgstr ""
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2033
  msgid "Save Changes"
2034
  msgstr ""
2035
 
2036
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2037
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2038
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2039
- #: php:412 ../includes/mycred-admin.php:478
2040
  msgid "Current Balance"
2041
  msgstr "میزان امتیازات اخیر"
2042
 
@@ -2497,8 +2497,8 @@ msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ
2497
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2498
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2499
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2500
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2501
- #: sell-content.php:590
2502
  msgid "Button Label"
2503
  msgstr "برچسب کلید"
2504
 
@@ -2511,8 +2511,8 @@ msgstr "کلید پرداخت"
2511
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2512
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2513
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2514
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2515
- #: sell-content.php:586
2516
  msgid "Price"
2517
  msgstr "هزینه"
2518
 
@@ -2534,7 +2534,7 @@ msgid "Log"
2534
  msgstr "لیست گزارش ( لوگ )"
2535
 
2536
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2537
- #: includes/mycred-admin.php:483
2538
  msgid "Log Entry"
2539
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2540
 
@@ -3108,9 +3108,9 @@ msgid "No users found with this rank"
3108
  msgstr "کاربری با این مدال یافت نشد"
3109
 
3110
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3111
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3112
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3113
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3114
  msgid "error"
3115
  msgstr "خطا"
3116
 
@@ -3130,41 +3130,41 @@ msgstr "فروش %link_with_title%"
3130
  msgid "Hours"
3131
  msgstr "ساعت"
3132
 
3133
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3134
  msgid "You can not buy this content."
3135
  msgstr "شما قادر به خرید این محتوا نیستید ."
3136
 
3137
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3138
  msgid "Error. Try Again"
3139
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3140
 
3141
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3142
  msgid "No Payout. Just charge."
3143
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3144
 
3145
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3146
  msgid "Pay Content Author."
3147
  msgstr "پرداخت به نویسنده ی محتوا"
3148
 
3149
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3150
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3151
  #: addons.php:224
3152
  msgid "Sell Content"
3153
  msgstr "فروش محتوا"
3154
 
3155
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3156
  msgid "Post Types"
3157
  msgstr "انواع پست"
3158
 
3159
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3160
  msgid "Comma separated list of post types that can be sold."
3161
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3162
 
3163
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3164
  msgid "Percentage to pay Author"
3165
  msgstr "درصدی برای پرداخت به نویسنده"
3166
 
3167
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3168
  msgid ""
3169
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3170
  "authors are not paid."
@@ -3172,31 +3172,31 @@ msgstr ""
3172
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3173
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3174
 
3175
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3176
  msgid "Defaults"
3177
  msgstr "پیش فرض ها"
3178
 
3179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3180
  msgid "Allow authors to change price."
3181
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3182
 
3183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3184
  msgid "Allow authors to change button label."
3185
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3186
 
3187
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3188
  msgid "Purchases expire after"
3189
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3190
 
3191
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3192
  msgid "Use zero for permanent sales."
3193
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3194
 
3195
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3196
  msgid "Sale Template for non members"
3197
  msgstr "الگوی فروش برای غیر اعضا"
3198
 
3199
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3200
  #, php-format
3201
  msgid ""
3202
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3205,66 +3205,67 @@ msgstr ""
3205
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3206
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3207
 
3208
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3209
  msgid "Sale Template for members"
3210
  msgstr "الگوی فروش برای اعضای سایت ( کاربران )"
3211
 
3212
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3213
- #: content/myCRED-addon-sell-content.php:431
3214
  #, php-format
3215
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3216
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3217
 
3218
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3219
  msgid "Insufficient funds template"
3220
  msgstr "الگوی \"موجودی کافی نیست\" برای نمونه"
3221
 
3222
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3223
  msgid "Log template for Purchases"
3224
  msgstr "الگوی لیست گزارش برای خریدها"
3225
 
3226
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3227
  msgid "Log template for Sales"
3228
  msgstr "الگوی لیست گزارش برای فروش ها"
3229
 
3230
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3231
  #, php-format
3232
  msgid "%s Sell This"
3233
  msgstr "فروش %s "
3234
 
3235
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3236
  #, php-format
3237
  msgid "%s Sell Content needs to be setup before you can use this feature."
3238
  msgstr ""
3239
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3240
  "اندازی کنید ."
3241
 
3242
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3243
  msgid "Setup add-on"
3244
  msgstr "نصب افزونه"
3245
 
3246
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3247
  msgid "Lets do it"
3248
  msgstr "بریم که داشته باشیم !"
3249
 
3250
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3251
- msgid "Enable sale of this "
3252
- msgstr "فعالسازی فروش این"
 
3253
 
3254
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3255
  msgid "Purchase expires after"
3256
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3257
 
3258
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3259
  msgid "Thank you for your purchase!"
3260
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3261
 
3262
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3263
- #: content/myCRED-addon-sell-content.php:1094
3264
  msgid "The following content is set for sale:"
3265
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3266
 
3267
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3268
  msgid "Purchased"
3269
  msgstr "خریداری شده"
3270
 
@@ -3547,49 +3548,54 @@ msgstr ""
3547
  msgid "Excluded"
3548
  msgstr "بن شده ( محروم شده )"
3549
 
3550
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3551
  #: modules/mycred-module-log.php:251
3552
  msgid "History"
3553
  msgstr "لیست تغییرات"
3554
 
3555
- #: ../includes/mycred-admin.php:280
3556
  msgid "Adjust"
3557
  msgstr "تطبیق"
3558
 
3559
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3560
  #, php-format
3561
  msgid "%singular% balance"
3562
  msgstr ""
3563
 
3564
- #: ../includes/mycred-admin.php:359
3565
  msgid "Adjust Your Balance"
3566
  msgstr "میزان امتیازتان را تنظیم کنید ( تطبیق دهید )"
3567
 
3568
- #: ../includes/mycred-admin.php:361
3569
  msgid "Adjust Users Balance"
3570
  msgstr "تطبیق دادن میزان امتیاز کاربران"
3571
 
3572
- #: ../includes/mycred-admin.php:372
3573
  msgid "Log description for adjustment"
3574
  msgstr "شرح لیست گزارش برای تطبیق"
3575
 
3576
- #: ../includes/mycred-admin.php:375
3577
  msgid "Update"
3578
  msgstr "به روزرسانی"
3579
 
3580
- #: ../includes/mycred-admin.php:376
3581
  msgid "Description is required!"
3582
  msgstr "شرح ضروری ست !"
3583
 
3584
- #: ../includes/mycred-admin.php:476
3585
  msgid "ID"
3586
  msgstr "شناسه"
3587
 
3588
- #: ../includes/mycred-admin.php:482
3589
  msgid "A positive or negative value"
3590
  msgstr "مقدار مثبت یا منفی"
3591
 
3592
- #: ../includes/mycred-admin.php:484
3593
  msgid "Update Balance"
3594
  msgstr "به روزرسانی میزان امتیاز"
3595
 
@@ -3719,7 +3725,14 @@ msgstr ""
3719
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3720
  msgstr "افزونه ی \"اعتبار من\" برای اجرا به SQL نسخه 5.0 نیاز دارد . نسخه ی یافت شده :"
3721
 
3722
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3723
  msgid ""
3724
  "Sorry but your WordPress installation does not reach the minimum "
3725
  "requirements for running myCRED. The following errors were given:"
@@ -3727,28 +3740,28 @@ msgstr ""
3727
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3728
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
3729
 
3730
- #: ../includes/mycred-install.php:243
3731
  msgid "myCRED needs your attention."
3732
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
3733
 
3734
- #: ../includes/mycred-install.php:243
3735
  msgid "Run Setup"
3736
  msgstr "اجرای نصب"
3737
 
3738
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3739
  msgid "myCRED Setup"
3740
  msgstr "راه اندازی \"اعتبار من\""
3741
 
3742
- #: ../includes/mycred-install.php:385
3743
  #, php-format
3744
  msgid "%s Setup"
3745
  msgstr ""
3746
 
3747
- #: ../includes/mycred-install.php:387
3748
  msgid "Step"
3749
  msgstr "گام"
3750
 
3751
- #: ../includes/mycred-install.php:411
3752
  msgid ""
3753
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3754
  "points format, layout and security settings."
@@ -3756,79 +3769,79 @@ msgstr ""
3756
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
3757
  "بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3758
 
3759
- #: ../includes/mycred-install.php:412
3760
  msgid "Begin Setup"
3761
  msgstr "آغاز نصب"
3762
 
3763
- #: ../includes/mycred-install.php:467
3764
  msgid "Select the format you want to use for your points."
3765
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
3766
 
3767
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3768
  msgid "Format"
3769
  msgstr "طرح ( فرمت )"
3770
 
3771
- #: ../includes/mycred-install.php:471
3772
  msgid "Separators"
3773
  msgstr "جداکننده ها"
3774
 
3775
- #: ../includes/mycred-install.php:481
3776
  msgid "Decimals"
3777
  msgstr "اعداد اعشاری"
3778
 
3779
- #: ../includes/mycred-install.php:483
3780
  msgid "Use zero for no decimals."
3781
  msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
3782
 
3783
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3784
  msgid "Presentation"
3785
  msgstr "چگونگی نمایش امتیازها"
3786
 
3787
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3788
  msgid "Name (Singular)"
3789
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
3790
 
3791
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3792
  msgid "Name (Plural)"
3793
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
3794
 
3795
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3796
  msgid "Prefix"
3797
  msgstr "پیشوند"
3798
 
3799
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3800
  msgid "Suffix"
3801
  msgstr "پسوند"
3802
 
3803
- #: ../includes/mycred-install.php:511
3804
  msgid "Cancel Setup"
3805
  msgstr "لغو عملیات راه اندازی"
3806
 
3807
- #: ../includes/mycred-install.php:511
3808
  msgid "Cancel"
3809
  msgstr "لغو"
3810
 
3811
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3812
  msgid "Next"
3813
  msgstr "گام بعدی"
3814
 
3815
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3816
  msgid "Security"
3817
  msgstr "امنیت"
3818
 
3819
- #: ../includes/mycred-install.php:546
3820
  msgid "Edit Settings Capability"
3821
  msgstr "ویرایش تنظیمات ظرفیتی"
3822
 
3823
- #: ../includes/mycred-install.php:550
3824
  msgid "Edit Users %plural% Capability"
3825
  msgstr "ویرایش ظرفیت %plural% کاربر"
3826
 
3827
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3828
  msgid "Maximum %plural% payouts"
3829
  msgstr "بیشترین پرداخت %plural%"
3830
 
3831
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3832
  msgid ""
3833
  "As an added security, you can set the maximum amount a user can gain or "
3834
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3841,43 +3854,43 @@ msgstr ""
3841
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
3842
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3843
 
3844
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3845
  msgid "Exclude those who can \"Edit Settings\"."
3846
  msgstr ""
3847
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
3848
  "خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3849
  "آن ها را در این کادر وارد فرمایید . )"
3850
 
3851
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3852
  msgid "Exclude those who can \"Edit Users %plural%\"."
3853
  msgstr ""
3854
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
3855
  "اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
3856
  "، اسامی آن ها را در این کادر وارد فرمایید . )"
3857
 
3858
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3859
  msgid "Exclude the following user IDs:"
3860
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
3861
 
3862
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3863
  msgid "User Deletions"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3867
  msgid "Delete log entries when user is deleted."
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-install.php:599
3871
  msgid "Ready"
3872
  msgstr "آماده"
3873
 
3874
- #: ../includes/mycred-install.php:600
3875
  msgid "Almost done! Click the button below to finish this setup."
3876
  msgstr ""
3877
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
3878
  "پایان ببرید ."
3879
 
3880
- #: ../includes/mycred-install.php:601
3881
  msgid "Install & Run"
3882
  msgstr "نصب و راه اندازی"
3883
 
@@ -4154,31 +4167,31 @@ msgstr ""
4154
  msgid "Leaderboard is empty."
4155
  msgstr "لیست برترین ها خالیست"
4156
 
4157
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4158
  msgid "Amount missing!"
4159
  msgstr "مقدار موجود نیست"
4160
 
4161
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4162
  msgid "Log Template Missing!"
4163
  msgstr "نمونه لوگ موجود نیست"
4164
 
4165
- #: ../includes/mycred-shortcodes.php:417
4166
  msgid "Anchor missing URL!"
4167
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4168
 
4169
- #: ../includes/mycred-shortcodes.php:482
4170
  msgid "User ID missing for recipient."
4171
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
4172
 
4173
- #: ../includes/mycred-shortcodes.php:536
4174
  msgid "Sent"
4175
  msgstr "ارسال شده"
4176
 
4177
- #: ../includes/mycred-shortcodes.php:537
4178
  msgid "Error - Try Again"
4179
  msgstr "خطا - لطفا مجددا تلاش کنید"
4180
 
4181
- #: ../includes/mycred-shortcodes.php:645
4182
  msgid "A video ID is required for this shortcode"
4183
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4184
 
@@ -4791,7 +4804,7 @@ msgstr ""
4791
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4792
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4793
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4794
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4795
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4796
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4797
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5662,7 +5675,7 @@ msgid "Awards %_plural% for successful form submissions (by logged in users)."
5662
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
5663
 
5664
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5665
- #: gravityforms.php:86
5666
  msgid "No forms found."
5667
  msgstr "فرمی یافت نشد ."
5668
 
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 Jun 25 2014 19:45:33 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
46
 
47
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
48
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
49
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
50
+ #: includes/mycred-shortcodes.php:562
51
  msgid "Processing..."
52
  msgstr "در حال پردازش ..."
53
 
102
  msgstr ""
103
 
104
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
105
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "نصب"
170
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
172
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
173
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
174
  msgid "Select"
175
  msgstr "انتخاب"
176
 
382
  msgstr "پرداخت به کاربران :"
383
 
384
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
385
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
386
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
387
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
388
  msgid "Amount"
389
  msgstr "مقدار"
390
 
455
  "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
456
 
457
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
458
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
459
  msgid "Excludes"
460
  msgstr "کاربران استثنا"
461
 
484
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
485
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
486
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
487
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
488
  msgid "Payments"
489
  msgstr "پرداخت ها"
490
 
514
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
515
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
516
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
517
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
518
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
519
  #: includes/importers/mycred-cubepoints.php:365
520
  msgid "Point Type"
570
  msgstr "درگاه های پرداخت %s"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
573
+ #: addon-buy-creds.php:664
574
  msgid "buyCRED Settings"
575
  msgstr ""
576
 
600
  msgstr ""
601
 
602
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
603
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
604
  #: overview.php:173 ../modules/mycred-module-addons.php:190
605
  msgid "Gateway"
606
  msgstr "درگاه"
607
 
608
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
609
+ #: addon-buy-creds.php:660
610
  msgid "Transaction ID"
611
  msgstr ""
612
 
648
  msgid "Update Gateway Settings"
649
  msgstr "به روزرسانی تنظیمات درگاه"
650
 
651
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
652
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
653
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
654
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
655
  msgid "User"
656
  msgstr "کاربر"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
659
  #: 640
660
  msgid "Date"
661
  msgstr "تاریخ"
662
 
663
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
664
  msgid "Payed"
665
  msgstr ""
666
 
667
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
668
  msgid "<strong>buy</strong>CRED Purchase Log"
669
  msgstr ""
670
 
671
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
672
  #: booking/mycred-eventespresso3.php:367
673
  msgid "Gateway Settings"
674
  msgstr "تنظیمات درگاه پرداخت"
675
 
676
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
677
  msgid ""
678
  "Only completed purchases are shown here. Purchases that were cancelled or "
679
  "failed are not logged."
680
  msgstr ""
681
 
682
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
683
  #: 743 ../modules/mycred-module-log.php:462
684
  msgid "User Missing"
685
  msgstr "یافت نشدن کاربر"
686
 
687
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
688
+ #: content/myCRED-addon-sell-content.php:1109
689
  msgid "No purchases found"
690
  msgstr "خریدی یافت نشد"
691
 
692
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
693
+ #: addon-buy-creds.php:1009
694
  msgid "This Add-on needs to setup before you can use this shortcode."
695
  msgstr ""
696
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
697
  "جانبی را راه اندازی کنید ."
698
 
699
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
700
+ #: addon-buy-creds.php:1027
701
  msgid "No gateways installed."
702
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
703
 
704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
705
+ #: addon-buy-creds.php:1028
706
  msgid "Gateway does not exist."
707
  msgstr "درگاه موجود نیست ."
708
 
709
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
710
  msgid "Yourself"
711
  msgstr "خودتان"
712
 
713
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
714
  msgid "No active gateways found."
715
  msgstr "درگاه پرداخت فعالی یافت نشد ."
716
 
717
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
718
  msgid "The selected gateway is not active."
719
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
720
 
721
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
722
  #, php-format
723
  msgid "Buy with %gateway%"
724
  msgstr ""
725
 
726
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
727
  #: content/myCRED-addon-sell-content.php:44
728
  msgid "Buy Now"
729
  msgstr "همین الان بخرید"
730
 
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
732
  msgid "No users found"
733
  msgstr "کاربری یافت نشد"
734
 
735
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
736
  msgid "To"
737
  msgstr "به"
738
 
739
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
740
  msgid "Select Amount"
741
  msgstr "مقدار را انتخاب کنید"
742
 
743
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
744
  msgid "min."
745
  msgstr "حداقل"
746
 
747
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
748
  msgid "Select Gateway"
749
  msgstr "درگاه پرداخت را انتخاب کنید"
750
 
791
  msgstr ""
792
 
793
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
794
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
795
  msgid "required"
796
  msgstr "ضروری"
797
 
798
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
799
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
800
  msgid "optional"
801
  msgstr "اختیاری"
802
 
1411
  msgstr ""
1412
 
1413
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1414
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1415
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1416
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1417
  #: module-addons.php:179
1418
  msgid "Email Notices"
1419
  msgstr "اطلاعیه های ایمیلی"
1617
  msgid "Apply Coupon"
1618
  msgstr ""
1619
 
1620
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1621
+ #: notices/myCRED-addon-email-notices.php:1107
1622
  msgid "Email Notice"
1623
  msgstr "اطلاعیه ایمیلی"
1624
 
1625
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1626
  #: addons/ranks/myCRED-addon-ranks.php:248
1627
  msgid "Add New"
1628
  msgstr "ساختن مورد جدید"
1629
 
1630
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1631
  msgid "Add New Notice"
1632
  msgstr "ساختن اطلاعیه ایمیل جدید"
1633
 
1634
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1635
  msgid "Edit Notice"
1636
  msgstr "ویرایش اطلاعیه"
1637
 
1638
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1639
  msgid "New Notice"
1640
  msgstr "اطلاعیه جدید"
1641
 
1642
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1643
  msgid "View Notice"
1644
  msgstr "نمایش اطلاعیه"
1645
 
1646
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1647
  msgid "Search Email Notices"
1648
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
1649
 
1650
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1651
  msgid "No email notices found"
1652
  msgstr "هیچ اطلاعیه ای یافت نشد"
1653
 
1654
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1655
  msgid "No email notices found in Trash"
1656
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1657
 
1658
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1659
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1660
  #: php:589
1661
  msgid "General"
1662
  msgstr "بخش عمومی"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1665
  msgid "users balance changes"
1666
  msgstr "میزان امتیازات کاربران تغییر کند"
1667
 
1668
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1669
  msgid "user gains %_plural%"
1670
  msgstr "کاربران %_plural% کسب کنند"
1671
 
1672
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1673
  msgid "user lose %_plural%"
1674
  msgstr "کاربران %_plural% از دست بدهند"
1675
 
1676
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1677
  msgid "users balance reaches zero"
1678
  msgstr "میزان امتیازات کاربر به صفر برسد"
1679
 
1680
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1681
  msgid "users balance goes minus"
1682
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
1683
 
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1685
  msgid "Sell Content Add-on"
1686
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
1687
 
1688
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1689
  msgid "user buys content"
1690
  msgstr "کاربران محتوایی را بخرند"
1691
 
1692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1693
  msgid "authors content gets sold"
1694
  msgstr "متن نویسندگان به فروش برود"
1695
 
1696
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1697
  msgid "buyCREDs Add-on"
1698
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
1699
 
1700
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1701
  msgid "user buys %_plural%"
1702
  msgstr "کاربران %_plural% بخرند"
1703
 
1704
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1705
  msgid "Transfer Add-on"
1706
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
1707
 
1708
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1709
  msgid "user sends %_plural%"
1710
  msgstr "کاربران %_plural% ارسال کنند"
1711
 
1712
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1713
  msgid "user receives %_plural%"
1714
  msgstr "کاربران %_plural% دریافت کنند"
1715
 
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1717
  msgid "Ranks Add-on"
1718
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
1719
 
1720
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1721
  msgid "user is demoted"
1722
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
1723
 
1724
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1725
  msgid "user is promoted"
1726
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
1727
 
1728
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1729
  msgid ""
1730
  "Settings that apply to all email notices and can not be overridden for "
1731
  "individual emails."
1736
  "تنظیم رو تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می "
1737
  "تونی تغییر بدی ! دیگه ببخشید خودمونی گفتم :دی )"
1738
 
1739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1740
  msgid "Email Format"
1741
  msgstr "فرمت ایمیل"
1742
 
1743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1744
  msgid "Plain text emails only."
1745
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1748
  msgid "HTML or Plain text emails."
1749
  msgstr ""
1750
  "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل "
1751
  "هایی با صفحه بندی زیبا تولید کرد ."
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1754
  msgid "Filters"
1755
  msgstr "پالایش ایمیل ها"
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1758
  msgid ""
1759
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1760
  "an email is sent."
1762
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل "
1763
  "از ارسال پالایش کنند ."
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1766
  msgid ""
1767
  "Allow WordPress and Third Party Plugins to filter the email content before "
1768
  "an email is sent."
1770
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
1771
  "ارسال پالایش کنند ."
1772
 
1773
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1774
+ #: notices/myCRED-addon-email-notices.php:305
1775
  msgid "Email Schedule"
1776
  msgstr ""
1777
 
1778
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1779
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1780
  msgstr ""
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1783
  msgid "Send emails immediately"
1784
  msgstr ""
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1787
  msgid "Send emails once an hour"
1788
  msgstr ""
1789
 
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1791
  msgid "Send emails once a day"
1792
  msgstr ""
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1795
  msgid "Subscriptions"
1796
  msgstr ""
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1799
  #, php-format
1800
  msgid ""
1801
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1802
  "updates."
1803
  msgstr ""
1804
 
1805
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1806
  msgid "SMTP Override"
1807
  msgstr ""
1808
 
1809
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1810
  msgid ""
1811
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1812
  "use a SMTP plugin for emails."
1813
  msgstr ""
1814
 
1815
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1816
  msgid ""
1817
  "Default email settings. These settings can be individually overridden when "
1818
  "editing emails."
1820
  "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی "
1821
  "نیز قابل ویرایش هستند ."
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1824
+ #: notices/myCRED-addon-email-notices.php:771
1825
  msgid "Email Settings"
1826
  msgstr "تنظیمات ایمیل"
1827
 
1828
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1829
+ #: notices/myCRED-addon-email-notices.php:894
1830
  msgid "Senders Name:"
1831
  msgstr "نام ارسال کننده :"
1832
 
1833
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1834
+ #: notices/myCRED-addon-email-notices.php:896
1835
  msgid "Senders Email:"
1836
  msgstr "آدرس ایمیل ارسال کننده :"
1837
 
1838
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1839
  msgid "Reply-To:"
1840
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
1841
 
1842
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1843
  msgid "Default Email Content"
1844
  msgstr "محتوای پیش فرض ایمیل"
1845
 
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1847
  msgid "Default email content."
1848
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1851
  msgid "Default Email Styling"
1852
  msgstr "قالب پیش فرض ایمیل"
1853
 
1854
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1855
  msgid "Ignored if HTML is not allowed in emails."
1856
  msgstr ""
1857
  "در اینجا هم قالب پیش فرض ایمیل رو تعیین می کنید که کد های HTML خواهند بود . "
1858
  "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
1859
  "."
1860
 
1861
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1862
+ #: notices/myCRED-addon-email-notices.php:820
1863
  msgid "Email Subject"
1864
  msgstr "موضوع ایمیل"
1865
 
1866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1867
  msgid "Status"
1868
  msgstr "وضعیت"
1869
 
1870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1871
  msgid "Not Active"
1872
  msgstr "غیرفعال"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1875
  #, php-format
1876
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1877
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1880
  msgid "Active"
1881
  msgstr "فعال"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1884
  #, php-format
1885
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1886
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
1887
 
1888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1889
  msgid "Email is sent when"
1890
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
1891
 
1892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1893
  msgid "Missing instance for this notice!"
1894
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
1895
 
1896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1897
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1898
+ #: addon-email-notices.php:759
1899
  msgid "Sent To"
1900
  msgstr "ارسال شده به"
1901
 
1902
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1903
+ #: notices/myCRED-addon-email-notices.php:885
1904
  msgid "Administrator"
1905
  msgstr "مدیر"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1908
  msgid "Both Administrator and User"
1909
  msgstr "هم کاربر و هم مدیر"
1910
 
1911
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1912
  msgid "Available Template Tags"
1913
  msgstr "نمونه تگ های قابل استفاده"
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1916
  msgid "Email Header"
1917
  msgstr "سربرگ ایمیل"
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1920
  msgid "Send this email notice when..."
1921
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1924
  msgid "Recipient:"
1925
  msgstr "گیرندگان ایمیل :"
1926
 
1927
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1928
  msgid "Both"
1929
  msgstr "هر دو"
1930
 
1931
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1932
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1933
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1934
  #: module-settings.php:526
1935
  msgid "Label"
1936
  msgstr "برچسب ( اتیکت )"
1937
 
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1939
  msgid "Reply-To Email:"
1940
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
1941
 
1942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1943
  msgid "Save"
1944
  msgstr "ذخیره"
1945
 
1946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1947
  msgid "CSS Styling"
1948
  msgstr "صفحه آرایی با CSS"
1949
 
1950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1951
  msgid "Site Related"
1952
  msgstr "مرتبط با سایت"
1953
 
1954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1955
  msgid "Your websites title"
1956
  msgstr "عنوان وبسایت شما"
1957
 
1958
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1959
  msgid "Your websites address"
1960
  msgstr "آدرس وبسایت شما"
1961
 
1962
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1963
  msgid "Your websites tagline (description)"
1964
  msgstr "شرح وبسایت شما"
1965
 
1966
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1967
  msgid "Your websites admin email"
1968
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1969
 
1970
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1971
  msgid "Total number of blog members"
1972
  msgstr "تعداد کل کاربران سایت شما"
1973
 
1974
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1975
+ #: notices/myCRED-addon-email-notices.php:1018
1976
  #, php-format
1977
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1978
  msgstr ""
1979
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1980
  "href=\"%1$s\">کلیک فرمایید</a>"
1981
 
1982
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
1983
  msgid "Email Notice Activated"
1984
  msgstr "اطلاعیه فعال شد"
1985
 
1986
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
1987
  msgid "Email Notice Saved"
1988
  msgstr "اطلاعیه ذخیره شد"
1989
 
1990
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
1991
  #, php-format
1992
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1993
  msgstr ""
1994
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1995
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
1998
  #, php-format
1999
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2000
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
2001
 
2002
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2003
  msgid ""
2004
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2005
  "are not yet ready to use this email notice!"
2008
  "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2009
  "گردد ."
2010
 
2011
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2012
  #, php-format
2013
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2014
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2015
 
2016
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2017
  msgid "This email notice is active."
2018
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2019
 
2020
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2021
  msgid "Settings saved."
2022
  msgstr ""
2023
 
2024
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2025
  msgid "Unsubscribe"
2026
  msgstr ""
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2029
  msgid "There are no email notifications yet."
2030
  msgstr ""
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2033
  msgid "Save Changes"
2034
  msgstr ""
2035
 
2036
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2037
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2038
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2039
+ #: php:412 ../includes/mycred-admin.php:491
2040
  msgid "Current Balance"
2041
  msgstr "میزان امتیازات اخیر"
2042
 
2497
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2498
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2499
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2500
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2501
+ #: sell-content.php:587
2502
  msgid "Button Label"
2503
  msgstr "برچسب کلید"
2504
 
2511
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2512
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2513
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2514
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2515
+ #: sell-content.php:583
2516
  msgid "Price"
2517
  msgstr "هزینه"
2518
 
2534
  msgstr "لیست گزارش ( لوگ )"
2535
 
2536
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2537
+ #: includes/mycred-admin.php:496
2538
  msgid "Log Entry"
2539
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2540
 
3108
  msgstr "کاربری با این مدال یافت نشد"
3109
 
3110
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3111
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3112
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3113
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3114
  msgid "error"
3115
  msgstr "خطا"
3116
 
3130
  msgid "Hours"
3131
  msgstr "ساعت"
3132
 
3133
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3134
  msgid "You can not buy this content."
3135
  msgstr "شما قادر به خرید این محتوا نیستید ."
3136
 
3137
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3138
  msgid "Error. Try Again"
3139
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3140
 
3141
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3142
  msgid "No Payout. Just charge."
3143
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3144
 
3145
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3146
  msgid "Pay Content Author."
3147
  msgstr "پرداخت به نویسنده ی محتوا"
3148
 
3149
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3150
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3151
  #: addons.php:224
3152
  msgid "Sell Content"
3153
  msgstr "فروش محتوا"
3154
 
3155
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3156
  msgid "Post Types"
3157
  msgstr "انواع پست"
3158
 
3159
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3160
  msgid "Comma separated list of post types that can be sold."
3161
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3162
 
3163
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3164
  msgid "Percentage to pay Author"
3165
  msgstr "درصدی برای پرداخت به نویسنده"
3166
 
3167
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3168
  msgid ""
3169
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3170
  "authors are not paid."
3172
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3173
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3174
 
3175
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3176
  msgid "Defaults"
3177
  msgstr "پیش فرض ها"
3178
 
3179
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3180
  msgid "Allow authors to change price."
3181
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3182
 
3183
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3184
  msgid "Allow authors to change button label."
3185
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3186
 
3187
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3188
  msgid "Purchases expire after"
3189
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3190
 
3191
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3192
  msgid "Use zero for permanent sales."
3193
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3194
 
3195
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3196
  msgid "Sale Template for non members"
3197
  msgstr "الگوی فروش برای غیر اعضا"
3198
 
3199
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3200
  #, php-format
3201
  msgid ""
3202
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3205
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3206
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3207
 
3208
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3209
  msgid "Sale Template for members"
3210
  msgstr "الگوی فروش برای اعضای سایت ( کاربران )"
3211
 
3212
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3213
+ #: content/myCRED-addon-sell-content.php:428
3214
  #, php-format
3215
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3216
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3217
 
3218
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3219
  msgid "Insufficient funds template"
3220
  msgstr "الگوی \"موجودی کافی نیست\" برای نمونه"
3221
 
3222
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3223
  msgid "Log template for Purchases"
3224
  msgstr "الگوی لیست گزارش برای خریدها"
3225
 
3226
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3227
  msgid "Log template for Sales"
3228
  msgstr "الگوی لیست گزارش برای فروش ها"
3229
 
3230
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3231
  #, php-format
3232
  msgid "%s Sell This"
3233
  msgstr "فروش %s "
3234
 
3235
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3236
  #, php-format
3237
  msgid "%s Sell Content needs to be setup before you can use this feature."
3238
  msgstr ""
3239
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3240
  "اندازی کنید ."
3241
 
3242
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3243
  msgid "Setup add-on"
3244
  msgstr "نصب افزونه"
3245
 
3246
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3247
  msgid "Lets do it"
3248
  msgstr "بریم که داشته باشیم !"
3249
 
3250
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3251
+ #, php-format
3252
+ msgid "Enable sale of this %s"
3253
+ msgstr ""
3254
 
3255
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3256
  msgid "Purchase expires after"
3257
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3258
 
3259
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3260
  msgid "Thank you for your purchase!"
3261
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3262
 
3263
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3264
+ #: content/myCRED-addon-sell-content.php:1091
3265
  msgid "The following content is set for sale:"
3266
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3267
 
3268
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3269
  msgid "Purchased"
3270
  msgstr "خریداری شده"
3271
 
3548
  msgid "Excluded"
3549
  msgstr "بن شده ( محروم شده )"
3550
 
3551
+ #: ../includes/mycred-admin.php:282
3552
+ #, php-format
3553
+ msgid "Total: %s"
3554
+ msgstr ""
3555
+
3556
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3557
  #: modules/mycred-module-log.php:251
3558
  msgid "History"
3559
  msgstr "لیست تغییرات"
3560
 
3561
+ #: ../includes/mycred-admin.php:292
3562
  msgid "Adjust"
3563
  msgstr "تطبیق"
3564
 
3565
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3566
  #, php-format
3567
  msgid "%singular% balance"
3568
  msgstr ""
3569
 
3570
+ #: ../includes/mycred-admin.php:372
3571
  msgid "Adjust Your Balance"
3572
  msgstr "میزان امتیازتان را تنظیم کنید ( تطبیق دهید )"
3573
 
3574
+ #: ../includes/mycred-admin.php:374
3575
  msgid "Adjust Users Balance"
3576
  msgstr "تطبیق دادن میزان امتیاز کاربران"
3577
 
3578
+ #: ../includes/mycred-admin.php:385
3579
  msgid "Log description for adjustment"
3580
  msgstr "شرح لیست گزارش برای تطبیق"
3581
 
3582
+ #: ../includes/mycred-admin.php:388
3583
  msgid "Update"
3584
  msgstr "به روزرسانی"
3585
 
3586
+ #: ../includes/mycred-admin.php:389
3587
  msgid "Description is required!"
3588
  msgstr "شرح ضروری ست !"
3589
 
3590
+ #: ../includes/mycred-admin.php:489
3591
  msgid "ID"
3592
  msgstr "شناسه"
3593
 
3594
+ #: ../includes/mycred-admin.php:495
3595
  msgid "A positive or negative value"
3596
  msgstr "مقدار مثبت یا منفی"
3597
 
3598
+ #: ../includes/mycred-admin.php:497
3599
  msgid "Update Balance"
3600
  msgstr "به روزرسانی میزان امتیاز"
3601
 
3725
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3726
  msgstr "افزونه ی \"اعتبار من\" برای اجرا به SQL نسخه 5.0 نیاز دارد . نسخه ی یافت شده :"
3727
 
3728
+ #: ../includes/mycred-install.php:53
3729
+ msgid ""
3730
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3731
+ "check your PHP configuration or contact your host and ask them to enable it "
3732
+ "for you!"
3733
+ msgstr ""
3734
+
3735
+ #: ../includes/mycred-install.php:58
3736
  msgid ""
3737
  "Sorry but your WordPress installation does not reach the minimum "
3738
  "requirements for running myCRED. The following errors were given:"
3740
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3741
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
3742
 
3743
+ #: ../includes/mycred-install.php:247
3744
  msgid "myCRED needs your attention."
3745
  msgstr "افزونه ی \"اعتبار من\" نیازمند چند دقیقه از وقت شماست ."
3746
 
3747
+ #: ../includes/mycred-install.php:247
3748
  msgid "Run Setup"
3749
  msgstr "اجرای نصب"
3750
 
3751
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3752
  msgid "myCRED Setup"
3753
  msgstr "راه اندازی \"اعتبار من\""
3754
 
3755
+ #: ../includes/mycred-install.php:389
3756
  #, php-format
3757
  msgid "%s Setup"
3758
  msgstr ""
3759
 
3760
+ #: ../includes/mycred-install.php:391
3761
  msgid "Step"
3762
  msgstr "گام"
3763
 
3764
+ #: ../includes/mycred-install.php:415
3765
  msgid ""
3766
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3767
  "points format, layout and security settings."
3769
  "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
3770
  "بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3771
 
3772
+ #: ../includes/mycred-install.php:416
3773
  msgid "Begin Setup"
3774
  msgstr "آغاز نصب"
3775
 
3776
+ #: ../includes/mycred-install.php:471
3777
  msgid "Select the format you want to use for your points."
3778
  msgstr "طرح ( فرمت ) مورد نظرتان برای امتیازها را انتخاب فرمایید ."
3779
 
3780
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3781
  msgid "Format"
3782
  msgstr "طرح ( فرمت )"
3783
 
3784
+ #: ../includes/mycred-install.php:475
3785
  msgid "Separators"
3786
  msgstr "جداکننده ها"
3787
 
3788
+ #: ../includes/mycred-install.php:485
3789
  msgid "Decimals"
3790
  msgstr "اعداد اعشاری"
3791
 
3792
+ #: ../includes/mycred-install.php:487
3793
  msgid "Use zero for no decimals."
3794
  msgstr "برای نداشتن عدد اعشاری در امتیازها ، می توانید عدد صفر را در کادر وارد کنید ."
3795
 
3796
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3797
  msgid "Presentation"
3798
  msgstr "چگونگی نمایش امتیازها"
3799
 
3800
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3801
  msgid "Name (Singular)"
3802
  msgstr "نام امتیاز مورد نظر به صورت مفرد ( مثلا امتیاز )"
3803
 
3804
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3805
  msgid "Name (Plural)"
3806
  msgstr "نام امتیاز مورد نظر به صورت جمع ( مثلا امتیازها )"
3807
 
3808
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3809
  msgid "Prefix"
3810
  msgstr "پیشوند"
3811
 
3812
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3813
  msgid "Suffix"
3814
  msgstr "پسوند"
3815
 
3816
+ #: ../includes/mycred-install.php:515
3817
  msgid "Cancel Setup"
3818
  msgstr "لغو عملیات راه اندازی"
3819
 
3820
+ #: ../includes/mycred-install.php:515
3821
  msgid "Cancel"
3822
  msgstr "لغو"
3823
 
3824
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3825
  msgid "Next"
3826
  msgstr "گام بعدی"
3827
 
3828
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3829
  msgid "Security"
3830
  msgstr "امنیت"
3831
 
3832
+ #: ../includes/mycred-install.php:550
3833
  msgid "Edit Settings Capability"
3834
  msgstr "ویرایش تنظیمات ظرفیتی"
3835
 
3836
+ #: ../includes/mycred-install.php:554
3837
  msgid "Edit Users %plural% Capability"
3838
  msgstr "ویرایش ظرفیت %plural% کاربر"
3839
 
3840
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3841
  msgid "Maximum %plural% payouts"
3842
  msgstr "بیشترین پرداخت %plural%"
3843
 
3844
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3845
  msgid ""
3846
  "As an added security, you can set the maximum amount a user can gain or "
3847
  "loose in a single instance. If used, make sure this is the maximum amount a "
3854
  "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
3855
  "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3856
 
3857
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3858
  msgid "Exclude those who can \"Edit Settings\"."
3859
  msgstr ""
3860
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
3861
  "خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3862
  "آن ها را در این کادر وارد فرمایید . )"
3863
 
3864
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3865
  msgid "Exclude those who can \"Edit Users %plural%\"."
3866
  msgstr ""
3867
  "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
3868
  "اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
3869
  "، اسامی آن ها را در این کادر وارد فرمایید . )"
3870
 
3871
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3872
  msgid "Exclude the following user IDs:"
3873
  msgstr "محروم کردن کاربران با استفاده از شناسه ی آن ها :"
3874
 
3875
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3876
  msgid "User Deletions"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3880
  msgid "Delete log entries when user is deleted."
3881
  msgstr ""
3882
 
3883
+ #: ../includes/mycred-install.php:603
3884
  msgid "Ready"
3885
  msgstr "آماده"
3886
 
3887
+ #: ../includes/mycred-install.php:604
3888
  msgid "Almost done! Click the button below to finish this setup."
3889
  msgstr ""
3890
  "تقریبا کاری باقی باقی نمانده ! بر روی کلید زیر کلیک کرده تا مراحل نصب را به "
3891
  "پایان ببرید ."
3892
 
3893
+ #: ../includes/mycred-install.php:605
3894
  msgid "Install & Run"
3895
  msgstr "نصب و راه اندازی"
3896
 
4167
  msgid "Leaderboard is empty."
4168
  msgstr "لیست برترین ها خالیست"
4169
 
4170
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4171
  msgid "Amount missing!"
4172
  msgstr "مقدار موجود نیست"
4173
 
4174
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4175
  msgid "Log Template Missing!"
4176
  msgstr "نمونه لوگ موجود نیست"
4177
 
4178
+ #: ../includes/mycred-shortcodes.php:444
4179
  msgid "Anchor missing URL!"
4180
  msgstr "آدرس اینترنتی از نوع Anchor ، در کدها موجود نیست !"
4181
 
4182
+ #: ../includes/mycred-shortcodes.php:509
4183
  msgid "User ID missing for recipient."
4184
  msgstr "شناسه ی کاربر گیرنده موجود نیست"
4185
 
4186
+ #: ../includes/mycred-shortcodes.php:563
4187
  msgid "Sent"
4188
  msgstr "ارسال شده"
4189
 
4190
+ #: ../includes/mycred-shortcodes.php:564
4191
  msgid "Error - Try Again"
4192
  msgstr "خطا - لطفا مجددا تلاش کنید"
4193
 
4194
+ #: ../includes/mycred-shortcodes.php:672
4195
  msgid "A video ID is required for this shortcode"
4196
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4197
 
4804
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4805
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4806
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4807
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4808
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4809
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4810
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5675
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
5676
 
5677
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5678
+ #: gravityforms.php:115
5679
  msgid "No forms found."
5680
  msgstr "فرمی یافت نشد ."
5681
 
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:26:49 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: French\n"
@@ -44,8 +44,8 @@ msgstr "On les remercie"
44
 
45
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
46
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
47
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
- #: includes/mycred-shortcodes.php:535
49
  msgid "Processing..."
50
  msgstr "Chargement en cours..."
51
 
@@ -106,7 +106,7 @@ msgid "Log entry updated"
106
  msgstr "L'entrée du journal a été mise à jour"
107
 
108
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
109
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
110
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
111
  msgid "Setup"
112
  msgstr "Configuration"
@@ -178,7 +178,7 @@ msgstr "Une fois par jour (remise à zéro à minuit)"
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
180
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
181
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
182
  msgid "Select"
183
  msgstr "sélectionnez"
184
 
@@ -392,9 +392,9 @@ msgid "Pay Users"
392
  msgstr "Payer les Utilisateurs"
393
 
394
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
395
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
396
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
397
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
398
  msgid "Amount"
399
  msgstr "Montant"
400
 
@@ -460,7 +460,7 @@ msgstr ""
460
  "réinitialiser les cycles."
461
 
462
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
463
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
464
  msgid "Excludes"
465
  msgstr "Exclure"
466
 
@@ -489,7 +489,7 @@ msgstr "Journal d'achat"
489
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
490
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
491
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
492
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
493
  msgid "Payments"
494
  msgstr "Paiements"
495
 
@@ -517,7 +517,7 @@ msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut
517
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
518
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
519
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
520
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
521
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
522
  #: includes/importers/mycred-cubepoints.php:365
523
  msgid "Point Type"
@@ -573,7 +573,7 @@ msgid "%s Payment Gateways"
573
  msgstr "%s Services de Paiements"
574
 
575
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
576
- #: addon-buy-creds.php:663
577
  msgid "buyCRED Settings"
578
  msgstr "Configuration buyCRED"
579
 
@@ -605,13 +605,13 @@ msgid "Time"
605
  msgstr "Durée"
606
 
607
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
608
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
609
  #: overview.php:173 ../modules/mycred-module-addons.php:190
610
  msgid "Gateway"
611
  msgstr "Service"
612
 
613
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
614
- #: addon-buy-creds.php:659
615
  msgid "Transaction ID"
616
  msgstr "ID de la transaction"
617
 
@@ -651,32 +651,32 @@ msgstr "Activez pour faire des tests d'achats factices."
651
  msgid "Update Gateway Settings"
652
  msgstr "Mettre à jour la configuration du service de paiement"
653
 
654
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
655
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
656
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
657
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
658
  msgid "User"
659
  msgstr "Utilisateur"
660
 
661
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
662
  #: 640
663
  msgid "Date"
664
  msgstr "Daté"
665
 
666
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
667
  msgid "Payed"
668
  msgstr "Payé"
669
 
670
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
671
  msgid "<strong>buy</strong>CRED Purchase Log"
672
  msgstr "Relevé des achats <strong>buy</strong>CRED"
673
 
674
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
675
  #: booking/mycred-eventespresso3.php:367
676
  msgid "Gateway Settings"
677
  msgstr "Configuration du service de paiement"
678
 
679
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
680
  msgid ""
681
  "Only completed purchases are shown here. Purchases that were cancelled or "
682
  "failed are not logged."
@@ -684,72 +684,72 @@ msgstr ""
684
  "Seuls les achats entièrement réglés sont affichés ici. Les achats annulés ou "
685
  "interrompus ne sont pas enregistrés et n'apparaissent pas sur ce relevé."
686
 
687
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
688
  #: 743 ../modules/mycred-module-log.php:462
689
  msgid "User Missing"
690
  msgstr "Utilisateur inexistant"
691
 
692
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
693
- #: content/myCRED-addon-sell-content.php:1112
694
  msgid "No purchases found"
695
  msgstr "Aucun achat trouvé"
696
 
697
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
698
- #: addon-buy-creds.php:1008
699
  msgid "This Add-on needs to setup before you can use this shortcode."
700
  msgstr ""
701
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
702
  "shortcode."
703
 
704
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
705
- #: addon-buy-creds.php:1026
706
  msgid "No gateways installed."
707
  msgstr "Aucun systme de paiement n'est installé."
708
 
709
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
710
- #: addon-buy-creds.php:1027
711
  msgid "Gateway does not exist."
712
  msgstr "Le service de paiement n'existe pas."
713
 
714
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
715
  msgid "Yourself"
716
  msgstr "Vous-même"
717
 
718
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
719
  msgid "No active gateways found."
720
  msgstr "Aucun service de paiement n'a été trouvé."
721
 
722
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
723
  msgid "The selected gateway is not active."
724
  msgstr "Ce service de paiement n'est pas activé"
725
 
726
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
727
  #, php-format
728
  msgid "Buy with %gateway%"
729
  msgstr "Régler avec %gateway%"
730
 
731
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
732
  #: content/myCRED-addon-sell-content.php:44
733
  msgid "Buy Now"
734
  msgstr "Acheter maintenant"
735
 
736
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
737
  msgid "No users found"
738
  msgstr "Aucun membre n'a été trouvé"
739
 
740
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
741
  msgid "To"
742
  msgstr "à"
743
 
744
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
745
  msgid "Select Amount"
746
  msgstr "Sélectionnez le montant"
747
 
748
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
749
  msgid "min."
750
  msgstr "mini."
751
 
752
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
753
  msgid "Select Gateway"
754
  msgstr "Sélectionnez le service de paiement"
755
 
@@ -798,12 +798,12 @@ msgid "Cancel purchase"
798
  msgstr "Achat annulé"
799
 
800
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
801
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
802
  msgid "required"
803
  msgstr "obligatoire"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
806
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
807
  msgid "optional"
808
  msgstr "optionnel"
809
 
@@ -1432,9 +1432,9 @@ msgid "No coupons found in Trash"
1432
  msgstr "Aucune promo dans la corbeille"
1433
 
1434
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1435
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1436
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1437
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1438
  #: module-addons.php:179
1439
  msgid "Email Notices"
1440
  msgstr "Messagerie"
@@ -1658,115 +1658,115 @@ msgstr "Rachat de bon"
1658
  msgid "Apply Coupon"
1659
  msgstr "Appliquer le bon"
1660
 
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1662
- #: notices/myCRED-addon-email-notices.php:1138
1663
  msgid "Email Notice"
1664
  msgstr "Message à envoyer"
1665
 
1666
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1667
  #: addons/ranks/myCRED-addon-ranks.php:248
1668
  msgid "Add New"
1669
  msgstr "Ajouter"
1670
 
1671
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1672
  msgid "Add New Notice"
1673
  msgstr "Ajouter un message"
1674
 
1675
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1676
  msgid "Edit Notice"
1677
  msgstr "Modifier le message"
1678
 
1679
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1680
  msgid "New Notice"
1681
  msgstr "Nouveau message"
1682
 
1683
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1684
  msgid "View Notice"
1685
  msgstr "Afficher le message"
1686
 
1687
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1688
  msgid "Search Email Notices"
1689
  msgstr "Rechercher un message"
1690
 
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1692
  msgid "No email notices found"
1693
  msgstr "Aucun message trouvé"
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1696
  msgid "No email notices found in Trash"
1697
  msgstr "Il n'y a pas de message dans la corbeille"
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1700
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1701
  #: php:589
1702
  msgid "General"
1703
  msgstr "Général"
1704
 
1705
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1706
  msgid "users balance changes"
1707
  msgstr "le solde a changé"
1708
 
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1710
  msgid "user gains %_plural%"
1711
  msgstr "gains de %_plural%"
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1714
  msgid "user lose %_plural%"
1715
  msgstr "perte de %_plural%"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1718
  msgid "users balance reaches zero"
1719
  msgstr "le solde est à zéro"
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1722
  msgid "users balance goes minus"
1723
  msgstr "le solde est négatif"
1724
 
1725
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1726
  msgid "Sell Content Add-on"
1727
  msgstr "Module de vente de contenu"
1728
 
1729
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1730
  msgid "user buys content"
1731
  msgstr "l'utilisateur a acheté du contenu"
1732
 
1733
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1734
  msgid "authors content gets sold"
1735
  msgstr "le contenu de cet auteur a été vendu"
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1738
  msgid "buyCREDs Add-on"
1739
  msgstr "Module achatCRED"
1740
 
1741
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1742
  msgid "user buys %_plural%"
1743
  msgstr "l'utilisateur a acheté des %_plural%"
1744
 
1745
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1746
  msgid "Transfer Add-on"
1747
  msgstr "Module de transfert"
1748
 
1749
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1750
  msgid "user sends %_plural%"
1751
  msgstr "l'utilisateur a envoyé des %_plural%"
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1754
  msgid "user receives %_plural%"
1755
  msgstr "l'utilisateur a reçu des %_plural%"
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1758
  msgid "Ranks Add-on"
1759
  msgstr "Application de classement"
1760
 
1761
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1762
  msgid "user is demoted"
1763
  msgstr "utilisateur rétrogradé"
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1766
  msgid "user is promoted"
1767
  msgstr "utilisateur promu"
1768
 
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1770
  msgid ""
1771
  "Settings that apply to all email notices and can not be overridden for "
1772
  "individual emails."
@@ -1774,23 +1774,23 @@ msgstr ""
1774
  "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
1775
  "appliqués individuellement."
1776
 
1777
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1778
  msgid "Email Format"
1779
  msgstr "Format des mails"
1780
 
1781
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1782
  msgid "Plain text emails only."
1783
  msgstr "Format texte uniquement"
1784
 
1785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1786
  msgid "HTML or Plain text emails."
1787
  msgstr "Format texte ou HTML"
1788
 
1789
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1790
  msgid "Filters"
1791
  msgstr "Filtres de recherche"
1792
 
1793
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1794
  msgid ""
1795
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1796
  "an email is sent."
@@ -1798,7 +1798,7 @@ msgstr ""
1798
  "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi "
1799
  "d'un mail."
1800
 
1801
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1802
  msgid ""
1803
  "Allow WordPress and Third Party Plugins to filter the email content before "
1804
  "an email is sent."
@@ -1806,49 +1806,49 @@ msgstr ""
1806
  "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
1807
  "d'un mail."
1808
 
1809
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1810
- #: notices/myCRED-addon-email-notices.php:303
1811
  msgid "Email Schedule"
1812
  msgstr ""
1813
 
1814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1815
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1816
  msgstr ""
1817
 
1818
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1819
  msgid "Send emails immediately"
1820
  msgstr ""
1821
 
1822
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1823
  msgid "Send emails once an hour"
1824
  msgstr ""
1825
 
1826
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1827
  msgid "Send emails once a day"
1828
  msgstr ""
1829
 
1830
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1831
  msgid "Subscriptions"
1832
  msgstr ""
1833
 
1834
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1835
  #, php-format
1836
  msgid ""
1837
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1838
  "updates."
1839
  msgstr ""
1840
 
1841
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1842
  msgid "SMTP Override"
1843
  msgstr ""
1844
 
1845
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1846
  msgid ""
1847
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1848
  "use a SMTP plugin for emails."
1849
  msgstr ""
1850
 
1851
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1852
  msgid ""
1853
  "Default email settings. These settings can be individually overridden when "
1854
  "editing emails."
@@ -1856,181 +1856,181 @@ msgstr ""
1856
  "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
1857
  "lors de la modification d'un mail."
1858
 
1859
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1860
- #: notices/myCRED-addon-email-notices.php:802
1861
  msgid "Email Settings"
1862
  msgstr "Configuration des mails"
1863
 
1864
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1865
- #: notices/myCRED-addon-email-notices.php:925
1866
  msgid "Senders Name:"
1867
  msgstr "Expéditeur:"
1868
 
1869
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:927
1871
  msgid "Senders Email:"
1872
  msgstr "Email de l'expéditeur"
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1875
  msgid "Reply-To:"
1876
  msgstr "Adresse de réponse:"
1877
 
1878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1879
  msgid "Default Email Content"
1880
  msgstr "Contenu par défaut"
1881
 
1882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1883
  msgid "Default email content."
1884
  msgstr "contenu par défaut"
1885
 
1886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1887
  msgid "Default Email Styling"
1888
  msgstr "Style par défaut"
1889
 
1890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1891
  msgid "Ignored if HTML is not allowed in emails."
1892
  msgstr "Sera ignoré si HTML désactivé pour les mails"
1893
 
1894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1895
- #: notices/myCRED-addon-email-notices.php:851
1896
  msgid "Email Subject"
1897
  msgstr "Sujet du mail"
1898
 
1899
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1900
  msgid "Status"
1901
  msgstr "Statut"
1902
 
1903
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1904
  msgid "Not Active"
1905
  msgstr "Inactif"
1906
 
1907
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1908
  #, php-format
1909
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1910
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
1911
 
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1913
  msgid "Active"
1914
  msgstr "Actif"
1915
 
1916
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1917
  #, php-format
1918
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1919
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
1920
 
1921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1922
  msgid "Email is sent when"
1923
  msgstr "Le mail sera envoyé quand"
1924
 
1925
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1926
  msgid "Missing instance for this notice!"
1927
  msgstr "Ce message n'est pas instancié !"
1928
 
1929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1930
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1931
- #: addon-email-notices.php:790
1932
  msgid "Sent To"
1933
  msgstr "Envoyer à"
1934
 
1935
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1936
- #: notices/myCRED-addon-email-notices.php:916
1937
  msgid "Administrator"
1938
  msgstr "Administrateur"
1939
 
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1941
  msgid "Both Administrator and User"
1942
  msgstr "A l'administrateur et à l'utilisateur"
1943
 
1944
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1945
  msgid "Available Template Tags"
1946
  msgstr "Mots-clés utilisables ici"
1947
 
1948
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1949
  msgid "Email Header"
1950
  msgstr "En-tête du mail"
1951
 
1952
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1953
  msgid "Send this email notice when..."
1954
  msgstr "Envoyer ce mail quand...."
1955
 
1956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1957
  msgid "Recipient:"
1958
  msgstr "Destinataire:"
1959
 
1960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1961
  msgid "Both"
1962
  msgstr "Les deux"
1963
 
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1965
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1966
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1967
  #: module-settings.php:526
1968
  msgid "Label"
1969
  msgstr "Etiquette"
1970
 
1971
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1972
  msgid "Reply-To Email:"
1973
  msgstr "Adresse de réponse"
1974
 
1975
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1976
  msgid "Save"
1977
  msgstr "Enregistrer"
1978
 
1979
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1980
  msgid "CSS Styling"
1981
  msgstr "Règles de style"
1982
 
1983
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1984
  msgid "Site Related"
1985
  msgstr "A propos du site"
1986
 
1987
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1988
  msgid "Your websites title"
1989
  msgstr "Titre de votre site"
1990
 
1991
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1992
  msgid "Your websites address"
1993
  msgstr "Adresse de votre site"
1994
 
1995
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1996
  msgid "Your websites tagline (description)"
1997
  msgstr "Description de votre site"
1998
 
1999
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2000
  msgid "Your websites admin email"
2001
  msgstr "Email de l'administrateur du site"
2002
 
2003
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2004
  msgid "Total number of blog members"
2005
  msgstr "Total des membres de votre blog"
2006
 
2007
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2008
- #: notices/myCRED-addon-email-notices.php:1049
2009
  #, php-format
2010
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2011
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
2012
 
2013
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2014
  msgid "Email Notice Activated"
2015
  msgstr "Message activé"
2016
 
2017
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2018
  msgid "Email Notice Saved"
2019
  msgstr "Message enregistré"
2020
 
2021
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2022
  #, php-format
2023
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2024
  msgstr ""
2025
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
2026
  "messages</a>."
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2029
  #, php-format
2030
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2031
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
2032
 
2033
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2034
  msgid ""
2035
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2036
  "are not yet ready to use this email notice!"
@@ -2039,35 +2039,35 @@ msgstr ""
2039
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2040
  "l'utiliser."
2041
 
2042
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2043
  #, php-format
2044
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2045
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2046
 
2047
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2048
  msgid "This email notice is active."
2049
  msgstr "Ce message est activé."
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2052
  msgid "Settings saved."
2053
  msgstr ""
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2056
  msgid "Unsubscribe"
2057
  msgstr ""
2058
 
2059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2060
  msgid "There are no email notifications yet."
2061
  msgstr ""
2062
 
2063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2064
  msgid "Save Changes"
2065
  msgstr ""
2066
 
2067
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2068
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2069
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2070
- #: php:412 ../includes/mycred-admin.php:478
2071
  msgid "Current Balance"
2072
  msgstr "Solde actuel"
2073
 
@@ -2522,8 +2522,8 @@ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
2522
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2523
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2524
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2525
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2526
- #: sell-content.php:590
2527
  msgid "Button Label"
2528
  msgstr "Intitulé du bouton"
2529
 
@@ -2536,8 +2536,8 @@ msgstr "Bouton de paiement"
2536
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2537
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2538
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2539
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2540
- #: sell-content.php:586
2541
  msgid "Price"
2542
  msgstr "Prix"
2543
 
@@ -2559,7 +2559,7 @@ msgid "Log"
2559
  msgstr "Vue d&#39;ensemble"
2560
 
2561
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2562
- #: includes/mycred-admin.php:483
2563
  msgid "Log Entry"
2564
  msgstr "Journal d'activité"
2565
 
@@ -3149,9 +3149,9 @@ msgid "No users found with this rank"
3149
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
3150
 
3151
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3152
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3153
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3154
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3155
  msgid "error"
3156
  msgstr "erreur"
3157
 
@@ -3171,41 +3171,41 @@ msgstr "Vente de %link_with_title%"
3171
  msgid "Hours"
3172
  msgstr "Heures"
3173
 
3174
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3175
  msgid "You can not buy this content."
3176
  msgstr "Vous ne pouvez pas acheter ce contenu."
3177
 
3178
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3179
  msgid "Error. Try Again"
3180
  msgstr "Erreur, veuillez recommencer."
3181
 
3182
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3183
  msgid "No Payout. Just charge."
3184
  msgstr "Pas de paiement. Uniquement facturer."
3185
 
3186
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3187
  msgid "Pay Content Author."
3188
  msgstr "Payer l'auteur du contenu"
3189
 
3190
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3191
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3192
  #: addons.php:224
3193
  msgid "Sell Content"
3194
  msgstr "Vendre du contenu"
3195
 
3196
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3197
  msgid "Post Types"
3198
  msgstr "Post Types"
3199
 
3200
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3201
  msgid "Comma separated list of post types that can be sold."
3202
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3203
 
3204
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3205
  msgid "Percentage to pay Author"
3206
  msgstr "Pourcentage à verser à l'auteur"
3207
 
3208
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3209
  msgid ""
3210
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3211
  "authors are not paid."
@@ -3213,31 +3213,31 @@ msgstr ""
3213
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3214
  "les auteurs ne sont pas payables."
3215
 
3216
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3217
  msgid "Defaults"
3218
  msgstr "Par défaut"
3219
 
3220
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3221
  msgid "Allow authors to change price."
3222
  msgstr "Autoriser les auteurs à modifier le prix"
3223
 
3224
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3225
  msgid "Allow authors to change button label."
3226
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3227
 
3228
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3229
  msgid "Purchases expire after"
3230
  msgstr "L'achat expire après"
3231
 
3232
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3233
  msgid "Use zero for permanent sales."
3234
  msgstr "Indiquez zéro pour des ventes permanentes"
3235
 
3236
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3237
  msgid "Sale Template for non members"
3238
  msgstr "Template des ventes pour les non mebmres"
3239
 
3240
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3241
  #, php-format
3242
  msgid ""
3243
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3246,68 +3246,69 @@ msgstr ""
3246
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3247
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3248
 
3249
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3250
  msgid "Sale Template for members"
3251
  msgstr "Template des ventes pour les membres"
3252
 
3253
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3254
- #: content/myCRED-addon-sell-content.php:431
3255
  #, php-format
3256
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3257
  msgstr ""
3258
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3259
  "achat fonctionne !"
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3262
  msgid "Insufficient funds template"
3263
  msgstr "Template de page pour fonds insuffisants"
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3266
  msgid "Log template for Purchases"
3267
  msgstr "Template de connexion pour les achats"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3270
  msgid "Log template for Sales"
3271
  msgstr "Template de connexion pour les ventes"
3272
 
3273
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3274
  #, php-format
3275
  msgid "%s Sell This"
3276
  msgstr "%s a vendu ceci"
3277
 
3278
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3279
  #, php-format
3280
  msgid "%s Sell Content needs to be setup before you can use this feature."
3281
  msgstr ""
3282
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3283
  "cette fonctionnalité."
3284
 
3285
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3286
  msgid "Setup add-on"
3287
  msgstr "Configuration du module"
3288
 
3289
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3290
  msgid "Lets do it"
3291
  msgstr "Faisons cela"
3292
 
3293
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3294
- msgid "Enable sale of this "
3295
- msgstr "Activer la vente de "
 
3296
 
3297
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3298
  msgid "Purchase expires after"
3299
  msgstr "Les achats expirent après"
3300
 
3301
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3302
  msgid "Thank you for your purchase!"
3303
  msgstr "Merci pour votre achat"
3304
 
3305
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3306
- #: content/myCRED-addon-sell-content.php:1094
3307
  msgid "The following content is set for sale:"
3308
  msgstr "Le contenu suivant est prévu à la vente:"
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3311
  msgid "Purchased"
3312
  msgstr "Acheté"
3313
 
@@ -3596,49 +3597,54 @@ msgstr "&Eacute;chec de la mise à jour de ce solde"
3596
  msgid "Excluded"
3597
  msgstr "Exclus"
3598
 
3599
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3600
  #: modules/mycred-module-log.php:251
3601
  msgid "History"
3602
  msgstr "Mes points"
3603
 
3604
- #: ../includes/mycred-admin.php:280
3605
  msgid "Adjust"
3606
  msgstr "Ajustement"
3607
 
3608
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3609
  #, php-format
3610
  msgid "%singular% balance"
3611
  msgstr "solde de %singular%"
3612
 
3613
- #: ../includes/mycred-admin.php:359
3614
  msgid "Adjust Your Balance"
3615
  msgstr "Ajuster votre relevé"
3616
 
3617
- #: ../includes/mycred-admin.php:361
3618
  msgid "Adjust Users Balance"
3619
  msgstr "Ajuster le relevé de l'utilisateur"
3620
 
3621
- #: ../includes/mycred-admin.php:372
3622
  msgid "Log description for adjustment"
3623
  msgstr "Descriptif de connexion pour ajustement"
3624
 
3625
- #: ../includes/mycred-admin.php:375
3626
  msgid "Update"
3627
  msgstr "Mis à jour"
3628
 
3629
- #: ../includes/mycred-admin.php:376
3630
  msgid "Description is required!"
3631
  msgstr "La description est obligatoire !"
3632
 
3633
- #: ../includes/mycred-admin.php:476
3634
  msgid "ID"
3635
  msgstr "ID"
3636
 
3637
- #: ../includes/mycred-admin.php:482
3638
  msgid "A positive or negative value"
3639
  msgstr "Une valeur positive ou négative"
3640
 
3641
- #: ../includes/mycred-admin.php:484
3642
  msgid "Update Balance"
3643
  msgstr "Mettre à jour le solde"
3644
 
@@ -3766,7 +3772,14 @@ msgstr "myCRED nécessite PHP 5.2.4 ou supérieure. Version détectée:"
3766
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3767
  msgstr "myCRED requiert SQL 5.0 ou sup&eacute;rieur. Version trouv&eacute;e: "
3768
 
3769
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3770
  msgid ""
3771
  "Sorry but your WordPress installation does not reach the minimum "
3772
  "requirements for running myCRED. The following errors were given:"
@@ -3775,28 +3788,28 @@ msgstr ""
3775
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3776
  "apparues:"
3777
 
3778
- #: ../includes/mycred-install.php:243
3779
  msgid "myCRED needs your attention."
3780
  msgstr "myCRED requiert votre attention."
3781
 
3782
- #: ../includes/mycred-install.php:243
3783
  msgid "Run Setup"
3784
  msgstr "Démarrer l'installation"
3785
 
3786
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3787
  msgid "myCRED Setup"
3788
  msgstr "Installation de myCRED"
3789
 
3790
- #: ../includes/mycred-install.php:385
3791
  #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configuration %s"
3794
 
3795
- #: ../includes/mycred-install.php:387
3796
  msgid "Step"
3797
  msgstr "Etape"
3798
 
3799
- #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
  "points format, layout and security settings."
@@ -3805,79 +3818,79 @@ msgstr ""
3805
  "alors en mesure de choisir le format de points, l'apparence et les "
3806
  "paramètres de sécurité."
3807
 
3808
- #: ../includes/mycred-install.php:412
3809
  msgid "Begin Setup"
3810
  msgstr "Démarrer le paramétrage"
3811
 
3812
- #: ../includes/mycred-install.php:467
3813
  msgid "Select the format you want to use for your points."
3814
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
3815
 
3816
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3817
  msgid "Format"
3818
  msgstr "Formatage"
3819
 
3820
- #: ../includes/mycred-install.php:471
3821
  msgid "Separators"
3822
  msgstr "Séparateurs"
3823
 
3824
- #: ../includes/mycred-install.php:481
3825
  msgid "Decimals"
3826
  msgstr "Décimales"
3827
 
3828
- #: ../includes/mycred-install.php:483
3829
  msgid "Use zero for no decimals."
3830
  msgstr "Utilisez zéro si vous ne voulez pas de décimales."
3831
 
3832
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3833
  msgid "Presentation"
3834
  msgstr "Présentation"
3835
 
3836
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3837
  msgid "Name (Singular)"
3838
  msgstr "Nom (singulier)"
3839
 
3840
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3841
  msgid "Name (Plural)"
3842
  msgstr "Nom (pluriel)"
3843
 
3844
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3845
  msgid "Prefix"
3846
  msgstr "Préfixe"
3847
 
3848
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3849
  msgid "Suffix"
3850
  msgstr "Suffixe"
3851
 
3852
- #: ../includes/mycred-install.php:511
3853
  msgid "Cancel Setup"
3854
  msgstr "Annuler le paramétrage"
3855
 
3856
- #: ../includes/mycred-install.php:511
3857
  msgid "Cancel"
3858
  msgstr "Annuler"
3859
 
3860
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3861
  msgid "Next"
3862
  msgstr "Suivant"
3863
 
3864
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3865
  msgid "Security"
3866
  msgstr "Sécurité"
3867
 
3868
- #: ../includes/mycred-install.php:546
3869
  msgid "Edit Settings Capability"
3870
  msgstr "Modifier les paramètres"
3871
 
3872
- #: ../includes/mycred-install.php:550
3873
  msgid "Edit Users %plural% Capability"
3874
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
3875
 
3876
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3877
  msgid "Maximum %plural% payouts"
3878
  msgstr "Maximum de %plural% à régler"
3879
 
3880
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
  "As an added security, you can set the maximum amount a user can gain or "
3883
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3890,37 +3903,37 @@ msgstr ""
3890
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
3891
  "désactiver l'option."
3892
 
3893
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3894
  msgid "Exclude those who can \"Edit Settings\"."
3895
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
3896
 
3897
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3898
  msgid "Exclude those who can \"Edit Users %plural%\"."
3899
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
3900
 
3901
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3902
  msgid "Exclude the following user IDs:"
3903
  msgstr "Exclure les utilisateurs (ID) suivants"
3904
 
3905
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3906
  msgid "User Deletions"
3907
  msgstr "Suppression de l'utilisateur"
3908
 
3909
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3910
  msgid "Delete log entries when user is deleted."
3911
  msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
3912
 
3913
- #: ../includes/mycred-install.php:599
3914
  msgid "Ready"
3915
  msgstr "Prêt !"
3916
 
3917
- #: ../includes/mycred-install.php:600
3918
  msgid "Almost done! Click the button below to finish this setup."
3919
  msgstr ""
3920
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
3921
  "configuration."
3922
 
3923
- #: ../includes/mycred-install.php:601
3924
  msgid "Install & Run"
3925
  msgstr "Installer et démarrer"
3926
 
@@ -4203,31 +4216,31 @@ msgstr ""
4203
  msgid "Leaderboard is empty."
4204
  msgstr "Aucun classement à afficher."
4205
 
4206
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4207
  msgid "Amount missing!"
4208
  msgstr "Montant absent !"
4209
 
4210
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4211
  msgid "Log Template Missing!"
4212
  msgstr "Rapport absent !"
4213
 
4214
- #: ../includes/mycred-shortcodes.php:417
4215
  msgid "Anchor missing URL!"
4216
  msgstr "L'ancre de l'URL est absente !"
4217
 
4218
- #: ../includes/mycred-shortcodes.php:482
4219
  msgid "User ID missing for recipient."
4220
  msgstr "L'ID du destinataire est absente !"
4221
 
4222
- #: ../includes/mycred-shortcodes.php:536
4223
  msgid "Sent"
4224
  msgstr "Envoyer"
4225
 
4226
- #: ../includes/mycred-shortcodes.php:537
4227
  msgid "Error - Try Again"
4228
  msgstr "Erreur - essayez encore une fois"
4229
 
4230
- #: ../includes/mycred-shortcodes.php:645
4231
  msgid "A video ID is required for this shortcode"
4232
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4233
 
@@ -4857,7 +4870,7 @@ msgstr ""
4857
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4858
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4859
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4860
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4861
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4862
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4863
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5757,7 +5770,7 @@ msgstr ""
5757
  "utilisateurs connectés)."
5758
 
5759
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5760
- #: gravityforms.php:86
5761
  msgid "No forms found."
5762
  msgstr "Aucun formulaire n'a été trouvé."
5763
 
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 Jun 25 2014 19:45:46 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: French\n"
44
 
45
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
46
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:562
49
  msgid "Processing..."
50
  msgstr "Chargement en cours..."
51
 
106
  msgstr "L'entrée du journal a été mise à jour"
107
 
108
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
109
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
110
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
111
  msgid "Setup"
112
  msgstr "Configuration"
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
180
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
181
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
182
  msgid "Select"
183
  msgstr "sélectionnez"
184
 
392
  msgstr "Payer les Utilisateurs"
393
 
394
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
395
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
396
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
397
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
398
  msgid "Amount"
399
  msgstr "Montant"
400
 
460
  "réinitialiser les cycles."
461
 
462
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
463
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
464
  msgid "Excludes"
465
  msgstr "Exclure"
466
 
489
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
490
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
491
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
492
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
493
  msgid "Payments"
494
  msgstr "Paiements"
495
 
517
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
518
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
519
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
520
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
521
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
522
  #: includes/importers/mycred-cubepoints.php:365
523
  msgid "Point Type"
573
  msgstr "%s Services de Paiements"
574
 
575
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
576
+ #: addon-buy-creds.php:664
577
  msgid "buyCRED Settings"
578
  msgstr "Configuration buyCRED"
579
 
605
  msgstr "Durée"
606
 
607
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
608
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
609
  #: overview.php:173 ../modules/mycred-module-addons.php:190
610
  msgid "Gateway"
611
  msgstr "Service"
612
 
613
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
614
+ #: addon-buy-creds.php:660
615
  msgid "Transaction ID"
616
  msgstr "ID de la transaction"
617
 
651
  msgid "Update Gateway Settings"
652
  msgstr "Mettre à jour la configuration du service de paiement"
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
655
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
656
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
657
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
658
  msgid "User"
659
  msgstr "Utilisateur"
660
 
661
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
662
  #: 640
663
  msgid "Date"
664
  msgstr "Daté"
665
 
666
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
667
  msgid "Payed"
668
  msgstr "Payé"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
671
  msgid "<strong>buy</strong>CRED Purchase Log"
672
  msgstr "Relevé des achats <strong>buy</strong>CRED"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
675
  #: booking/mycred-eventespresso3.php:367
676
  msgid "Gateway Settings"
677
  msgstr "Configuration du service de paiement"
678
 
679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
680
  msgid ""
681
  "Only completed purchases are shown here. Purchases that were cancelled or "
682
  "failed are not logged."
684
  "Seuls les achats entièrement réglés sont affichés ici. Les achats annulés ou "
685
  "interrompus ne sont pas enregistrés et n'apparaissent pas sur ce relevé."
686
 
687
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
688
  #: 743 ../modules/mycred-module-log.php:462
689
  msgid "User Missing"
690
  msgstr "Utilisateur inexistant"
691
 
692
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
693
+ #: content/myCRED-addon-sell-content.php:1109
694
  msgid "No purchases found"
695
  msgstr "Aucun achat trouvé"
696
 
697
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
698
+ #: addon-buy-creds.php:1009
699
  msgid "This Add-on needs to setup before you can use this shortcode."
700
  msgstr ""
701
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
702
  "shortcode."
703
 
704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
705
+ #: addon-buy-creds.php:1027
706
  msgid "No gateways installed."
707
  msgstr "Aucun systme de paiement n'est installé."
708
 
709
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
710
+ #: addon-buy-creds.php:1028
711
  msgid "Gateway does not exist."
712
  msgstr "Le service de paiement n'existe pas."
713
 
714
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
715
  msgid "Yourself"
716
  msgstr "Vous-même"
717
 
718
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
719
  msgid "No active gateways found."
720
  msgstr "Aucun service de paiement n'a été trouvé."
721
 
722
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
723
  msgid "The selected gateway is not active."
724
  msgstr "Ce service de paiement n'est pas activé"
725
 
726
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
727
  #, php-format
728
  msgid "Buy with %gateway%"
729
  msgstr "Régler avec %gateway%"
730
 
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
732
  #: content/myCRED-addon-sell-content.php:44
733
  msgid "Buy Now"
734
  msgstr "Acheter maintenant"
735
 
736
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
737
  msgid "No users found"
738
  msgstr "Aucun membre n'a été trouvé"
739
 
740
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
741
  msgid "To"
742
  msgstr "à"
743
 
744
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
745
  msgid "Select Amount"
746
  msgstr "Sélectionnez le montant"
747
 
748
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
749
  msgid "min."
750
  msgstr "mini."
751
 
752
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
753
  msgid "Select Gateway"
754
  msgstr "Sélectionnez le service de paiement"
755
 
798
  msgstr "Achat annulé"
799
 
800
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
801
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
802
  msgid "required"
803
  msgstr "obligatoire"
804
 
805
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
806
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
807
  msgid "optional"
808
  msgstr "optionnel"
809
 
1432
  msgstr "Aucune promo dans la corbeille"
1433
 
1434
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1435
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1436
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1437
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1438
  #: module-addons.php:179
1439
  msgid "Email Notices"
1440
  msgstr "Messagerie"
1658
  msgid "Apply Coupon"
1659
  msgstr "Appliquer le bon"
1660
 
1661
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1662
+ #: notices/myCRED-addon-email-notices.php:1107
1663
  msgid "Email Notice"
1664
  msgstr "Message à envoyer"
1665
 
1666
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1667
  #: addons/ranks/myCRED-addon-ranks.php:248
1668
  msgid "Add New"
1669
  msgstr "Ajouter"
1670
 
1671
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1672
  msgid "Add New Notice"
1673
  msgstr "Ajouter un message"
1674
 
1675
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1676
  msgid "Edit Notice"
1677
  msgstr "Modifier le message"
1678
 
1679
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1680
  msgid "New Notice"
1681
  msgstr "Nouveau message"
1682
 
1683
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1684
  msgid "View Notice"
1685
  msgstr "Afficher le message"
1686
 
1687
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1688
  msgid "Search Email Notices"
1689
  msgstr "Rechercher un message"
1690
 
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1692
  msgid "No email notices found"
1693
  msgstr "Aucun message trouvé"
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1696
  msgid "No email notices found in Trash"
1697
  msgstr "Il n'y a pas de message dans la corbeille"
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1700
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1701
  #: php:589
1702
  msgid "General"
1703
  msgstr "Général"
1704
 
1705
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1706
  msgid "users balance changes"
1707
  msgstr "le solde a changé"
1708
 
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1710
  msgid "user gains %_plural%"
1711
  msgstr "gains de %_plural%"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1714
  msgid "user lose %_plural%"
1715
  msgstr "perte de %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1718
  msgid "users balance reaches zero"
1719
  msgstr "le solde est à zéro"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1722
  msgid "users balance goes minus"
1723
  msgstr "le solde est négatif"
1724
 
1725
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1726
  msgid "Sell Content Add-on"
1727
  msgstr "Module de vente de contenu"
1728
 
1729
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1730
  msgid "user buys content"
1731
  msgstr "l'utilisateur a acheté du contenu"
1732
 
1733
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1734
  msgid "authors content gets sold"
1735
  msgstr "le contenu de cet auteur a été vendu"
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1738
  msgid "buyCREDs Add-on"
1739
  msgstr "Module achatCRED"
1740
 
1741
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1742
  msgid "user buys %_plural%"
1743
  msgstr "l'utilisateur a acheté des %_plural%"
1744
 
1745
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1746
  msgid "Transfer Add-on"
1747
  msgstr "Module de transfert"
1748
 
1749
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1750
  msgid "user sends %_plural%"
1751
  msgstr "l'utilisateur a envoyé des %_plural%"
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1754
  msgid "user receives %_plural%"
1755
  msgstr "l'utilisateur a reçu des %_plural%"
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1758
  msgid "Ranks Add-on"
1759
  msgstr "Application de classement"
1760
 
1761
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1762
  msgid "user is demoted"
1763
  msgstr "utilisateur rétrogradé"
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1766
  msgid "user is promoted"
1767
  msgstr "utilisateur promu"
1768
 
1769
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1770
  msgid ""
1771
  "Settings that apply to all email notices and can not be overridden for "
1772
  "individual emails."
1774
  "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
1775
  "appliqués individuellement."
1776
 
1777
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1778
  msgid "Email Format"
1779
  msgstr "Format des mails"
1780
 
1781
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1782
  msgid "Plain text emails only."
1783
  msgstr "Format texte uniquement"
1784
 
1785
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1786
  msgid "HTML or Plain text emails."
1787
  msgstr "Format texte ou HTML"
1788
 
1789
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1790
  msgid "Filters"
1791
  msgstr "Filtres de recherche"
1792
 
1793
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1794
  msgid ""
1795
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1796
  "an email is sent."
1798
  "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi "
1799
  "d'un mail."
1800
 
1801
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1802
  msgid ""
1803
  "Allow WordPress and Third Party Plugins to filter the email content before "
1804
  "an email is sent."
1806
  "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
1807
  "d'un mail."
1808
 
1809
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1810
+ #: notices/myCRED-addon-email-notices.php:305
1811
  msgid "Email Schedule"
1812
  msgstr ""
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1815
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1816
  msgstr ""
1817
 
1818
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1819
  msgid "Send emails immediately"
1820
  msgstr ""
1821
 
1822
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1823
  msgid "Send emails once an hour"
1824
  msgstr ""
1825
 
1826
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1827
  msgid "Send emails once a day"
1828
  msgstr ""
1829
 
1830
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1831
  msgid "Subscriptions"
1832
  msgstr ""
1833
 
1834
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1835
  #, php-format
1836
  msgid ""
1837
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1838
  "updates."
1839
  msgstr ""
1840
 
1841
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1842
  msgid "SMTP Override"
1843
  msgstr ""
1844
 
1845
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1846
  msgid ""
1847
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1848
  "use a SMTP plugin for emails."
1849
  msgstr ""
1850
 
1851
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1852
  msgid ""
1853
  "Default email settings. These settings can be individually overridden when "
1854
  "editing emails."
1856
  "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
1857
  "lors de la modification d'un mail."
1858
 
1859
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1860
+ #: notices/myCRED-addon-email-notices.php:771
1861
  msgid "Email Settings"
1862
  msgstr "Configuration des mails"
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:894
1866
  msgid "Senders Name:"
1867
  msgstr "Expéditeur:"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:896
1871
  msgid "Senders Email:"
1872
  msgstr "Email de l'expéditeur"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1875
  msgid "Reply-To:"
1876
  msgstr "Adresse de réponse:"
1877
 
1878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1879
  msgid "Default Email Content"
1880
  msgstr "Contenu par défaut"
1881
 
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1883
  msgid "Default email content."
1884
  msgstr "contenu par défaut"
1885
 
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1887
  msgid "Default Email Styling"
1888
  msgstr "Style par défaut"
1889
 
1890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1891
  msgid "Ignored if HTML is not allowed in emails."
1892
  msgstr "Sera ignoré si HTML désactivé pour les mails"
1893
 
1894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1895
+ #: notices/myCRED-addon-email-notices.php:820
1896
  msgid "Email Subject"
1897
  msgstr "Sujet du mail"
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1900
  msgid "Status"
1901
  msgstr "Statut"
1902
 
1903
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1904
  msgid "Not Active"
1905
  msgstr "Inactif"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1908
  #, php-format
1909
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1910
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1913
  msgid "Active"
1914
  msgstr "Actif"
1915
 
1916
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1917
  #, php-format
1918
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1919
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1922
  msgid "Email is sent when"
1923
  msgstr "Le mail sera envoyé quand"
1924
 
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1926
  msgid "Missing instance for this notice!"
1927
  msgstr "Ce message n'est pas instancié !"
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1930
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1931
+ #: addon-email-notices.php:759
1932
  msgid "Sent To"
1933
  msgstr "Envoyer à"
1934
 
1935
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1936
+ #: notices/myCRED-addon-email-notices.php:885
1937
  msgid "Administrator"
1938
  msgstr "Administrateur"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1941
  msgid "Both Administrator and User"
1942
  msgstr "A l'administrateur et à l'utilisateur"
1943
 
1944
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1945
  msgid "Available Template Tags"
1946
  msgstr "Mots-clés utilisables ici"
1947
 
1948
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1949
  msgid "Email Header"
1950
  msgstr "En-tête du mail"
1951
 
1952
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1953
  msgid "Send this email notice when..."
1954
  msgstr "Envoyer ce mail quand...."
1955
 
1956
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1957
  msgid "Recipient:"
1958
  msgstr "Destinataire:"
1959
 
1960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1961
  msgid "Both"
1962
  msgstr "Les deux"
1963
 
1964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1965
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1966
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1967
  #: module-settings.php:526
1968
  msgid "Label"
1969
  msgstr "Etiquette"
1970
 
1971
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1972
  msgid "Reply-To Email:"
1973
  msgstr "Adresse de réponse"
1974
 
1975
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1976
  msgid "Save"
1977
  msgstr "Enregistrer"
1978
 
1979
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1980
  msgid "CSS Styling"
1981
  msgstr "Règles de style"
1982
 
1983
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1984
  msgid "Site Related"
1985
  msgstr "A propos du site"
1986
 
1987
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1988
  msgid "Your websites title"
1989
  msgstr "Titre de votre site"
1990
 
1991
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1992
  msgid "Your websites address"
1993
  msgstr "Adresse de votre site"
1994
 
1995
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1996
  msgid "Your websites tagline (description)"
1997
  msgstr "Description de votre site"
1998
 
1999
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
2000
  msgid "Your websites admin email"
2001
  msgstr "Email de l'administrateur du site"
2002
 
2003
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
2004
  msgid "Total number of blog members"
2005
  msgstr "Total des membres de votre blog"
2006
 
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2008
+ #: notices/myCRED-addon-email-notices.php:1018
2009
  #, php-format
2010
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2011
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
2012
 
2013
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2014
  msgid "Email Notice Activated"
2015
  msgstr "Message activé"
2016
 
2017
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2018
  msgid "Email Notice Saved"
2019
  msgstr "Message enregistré"
2020
 
2021
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
2022
  #, php-format
2023
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2024
  msgstr ""
2025
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
2026
  "messages</a>."
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
2029
  #, php-format
2030
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2031
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2034
  msgid ""
2035
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2036
  "are not yet ready to use this email notice!"
2039
  "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2040
  "l'utiliser."
2041
 
2042
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2043
  #, php-format
2044
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2045
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2046
 
2047
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2048
  msgid "This email notice is active."
2049
  msgstr "Ce message est activé."
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2052
  msgid "Settings saved."
2053
  msgstr ""
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2056
  msgid "Unsubscribe"
2057
  msgstr ""
2058
 
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2060
  msgid "There are no email notifications yet."
2061
  msgstr ""
2062
 
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2064
  msgid "Save Changes"
2065
  msgstr ""
2066
 
2067
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2068
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2069
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2070
+ #: php:412 ../includes/mycred-admin.php:491
2071
  msgid "Current Balance"
2072
  msgstr "Solde actuel"
2073
 
2522
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2523
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2524
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2525
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2526
+ #: sell-content.php:587
2527
  msgid "Button Label"
2528
  msgstr "Intitulé du bouton"
2529
 
2536
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2537
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2538
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2539
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2540
+ #: sell-content.php:583
2541
  msgid "Price"
2542
  msgstr "Prix"
2543
 
2559
  msgstr "Vue d&#39;ensemble"
2560
 
2561
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2562
+ #: includes/mycred-admin.php:496
2563
  msgid "Log Entry"
2564
  msgstr "Journal d'activité"
2565
 
3149
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
3150
 
3151
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3152
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3153
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3154
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3155
  msgid "error"
3156
  msgstr "erreur"
3157
 
3171
  msgid "Hours"
3172
  msgstr "Heures"
3173
 
3174
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3175
  msgid "You can not buy this content."
3176
  msgstr "Vous ne pouvez pas acheter ce contenu."
3177
 
3178
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3179
  msgid "Error. Try Again"
3180
  msgstr "Erreur, veuillez recommencer."
3181
 
3182
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3183
  msgid "No Payout. Just charge."
3184
  msgstr "Pas de paiement. Uniquement facturer."
3185
 
3186
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3187
  msgid "Pay Content Author."
3188
  msgstr "Payer l'auteur du contenu"
3189
 
3190
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3191
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3192
  #: addons.php:224
3193
  msgid "Sell Content"
3194
  msgstr "Vendre du contenu"
3195
 
3196
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3197
  msgid "Post Types"
3198
  msgstr "Post Types"
3199
 
3200
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3201
  msgid "Comma separated list of post types that can be sold."
3202
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3203
 
3204
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3205
  msgid "Percentage to pay Author"
3206
  msgstr "Pourcentage à verser à l'auteur"
3207
 
3208
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3209
  msgid ""
3210
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3211
  "authors are not paid."
3213
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3214
  "les auteurs ne sont pas payables."
3215
 
3216
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3217
  msgid "Defaults"
3218
  msgstr "Par défaut"
3219
 
3220
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3221
  msgid "Allow authors to change price."
3222
  msgstr "Autoriser les auteurs à modifier le prix"
3223
 
3224
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3225
  msgid "Allow authors to change button label."
3226
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3227
 
3228
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3229
  msgid "Purchases expire after"
3230
  msgstr "L'achat expire après"
3231
 
3232
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3233
  msgid "Use zero for permanent sales."
3234
  msgstr "Indiquez zéro pour des ventes permanentes"
3235
 
3236
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3237
  msgid "Sale Template for non members"
3238
  msgstr "Template des ventes pour les non mebmres"
3239
 
3240
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3241
  #, php-format
3242
  msgid ""
3243
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3246
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3247
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3248
 
3249
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3250
  msgid "Sale Template for members"
3251
  msgstr "Template des ventes pour les membres"
3252
 
3253
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3254
+ #: content/myCRED-addon-sell-content.php:428
3255
  #, php-format
3256
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3257
  msgstr ""
3258
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3259
  "achat fonctionne !"
3260
 
3261
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3262
  msgid "Insufficient funds template"
3263
  msgstr "Template de page pour fonds insuffisants"
3264
 
3265
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3266
  msgid "Log template for Purchases"
3267
  msgstr "Template de connexion pour les achats"
3268
 
3269
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3270
  msgid "Log template for Sales"
3271
  msgstr "Template de connexion pour les ventes"
3272
 
3273
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3274
  #, php-format
3275
  msgid "%s Sell This"
3276
  msgstr "%s a vendu ceci"
3277
 
3278
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3279
  #, php-format
3280
  msgid "%s Sell Content needs to be setup before you can use this feature."
3281
  msgstr ""
3282
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3283
  "cette fonctionnalité."
3284
 
3285
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3286
  msgid "Setup add-on"
3287
  msgstr "Configuration du module"
3288
 
3289
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3290
  msgid "Lets do it"
3291
  msgstr "Faisons cela"
3292
 
3293
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3294
+ #, php-format
3295
+ msgid "Enable sale of this %s"
3296
+ msgstr ""
3297
 
3298
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3299
  msgid "Purchase expires after"
3300
  msgstr "Les achats expirent après"
3301
 
3302
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3303
  msgid "Thank you for your purchase!"
3304
  msgstr "Merci pour votre achat"
3305
 
3306
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3307
+ #: content/myCRED-addon-sell-content.php:1091
3308
  msgid "The following content is set for sale:"
3309
  msgstr "Le contenu suivant est prévu à la vente:"
3310
 
3311
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3312
  msgid "Purchased"
3313
  msgstr "Acheté"
3314
 
3597
  msgid "Excluded"
3598
  msgstr "Exclus"
3599
 
3600
+ #: ../includes/mycred-admin.php:282
3601
+ #, php-format
3602
+ msgid "Total: %s"
3603
+ msgstr ""
3604
+
3605
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3606
  #: modules/mycred-module-log.php:251
3607
  msgid "History"
3608
  msgstr "Mes points"
3609
 
3610
+ #: ../includes/mycred-admin.php:292
3611
  msgid "Adjust"
3612
  msgstr "Ajustement"
3613
 
3614
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3615
  #, php-format
3616
  msgid "%singular% balance"
3617
  msgstr "solde de %singular%"
3618
 
3619
+ #: ../includes/mycred-admin.php:372
3620
  msgid "Adjust Your Balance"
3621
  msgstr "Ajuster votre relevé"
3622
 
3623
+ #: ../includes/mycred-admin.php:374
3624
  msgid "Adjust Users Balance"
3625
  msgstr "Ajuster le relevé de l'utilisateur"
3626
 
3627
+ #: ../includes/mycred-admin.php:385
3628
  msgid "Log description for adjustment"
3629
  msgstr "Descriptif de connexion pour ajustement"
3630
 
3631
+ #: ../includes/mycred-admin.php:388
3632
  msgid "Update"
3633
  msgstr "Mis à jour"
3634
 
3635
+ #: ../includes/mycred-admin.php:389
3636
  msgid "Description is required!"
3637
  msgstr "La description est obligatoire !"
3638
 
3639
+ #: ../includes/mycred-admin.php:489
3640
  msgid "ID"
3641
  msgstr "ID"
3642
 
3643
+ #: ../includes/mycred-admin.php:495
3644
  msgid "A positive or negative value"
3645
  msgstr "Une valeur positive ou négative"
3646
 
3647
+ #: ../includes/mycred-admin.php:497
3648
  msgid "Update Balance"
3649
  msgstr "Mettre à jour le solde"
3650
 
3772
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3773
  msgstr "myCRED requiert SQL 5.0 ou sup&eacute;rieur. Version trouv&eacute;e: "
3774
 
3775
+ #: ../includes/mycred-install.php:53
3776
+ msgid ""
3777
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3778
+ "check your PHP configuration or contact your host and ask them to enable it "
3779
+ "for you!"
3780
+ msgstr ""
3781
+
3782
+ #: ../includes/mycred-install.php:58
3783
  msgid ""
3784
  "Sorry but your WordPress installation does not reach the minimum "
3785
  "requirements for running myCRED. The following errors were given:"
3788
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3789
  "apparues:"
3790
 
3791
+ #: ../includes/mycred-install.php:247
3792
  msgid "myCRED needs your attention."
3793
  msgstr "myCRED requiert votre attention."
3794
 
3795
+ #: ../includes/mycred-install.php:247
3796
  msgid "Run Setup"
3797
  msgstr "Démarrer l'installation"
3798
 
3799
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3800
  msgid "myCRED Setup"
3801
  msgstr "Installation de myCRED"
3802
 
3803
+ #: ../includes/mycred-install.php:389
3804
  #, php-format
3805
  msgid "%s Setup"
3806
  msgstr "Configuration %s"
3807
 
3808
+ #: ../includes/mycred-install.php:391
3809
  msgid "Step"
3810
  msgstr "Etape"
3811
 
3812
+ #: ../includes/mycred-install.php:415
3813
  msgid ""
3814
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3815
  "points format, layout and security settings."
3818
  "alors en mesure de choisir le format de points, l'apparence et les "
3819
  "paramètres de sécurité."
3820
 
3821
+ #: ../includes/mycred-install.php:416
3822
  msgid "Begin Setup"
3823
  msgstr "Démarrer le paramétrage"
3824
 
3825
+ #: ../includes/mycred-install.php:471
3826
  msgid "Select the format you want to use for your points."
3827
  msgstr "Choisissez le format que vous voulez utiliser pour vos points"
3828
 
3829
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3830
  msgid "Format"
3831
  msgstr "Formatage"
3832
 
3833
+ #: ../includes/mycred-install.php:475
3834
  msgid "Separators"
3835
  msgstr "Séparateurs"
3836
 
3837
+ #: ../includes/mycred-install.php:485
3838
  msgid "Decimals"
3839
  msgstr "Décimales"
3840
 
3841
+ #: ../includes/mycred-install.php:487
3842
  msgid "Use zero for no decimals."
3843
  msgstr "Utilisez zéro si vous ne voulez pas de décimales."
3844
 
3845
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3846
  msgid "Presentation"
3847
  msgstr "Présentation"
3848
 
3849
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3850
  msgid "Name (Singular)"
3851
  msgstr "Nom (singulier)"
3852
 
3853
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3854
  msgid "Name (Plural)"
3855
  msgstr "Nom (pluriel)"
3856
 
3857
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3858
  msgid "Prefix"
3859
  msgstr "Préfixe"
3860
 
3861
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3862
  msgid "Suffix"
3863
  msgstr "Suffixe"
3864
 
3865
+ #: ../includes/mycred-install.php:515
3866
  msgid "Cancel Setup"
3867
  msgstr "Annuler le paramétrage"
3868
 
3869
+ #: ../includes/mycred-install.php:515
3870
  msgid "Cancel"
3871
  msgstr "Annuler"
3872
 
3873
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3874
  msgid "Next"
3875
  msgstr "Suivant"
3876
 
3877
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3878
  msgid "Security"
3879
  msgstr "Sécurité"
3880
 
3881
+ #: ../includes/mycred-install.php:550
3882
  msgid "Edit Settings Capability"
3883
  msgstr "Modifier les paramètres"
3884
 
3885
+ #: ../includes/mycred-install.php:554
3886
  msgid "Edit Users %plural% Capability"
3887
  msgstr "Modifier la capacit&eacute; de %plural% des utilisateurs"
3888
 
3889
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3890
  msgid "Maximum %plural% payouts"
3891
  msgstr "Maximum de %plural% à régler"
3892
 
3893
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3894
  msgid ""
3895
  "As an added security, you can set the maximum amount a user can gain or "
3896
  "loose in a single instance. If used, make sure this is the maximum amount a "
3903
  "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
3904
  "désactiver l'option."
3905
 
3906
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3907
  msgid "Exclude those who can \"Edit Settings\"."
3908
  msgstr "Exclure ceux qui peuvent \"modifier les réglages\"."
3909
 
3910
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3911
  msgid "Exclude those who can \"Edit Users %plural%\"."
3912
  msgstr "Exclure ceux qui peuvent \"modifier les %_points% de l'utilisateur\"."
3913
 
3914
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3915
  msgid "Exclude the following user IDs:"
3916
  msgstr "Exclure les utilisateurs (ID) suivants"
3917
 
3918
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3919
  msgid "User Deletions"
3920
  msgstr "Suppression de l'utilisateur"
3921
 
3922
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3923
  msgid "Delete log entries when user is deleted."
3924
  msgstr "supprimer les données attachées lors de la suppression de l'utilisateur"
3925
 
3926
+ #: ../includes/mycred-install.php:603
3927
  msgid "Ready"
3928
  msgstr "Prêt !"
3929
 
3930
+ #: ../includes/mycred-install.php:604
3931
  msgid "Almost done! Click the button below to finish this setup."
3932
  msgstr ""
3933
  "C'est presque fini ! Cliquez sur le bouton ci-dessous pour terminer cette "
3934
  "configuration."
3935
 
3936
+ #: ../includes/mycred-install.php:605
3937
  msgid "Install & Run"
3938
  msgstr "Installer et démarrer"
3939
 
4216
  msgid "Leaderboard is empty."
4217
  msgstr "Aucun classement à afficher."
4218
 
4219
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4220
  msgid "Amount missing!"
4221
  msgstr "Montant absent !"
4222
 
4223
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4224
  msgid "Log Template Missing!"
4225
  msgstr "Rapport absent !"
4226
 
4227
+ #: ../includes/mycred-shortcodes.php:444
4228
  msgid "Anchor missing URL!"
4229
  msgstr "L'ancre de l'URL est absente !"
4230
 
4231
+ #: ../includes/mycred-shortcodes.php:509
4232
  msgid "User ID missing for recipient."
4233
  msgstr "L'ID du destinataire est absente !"
4234
 
4235
+ #: ../includes/mycred-shortcodes.php:563
4236
  msgid "Sent"
4237
  msgstr "Envoyer"
4238
 
4239
+ #: ../includes/mycred-shortcodes.php:564
4240
  msgid "Error - Try Again"
4241
  msgstr "Erreur - essayez encore une fois"
4242
 
4243
+ #: ../includes/mycred-shortcodes.php:672
4244
  msgid "A video ID is required for this shortcode"
4245
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4246
 
4870
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4871
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4872
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4873
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4874
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4875
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4876
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5770
  "utilisateurs connectés)."
5771
 
5772
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5773
+ #: gravityforms.php:115
5774
  msgid "No forms found."
5775
  msgstr "Aucun formulaire n'a été trouvé."
5776
 
lang/mycred-pt_BR.mo CHANGED
Binary file
lang/mycred-pt_BR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:27:07 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Portuguese (Brazil)\n"
@@ -19,10 +19,10 @@ msgstr ""
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
 
22
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
  "content/plugins/mycred\n"
24
- "X-Poedit-SearchPath-1: .\n"
25
- "X-Loco-Target-Locale: pt_BR"
26
 
27
  #: ../mycred.php:400
28
  msgid "Balance"
@@ -47,8 +47,8 @@ msgstr "Pessoas incríveis"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
- #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Processando..."
54
 
@@ -109,7 +109,7 @@ msgid "Log entry updated"
109
  msgstr "Registro de entradas atualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Instalação"
@@ -179,7 +179,7 @@ msgstr "Uma vez por dia (reiniciar a meia-noite)"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
183
  msgid "Select"
184
  msgstr "Selecionar"
185
 
@@ -390,9 +390,9 @@ msgid "Pay Users"
390
  msgstr "Usuários pagantes"
391
 
392
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
393
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
394
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
395
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
396
  msgid "Amount"
397
  msgstr "Quantia"
398
 
@@ -457,7 +457,7 @@ msgstr ""
457
  "reativado. Defina os ciclos como zero para reiniciar."
458
 
459
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
460
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
461
  msgid "Excludes"
462
  msgstr "Excluir"
463
 
@@ -486,7 +486,7 @@ msgstr "Registro de compra"
486
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
487
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
488
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
489
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
490
  msgid "Payments"
491
  msgstr "Pagamentos"
492
 
@@ -514,7 +514,7 @@ msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão s
514
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
515
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
516
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
517
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
518
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
519
  #: includes/importers/mycred-cubepoints.php:365
520
  msgid "Point Type"
@@ -570,7 +570,7 @@ msgid "%s Payment Gateways"
570
  msgstr "%s Métodos de pagamento"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
573
- #: addon-buy-creds.php:663
574
  msgid "buyCRED Settings"
575
  msgstr "Configurações do buyCRED"
576
 
@@ -602,13 +602,13 @@ msgid "Time"
602
  msgstr "Tempo"
603
 
604
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
605
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
606
  #: overview.php:173 ../modules/mycred-module-addons.php:190
607
  msgid "Gateway"
608
  msgstr "Métodos de pagamento"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
611
- #: addon-buy-creds.php:659
612
  msgid "Transaction ID"
613
  msgstr "ID da transação"
614
 
@@ -648,32 +648,32 @@ msgstr "Habilitar para compras de teste."
648
  msgid "Update Gateway Settings"
649
  msgstr "Atualizar configurações do método"
650
 
651
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
652
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
653
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
654
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
655
  msgid "User"
656
  msgstr "Usuário"
657
 
658
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
659
  #: 640
660
  msgid "Date"
661
  msgstr "Data"
662
 
663
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
664
  msgid "Payed"
665
  msgstr "Pago"
666
 
667
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
668
  msgid "<strong>buy</strong>CRED Purchase Log"
669
  msgstr "Registro de compra do <strong>buy</strong>CRED"
670
 
671
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
672
  #: booking/mycred-eventespresso3.php:367
673
  msgid "Gateway Settings"
674
  msgstr "Configurações do método"
675
 
676
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
677
  msgid ""
678
  "Only completed purchases are shown here. Purchases that were cancelled or "
679
  "failed are not logged."
@@ -681,70 +681,70 @@ msgstr ""
681
  "Apenas compras concluídas são mostradas aqui. As compras que foram "
682
  "canceladas ou que falharam não são registradas."
683
 
684
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
685
  #: 743 ../modules/mycred-module-log.php:462
686
  msgid "User Missing"
687
  msgstr "Usuário ausente"
688
 
689
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
690
- #: content/myCRED-addon-sell-content.php:1112
691
  msgid "No purchases found"
692
  msgstr "Nenhuma compra encontrada"
693
 
694
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
695
- #: addon-buy-creds.php:1008
696
  msgid "This Add-on needs to setup before you can use this shortcode."
697
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
698
 
699
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
700
- #: addon-buy-creds.php:1026
701
  msgid "No gateways installed."
702
  msgstr "Nenhum método instalado."
703
 
704
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
705
- #: addon-buy-creds.php:1027
706
  msgid "Gateway does not exist."
707
  msgstr "Método não existe."
708
 
709
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
710
  msgid "Yourself"
711
  msgstr "Você mesmo"
712
 
713
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
714
  msgid "No active gateways found."
715
  msgstr "Nenhum método ativo foi encontrado."
716
 
717
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
718
  msgid "The selected gateway is not active."
719
  msgstr "O método selecionado não está ativo."
720
 
721
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
722
  #, php-format
723
  msgid "Buy with %gateway%"
724
  msgstr "Compre com %gateway%"
725
 
726
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
727
  #: content/myCRED-addon-sell-content.php:44
728
  msgid "Buy Now"
729
  msgstr "Comprar agora"
730
 
731
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
732
  msgid "No users found"
733
  msgstr "Nenhum usuário encontrado"
734
 
735
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
736
  msgid "To"
737
  msgstr "Para"
738
 
739
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
740
  msgid "Select Amount"
741
  msgstr "Selecionar a quantia"
742
 
743
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
744
  msgid "min."
745
  msgstr "min."
746
 
747
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
748
  msgid "Select Gateway"
749
  msgstr "Selecione o método"
750
 
@@ -791,12 +791,12 @@ msgid "Cancel purchase"
791
  msgstr "Cancelar compra"
792
 
793
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
794
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
795
  msgid "required"
796
  msgstr "obrigatório"
797
 
798
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
799
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
800
  msgid "optional"
801
  msgstr "opcional"
802
 
@@ -932,7 +932,7 @@ msgstr "Transação duplicada"
932
  #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
933
  #: php:25 ../addons/buy-creds/gateways/skrill.php:30
934
  msgid "Purchase of myCRED %plural%"
935
- msgstr "Compra de %plural% do myCRED"
936
 
937
  #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
938
  #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
@@ -1416,9 +1416,9 @@ msgid "No coupons found in Trash"
1416
  msgstr "Nenhum cupom encontrado no lixo"
1417
 
1418
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1419
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1420
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1421
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1422
  #: module-addons.php:179
1423
  msgid "Email Notices"
1424
  msgstr "Avisos por e-mail"
@@ -1640,115 +1640,115 @@ msgstr "Rresgatar cupom"
1640
  msgid "Apply Coupon"
1641
  msgstr "Aplicar cupom"
1642
 
1643
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1644
- #: notices/myCRED-addon-email-notices.php:1138
1645
  msgid "Email Notice"
1646
  msgstr "E-mail de aviso"
1647
 
1648
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1649
  #: addons/ranks/myCRED-addon-ranks.php:248
1650
  msgid "Add New"
1651
  msgstr "Adicionar novo"
1652
 
1653
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1654
  msgid "Add New Notice"
1655
  msgstr "Adicionar novo aviso"
1656
 
1657
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1658
  msgid "Edit Notice"
1659
  msgstr "Editar aviso"
1660
 
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1662
  msgid "New Notice"
1663
  msgstr "Novo aviso"
1664
 
1665
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1666
  msgid "View Notice"
1667
  msgstr "Ver aviso"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1670
  msgid "Search Email Notices"
1671
  msgstr "Buscar e-mail de aviso"
1672
 
1673
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1674
  msgid "No email notices found"
1675
  msgstr "Nenhum e-mail de aviso encontrado"
1676
 
1677
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1678
  msgid "No email notices found in Trash"
1679
  msgstr "Nenhum e-mail de aviso encontrado na Lixeira"
1680
 
1681
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1682
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1683
  #: php:589
1684
  msgid "General"
1685
  msgstr "Geral"
1686
 
1687
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1688
  msgid "users balance changes"
1689
  msgstr "alteração de saldo dos usuários"
1690
 
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1692
  msgid "user gains %_plural%"
1693
  msgstr "ganhos de %_plural% do usuário"
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1696
  msgid "user lose %_plural%"
1697
  msgstr "perdas de %_plural% do usuário"
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1700
  msgid "users balance reaches zero"
1701
  msgstr "o saldo dos usuários chegou a zero"
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1704
  msgid "users balance goes minus"
1705
  msgstr "o saldo dos usuários alcançou o mínimo"
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1708
  msgid "Sell Content Add-on"
1709
  msgstr "Add-on Vender Conteúdo"
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1712
  msgid "user buys content"
1713
  msgstr "usuário compra conteúdo"
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1716
  msgid "authors content gets sold"
1717
  msgstr "autor do conteúdo recebe por venda"
1718
 
1719
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1720
  msgid "buyCREDs Add-on"
1721
  msgstr "Add-on buyCREDs"
1722
 
1723
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1724
  msgid "user buys %_plural%"
1725
  msgstr "usuário compra %_plural%"
1726
 
1727
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1728
  msgid "Transfer Add-on"
1729
  msgstr "Add-on Transfer"
1730
 
1731
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1732
  msgid "user sends %_plural%"
1733
  msgstr "usuário envia %_plural%"
1734
 
1735
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1736
  msgid "user receives %_plural%"
1737
  msgstr "usuário recebe %_plural%"
1738
 
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1740
  msgid "Ranks Add-on"
1741
  msgstr "Add-on Ranks"
1742
 
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1744
  msgid "user is demoted"
1745
  msgstr "usuário é rebaixado"
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1748
  msgid "user is promoted"
1749
  msgstr "usuário é promovido"
1750
 
1751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1752
  msgid ""
1753
  "Settings that apply to all email notices and can not be overridden for "
1754
  "individual emails."
@@ -1756,23 +1756,23 @@ msgstr ""
1756
  "Definições que se aplicam a todos os avisos por e-mail e não podem ser "
1757
  "substituídas por e-mails individuais."
1758
 
1759
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1760
  msgid "Email Format"
1761
  msgstr "Formato do e-mail"
1762
 
1763
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1764
  msgid "Plain text emails only."
1765
  msgstr "E-mail com apenas texto"
1766
 
1767
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1768
  msgid "HTML or Plain text emails."
1769
  msgstr "E-mail texto e HTML"
1770
 
1771
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1772
  msgid "Filters"
1773
  msgstr "Filtros"
1774
 
1775
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1776
  msgid ""
1777
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1778
  "an email is sent."
@@ -1780,7 +1780,7 @@ msgstr ""
1780
  "Permitir o WordPress e plug-ins de terceiros filtrar o assunto do email "
1781
  "antes de enviar um e-mail."
1782
 
1783
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1784
  msgid ""
1785
  "Allow WordPress and Third Party Plugins to filter the email content before "
1786
  "an email is sent."
@@ -1788,49 +1788,53 @@ msgstr ""
1788
  "Permitir o WordPress e plug-ins de terceiros filtrar o conteúdo do email "
1789
  "antes de enviar um e-mail."
1790
 
1791
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1792
- #: notices/myCRED-addon-email-notices.php:303
1793
  msgid "Email Schedule"
1794
- msgstr ""
1795
 
1796
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1797
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1798
- msgstr ""
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1801
  msgid "Send emails immediately"
1802
- msgstr ""
1803
 
1804
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1805
  msgid "Send emails once an hour"
1806
- msgstr ""
1807
 
1808
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1809
  msgid "Send emails once a day"
1810
- msgstr ""
1811
 
1812
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1813
  msgid "Subscriptions"
1814
- msgstr ""
1815
 
1816
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1817
  #, php-format
1818
  msgid ""
1819
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1820
  "updates."
1821
  msgstr ""
 
 
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1824
  msgid "SMTP Override"
1825
- msgstr ""
1826
 
1827
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1828
  msgid ""
1829
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1830
  "use a SMTP plugin for emails."
1831
  msgstr ""
 
 
1832
 
1833
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1834
  msgid ""
1835
  "Default email settings. These settings can be individually overridden when "
1836
  "editing emails."
@@ -1838,181 +1842,181 @@ msgstr ""
1838
  "Configurações padrões de e-mail. Essas configurações podem ser substituídas "
1839
  "individualmente ao editar os e-mails."
1840
 
1841
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1842
- #: notices/myCRED-addon-email-notices.php:802
1843
  msgid "Email Settings"
1844
  msgstr "Configurações de e-mail"
1845
 
1846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1847
- #: notices/myCRED-addon-email-notices.php:925
1848
  msgid "Senders Name:"
1849
  msgstr "Nome do remetente:"
1850
 
1851
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1852
- #: notices/myCRED-addon-email-notices.php:927
1853
  msgid "Senders Email:"
1854
  msgstr "E-mail do remetente:"
1855
 
1856
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1857
  msgid "Reply-To:"
1858
  msgstr "Responder para:"
1859
 
1860
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1861
  msgid "Default Email Content"
1862
  msgstr "Conteúdo padrão do e-mail"
1863
 
1864
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1865
  msgid "Default email content."
1866
  msgstr "Conteúdo padrão do e-mail."
1867
 
1868
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1869
  msgid "Default Email Styling"
1870
  msgstr "Estilo padrão do e-mail"
1871
 
1872
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1873
  msgid "Ignored if HTML is not allowed in emails."
1874
  msgstr "Ignorar se HTML não é permitido nos e-mails."
1875
 
1876
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1877
- #: notices/myCRED-addon-email-notices.php:851
1878
  msgid "Email Subject"
1879
  msgstr "Assunto do e-mail"
1880
 
1881
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1882
  msgid "Status"
1883
  msgstr "Status"
1884
 
1885
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1886
  msgid "Not Active"
1887
  msgstr "Desativado"
1888
 
1889
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1890
  #, php-format
1891
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1892
  msgstr "Agendado:<br /><strong>%1$s</strong>"
1893
 
1894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1895
  msgid "Active"
1896
  msgstr "Ativado"
1897
 
1898
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1899
  #, php-format
1900
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1901
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
1902
 
1903
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1904
  msgid "Email is sent when"
1905
  msgstr "O e-mail é enviado quando"
1906
 
1907
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1908
  msgid "Missing instance for this notice!"
1909
  msgstr "Falta instância para este aviso!"
1910
 
1911
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1912
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1913
- #: addon-email-notices.php:790
1914
  msgid "Sent To"
1915
  msgstr "Enviar para"
1916
 
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1918
- #: notices/myCRED-addon-email-notices.php:916
1919
  msgid "Administrator"
1920
  msgstr "Administrador"
1921
 
1922
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1923
  msgid "Both Administrator and User"
1924
  msgstr "Ambos, administrador e usuário"
1925
 
1926
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1927
  msgid "Available Template Tags"
1928
  msgstr "Modelos de etiquetas disponíveis"
1929
 
1930
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1931
  msgid "Email Header"
1932
  msgstr "Cabeçalho do e-mail"
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1935
  msgid "Send this email notice when..."
1936
  msgstr "Enviar este e-mail de aviso quando..."
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1939
  msgid "Recipient:"
1940
  msgstr "Destinatário:"
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1943
  msgid "Both"
1944
  msgstr "Ambos"
1945
 
1946
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1947
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1948
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1949
  #: module-settings.php:526
1950
  msgid "Label"
1951
  msgstr "Rótulo"
1952
 
1953
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1954
  msgid "Reply-To Email:"
1955
  msgstr "E-mail do Responder para:"
1956
 
1957
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1958
  msgid "Save"
1959
  msgstr "Salvar"
1960
 
1961
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1962
  msgid "CSS Styling"
1963
  msgstr "Estilo CSS"
1964
 
1965
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1966
  msgid "Site Related"
1967
  msgstr "Site relacionado"
1968
 
1969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1970
  msgid "Your websites title"
1971
  msgstr "Título do seu site"
1972
 
1973
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1974
  msgid "Your websites address"
1975
  msgstr "Endereço do seu site"
1976
 
1977
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1978
  msgid "Your websites tagline (description)"
1979
  msgstr "Slogan do seu site (descrição)"
1980
 
1981
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1982
  msgid "Your websites admin email"
1983
  msgstr "E-mail de administração do seu site"
1984
 
1985
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1986
  msgid "Total number of blog members"
1987
  msgstr "Número total de usuários do blog"
1988
 
1989
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1990
- #: notices/myCRED-addon-email-notices.php:1049
1991
  #, php-format
1992
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1993
  msgstr "E-mail de aviso atualizado. Ver <a href=\"%1$s\">Todos os avisos</a>."
1994
 
1995
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1996
  msgid "Email Notice Activated"
1997
  msgstr "E-mail de aviso ativado"
1998
 
1999
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2000
  msgid "Email Notice Saved"
2001
  msgstr "E-mail de aviso salvo"
2002
 
2003
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2004
  #, php-format
2005
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2006
  msgstr ""
2007
  "E-mail de aviso enviado para aprovação. Ver <a href=\"%1$s\">Todos os "
2008
  "avisos</a>."
2009
 
2010
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2011
  #, php-format
2012
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2013
  msgstr "E-mail de aviso agendado para: <strong>%1$s</strong>."
2014
 
2015
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2016
  msgid ""
2017
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2018
  "are not yet ready to use this email notice!"
@@ -2020,35 +2024,35 @@ msgstr ""
2020
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2021
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2022
 
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2024
  #, php-format
2025
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2026
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2027
 
2028
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2029
  msgid "This email notice is active."
2030
  msgstr "Este e-mail de aviso está ativo."
2031
 
2032
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2033
  msgid "Settings saved."
2034
- msgstr ""
2035
 
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2037
  msgid "Unsubscribe"
2038
- msgstr ""
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2041
  msgid "There are no email notifications yet."
2042
- msgstr ""
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2045
  msgid "Save Changes"
2046
- msgstr ""
2047
 
2048
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2049
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2050
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2051
- #: php:412 ../includes/mycred-admin.php:478
2052
  msgid "Current Balance"
2053
  msgstr "Saldo atual"
2054
 
@@ -2093,7 +2097,7 @@ msgstr "Pago"
2093
  #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2094
  #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2095
  msgid "myCRED"
2096
- msgstr "myCRED"
2097
 
2098
  #: ../addons/gateway/carts/mycred-marketpress.php:345
2099
  msgid "%_singular% Balance"
@@ -2497,8 +2501,8 @@ msgstr "Título para exibir nos recibos e registros"
2497
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2498
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2499
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2500
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2501
- #: sell-content.php:590
2502
  msgid "Button Label"
2503
  msgstr "Rótulo do botão"
2504
 
@@ -2511,8 +2515,8 @@ msgstr "Botão pagar"
2511
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2512
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2513
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2514
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2515
- #: sell-content.php:586
2516
  msgid "Price"
2517
  msgstr "Preço"
2518
 
@@ -2534,7 +2538,7 @@ msgid "Log"
2534
  msgstr "Registro"
2535
 
2536
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2537
- #: includes/mycred-admin.php:483
2538
  msgid "Log Entry"
2539
  msgstr "Entrada no registro"
2540
 
@@ -3112,9 +3116,9 @@ msgid "No users found with this rank"
3112
  msgstr "Nenhum usuário encontrado com este rank"
3113
 
3114
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3115
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3116
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3117
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3118
  msgid "error"
3119
  msgstr "erro"
3120
 
@@ -3134,43 +3138,43 @@ msgstr "Venda de %link_with_title%"
3134
  msgid "Hours"
3135
  msgstr "Horas"
3136
 
3137
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3138
  msgid "You can not buy this content."
3139
  msgstr "Você não pode comprar este conteúdo."
3140
 
3141
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3142
  msgid "Error. Try Again"
3143
  msgstr "Erro. Tente novamente"
3144
 
3145
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3146
  msgid "No Payout. Just charge."
3147
  msgstr "Nenhum pagamento. Basta carregar."
3148
 
3149
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3150
  msgid "Pay Content Author."
3151
  msgstr "Pagar autor do conteúdo."
3152
 
3153
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3154
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3155
  #: addons.php:224
3156
  msgid "Sell Content"
3157
  msgstr "Vender conteúdo"
3158
 
3159
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3160
  msgid "Post Types"
3161
  msgstr "Tipos de posts"
3162
 
3163
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3164
  msgid "Comma separated list of post types that can be sold."
3165
  msgstr ""
3166
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3167
  "separados."
3168
 
3169
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3170
  msgid "Percentage to pay Author"
3171
  msgstr "Porcentagem paga ao autor"
3172
 
3173
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3174
  msgid ""
3175
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3176
  "authors are not paid."
@@ -3178,31 +3182,31 @@ msgstr ""
3178
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3179
  "os autores não são pagos."
3180
 
3181
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3182
  msgid "Defaults"
3183
  msgstr "Padrões"
3184
 
3185
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3186
  msgid "Allow authors to change price."
3187
  msgstr "Permitir que os autores alterem o preço."
3188
 
3189
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3190
  msgid "Allow authors to change button label."
3191
  msgstr "Permitir que os autores alterem o rótulo do botão."
3192
 
3193
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3194
  msgid "Purchases expire after"
3195
  msgstr "Compras expiram depois"
3196
 
3197
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3198
  msgid "Use zero for permanent sales."
3199
  msgstr "Utilizte zero para vendas permanentes."
3200
 
3201
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3202
  msgid "Sale Template for non members"
3203
  msgstr "Modelo de venda para não membros"
3204
 
3205
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3206
  #, php-format
3207
  msgid ""
3208
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3211,64 +3215,65 @@ msgstr ""
3211
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3212
  "logado for comprar o conteúdo!"
3213
 
3214
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3215
  msgid "Sale Template for members"
3216
  msgstr "Modelo de venda para membros"
3217
 
3218
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3219
- #: content/myCRED-addon-sell-content.php:431
3220
  #, php-format
3221
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3222
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3223
 
3224
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3225
  msgid "Insufficient funds template"
3226
  msgstr "Modelo de fundos insuficientes"
3227
 
3228
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3229
  msgid "Log template for Purchases"
3230
  msgstr "Modelo de registro para compras"
3231
 
3232
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3233
  msgid "Log template for Sales"
3234
  msgstr "Modelo de registro para vendas"
3235
 
3236
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3237
  #, php-format
3238
  msgid "%s Sell This"
3239
  msgstr "%s vender isso"
3240
 
3241
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3242
  #, php-format
3243
  msgid "%s Sell Content needs to be setup before you can use this feature."
3244
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3245
 
3246
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3247
  msgid "Setup add-on"
3248
  msgstr "Configurar add-on"
3249
 
3250
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3251
  msgid "Lets do it"
3252
  msgstr "Vamos fazer isso"
3253
 
3254
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3255
- msgid "Enable sale of this "
3256
- msgstr "Habilitar venda para isso"
 
3257
 
3258
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3259
  msgid "Purchase expires after"
3260
  msgstr "Compras expiram depois"
3261
 
3262
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3263
  msgid "Thank you for your purchase!"
3264
  msgstr "Obrigado pela sua compra!"
3265
 
3266
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3267
- #: content/myCRED-addon-sell-content.php:1094
3268
  msgid "The following content is set for sale:"
3269
  msgstr "O conteúdo a seguir está definido para a venda:"
3270
 
3271
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3272
  msgid "Purchased"
3273
  msgstr "Comprado"
3274
 
@@ -3315,7 +3320,7 @@ msgid ""
3315
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3316
  "this has been done!"
3317
  msgstr ""
3318
- "Este add-on do myCRED ainda não foi configurado! Nenhuma trasnferência será "
3319
  "permitida antes que a configuração seja concluída!"
3320
 
3321
  #: ../addons/transfer/myCRED-addon-transfer.php:147
@@ -3557,49 +3562,54 @@ msgstr "Falha ao atualizar o saldo dos usuários."
3557
  msgid "Excluded"
3558
  msgstr "Excluído"
3559
 
3560
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3561
  #: modules/mycred-module-log.php:251
3562
  msgid "History"
3563
  msgstr "Histórico"
3564
 
3565
- #: ../includes/mycred-admin.php:280
3566
  msgid "Adjust"
3567
  msgstr "Ajustar"
3568
 
3569
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3570
  #, php-format
3571
  msgid "%singular% balance"
3572
- msgstr "Saldo de %singular%"
3573
 
3574
- #: ../includes/mycred-admin.php:359
3575
  msgid "Adjust Your Balance"
3576
  msgstr "Ajustar seu saldo"
3577
 
3578
- #: ../includes/mycred-admin.php:361
3579
  msgid "Adjust Users Balance"
3580
  msgstr "Ajustar o saldo dos usuários"
3581
 
3582
- #: ../includes/mycred-admin.php:372
3583
  msgid "Log description for adjustment"
3584
  msgstr "Descrição de ajuste no registro"
3585
 
3586
- #: ../includes/mycred-admin.php:375
3587
  msgid "Update"
3588
  msgstr "Atualizar"
3589
 
3590
- #: ../includes/mycred-admin.php:376
3591
  msgid "Description is required!"
3592
  msgstr "A descrição é obrigatória!"
3593
 
3594
- #: ../includes/mycred-admin.php:476
3595
  msgid "ID"
3596
  msgstr "ID"
3597
 
3598
- #: ../includes/mycred-admin.php:482
3599
  msgid "A positive or negative value"
3600
  msgstr "Um valor positivo ou negativo"
3601
 
3602
- #: ../includes/mycred-admin.php:484
3603
  msgid "Update Balance"
3604
  msgstr "Saldo atualizado"
3605
 
@@ -3721,13 +3731,20 @@ msgstr "O myCRED precisa do Wordpress 3.5 ou superior. Versão detectada:"
3721
 
3722
  #: ../includes/mycred-install.php:44
3723
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
3724
- msgstr "O myCRED precisa do PHP 5.2.4 ou superior. Versão detectada:"
3725
 
3726
  #: ../includes/mycred-install.php:49
3727
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3728
- msgstr "O myCRED precisa do SQL 5.0 ou superior. Versão detectada:"
 
 
 
 
 
 
 
3729
 
3730
- #: ../includes/mycred-install.php:54
3731
  msgid ""
3732
  "Sorry but your WordPress installation does not reach the minimum "
3733
  "requirements for running myCRED. The following errors were given:"
@@ -3735,28 +3752,28 @@ msgstr ""
3735
  "Desculpe, mas sua instalação WordPress não atende os requisitos mínimos para "
3736
  "execução do myCRED. Os seguintes erros foram identificados:"
3737
 
3738
- #: ../includes/mycred-install.php:243
3739
  msgid "myCRED needs your attention."
3740
- msgstr "o myCRED precisa da sua atenção."
3741
 
3742
- #: ../includes/mycred-install.php:243
3743
  msgid "Run Setup"
3744
  msgstr "Executar instalação"
3745
 
3746
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3747
  msgid "myCRED Setup"
3748
  msgstr "Instalação do myCRED"
3749
 
3750
- #: ../includes/mycred-install.php:385
3751
  #, php-format
3752
  msgid "%s Setup"
3753
  msgstr "Instalação do %s"
3754
 
3755
- #: ../includes/mycred-install.php:387
3756
  msgid "Step"
3757
  msgstr "Passo"
3758
 
3759
- #: ../includes/mycred-install.php:411
3760
  msgid ""
3761
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3762
  "points format, layout and security settings."
@@ -3764,79 +3781,79 @@ msgstr ""
3764
  "Clique em \"Begin Setup\" para instalar o myCRED. Você será capaz de "
3765
  "selecionar o formato de seus pontos, modelo e configurações de segurança."
3766
 
3767
- #: ../includes/mycred-install.php:412
3768
  msgid "Begin Setup"
3769
  msgstr "Iniciar Instalação"
3770
 
3771
- #: ../includes/mycred-install.php:467
3772
  msgid "Select the format you want to use for your points."
3773
  msgstr "Selecione o formato que deseja usar para os seus pontos."
3774
 
3775
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3776
  msgid "Format"
3777
  msgstr "Formato"
3778
 
3779
- #: ../includes/mycred-install.php:471
3780
  msgid "Separators"
3781
  msgstr "Separadores"
3782
 
3783
- #: ../includes/mycred-install.php:481
3784
  msgid "Decimals"
3785
  msgstr "Decimais"
3786
 
3787
- #: ../includes/mycred-install.php:483
3788
  msgid "Use zero for no decimals."
3789
  msgstr "Insira zero para não utilizar decimais."
3790
 
3791
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3792
  msgid "Presentation"
3793
  msgstr "Apresentação"
3794
 
3795
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3796
  msgid "Name (Singular)"
3797
  msgstr "Nome (Singular)"
3798
 
3799
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3800
  msgid "Name (Plural)"
3801
  msgstr "Nome (Plural)"
3802
 
3803
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3804
  msgid "Prefix"
3805
  msgstr "Prefixo"
3806
 
3807
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3808
  msgid "Suffix"
3809
  msgstr "Sufixo"
3810
 
3811
- #: ../includes/mycred-install.php:511
3812
  msgid "Cancel Setup"
3813
  msgstr "Cancelar instalação"
3814
 
3815
- #: ../includes/mycred-install.php:511
3816
  msgid "Cancel"
3817
  msgstr "Cancelar"
3818
 
3819
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3820
  msgid "Next"
3821
  msgstr "Próximo"
3822
 
3823
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3824
  msgid "Security"
3825
  msgstr "Segurança"
3826
 
3827
- #: ../includes/mycred-install.php:546
3828
  msgid "Edit Settings Capability"
3829
  msgstr "Editar configurações de capacidade"
3830
 
3831
- #: ../includes/mycred-install.php:550
3832
  msgid "Edit Users %plural% Capability"
3833
  msgstr "Editar a capacidade de %plural% dos usuários"
3834
 
3835
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3836
  msgid "Maximum %plural% payouts"
3837
  msgstr "Máximo de %plural% pagos"
3838
 
3839
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3840
  msgid ""
3841
  "As an added security, you can set the maximum amount a user can gain or "
3842
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3848,35 +3865,35 @@ msgstr ""
3848
  "certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
3849
  "transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
3850
 
3851
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3852
  msgid "Exclude those who can \"Edit Settings\"."
3853
  msgstr "Excluir aqueles que podem \"Edit Settings\"."
3854
 
3855
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3856
  msgid "Exclude those who can \"Edit Users %plural%\"."
3857
  msgstr "Excluir aqueles que podem \"Edit Users %plural%\"."
3858
 
3859
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3860
  msgid "Exclude the following user IDs:"
3861
  msgstr "Excluir os seguintes IDs de usuário:"
3862
 
3863
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3864
  msgid "User Deletions"
3865
  msgstr "Usuário excluídos"
3866
 
3867
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3868
  msgid "Delete log entries when user is deleted."
3869
  msgstr "Excluir registro de entradas quando o usuário for excluído."
3870
 
3871
- #: ../includes/mycred-install.php:599
3872
  msgid "Ready"
3873
  msgstr "Pronto"
3874
 
3875
- #: ../includes/mycred-install.php:600
3876
  msgid "Almost done! Click the button below to finish this setup."
3877
  msgstr "Quase pronto! Clique no botão abaixo para finalizar a instalação."
3878
 
3879
- #: ../includes/mycred-install.php:601
3880
  msgid "Install & Run"
3881
  msgstr "Instalar e Funcionar"
3882
 
@@ -4154,31 +4171,31 @@ msgstr ""
4154
  msgid "Leaderboard is empty."
4155
  msgstr "O ranking está vazio."
4156
 
4157
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4158
  msgid "Amount missing!"
4159
  msgstr "Quantia ausente!"
4160
 
4161
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4162
  msgid "Log Template Missing!"
4163
  msgstr "Modelo de registro ausente!"
4164
 
4165
- #: ../includes/mycred-shortcodes.php:417
4166
  msgid "Anchor missing URL!"
4167
  msgstr "Ancoras de URL ausentes!"
4168
 
4169
- #: ../includes/mycred-shortcodes.php:482
4170
  msgid "User ID missing for recipient."
4171
  msgstr "ID do usuário ausente para o destinatário."
4172
 
4173
- #: ../includes/mycred-shortcodes.php:536
4174
  msgid "Sent"
4175
  msgstr "Enviar"
4176
 
4177
- #: ../includes/mycred-shortcodes.php:537
4178
  msgid "Error - Try Again"
4179
  msgstr "Erro - Tente novamente"
4180
 
4181
- #: ../includes/mycred-shortcodes.php:645
4182
  msgid "A video ID is required for this shortcode"
4183
  msgstr "O ID do vídeo é obrigatório para este shortcode"
4184
 
@@ -4733,7 +4750,7 @@ msgid ""
4733
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4734
  "shortcode."
4735
  msgstr ""
4736
- "Recompensar com %_plural% os usuários que clicarem no link gerado pelo "
4737
  "shortcode [mycred_link]."
4738
 
4739
  #: ../modules/mycred-module-hooks.php:122
@@ -4801,7 +4818,7 @@ msgstr ""
4801
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4802
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4803
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4804
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4805
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4806
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4807
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5286,7 +5303,7 @@ msgstr "Menu e título da página."
5286
 
5287
  #: ../modules/mycred-module-settings.php:531
5288
  msgid "The meta key will define where your users balances are saved."
5289
- msgstr "A meta key definirá onde o saldo dos usuários será salvo."
5290
 
5291
  #: ../modules/mycred-module-settings.php:548
5292
  msgid "Identify users by"
@@ -5689,7 +5706,7 @@ msgstr ""
5689
  "logados)."
5690
 
5691
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5692
- #: gravityforms.php:86
5693
  msgid "No forms found."
5694
  msgstr "Nenhum formulário encontrado."
5695
 
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 Jun 25 2014 19:45:59 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Portuguese (Brazil)\n"
19
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Loco-Target-Locale: pt_BR\n"
23
  "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
  "content/plugins/mycred\n"
25
+ "X-Poedit-SearchPath-1: ."
 
26
 
27
  #: ../mycred.php:400
28
  msgid "Balance"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:562
52
  msgid "Processing..."
53
  msgstr "Processando..."
54
 
109
  msgstr "Registro de entradas atualizado"
110
 
111
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Instalação"
179
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
183
  msgid "Select"
184
  msgstr "Selecionar"
185
 
390
  msgstr "Usuários pagantes"
391
 
392
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
393
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
394
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
395
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
396
  msgid "Amount"
397
  msgstr "Quantia"
398
 
457
  "reativado. Defina os ciclos como zero para reiniciar."
458
 
459
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
460
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
461
  msgid "Excludes"
462
  msgstr "Excluir"
463
 
486
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
487
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
488
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
489
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
490
  msgid "Payments"
491
  msgstr "Pagamentos"
492
 
514
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
515
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
516
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
517
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
518
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
519
  #: includes/importers/mycred-cubepoints.php:365
520
  msgid "Point Type"
570
  msgstr "%s Métodos de pagamento"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
573
+ #: addon-buy-creds.php:664
574
  msgid "buyCRED Settings"
575
  msgstr "Configurações do buyCRED"
576
 
602
  msgstr "Tempo"
603
 
604
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
605
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
606
  #: overview.php:173 ../modules/mycred-module-addons.php:190
607
  msgid "Gateway"
608
  msgstr "Métodos de pagamento"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:660
612
  msgid "Transaction ID"
613
  msgstr "ID da transação"
614
 
648
  msgid "Update Gateway Settings"
649
  msgstr "Atualizar configurações do método"
650
 
651
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
652
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
653
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
654
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
655
  msgid "User"
656
  msgstr "Usuário"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
659
  #: 640
660
  msgid "Date"
661
  msgstr "Data"
662
 
663
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
664
  msgid "Payed"
665
  msgstr "Pago"
666
 
667
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
668
  msgid "<strong>buy</strong>CRED Purchase Log"
669
  msgstr "Registro de compra do <strong>buy</strong>CRED"
670
 
671
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
672
  #: booking/mycred-eventespresso3.php:367
673
  msgid "Gateway Settings"
674
  msgstr "Configurações do método"
675
 
676
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
677
  msgid ""
678
  "Only completed purchases are shown here. Purchases that were cancelled or "
679
  "failed are not logged."
681
  "Apenas compras concluídas são mostradas aqui. As compras que foram "
682
  "canceladas ou que falharam não são registradas."
683
 
684
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
685
  #: 743 ../modules/mycred-module-log.php:462
686
  msgid "User Missing"
687
  msgstr "Usuário ausente"
688
 
689
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
690
+ #: content/myCRED-addon-sell-content.php:1109
691
  msgid "No purchases found"
692
  msgstr "Nenhuma compra encontrada"
693
 
694
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
695
+ #: addon-buy-creds.php:1009
696
  msgid "This Add-on needs to setup before you can use this shortcode."
697
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
698
 
699
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
700
+ #: addon-buy-creds.php:1027
701
  msgid "No gateways installed."
702
  msgstr "Nenhum método instalado."
703
 
704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
705
+ #: addon-buy-creds.php:1028
706
  msgid "Gateway does not exist."
707
  msgstr "Método não existe."
708
 
709
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
710
  msgid "Yourself"
711
  msgstr "Você mesmo"
712
 
713
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
714
  msgid "No active gateways found."
715
  msgstr "Nenhum método ativo foi encontrado."
716
 
717
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
718
  msgid "The selected gateway is not active."
719
  msgstr "O método selecionado não está ativo."
720
 
721
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
722
  #, php-format
723
  msgid "Buy with %gateway%"
724
  msgstr "Compre com %gateway%"
725
 
726
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
727
  #: content/myCRED-addon-sell-content.php:44
728
  msgid "Buy Now"
729
  msgstr "Comprar agora"
730
 
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
732
  msgid "No users found"
733
  msgstr "Nenhum usuário encontrado"
734
 
735
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
736
  msgid "To"
737
  msgstr "Para"
738
 
739
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
740
  msgid "Select Amount"
741
  msgstr "Selecionar a quantia"
742
 
743
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
744
  msgid "min."
745
  msgstr "min."
746
 
747
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
748
  msgid "Select Gateway"
749
  msgstr "Selecione o método"
750
 
791
  msgstr "Cancelar compra"
792
 
793
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
794
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
795
  msgid "required"
796
  msgstr "obrigatório"
797
 
798
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
799
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
800
  msgid "optional"
801
  msgstr "opcional"
802
 
932
  #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
933
  #: php:25 ../addons/buy-creds/gateways/skrill.php:30
934
  msgid "Purchase of myCRED %plural%"
935
+ msgstr "Compra do myCRED de %plural% "
936
 
937
  #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
938
  #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
1416
  msgstr "Nenhum cupom encontrado no lixo"
1417
 
1418
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1419
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1420
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1421
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1422
  #: module-addons.php:179
1423
  msgid "Email Notices"
1424
  msgstr "Avisos por e-mail"
1640
  msgid "Apply Coupon"
1641
  msgstr "Aplicar cupom"
1642
 
1643
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1644
+ #: notices/myCRED-addon-email-notices.php:1107
1645
  msgid "Email Notice"
1646
  msgstr "E-mail de aviso"
1647
 
1648
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1649
  #: addons/ranks/myCRED-addon-ranks.php:248
1650
  msgid "Add New"
1651
  msgstr "Adicionar novo"
1652
 
1653
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1654
  msgid "Add New Notice"
1655
  msgstr "Adicionar novo aviso"
1656
 
1657
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1658
  msgid "Edit Notice"
1659
  msgstr "Editar aviso"
1660
 
1661
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1662
  msgid "New Notice"
1663
  msgstr "Novo aviso"
1664
 
1665
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1666
  msgid "View Notice"
1667
  msgstr "Ver aviso"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1670
  msgid "Search Email Notices"
1671
  msgstr "Buscar e-mail de aviso"
1672
 
1673
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1674
  msgid "No email notices found"
1675
  msgstr "Nenhum e-mail de aviso encontrado"
1676
 
1677
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1678
  msgid "No email notices found in Trash"
1679
  msgstr "Nenhum e-mail de aviso encontrado na Lixeira"
1680
 
1681
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1682
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1683
  #: php:589
1684
  msgid "General"
1685
  msgstr "Geral"
1686
 
1687
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1688
  msgid "users balance changes"
1689
  msgstr "alteração de saldo dos usuários"
1690
 
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1692
  msgid "user gains %_plural%"
1693
  msgstr "ganhos de %_plural% do usuário"
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1696
  msgid "user lose %_plural%"
1697
  msgstr "perdas de %_plural% do usuário"
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1700
  msgid "users balance reaches zero"
1701
  msgstr "o saldo dos usuários chegou a zero"
1702
 
1703
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1704
  msgid "users balance goes minus"
1705
  msgstr "o saldo dos usuários alcançou o mínimo"
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1708
  msgid "Sell Content Add-on"
1709
  msgstr "Add-on Vender Conteúdo"
1710
 
1711
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1712
  msgid "user buys content"
1713
  msgstr "usuário compra conteúdo"
1714
 
1715
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1716
  msgid "authors content gets sold"
1717
  msgstr "autor do conteúdo recebe por venda"
1718
 
1719
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1720
  msgid "buyCREDs Add-on"
1721
  msgstr "Add-on buyCREDs"
1722
 
1723
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1724
  msgid "user buys %_plural%"
1725
  msgstr "usuário compra %_plural%"
1726
 
1727
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1728
  msgid "Transfer Add-on"
1729
  msgstr "Add-on Transfer"
1730
 
1731
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1732
  msgid "user sends %_plural%"
1733
  msgstr "usuário envia %_plural%"
1734
 
1735
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1736
  msgid "user receives %_plural%"
1737
  msgstr "usuário recebe %_plural%"
1738
 
1739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1740
  msgid "Ranks Add-on"
1741
  msgstr "Add-on Ranks"
1742
 
1743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1744
  msgid "user is demoted"
1745
  msgstr "usuário é rebaixado"
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1748
  msgid "user is promoted"
1749
  msgstr "usuário é promovido"
1750
 
1751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1752
  msgid ""
1753
  "Settings that apply to all email notices and can not be overridden for "
1754
  "individual emails."
1756
  "Definições que se aplicam a todos os avisos por e-mail e não podem ser "
1757
  "substituídas por e-mails individuais."
1758
 
1759
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1760
  msgid "Email Format"
1761
  msgstr "Formato do e-mail"
1762
 
1763
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1764
  msgid "Plain text emails only."
1765
  msgstr "E-mail com apenas texto"
1766
 
1767
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1768
  msgid "HTML or Plain text emails."
1769
  msgstr "E-mail texto e HTML"
1770
 
1771
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1772
  msgid "Filters"
1773
  msgstr "Filtros"
1774
 
1775
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1776
  msgid ""
1777
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1778
  "an email is sent."
1780
  "Permitir o WordPress e plug-ins de terceiros filtrar o assunto do email "
1781
  "antes de enviar um e-mail."
1782
 
1783
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1784
  msgid ""
1785
  "Allow WordPress and Third Party Plugins to filter the email content before "
1786
  "an email is sent."
1788
  "Permitir o WordPress e plug-ins de terceiros filtrar o conteúdo do email "
1789
  "antes de enviar um e-mail."
1790
 
1791
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1792
+ #: notices/myCRED-addon-email-notices.php:305
1793
  msgid "Email Schedule"
1794
+ msgstr "Cronograma de Email"
1795
 
1796
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1797
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1798
+ msgstr "WordPress Cron está desativado. Os e-mails serão enviados imediatamente."
1799
 
1800
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1801
  msgid "Send emails immediately"
1802
+ msgstr "Enviar emails imediatamente"
1803
 
1804
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1805
  msgid "Send emails once an hour"
1806
+ msgstr "Enviar e-mails uma vez por hora"
1807
 
1808
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1809
  msgid "Send emails once a day"
1810
+ msgstr "Enviar e-mails uma vez por dia"
1811
 
1812
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1813
  msgid "Subscriptions"
1814
+ msgstr "Assinaturas"
1815
 
1816
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1817
  #, php-format
1818
  msgid ""
1819
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1820
  "updates."
1821
  msgstr ""
1822
+ "Use o %s shortcode para permitir aos usuários assinar / cancelar o envio de "
1823
+ "atualizações por email."
1824
 
1825
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1826
  msgid "SMTP Override"
1827
+ msgstr "Sobrepor SMTP"
1828
 
1829
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1830
  msgid ""
1831
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1832
  "use a SMTP plugin for emails."
1833
  msgstr ""
1834
+ "SMTP Debug. Ative se você estiver enfrentando problemas com wp_mail() ou se "
1835
+ "você usar um plug-in SMTP para e-mails."
1836
 
1837
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1838
  msgid ""
1839
  "Default email settings. These settings can be individually overridden when "
1840
  "editing emails."
1842
  "Configurações padrões de e-mail. Essas configurações podem ser substituídas "
1843
  "individualmente ao editar os e-mails."
1844
 
1845
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1846
+ #: notices/myCRED-addon-email-notices.php:771
1847
  msgid "Email Settings"
1848
  msgstr "Configurações de e-mail"
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1851
+ #: notices/myCRED-addon-email-notices.php:894
1852
  msgid "Senders Name:"
1853
  msgstr "Nome do remetente:"
1854
 
1855
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1856
+ #: notices/myCRED-addon-email-notices.php:896
1857
  msgid "Senders Email:"
1858
  msgstr "E-mail do remetente:"
1859
 
1860
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1861
  msgid "Reply-To:"
1862
  msgstr "Responder para:"
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1865
  msgid "Default Email Content"
1866
  msgstr "Conteúdo padrão do e-mail"
1867
 
1868
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1869
  msgid "Default email content."
1870
  msgstr "Conteúdo padrão do e-mail."
1871
 
1872
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1873
  msgid "Default Email Styling"
1874
  msgstr "Estilo padrão do e-mail"
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1877
  msgid "Ignored if HTML is not allowed in emails."
1878
  msgstr "Ignorar se HTML não é permitido nos e-mails."
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1881
+ #: notices/myCRED-addon-email-notices.php:820
1882
  msgid "Email Subject"
1883
  msgstr "Assunto do e-mail"
1884
 
1885
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1886
  msgid "Status"
1887
  msgstr "Status"
1888
 
1889
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1890
  msgid "Not Active"
1891
  msgstr "Desativado"
1892
 
1893
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1894
  #, php-format
1895
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1896
  msgstr "Agendado:<br /><strong>%1$s</strong>"
1897
 
1898
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1899
  msgid "Active"
1900
  msgstr "Ativado"
1901
 
1902
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1903
  #, php-format
1904
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1905
  msgstr "Ativado: Última execução:<br /><strong>%1$s</strong>"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1908
  msgid "Email is sent when"
1909
  msgstr "O e-mail é enviado quando"
1910
 
1911
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1912
  msgid "Missing instance for this notice!"
1913
  msgstr "Falta instância para este aviso!"
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1916
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1917
+ #: addon-email-notices.php:759
1918
  msgid "Sent To"
1919
  msgstr "Enviar para"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1922
+ #: notices/myCRED-addon-email-notices.php:885
1923
  msgid "Administrator"
1924
  msgstr "Administrador"
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1927
  msgid "Both Administrator and User"
1928
  msgstr "Ambos, administrador e usuário"
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1931
  msgid "Available Template Tags"
1932
  msgstr "Modelos de etiquetas disponíveis"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1935
  msgid "Email Header"
1936
  msgstr "Cabeçalho do e-mail"
1937
 
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1939
  msgid "Send this email notice when..."
1940
  msgstr "Enviar este e-mail de aviso quando..."
1941
 
1942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1943
  msgid "Recipient:"
1944
  msgstr "Destinatário:"
1945
 
1946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1947
  msgid "Both"
1948
  msgstr "Ambos"
1949
 
1950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1951
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1952
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1953
  #: module-settings.php:526
1954
  msgid "Label"
1955
  msgstr "Rótulo"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1958
  msgid "Reply-To Email:"
1959
  msgstr "E-mail do Responder para:"
1960
 
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1962
  msgid "Save"
1963
  msgstr "Salvar"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1966
  msgid "CSS Styling"
1967
  msgstr "Estilo CSS"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1970
  msgid "Site Related"
1971
  msgstr "Site relacionado"
1972
 
1973
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1974
  msgid "Your websites title"
1975
  msgstr "Título do seu site"
1976
 
1977
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1978
  msgid "Your websites address"
1979
  msgstr "Endereço do seu site"
1980
 
1981
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1982
  msgid "Your websites tagline (description)"
1983
  msgstr "Slogan do seu site (descrição)"
1984
 
1985
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1986
  msgid "Your websites admin email"
1987
  msgstr "E-mail de administração do seu site"
1988
 
1989
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1990
  msgid "Total number of blog members"
1991
  msgstr "Número total de usuários do blog"
1992
 
1993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1994
+ #: notices/myCRED-addon-email-notices.php:1018
1995
  #, php-format
1996
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1997
  msgstr "E-mail de aviso atualizado. Ver <a href=\"%1$s\">Todos os avisos</a>."
1998
 
1999
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2000
  msgid "Email Notice Activated"
2001
  msgstr "E-mail de aviso ativado"
2002
 
2003
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2004
  msgid "Email Notice Saved"
2005
  msgstr "E-mail de aviso salvo"
2006
 
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
2008
  #, php-format
2009
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2010
  msgstr ""
2011
  "E-mail de aviso enviado para aprovação. Ver <a href=\"%1$s\">Todos os "
2012
  "avisos</a>."
2013
 
2014
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
2015
  #, php-format
2016
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2017
  msgstr "E-mail de aviso agendado para: <strong>%1$s</strong>."
2018
 
2019
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2020
  msgid ""
2021
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2022
  "are not yet ready to use this email notice!"
2024
  "Uma vez que um aviso é \"published\" ele torna-se ativo! Selecione \"Save "
2025
  "Draft\" se você ainda não está pronto para usar este aviso de e-mail!"
2026
 
2027
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2028
  #, php-format
2029
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2030
  msgstr "Este aviso ficará ativo em:<br /><strong>%1$s</strong>"
2031
 
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2033
  msgid "This email notice is active."
2034
  msgstr "Este e-mail de aviso está ativo."
2035
 
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2037
  msgid "Settings saved."
2038
+ msgstr "Configurações salvas"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2041
  msgid "Unsubscribe"
2042
+ msgstr "Cancelar assinatura"
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2045
  msgid "There are no email notifications yet."
2046
+ msgstr "Não há notificações de e-mail ainda."
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2049
  msgid "Save Changes"
2050
+ msgstr "Salvar alterações"
2051
 
2052
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2053
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2054
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2055
+ #: php:412 ../includes/mycred-admin.php:491
2056
  msgid "Current Balance"
2057
  msgstr "Saldo atual"
2058
 
2097
  #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2098
  #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2099
  msgid "myCRED"
2100
+ msgstr "Tipo de ponto"
2101
 
2102
  #: ../addons/gateway/carts/mycred-marketpress.php:345
2103
  msgid "%_singular% Balance"
2501
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2502
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2503
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2504
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2505
+ #: sell-content.php:587
2506
  msgid "Button Label"
2507
  msgstr "Rótulo do botão"
2508
 
2515
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2516
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2517
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2518
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2519
+ #: sell-content.php:583
2520
  msgid "Price"
2521
  msgstr "Preço"
2522
 
2538
  msgstr "Registro"
2539
 
2540
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2541
+ #: includes/mycred-admin.php:496
2542
  msgid "Log Entry"
2543
  msgstr "Entrada no registro"
2544
 
3116
  msgstr "Nenhum usuário encontrado com este rank"
3117
 
3118
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3119
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3120
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3121
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3122
  msgid "error"
3123
  msgstr "erro"
3124
 
3138
  msgid "Hours"
3139
  msgstr "Horas"
3140
 
3141
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3142
  msgid "You can not buy this content."
3143
  msgstr "Você não pode comprar este conteúdo."
3144
 
3145
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3146
  msgid "Error. Try Again"
3147
  msgstr "Erro. Tente novamente"
3148
 
3149
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3150
  msgid "No Payout. Just charge."
3151
  msgstr "Nenhum pagamento. Basta carregar."
3152
 
3153
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3154
  msgid "Pay Content Author."
3155
  msgstr "Pagar autor do conteúdo."
3156
 
3157
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3158
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3159
  #: addons.php:224
3160
  msgid "Sell Content"
3161
  msgstr "Vender conteúdo"
3162
 
3163
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3164
  msgid "Post Types"
3165
  msgstr "Tipos de posts"
3166
 
3167
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3168
  msgid "Comma separated list of post types that can be sold."
3169
  msgstr ""
3170
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3171
  "separados."
3172
 
3173
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3174
  msgid "Percentage to pay Author"
3175
  msgstr "Porcentagem paga ao autor"
3176
 
3177
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3178
  msgid ""
3179
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3180
  "authors are not paid."
3182
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3183
  "os autores não são pagos."
3184
 
3185
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3186
  msgid "Defaults"
3187
  msgstr "Padrões"
3188
 
3189
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3190
  msgid "Allow authors to change price."
3191
  msgstr "Permitir que os autores alterem o preço."
3192
 
3193
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3194
  msgid "Allow authors to change button label."
3195
  msgstr "Permitir que os autores alterem o rótulo do botão."
3196
 
3197
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3198
  msgid "Purchases expire after"
3199
  msgstr "Compras expiram depois"
3200
 
3201
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3202
  msgid "Use zero for permanent sales."
3203
  msgstr "Utilizte zero para vendas permanentes."
3204
 
3205
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3206
  msgid "Sale Template for non members"
3207
  msgstr "Modelo de venda para não membros"
3208
 
3209
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3210
  #, php-format
3211
  msgid ""
3212
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3215
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3216
  "logado for comprar o conteúdo!"
3217
 
3218
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3219
  msgid "Sale Template for members"
3220
  msgstr "Modelo de venda para membros"
3221
 
3222
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3223
+ #: content/myCRED-addon-sell-content.php:428
3224
  #, php-format
3225
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3226
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3227
 
3228
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3229
  msgid "Insufficient funds template"
3230
  msgstr "Modelo de fundos insuficientes"
3231
 
3232
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3233
  msgid "Log template for Purchases"
3234
  msgstr "Modelo de registro para compras"
3235
 
3236
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3237
  msgid "Log template for Sales"
3238
  msgstr "Modelo de registro para vendas"
3239
 
3240
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3241
  #, php-format
3242
  msgid "%s Sell This"
3243
  msgstr "%s vender isso"
3244
 
3245
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3246
  #, php-format
3247
  msgid "%s Sell Content needs to be setup before you can use this feature."
3248
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3249
 
3250
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3251
  msgid "Setup add-on"
3252
  msgstr "Configurar add-on"
3253
 
3254
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3255
  msgid "Lets do it"
3256
  msgstr "Vamos fazer isso"
3257
 
3258
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3259
+ #, php-format
3260
+ msgid "Enable sale of this %s"
3261
+ msgstr ""
3262
 
3263
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3264
  msgid "Purchase expires after"
3265
  msgstr "Compras expiram depois"
3266
 
3267
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3268
  msgid "Thank you for your purchase!"
3269
  msgstr "Obrigado pela sua compra!"
3270
 
3271
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3272
+ #: content/myCRED-addon-sell-content.php:1091
3273
  msgid "The following content is set for sale:"
3274
  msgstr "O conteúdo a seguir está definido para a venda:"
3275
 
3276
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3277
  msgid "Purchased"
3278
  msgstr "Comprado"
3279
 
3320
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3321
  "this has been done!"
3322
  msgstr ""
3323
+ "Este add-on do myCRED ainda não foi configurado! Nenhuma transferência será "
3324
  "permitida antes que a configuração seja concluída!"
3325
 
3326
  #: ../addons/transfer/myCRED-addon-transfer.php:147
3562
  msgid "Excluded"
3563
  msgstr "Excluído"
3564
 
3565
+ #: ../includes/mycred-admin.php:282
3566
+ #, php-format
3567
+ msgid "Total: %s"
3568
+ msgstr ""
3569
+
3570
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3571
  #: modules/mycred-module-log.php:251
3572
  msgid "History"
3573
  msgstr "Histórico"
3574
 
3575
+ #: ../includes/mycred-admin.php:292
3576
  msgid "Adjust"
3577
  msgstr "Ajustar"
3578
 
3579
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3580
  #, php-format
3581
  msgid "%singular% balance"
3582
+ msgstr "Saldo %singular%"
3583
 
3584
+ #: ../includes/mycred-admin.php:372
3585
  msgid "Adjust Your Balance"
3586
  msgstr "Ajustar seu saldo"
3587
 
3588
+ #: ../includes/mycred-admin.php:374
3589
  msgid "Adjust Users Balance"
3590
  msgstr "Ajustar o saldo dos usuários"
3591
 
3592
+ #: ../includes/mycred-admin.php:385
3593
  msgid "Log description for adjustment"
3594
  msgstr "Descrição de ajuste no registro"
3595
 
3596
+ #: ../includes/mycred-admin.php:388
3597
  msgid "Update"
3598
  msgstr "Atualizar"
3599
 
3600
+ #: ../includes/mycred-admin.php:389
3601
  msgid "Description is required!"
3602
  msgstr "A descrição é obrigatória!"
3603
 
3604
+ #: ../includes/mycred-admin.php:489
3605
  msgid "ID"
3606
  msgstr "ID"
3607
 
3608
+ #: ../includes/mycred-admin.php:495
3609
  msgid "A positive or negative value"
3610
  msgstr "Um valor positivo ou negativo"
3611
 
3612
+ #: ../includes/mycred-admin.php:497
3613
  msgid "Update Balance"
3614
  msgstr "Saldo atualizado"
3615
 
3731
 
3732
  #: ../includes/mycred-install.php:44
3733
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
3734
+ msgstr "myCRED precisa do PHP 5.2.4 ou superior. Versão detectada:"
3735
 
3736
  #: ../includes/mycred-install.php:49
3737
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3738
+ msgstr "myCRED precisa de SQL 5.0 ou superior. Versão detectada:"
3739
+
3740
+ #: ../includes/mycred-install.php:53
3741
+ msgid ""
3742
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3743
+ "check your PHP configuration or contact your host and ask them to enable it "
3744
+ "for you!"
3745
+ msgstr ""
3746
 
3747
+ #: ../includes/mycred-install.php:58
3748
  msgid ""
3749
  "Sorry but your WordPress installation does not reach the minimum "
3750
  "requirements for running myCRED. The following errors were given:"
3752
  "Desculpe, mas sua instalação WordPress não atende os requisitos mínimos para "
3753
  "execução do myCRED. Os seguintes erros foram identificados:"
3754
 
3755
+ #: ../includes/mycred-install.php:247
3756
  msgid "myCRED needs your attention."
3757
+ msgstr "myCRED precisa da sua atenção."
3758
 
3759
+ #: ../includes/mycred-install.php:247
3760
  msgid "Run Setup"
3761
  msgstr "Executar instalação"
3762
 
3763
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3764
  msgid "myCRED Setup"
3765
  msgstr "Instalação do myCRED"
3766
 
3767
+ #: ../includes/mycred-install.php:389
3768
  #, php-format
3769
  msgid "%s Setup"
3770
  msgstr "Instalação do %s"
3771
 
3772
+ #: ../includes/mycred-install.php:391
3773
  msgid "Step"
3774
  msgstr "Passo"
3775
 
3776
+ #: ../includes/mycred-install.php:415
3777
  msgid ""
3778
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3779
  "points format, layout and security settings."
3781
  "Clique em \"Begin Setup\" para instalar o myCRED. Você será capaz de "
3782
  "selecionar o formato de seus pontos, modelo e configurações de segurança."
3783
 
3784
+ #: ../includes/mycred-install.php:416
3785
  msgid "Begin Setup"
3786
  msgstr "Iniciar Instalação"
3787
 
3788
+ #: ../includes/mycred-install.php:471
3789
  msgid "Select the format you want to use for your points."
3790
  msgstr "Selecione o formato que deseja usar para os seus pontos."
3791
 
3792
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3793
  msgid "Format"
3794
  msgstr "Formato"
3795
 
3796
+ #: ../includes/mycred-install.php:475
3797
  msgid "Separators"
3798
  msgstr "Separadores"
3799
 
3800
+ #: ../includes/mycred-install.php:485
3801
  msgid "Decimals"
3802
  msgstr "Decimais"
3803
 
3804
+ #: ../includes/mycred-install.php:487
3805
  msgid "Use zero for no decimals."
3806
  msgstr "Insira zero para não utilizar decimais."
3807
 
3808
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3809
  msgid "Presentation"
3810
  msgstr "Apresentação"
3811
 
3812
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3813
  msgid "Name (Singular)"
3814
  msgstr "Nome (Singular)"
3815
 
3816
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3817
  msgid "Name (Plural)"
3818
  msgstr "Nome (Plural)"
3819
 
3820
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3821
  msgid "Prefix"
3822
  msgstr "Prefixo"
3823
 
3824
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3825
  msgid "Suffix"
3826
  msgstr "Sufixo"
3827
 
3828
+ #: ../includes/mycred-install.php:515
3829
  msgid "Cancel Setup"
3830
  msgstr "Cancelar instalação"
3831
 
3832
+ #: ../includes/mycred-install.php:515
3833
  msgid "Cancel"
3834
  msgstr "Cancelar"
3835
 
3836
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3837
  msgid "Next"
3838
  msgstr "Próximo"
3839
 
3840
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3841
  msgid "Security"
3842
  msgstr "Segurança"
3843
 
3844
+ #: ../includes/mycred-install.php:550
3845
  msgid "Edit Settings Capability"
3846
  msgstr "Editar configurações de capacidade"
3847
 
3848
+ #: ../includes/mycred-install.php:554
3849
  msgid "Edit Users %plural% Capability"
3850
  msgstr "Editar a capacidade de %plural% dos usuários"
3851
 
3852
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3853
  msgid "Maximum %plural% payouts"
3854
  msgstr "Máximo de %plural% pagos"
3855
 
3856
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3857
  msgid ""
3858
  "As an added security, you can set the maximum amount a user can gain or "
3859
  "loose in a single instance. If used, make sure this is the maximum amount a "
3865
  "certifique-se que esta é a quantidade máxima que um usuário seria capaz de "
3866
  "transferir, comprar ou gastar em sua loja. Use zero para desabilitar."
3867
 
3868
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3869
  msgid "Exclude those who can \"Edit Settings\"."
3870
  msgstr "Excluir aqueles que podem \"Edit Settings\"."
3871
 
3872
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3873
  msgid "Exclude those who can \"Edit Users %plural%\"."
3874
  msgstr "Excluir aqueles que podem \"Edit Users %plural%\"."
3875
 
3876
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3877
  msgid "Exclude the following user IDs:"
3878
  msgstr "Excluir os seguintes IDs de usuário:"
3879
 
3880
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3881
  msgid "User Deletions"
3882
  msgstr "Usuário excluídos"
3883
 
3884
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3885
  msgid "Delete log entries when user is deleted."
3886
  msgstr "Excluir registro de entradas quando o usuário for excluído."
3887
 
3888
+ #: ../includes/mycred-install.php:603
3889
  msgid "Ready"
3890
  msgstr "Pronto"
3891
 
3892
+ #: ../includes/mycred-install.php:604
3893
  msgid "Almost done! Click the button below to finish this setup."
3894
  msgstr "Quase pronto! Clique no botão abaixo para finalizar a instalação."
3895
 
3896
+ #: ../includes/mycred-install.php:605
3897
  msgid "Install & Run"
3898
  msgstr "Instalar e Funcionar"
3899
 
4171
  msgid "Leaderboard is empty."
4172
  msgstr "O ranking está vazio."
4173
 
4174
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4175
  msgid "Amount missing!"
4176
  msgstr "Quantia ausente!"
4177
 
4178
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4179
  msgid "Log Template Missing!"
4180
  msgstr "Modelo de registro ausente!"
4181
 
4182
+ #: ../includes/mycred-shortcodes.php:444
4183
  msgid "Anchor missing URL!"
4184
  msgstr "Ancoras de URL ausentes!"
4185
 
4186
+ #: ../includes/mycred-shortcodes.php:509
4187
  msgid "User ID missing for recipient."
4188
  msgstr "ID do usuário ausente para o destinatário."
4189
 
4190
+ #: ../includes/mycred-shortcodes.php:563
4191
  msgid "Sent"
4192
  msgstr "Enviar"
4193
 
4194
+ #: ../includes/mycred-shortcodes.php:564
4195
  msgid "Error - Try Again"
4196
  msgstr "Erro - Tente novamente"
4197
 
4198
+ #: ../includes/mycred-shortcodes.php:672
4199
  msgid "A video ID is required for this shortcode"
4200
  msgstr "O ID do vídeo é obrigatório para este shortcode"
4201
 
4750
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4751
  "shortcode."
4752
  msgstr ""
4753
+ "Recompensar com %_plural% os usuários que clivarem no link gerado pelo "
4754
  "shortcode [mycred_link]."
4755
 
4756
  #: ../modules/mycred-module-hooks.php:122
4818
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4819
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4820
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4821
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4822
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4823
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4824
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5303
 
5304
  #: ../modules/mycred-module-settings.php:531
5305
  msgid "The meta key will define where your users balances are saved."
5306
+ msgstr "A meta key definirá onde o saldo dos usuários será salvo no banco de dados."
5307
 
5308
  #: ../modules/mycred-module-settings.php:548
5309
  msgid "Identify users by"
5706
  "logados)."
5707
 
5708
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5709
+ #: gravityforms.php:115
5710
  msgid "No forms found."
5711
  msgstr "Nenhum formulário encontrado."
5712
 
lang/mycred-ru_RU.mo CHANGED
Binary file
lang/mycred-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:27:24 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Russian\n"
@@ -48,8 +48,8 @@ msgstr "Потрясающие люди"
48
 
49
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
50
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
51
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
52
- #: includes/mycred-shortcodes.php:535
53
  msgid "Processing..."
54
  msgstr "Обработка..."
55
 
@@ -111,7 +111,7 @@ msgid "Log entry updated"
111
  msgstr "Запись в журнале обновлена"
112
 
113
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
114
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Установка"
@@ -181,7 +181,7 @@ msgstr "Один раз в день (перезагрузка в полночь)
181
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
182
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
183
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
184
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
185
  msgid "Select"
186
  msgstr "Выбрать"
187
 
@@ -395,9 +395,9 @@ msgid "Pay Users"
395
  msgstr "Заплатить пользователям"
396
 
397
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
398
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
399
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
400
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
401
  msgid "Amount"
402
  msgstr "Количество"
403
 
@@ -463,7 +463,7 @@ msgstr ""
463
  "настроек."
464
 
465
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
466
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
467
  msgid "Excludes"
468
  msgstr "Исключает"
469
 
@@ -492,7 +492,7 @@ msgstr "Журнал покупки"
492
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
493
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
494
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
495
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
496
  msgid "Payments"
497
  msgstr "Платежи"
498
 
@@ -520,7 +520,7 @@ msgstr "Минимальное количество %plural% , которое к
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
@@ -576,7 +576,7 @@ msgid "%s Payment Gateways"
576
  msgstr "%s Способы оплаты"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
- #: addon-buy-creds.php:663
580
  msgid "buyCRED Settings"
581
  msgstr "настройки buyCRED"
582
 
@@ -608,13 +608,13 @@ msgid "Time"
608
  msgstr "Время"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Шлюз"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
- #: addon-buy-creds.php:659
618
  msgid "Transaction ID"
619
  msgstr "Код трансакции "
620
 
@@ -654,32 +654,32 @@ msgstr "Разрешить тестовые покупки."
654
  msgid "Update Gateway Settings"
655
  msgstr "Обновить настройки шлюза"
656
 
657
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
658
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
659
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
660
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
661
  msgid "User"
662
  msgstr "Пользователь"
663
 
664
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
665
  #: 640
666
  msgid "Date"
667
  msgstr "Дата "
668
 
669
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
670
  msgid "Payed"
671
  msgstr "Оплачено"
672
 
673
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
674
  msgid "<strong>buy</strong>CRED Purchase Log"
675
  msgstr "<strong>купить</strong>CRED журнал покупки"
676
 
677
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
678
  #: booking/mycred-eventespresso3.php:367
679
  msgid "Gateway Settings"
680
  msgstr "Настройки шлюза"
681
 
682
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
683
  msgid ""
684
  "Only completed purchases are shown here. Purchases that were cancelled or "
685
  "failed are not logged."
@@ -687,72 +687,72 @@ msgstr ""
687
  "Тут показаны только завершенные покупки. Заказы, которые были отменены или "
688
  "не выполнены, не фиксируются."
689
 
690
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
691
  #: 743 ../modules/mycred-module-log.php:462
692
  msgid "User Missing"
693
  msgstr "Пользователь отсутствует"
694
 
695
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
696
- #: content/myCRED-addon-sell-content.php:1112
697
  msgid "No purchases found"
698
  msgstr "Покупок не обнаружено"
699
 
700
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
701
- #: addon-buy-creds.php:1008
702
  msgid "This Add-on needs to setup before you can use this shortcode."
703
  msgstr ""
704
  "Это расширение необходимо установить перед началом использования этого "
705
  "короткого номера."
706
 
707
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
708
- #: addon-buy-creds.php:1026
709
  msgid "No gateways installed."
710
  msgstr "Нет установленных шлюзов."
711
 
712
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
713
- #: addon-buy-creds.php:1027
714
  msgid "Gateway does not exist."
715
  msgstr "Шлюз не существует."
716
 
717
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
718
  msgid "Yourself"
719
  msgstr "Самостоятельно"
720
 
721
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
722
  msgid "No active gateways found."
723
  msgstr "Активных шлюзов не обнаружено."
724
 
725
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
726
  msgid "The selected gateway is not active."
727
  msgstr "Выбранный шлюз не активен."
728
 
729
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
730
  #, php-format
731
  msgid "Buy with %gateway%"
732
  msgstr "Приобрести с %gateway%"
733
 
734
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
735
  #: content/myCRED-addon-sell-content.php:44
736
  msgid "Buy Now"
737
  msgstr "Купить сейчас"
738
 
739
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
740
  msgid "No users found"
741
  msgstr "Пользователи не найдены"
742
 
743
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
744
  msgid "To"
745
  msgstr "До"
746
 
747
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
748
  msgid "Select Amount"
749
  msgstr "Выбать количество "
750
 
751
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
752
  msgid "min."
753
  msgstr "мин."
754
 
755
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
756
  msgid "Select Gateway"
757
  msgstr "Выбрать шлюз"
758
 
@@ -801,12 +801,12 @@ msgid "Cancel purchase"
801
  msgstr "Отменить покупку"
802
 
803
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
804
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
805
  msgid "required"
806
  msgstr "необходимо"
807
 
808
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
809
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
810
  msgid "optional"
811
  msgstr "выборочно"
812
 
@@ -1428,9 +1428,9 @@ msgid "No coupons found in Trash"
1428
  msgstr "Купоны в корзине не обнаружены"
1429
 
1430
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1431
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1432
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1433
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1434
  #: module-addons.php:179
1435
  msgid "Email Notices"
1436
  msgstr "Email Уведомления"
@@ -1652,115 +1652,115 @@ msgstr "Погашение купона"
1652
  msgid "Apply Coupon"
1653
  msgstr "Подать запрос на купон"
1654
 
1655
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1656
- #: notices/myCRED-addon-email-notices.php:1138
1657
  msgid "Email Notice"
1658
  msgstr "Уведомление по электронной почте"
1659
 
1660
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1661
  #: addons/ranks/myCRED-addon-ranks.php:248
1662
  msgid "Add New"
1663
  msgstr "Добавить новое"
1664
 
1665
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1666
  msgid "Add New Notice"
1667
  msgstr "Добавить новое уведомление"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1670
  msgid "Edit Notice"
1671
  msgstr "Редактировать уведомление"
1672
 
1673
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1674
  msgid "New Notice"
1675
  msgstr "Новое уведомление"
1676
 
1677
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1678
  msgid "View Notice"
1679
  msgstr "Показать уведомление"
1680
 
1681
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1682
  msgid "Search Email Notices"
1683
  msgstr "Поиск уведомлений по электронной почте"
1684
 
1685
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1686
  msgid "No email notices found"
1687
  msgstr "Email-уведомления не найдены"
1688
 
1689
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1690
  msgid "No email notices found in Trash"
1691
  msgstr "В корзине не найдено email-уведомлений "
1692
 
1693
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1694
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1695
  #: php:589
1696
  msgid "General"
1697
  msgstr "Общее"
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1700
  msgid "users balance changes"
1701
  msgstr "Изменения баланса пользователя"
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1704
  msgid "user gains %_plural%"
1705
  msgstr "пользователь получает %_plural%"
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1708
  msgid "user lose %_plural%"
1709
  msgstr "пользователь теряет %_plural%"
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1712
  msgid "users balance reaches zero"
1713
  msgstr "баланс пользователя достигает нуля"
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1716
  msgid "users balance goes minus"
1717
  msgstr "баланс пользователя достиг минуса "
1718
 
1719
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1720
  msgid "Sell Content Add-on"
1721
  msgstr "Продать расширение контента "
1722
 
1723
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1724
  msgid "user buys content"
1725
  msgstr "пользователь приобретает контент"
1726
 
1727
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1728
  msgid "authors content gets sold"
1729
  msgstr "контент автора продается"
1730
 
1731
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1732
  msgid "buyCREDs Add-on"
1733
  msgstr "Расширение buyCREDs"
1734
 
1735
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1736
  msgid "user buys %_plural%"
1737
  msgstr "пользователь покупает %_plural%"
1738
 
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1740
  msgid "Transfer Add-on"
1741
  msgstr "Переместить расширение"
1742
 
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1744
  msgid "user sends %_plural%"
1745
  msgstr "пользователь отправляет %_plural%"
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1748
  msgid "user receives %_plural%"
1749
  msgstr "пользователь получает %_plural%"
1750
 
1751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1752
  msgid "Ranks Add-on"
1753
  msgstr "Категории расширений"
1754
 
1755
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1756
  msgid "user is demoted"
1757
  msgstr "рейтинг пользователя понижен"
1758
 
1759
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1760
  msgid "user is promoted"
1761
  msgstr "рейгинг пользователя повышен"
1762
 
1763
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1764
  msgid ""
1765
  "Settings that apply to all email notices and can not be overridden for "
1766
  "individual emails."
@@ -1768,23 +1768,23 @@ msgstr ""
1768
  "Настройки, которые применяются ко всем email-уведомлениям, нельзя отменить "
1769
  "для отдельных электронных писем."
1770
 
1771
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1772
  msgid "Email Format"
1773
  msgstr "Формат электронного письма"
1774
 
1775
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1776
  msgid "Plain text emails only."
1777
  msgstr "Отправляется только текст"
1778
 
1779
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1780
  msgid "HTML or Plain text emails."
1781
  msgstr "HTML или электронные письма с чистым текстом"
1782
 
1783
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1784
  msgid "Filters"
1785
  msgstr "Фильтры"
1786
 
1787
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1788
  msgid ""
1789
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1790
  "an email is sent."
@@ -1792,7 +1792,7 @@ msgstr ""
1792
  "Разрешить плагинам WordPress и Third Party фильтровать тему электронного "
1793
  "письма перед его отправкой."
1794
 
1795
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1796
  msgid ""
1797
  "Allow WordPress and Third Party Plugins to filter the email content before "
1798
  "an email is sent."
@@ -1800,49 +1800,49 @@ msgstr ""
1800
  "Разрешить плагинам WordPress и Third Party фильтровать содержание "
1801
  "электронного письма перед его отправкой."
1802
 
1803
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1804
- #: notices/myCRED-addon-email-notices.php:303
1805
  msgid "Email Schedule"
1806
  msgstr ""
1807
 
1808
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1809
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1810
  msgstr ""
1811
 
1812
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1813
  msgid "Send emails immediately"
1814
  msgstr ""
1815
 
1816
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1817
  msgid "Send emails once an hour"
1818
  msgstr ""
1819
 
1820
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1821
  msgid "Send emails once a day"
1822
  msgstr ""
1823
 
1824
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1825
  msgid "Subscriptions"
1826
  msgstr ""
1827
 
1828
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1829
  #, php-format
1830
  msgid ""
1831
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1832
  "updates."
1833
  msgstr ""
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1836
  msgid "SMTP Override"
1837
  msgstr ""
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1840
  msgid ""
1841
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1842
  "use a SMTP plugin for emails."
1843
  msgstr ""
1844
 
1845
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1846
  msgid ""
1847
  "Default email settings. These settings can be individually overridden when "
1848
  "editing emails."
@@ -1850,181 +1850,181 @@ msgstr ""
1850
  "Настройки электронной почты по умолчанию. Эти настройки не могут быть "
1851
  "переопределены при редактировании электронных писем."
1852
 
1853
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1854
- #: notices/myCRED-addon-email-notices.php:802
1855
  msgid "Email Settings"
1856
  msgstr "Настройки электронного письма"
1857
 
1858
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1859
- #: notices/myCRED-addon-email-notices.php:925
1860
  msgid "Senders Name:"
1861
  msgstr "Имя отправителя:"
1862
 
1863
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1864
- #: notices/myCRED-addon-email-notices.php:927
1865
  msgid "Senders Email:"
1866
  msgstr "Письмо отправителя:"
1867
 
1868
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1869
  msgid "Reply-To:"
1870
  msgstr "Ответить:"
1871
 
1872
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1873
  msgid "Default Email Content"
1874
  msgstr "Настройка содержания письма по умолчанию"
1875
 
1876
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1877
  msgid "Default email content."
1878
  msgstr "Настройка содержания письма по умолчанию."
1879
 
1880
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1881
  msgid "Default Email Styling"
1882
  msgstr "Настройка оформления письма"
1883
 
1884
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1885
  msgid "Ignored if HTML is not allowed in emails."
1886
  msgstr "Игнорируется, если HTML в письмах не разрешается."
1887
 
1888
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1889
- #: notices/myCRED-addon-email-notices.php:851
1890
  msgid "Email Subject"
1891
  msgstr "Тема письма"
1892
 
1893
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1894
  msgid "Status"
1895
  msgstr "Статус"
1896
 
1897
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1898
  msgid "Not Active"
1899
  msgstr "Не активно"
1900
 
1901
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1902
  #, php-format
1903
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1904
  msgstr "Запланированный: <br /><strong>%1$s</strong>"
1905
 
1906
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1907
  msgid "Active"
1908
  msgstr "Активен"
1909
 
1910
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1911
  #, php-format
1912
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1913
  msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
1914
 
1915
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1916
  msgid "Email is sent when"
1917
  msgstr "Электронное письмо отправляется, когда"
1918
 
1919
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1920
  msgid "Missing instance for this notice!"
1921
  msgstr "Отсутствует пример для этого уведомления!"
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1924
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1925
- #: addon-email-notices.php:790
1926
  msgid "Sent To"
1927
  msgstr "Отправить"
1928
 
1929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1930
- #: notices/myCRED-addon-email-notices.php:916
1931
  msgid "Administrator"
1932
  msgstr "Администратору"
1933
 
1934
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1935
  msgid "Both Administrator and User"
1936
  msgstr "Администратору и Пользователю"
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1939
  msgid "Available Template Tags"
1940
  msgstr "Доступные теги шаблона"
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1943
  msgid "Email Header"
1944
  msgstr "Заголовок и-мейла"
1945
 
1946
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1947
  msgid "Send this email notice when..."
1948
  msgstr "Отправить это и-мейл оповещение когда..."
1949
 
1950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1951
  msgid "Recipient:"
1952
  msgstr "Получатель:"
1953
 
1954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1955
  msgid "Both"
1956
  msgstr "Оба"
1957
 
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1959
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1960
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1961
  #: module-settings.php:526
1962
  msgid "Label"
1963
  msgstr "Ярлык"
1964
 
1965
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1966
  msgid "Reply-To Email:"
1967
  msgstr "Ответить на и-мейл:"
1968
 
1969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1970
  msgid "Save"
1971
  msgstr "Сохранить"
1972
 
1973
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1974
  msgid "CSS Styling"
1975
  msgstr "Оформление CSS"
1976
 
1977
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1978
  msgid "Site Related"
1979
  msgstr "Сопутствующий сайт"
1980
 
1981
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1982
  msgid "Your websites title"
1983
  msgstr "Заголовок ваших веб-сайтов"
1984
 
1985
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1986
  msgid "Your websites address"
1987
  msgstr "Адрес ваших веб-сайтов"
1988
 
1989
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1990
  msgid "Your websites tagline (description)"
1991
  msgstr "Подзаголовок вашего веб-сайта (описание)"
1992
 
1993
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1994
  msgid "Your websites admin email"
1995
  msgstr "Электронный адрес администратора вашего веб-сайта"
1996
 
1997
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1998
  msgid "Total number of blog members"
1999
  msgstr "Общее количество участников блога"
2000
 
2001
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2002
- #: notices/myCRED-addon-email-notices.php:1049
2003
  #, php-format
2004
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2005
  msgstr "И-мейл оповещение обновлено. Просмотреть<a href=\"%1$s\">Все Уведомления</a>."
2006
 
2007
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2008
  msgid "Email Notice Activated"
2009
  msgstr "И-мейл оповещение активировано"
2010
 
2011
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2012
  msgid "Email Notice Saved"
2013
  msgstr "И-мейл оповещение сохранено"
2014
 
2015
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2016
  #, php-format
2017
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2018
  msgstr ""
2019
  "И-мейл оповещение требует одобрения. Просмотреть <a href=\"%1$s\">Все "
2020
  "оповещения</a>."
2021
 
2022
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2023
  #, php-format
2024
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2025
  msgstr "И-мейл оповещение, запланированное для: <strong>%1$s</strong>."
2026
 
2027
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2028
  msgid ""
2029
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2030
  "are not yet ready to use this email notice!"
@@ -2032,35 +2032,35 @@ msgstr ""
2032
  "После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
2033
  "Черновик\", если вы не готовы использовать это и-мейл оповещение!"
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2036
  #, php-format
2037
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2038
  msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
2039
 
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2041
  msgid "This email notice is active."
2042
  msgstr "И-мейл извещение активно."
2043
 
2044
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2045
  msgid "Settings saved."
2046
  msgstr ""
2047
 
2048
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2049
  msgid "Unsubscribe"
2050
  msgstr ""
2051
 
2052
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2053
  msgid "There are no email notifications yet."
2054
  msgstr ""
2055
 
2056
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2057
  msgid "Save Changes"
2058
  msgstr ""
2059
 
2060
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2061
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2062
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2063
- #: php:412 ../includes/mycred-admin.php:478
2064
  msgid "Current Balance"
2065
  msgstr "Текущий баланс"
2066
 
@@ -2507,8 +2507,8 @@ msgstr "Заголовок, который отображается на кви
2507
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2508
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2509
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2510
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2511
- #: sell-content.php:590
2512
  msgid "Button Label"
2513
  msgstr "Кнопка ярлыка"
2514
 
@@ -2521,8 +2521,8 @@ msgstr "Кнопка оплаты"
2521
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2522
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2523
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2524
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2525
- #: sell-content.php:586
2526
  msgid "Price"
2527
  msgstr "Цена"
2528
 
@@ -2544,7 +2544,7 @@ msgid "Log"
2544
  msgstr "Журнал"
2545
 
2546
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2547
- #: includes/mycred-admin.php:483
2548
  msgid "Log Entry"
2549
  msgstr "Журнал входа"
2550
 
@@ -3125,9 +3125,9 @@ msgid "No users found with this rank"
3125
  msgstr "В этом ранге пользователи не обнаружены"
3126
 
3127
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3128
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3129
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3130
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3131
  msgid "error"
3132
  msgstr "ошибка"
3133
 
@@ -3147,41 +3147,41 @@ msgstr "Распродажа %link_with_title%"
3147
  msgid "Hours"
3148
  msgstr "Часов"
3149
 
3150
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3151
  msgid "You can not buy this content."
3152
  msgstr "Вы не можете приобрести этот контент."
3153
 
3154
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3155
  msgid "Error. Try Again"
3156
  msgstr "Ошибка. Повторите попытку"
3157
 
3158
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3159
  msgid "No Payout. Just charge."
3160
  msgstr "Нет выплат. Только расходы."
3161
 
3162
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3163
  msgid "Pay Content Author."
3164
  msgstr "Заплатить автору контента."
3165
 
3166
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3167
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3168
  #: addons.php:224
3169
  msgid "Sell Content"
3170
  msgstr "Продать контент"
3171
 
3172
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3173
  msgid "Post Types"
3174
  msgstr "Типы публикации"
3175
 
3176
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3177
  msgid "Comma separated list of post types that can be sold."
3178
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3179
 
3180
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3181
  msgid "Percentage to pay Author"
3182
  msgstr "Проценты для выплаты автору"
3183
 
3184
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3185
  msgid ""
3186
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3187
  "authors are not paid."
@@ -3189,31 +3189,31 @@ msgstr ""
3189
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3190
  "игнорируется, если авторам не платят. "
3191
 
3192
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3193
  msgid "Defaults"
3194
  msgstr "Неплатёж"
3195
 
3196
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3197
  msgid "Allow authors to change price."
3198
  msgstr "Разрешить авторам изменять цену. "
3199
 
3200
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3201
  msgid "Allow authors to change button label."
3202
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3203
 
3204
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3205
  msgid "Purchases expire after"
3206
  msgstr "Срок покупки истекает после"
3207
 
3208
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3209
  msgid "Use zero for permanent sales."
3210
  msgstr "Использовать ноль для постоянных распродаж."
3211
 
3212
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3213
  msgid "Sale Template for non members"
3214
  msgstr "Шаблон распродажи для приглашенных"
3215
 
3216
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3217
  #, php-format
3218
  msgid ""
3219
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3222,68 +3222,69 @@ msgstr ""
3222
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3223
  "пользователь должен войти в систему для покупки контента!"
3224
 
3225
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3226
  msgid "Sale Template for members"
3227
  msgstr "Шаблон распродажи для участников"
3228
 
3229
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3230
- #: content/myCRED-addon-sell-content.php:431
3231
  #, php-format
3232
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3233
  msgstr ""
3234
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3235
  "работали! "
3236
 
3237
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3238
  msgid "Insufficient funds template"
3239
  msgstr "Шаблон недостатка средств"
3240
 
3241
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3242
  msgid "Log template for Purchases"
3243
  msgstr "Журнал шаблона для покупок"
3244
 
3245
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3246
  msgid "Log template for Sales"
3247
  msgstr "Журнал шаблона для распродаж"
3248
 
3249
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3250
  #, php-format
3251
  msgid "%s Sell This"
3252
  msgstr "%s продать это"
3253
 
3254
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3255
  #, php-format
3256
  msgid "%s Sell Content needs to be setup before you can use this feature."
3257
  msgstr ""
3258
  "%s Необходимо установить продажу контента перед началом использования этого "
3259
  "свойства."
3260
 
3261
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3262
  msgid "Setup add-on"
3263
  msgstr "Расширение настройки"
3264
 
3265
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3266
  msgid "Lets do it"
3267
  msgstr "Выполнить это"
3268
 
3269
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3270
- msgid "Enable sale of this "
3271
- msgstr "Отключить продажу этого"
 
3272
 
3273
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3274
  msgid "Purchase expires after"
3275
  msgstr "Срок действия покупки истекает после "
3276
 
3277
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3278
  msgid "Thank you for your purchase!"
3279
  msgstr "Благодарим вас за вашу покупку!"
3280
 
3281
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3282
- #: content/myCRED-addon-sell-content.php:1094
3283
  msgid "The following content is set for sale:"
3284
  msgstr "Следующий контент установлен на продажу:"
3285
 
3286
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3287
  msgid "Purchased"
3288
  msgstr "Купленный"
3289
 
@@ -3572,49 +3573,54 @@ msgstr "Ошибка обновления баланса пользовател
3572
  msgid "Excluded"
3573
  msgstr "Исключено"
3574
 
3575
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3576
  #: modules/mycred-module-log.php:251
3577
  msgid "History"
3578
  msgstr "История"
3579
 
3580
- #: ../includes/mycred-admin.php:280
3581
  msgid "Adjust"
3582
  msgstr "Корректировать"
3583
 
3584
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3585
  #, php-format
3586
  msgid "%singular% balance"
3587
  msgstr "%singular% баланс"
3588
 
3589
- #: ../includes/mycred-admin.php:359
3590
  msgid "Adjust Your Balance"
3591
  msgstr "Корректировать свой баланс"
3592
 
3593
- #: ../includes/mycred-admin.php:361
3594
  msgid "Adjust Users Balance"
3595
  msgstr "Корректировать баланс пользователя"
3596
 
3597
- #: ../includes/mycred-admin.php:372
3598
  msgid "Log description for adjustment"
3599
  msgstr "Описание журнала для корректировки "
3600
 
3601
- #: ../includes/mycred-admin.php:375
3602
  msgid "Update"
3603
  msgstr "Обновить"
3604
 
3605
- #: ../includes/mycred-admin.php:376
3606
  msgid "Description is required!"
3607
  msgstr "Требуется обновление!"
3608
 
3609
- #: ../includes/mycred-admin.php:476
3610
  msgid "ID"
3611
  msgstr "ID"
3612
 
3613
- #: ../includes/mycred-admin.php:482
3614
  msgid "A positive or negative value"
3615
  msgstr "Положительное или отрицательное значение"
3616
 
3617
- #: ../includes/mycred-admin.php:484
3618
  msgid "Update Balance"
3619
  msgstr "Обновить баланс"
3620
 
@@ -3742,7 +3748,14 @@ msgstr "myCRED требует версию РНР 5.2.4 или выше. Най
3742
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3743
  msgstr "myCRED требует версию SQL 5.0 или выше. Найдены версии:"
3744
 
3745
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3746
  msgid ""
3747
  "Sorry but your WordPress installation does not reach the minimum "
3748
  "requirements for running myCRED. The following errors were given:"
@@ -3750,28 +3763,28 @@ msgstr ""
3750
  "К сожалению, ваша установка WordPress не соответствует минимальным "
3751
  "требованиям для запуска myCRED. Были обнаружены следующие ошибки:"
3752
 
3753
- #: ../includes/mycred-install.php:243
3754
  msgid "myCRED needs your attention."
3755
  msgstr "myCRED нуждается в вашем обслуживании."
3756
 
3757
- #: ../includes/mycred-install.php:243
3758
  msgid "Run Setup"
3759
  msgstr "Запустить установку"
3760
 
3761
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3762
  msgid "myCRED Setup"
3763
  msgstr "Установка myCRED"
3764
 
3765
- #: ../includes/mycred-install.php:385
3766
  #, php-format
3767
  msgid "%s Setup"
3768
  msgstr "%s Установка"
3769
 
3770
- #: ../includes/mycred-install.php:387
3771
  msgid "Step"
3772
  msgstr "Шаг"
3773
 
3774
- #: ../includes/mycred-install.php:411
3775
  msgid ""
3776
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3777
  "points format, layout and security settings."
@@ -3779,79 +3792,79 @@ msgstr ""
3779
  "Нажмите \"Начать установку\", чтобы установить myCRED. Вы сможете выбирать "
3780
  "формат ваших баллов, настройки макета страницы и безопасности. "
3781
 
3782
- #: ../includes/mycred-install.php:412
3783
  msgid "Begin Setup"
3784
  msgstr "Начать установку"
3785
 
3786
- #: ../includes/mycred-install.php:467
3787
  msgid "Select the format you want to use for your points."
3788
  msgstr "Выбрать формат, который вы хотите использовать для ваших единиц."
3789
 
3790
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3791
  msgid "Format"
3792
  msgstr "Формат"
3793
 
3794
- #: ../includes/mycred-install.php:471
3795
  msgid "Separators"
3796
  msgstr "Сепараторы"
3797
 
3798
- #: ../includes/mycred-install.php:481
3799
  msgid "Decimals"
3800
  msgstr "Дроби"
3801
 
3802
- #: ../includes/mycred-install.php:483
3803
  msgid "Use zero for no decimals."
3804
  msgstr "Используйте ноль для не десятичных чисел"
3805
 
3806
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3807
  msgid "Presentation"
3808
  msgstr "Отображение"
3809
 
3810
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3811
  msgid "Name (Singular)"
3812
  msgstr "Имя (единственное число)"
3813
 
3814
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3815
  msgid "Name (Plural)"
3816
  msgstr "Имя (множественное число)"
3817
 
3818
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3819
  msgid "Prefix"
3820
  msgstr "Префикс"
3821
 
3822
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3823
  msgid "Suffix"
3824
  msgstr "Суффикс"
3825
 
3826
- #: ../includes/mycred-install.php:511
3827
  msgid "Cancel Setup"
3828
  msgstr "Установка отмены"
3829
 
3830
- #: ../includes/mycred-install.php:511
3831
  msgid "Cancel"
3832
  msgstr "Отменить"
3833
 
3834
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3835
  msgid "Next"
3836
  msgstr "Следующее"
3837
 
3838
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3839
  msgid "Security"
3840
  msgstr "Безопасность"
3841
 
3842
- #: ../includes/mycred-install.php:546
3843
  msgid "Edit Settings Capability"
3844
  msgstr "Редактировать возможности настроек"
3845
 
3846
- #: ../includes/mycred-install.php:550
3847
  msgid "Edit Users %plural% Capability"
3848
  msgstr "Редактировать возможности %plural% пользователей"
3849
 
3850
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3851
  msgid "Maximum %plural% payouts"
3852
  msgstr "Максимальные выплаты %plural%"
3853
 
3854
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3855
  msgid ""
3856
  "As an added security, you can set the maximum amount a user can gain or "
3857
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3864,35 +3877,35 @@ msgstr ""
3864
  "пользователь сможет перевести, купить или потратить в магазине. Используйте "
3865
  "ноль для отключения."
3866
 
3867
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3868
  msgid "Exclude those who can \"Edit Settings\"."
3869
  msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
3870
 
3871
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3872
  msgid "Exclude those who can \"Edit Users %plural%\"."
3873
  msgstr "Исключить тех, кто может \"Редактировать Настройки %plural%\"."
3874
 
3875
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3876
  msgid "Exclude the following user IDs:"
3877
  msgstr "Исключить ID следующих пользователей: "
3878
 
3879
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3880
  msgid "User Deletions"
3881
  msgstr "Удаление пользователя"
3882
 
3883
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3884
  msgid "Delete log entries when user is deleted."
3885
  msgstr "Удалять записи в журнале после удаления пользователя."
3886
 
3887
- #: ../includes/mycred-install.php:599
3888
  msgid "Ready"
3889
  msgstr "Готово"
3890
 
3891
- #: ../includes/mycred-install.php:600
3892
  msgid "Almost done! Click the button below to finish this setup."
3893
  msgstr "Почти готово! Нажмите кнопку ниже для завершения этой установки."
3894
 
3895
- #: ../includes/mycred-install.php:601
3896
  msgid "Install & Run"
3897
  msgstr "Установка и запуск"
3898
 
@@ -4169,31 +4182,31 @@ msgstr ""
4169
  msgid "Leaderboard is empty."
4170
  msgstr "Таблица лидеров пуста."
4171
 
4172
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4173
  msgid "Amount missing!"
4174
  msgstr "Сумма отсутствует!"
4175
 
4176
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4177
  msgid "Log Template Missing!"
4178
  msgstr "Шаблон журнала отсутствует!"
4179
 
4180
- #: ../includes/mycred-shortcodes.php:417
4181
  msgid "Anchor missing URL!"
4182
  msgstr "Отсутствует привязка URL!"
4183
 
4184
- #: ../includes/mycred-shortcodes.php:482
4185
  msgid "User ID missing for recipient."
4186
  msgstr "Отсутствует ID пользователя для получателя."
4187
 
4188
- #: ../includes/mycred-shortcodes.php:536
4189
  msgid "Sent"
4190
  msgstr "Отправлено"
4191
 
4192
- #: ../includes/mycred-shortcodes.php:537
4193
  msgid "Error - Try Again"
4194
  msgstr "Ошибка - Повторите попытку"
4195
 
4196
- #: ../includes/mycred-shortcodes.php:645
4197
  msgid "A video ID is required for this shortcode"
4198
  msgstr "Для этого короткого номера требуется ID видео"
4199
 
@@ -4819,7 +4832,7 @@ msgstr ""
4819
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4820
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4821
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4822
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4823
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4824
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4825
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5718,7 +5731,7 @@ msgstr ""
5718
  "систему)."
5719
 
5720
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5721
- #: gravityforms.php:86
5722
  msgid "No forms found."
5723
  msgstr "Формы не найдены."
5724
 
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 Jun 25 2014 19:46:13 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Russian\n"
48
 
49
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
50
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
51
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
52
+ #: includes/mycred-shortcodes.php:562
53
  msgid "Processing..."
54
  msgstr "Обработка..."
55
 
111
  msgstr "Запись в журнале обновлена"
112
 
113
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
114
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Установка"
181
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
182
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
183
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
184
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
185
  msgid "Select"
186
  msgstr "Выбрать"
187
 
395
  msgstr "Заплатить пользователям"
396
 
397
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
398
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
399
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
400
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
401
  msgid "Amount"
402
  msgstr "Количество"
403
 
463
  "настроек."
464
 
465
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
466
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
467
  msgid "Excludes"
468
  msgstr "Исключает"
469
 
492
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
493
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
494
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
495
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
496
  msgid "Payments"
497
  msgstr "Платежи"
498
 
520
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
524
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
  #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
576
  msgstr "%s Способы оплаты"
577
 
578
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
+ #: addon-buy-creds.php:664
580
  msgid "buyCRED Settings"
581
  msgstr "настройки buyCRED"
582
 
608
  msgstr "Время"
609
 
610
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
612
  #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Шлюз"
615
 
616
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
+ #: addon-buy-creds.php:660
618
  msgid "Transaction ID"
619
  msgstr "Код трансакции "
620
 
654
  msgid "Update Gateway Settings"
655
  msgstr "Обновить настройки шлюза"
656
 
657
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
658
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
659
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
660
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
661
  msgid "User"
662
  msgstr "Пользователь"
663
 
664
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
665
  #: 640
666
  msgid "Date"
667
  msgstr "Дата "
668
 
669
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
670
  msgid "Payed"
671
  msgstr "Оплачено"
672
 
673
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
674
  msgid "<strong>buy</strong>CRED Purchase Log"
675
  msgstr "<strong>купить</strong>CRED журнал покупки"
676
 
677
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
678
  #: booking/mycred-eventespresso3.php:367
679
  msgid "Gateway Settings"
680
  msgstr "Настройки шлюза"
681
 
682
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
683
  msgid ""
684
  "Only completed purchases are shown here. Purchases that were cancelled or "
685
  "failed are not logged."
687
  "Тут показаны только завершенные покупки. Заказы, которые были отменены или "
688
  "не выполнены, не фиксируются."
689
 
690
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
691
  #: 743 ../modules/mycred-module-log.php:462
692
  msgid "User Missing"
693
  msgstr "Пользователь отсутствует"
694
 
695
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
696
+ #: content/myCRED-addon-sell-content.php:1109
697
  msgid "No purchases found"
698
  msgstr "Покупок не обнаружено"
699
 
700
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
701
+ #: addon-buy-creds.php:1009
702
  msgid "This Add-on needs to setup before you can use this shortcode."
703
  msgstr ""
704
  "Это расширение необходимо установить перед началом использования этого "
705
  "короткого номера."
706
 
707
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
708
+ #: addon-buy-creds.php:1027
709
  msgid "No gateways installed."
710
  msgstr "Нет установленных шлюзов."
711
 
712
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
713
+ #: addon-buy-creds.php:1028
714
  msgid "Gateway does not exist."
715
  msgstr "Шлюз не существует."
716
 
717
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
718
  msgid "Yourself"
719
  msgstr "Самостоятельно"
720
 
721
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
722
  msgid "No active gateways found."
723
  msgstr "Активных шлюзов не обнаружено."
724
 
725
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
726
  msgid "The selected gateway is not active."
727
  msgstr "Выбранный шлюз не активен."
728
 
729
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
730
  #, php-format
731
  msgid "Buy with %gateway%"
732
  msgstr "Приобрести с %gateway%"
733
 
734
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
735
  #: content/myCRED-addon-sell-content.php:44
736
  msgid "Buy Now"
737
  msgstr "Купить сейчас"
738
 
739
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
740
  msgid "No users found"
741
  msgstr "Пользователи не найдены"
742
 
743
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
744
  msgid "To"
745
  msgstr "До"
746
 
747
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
748
  msgid "Select Amount"
749
  msgstr "Выбать количество "
750
 
751
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
752
  msgid "min."
753
  msgstr "мин."
754
 
755
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
756
  msgid "Select Gateway"
757
  msgstr "Выбрать шлюз"
758
 
801
  msgstr "Отменить покупку"
802
 
803
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
804
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
805
  msgid "required"
806
  msgstr "необходимо"
807
 
808
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
809
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
810
  msgid "optional"
811
  msgstr "выборочно"
812
 
1428
  msgstr "Купоны в корзине не обнаружены"
1429
 
1430
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1431
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1432
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1433
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1434
  #: module-addons.php:179
1435
  msgid "Email Notices"
1436
  msgstr "Email Уведомления"
1652
  msgid "Apply Coupon"
1653
  msgstr "Подать запрос на купон"
1654
 
1655
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1656
+ #: notices/myCRED-addon-email-notices.php:1107
1657
  msgid "Email Notice"
1658
  msgstr "Уведомление по электронной почте"
1659
 
1660
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1661
  #: addons/ranks/myCRED-addon-ranks.php:248
1662
  msgid "Add New"
1663
  msgstr "Добавить новое"
1664
 
1665
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1666
  msgid "Add New Notice"
1667
  msgstr "Добавить новое уведомление"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1670
  msgid "Edit Notice"
1671
  msgstr "Редактировать уведомление"
1672
 
1673
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1674
  msgid "New Notice"
1675
  msgstr "Новое уведомление"
1676
 
1677
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1678
  msgid "View Notice"
1679
  msgstr "Показать уведомление"
1680
 
1681
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1682
  msgid "Search Email Notices"
1683
  msgstr "Поиск уведомлений по электронной почте"
1684
 
1685
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1686
  msgid "No email notices found"
1687
  msgstr "Email-уведомления не найдены"
1688
 
1689
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1690
  msgid "No email notices found in Trash"
1691
  msgstr "В корзине не найдено email-уведомлений "
1692
 
1693
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1694
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1695
  #: php:589
1696
  msgid "General"
1697
  msgstr "Общее"
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1700
  msgid "users balance changes"
1701
  msgstr "Изменения баланса пользователя"
1702
 
1703
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1704
  msgid "user gains %_plural%"
1705
  msgstr "пользователь получает %_plural%"
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1708
  msgid "user lose %_plural%"
1709
  msgstr "пользователь теряет %_plural%"
1710
 
1711
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1712
  msgid "users balance reaches zero"
1713
  msgstr "баланс пользователя достигает нуля"
1714
 
1715
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1716
  msgid "users balance goes minus"
1717
  msgstr "баланс пользователя достиг минуса "
1718
 
1719
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1720
  msgid "Sell Content Add-on"
1721
  msgstr "Продать расширение контента "
1722
 
1723
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1724
  msgid "user buys content"
1725
  msgstr "пользователь приобретает контент"
1726
 
1727
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1728
  msgid "authors content gets sold"
1729
  msgstr "контент автора продается"
1730
 
1731
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1732
  msgid "buyCREDs Add-on"
1733
  msgstr "Расширение buyCREDs"
1734
 
1735
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1736
  msgid "user buys %_plural%"
1737
  msgstr "пользователь покупает %_plural%"
1738
 
1739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1740
  msgid "Transfer Add-on"
1741
  msgstr "Переместить расширение"
1742
 
1743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1744
  msgid "user sends %_plural%"
1745
  msgstr "пользователь отправляет %_plural%"
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1748
  msgid "user receives %_plural%"
1749
  msgstr "пользователь получает %_plural%"
1750
 
1751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1752
  msgid "Ranks Add-on"
1753
  msgstr "Категории расширений"
1754
 
1755
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1756
  msgid "user is demoted"
1757
  msgstr "рейтинг пользователя понижен"
1758
 
1759
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1760
  msgid "user is promoted"
1761
  msgstr "рейгинг пользователя повышен"
1762
 
1763
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1764
  msgid ""
1765
  "Settings that apply to all email notices and can not be overridden for "
1766
  "individual emails."
1768
  "Настройки, которые применяются ко всем email-уведомлениям, нельзя отменить "
1769
  "для отдельных электронных писем."
1770
 
1771
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1772
  msgid "Email Format"
1773
  msgstr "Формат электронного письма"
1774
 
1775
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1776
  msgid "Plain text emails only."
1777
  msgstr "Отправляется только текст"
1778
 
1779
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1780
  msgid "HTML or Plain text emails."
1781
  msgstr "HTML или электронные письма с чистым текстом"
1782
 
1783
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1784
  msgid "Filters"
1785
  msgstr "Фильтры"
1786
 
1787
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1788
  msgid ""
1789
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1790
  "an email is sent."
1792
  "Разрешить плагинам WordPress и Third Party фильтровать тему электронного "
1793
  "письма перед его отправкой."
1794
 
1795
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1796
  msgid ""
1797
  "Allow WordPress and Third Party Plugins to filter the email content before "
1798
  "an email is sent."
1800
  "Разрешить плагинам WordPress и Third Party фильтровать содержание "
1801
  "электронного письма перед его отправкой."
1802
 
1803
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1804
+ #: notices/myCRED-addon-email-notices.php:305
1805
  msgid "Email Schedule"
1806
  msgstr ""
1807
 
1808
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1809
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1810
  msgstr ""
1811
 
1812
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1813
  msgid "Send emails immediately"
1814
  msgstr ""
1815
 
1816
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1817
  msgid "Send emails once an hour"
1818
  msgstr ""
1819
 
1820
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1821
  msgid "Send emails once a day"
1822
  msgstr ""
1823
 
1824
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1825
  msgid "Subscriptions"
1826
  msgstr ""
1827
 
1828
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1829
  #, php-format
1830
  msgid ""
1831
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1832
  "updates."
1833
  msgstr ""
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1836
  msgid "SMTP Override"
1837
  msgstr ""
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1840
  msgid ""
1841
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1842
  "use a SMTP plugin for emails."
1843
  msgstr ""
1844
 
1845
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1846
  msgid ""
1847
  "Default email settings. These settings can be individually overridden when "
1848
  "editing emails."
1850
  "Настройки электронной почты по умолчанию. Эти настройки не могут быть "
1851
  "переопределены при редактировании электронных писем."
1852
 
1853
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1854
+ #: notices/myCRED-addon-email-notices.php:771
1855
  msgid "Email Settings"
1856
  msgstr "Настройки электронного письма"
1857
 
1858
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1859
+ #: notices/myCRED-addon-email-notices.php:894
1860
  msgid "Senders Name:"
1861
  msgstr "Имя отправителя:"
1862
 
1863
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1864
+ #: notices/myCRED-addon-email-notices.php:896
1865
  msgid "Senders Email:"
1866
  msgstr "Письмо отправителя:"
1867
 
1868
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1869
  msgid "Reply-To:"
1870
  msgstr "Ответить:"
1871
 
1872
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1873
  msgid "Default Email Content"
1874
  msgstr "Настройка содержания письма по умолчанию"
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1877
  msgid "Default email content."
1878
  msgstr "Настройка содержания письма по умолчанию."
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1881
  msgid "Default Email Styling"
1882
  msgstr "Настройка оформления письма"
1883
 
1884
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1885
  msgid "Ignored if HTML is not allowed in emails."
1886
  msgstr "Игнорируется, если HTML в письмах не разрешается."
1887
 
1888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1889
+ #: notices/myCRED-addon-email-notices.php:820
1890
  msgid "Email Subject"
1891
  msgstr "Тема письма"
1892
 
1893
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1894
  msgid "Status"
1895
  msgstr "Статус"
1896
 
1897
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1898
  msgid "Not Active"
1899
  msgstr "Не активно"
1900
 
1901
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1902
  #, php-format
1903
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1904
  msgstr "Запланированный: <br /><strong>%1$s</strong>"
1905
 
1906
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1907
  msgid "Active"
1908
  msgstr "Активен"
1909
 
1910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1911
  #, php-format
1912
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1913
  msgstr "Активен - Последний запуск: <br /><strong>%1$s</strong>"
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1916
  msgid "Email is sent when"
1917
  msgstr "Электронное письмо отправляется, когда"
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1920
  msgid "Missing instance for this notice!"
1921
  msgstr "Отсутствует пример для этого уведомления!"
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1924
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1925
+ #: addon-email-notices.php:759
1926
  msgid "Sent To"
1927
  msgstr "Отправить"
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1930
+ #: notices/myCRED-addon-email-notices.php:885
1931
  msgid "Administrator"
1932
  msgstr "Администратору"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1935
  msgid "Both Administrator and User"
1936
  msgstr "Администратору и Пользователю"
1937
 
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1939
  msgid "Available Template Tags"
1940
  msgstr "Доступные теги шаблона"
1941
 
1942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1943
  msgid "Email Header"
1944
  msgstr "Заголовок и-мейла"
1945
 
1946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1947
  msgid "Send this email notice when..."
1948
  msgstr "Отправить это и-мейл оповещение когда..."
1949
 
1950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1951
  msgid "Recipient:"
1952
  msgstr "Получатель:"
1953
 
1954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1955
  msgid "Both"
1956
  msgstr "Оба"
1957
 
1958
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1959
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1960
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1961
  #: module-settings.php:526
1962
  msgid "Label"
1963
  msgstr "Ярлык"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1966
  msgid "Reply-To Email:"
1967
  msgstr "Ответить на и-мейл:"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1970
  msgid "Save"
1971
  msgstr "Сохранить"
1972
 
1973
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1974
  msgid "CSS Styling"
1975
  msgstr "Оформление CSS"
1976
 
1977
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1978
  msgid "Site Related"
1979
  msgstr "Сопутствующий сайт"
1980
 
1981
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1982
  msgid "Your websites title"
1983
  msgstr "Заголовок ваших веб-сайтов"
1984
 
1985
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1986
  msgid "Your websites address"
1987
  msgstr "Адрес ваших веб-сайтов"
1988
 
1989
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1990
  msgid "Your websites tagline (description)"
1991
  msgstr "Подзаголовок вашего веб-сайта (описание)"
1992
 
1993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1994
  msgid "Your websites admin email"
1995
  msgstr "Электронный адрес администратора вашего веб-сайта"
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1998
  msgid "Total number of blog members"
1999
  msgstr "Общее количество участников блога"
2000
 
2001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
2002
+ #: notices/myCRED-addon-email-notices.php:1018
2003
  #, php-format
2004
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2005
  msgstr "И-мейл оповещение обновлено. Просмотреть<a href=\"%1$s\">Все Уведомления</a>."
2006
 
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2008
  msgid "Email Notice Activated"
2009
  msgstr "И-мейл оповещение активировано"
2010
 
2011
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2012
  msgid "Email Notice Saved"
2013
  msgstr "И-мейл оповещение сохранено"
2014
 
2015
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
2016
  #, php-format
2017
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2018
  msgstr ""
2019
  "И-мейл оповещение требует одобрения. Просмотреть <a href=\"%1$s\">Все "
2020
  "оповещения</a>."
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
2023
  #, php-format
2024
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2025
  msgstr "И-мейл оповещение, запланированное для: <strong>%1$s</strong>."
2026
 
2027
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
2028
  msgid ""
2029
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2030
  "are not yet ready to use this email notice!"
2032
  "После \"публикации\" сообщение становится активным! Выберите \"Сохранить "
2033
  "Черновик\", если вы не готовы использовать это и-мейл оповещение!"
2034
 
2035
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
2036
  #, php-format
2037
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2038
  msgstr "Это оповещение активизируется:<br /><strong>%1$s</strong>"
2039
 
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
2041
  msgid "This email notice is active."
2042
  msgstr "И-мейл извещение активно."
2043
 
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
2045
  msgid "Settings saved."
2046
  msgstr ""
2047
 
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
2049
  msgid "Unsubscribe"
2050
  msgstr ""
2051
 
2052
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
2053
  msgid "There are no email notifications yet."
2054
  msgstr ""
2055
 
2056
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
2057
  msgid "Save Changes"
2058
  msgstr ""
2059
 
2060
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2061
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2062
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2063
+ #: php:412 ../includes/mycred-admin.php:491
2064
  msgid "Current Balance"
2065
  msgstr "Текущий баланс"
2066
 
2507
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2508
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2509
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2510
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2511
+ #: sell-content.php:587
2512
  msgid "Button Label"
2513
  msgstr "Кнопка ярлыка"
2514
 
2521
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2522
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2523
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2524
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2525
+ #: sell-content.php:583
2526
  msgid "Price"
2527
  msgstr "Цена"
2528
 
2544
  msgstr "Журнал"
2545
 
2546
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2547
+ #: includes/mycred-admin.php:496
2548
  msgid "Log Entry"
2549
  msgstr "Журнал входа"
2550
 
3125
  msgstr "В этом ранге пользователи не обнаружены"
3126
 
3127
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3128
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3129
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3130
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3131
  msgid "error"
3132
  msgstr "ошибка"
3133
 
3147
  msgid "Hours"
3148
  msgstr "Часов"
3149
 
3150
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3151
  msgid "You can not buy this content."
3152
  msgstr "Вы не можете приобрести этот контент."
3153
 
3154
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3155
  msgid "Error. Try Again"
3156
  msgstr "Ошибка. Повторите попытку"
3157
 
3158
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3159
  msgid "No Payout. Just charge."
3160
  msgstr "Нет выплат. Только расходы."
3161
 
3162
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3163
  msgid "Pay Content Author."
3164
  msgstr "Заплатить автору контента."
3165
 
3166
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3167
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3168
  #: addons.php:224
3169
  msgid "Sell Content"
3170
  msgstr "Продать контент"
3171
 
3172
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3173
  msgid "Post Types"
3174
  msgstr "Типы публикации"
3175
 
3176
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3177
  msgid "Comma separated list of post types that can be sold."
3178
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3179
 
3180
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3181
  msgid "Percentage to pay Author"
3182
  msgstr "Проценты для выплаты автору"
3183
 
3184
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3185
  msgid ""
3186
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3187
  "authors are not paid."
3189
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3190
  "игнорируется, если авторам не платят. "
3191
 
3192
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3193
  msgid "Defaults"
3194
  msgstr "Неплатёж"
3195
 
3196
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3197
  msgid "Allow authors to change price."
3198
  msgstr "Разрешить авторам изменять цену. "
3199
 
3200
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3201
  msgid "Allow authors to change button label."
3202
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3203
 
3204
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3205
  msgid "Purchases expire after"
3206
  msgstr "Срок покупки истекает после"
3207
 
3208
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3209
  msgid "Use zero for permanent sales."
3210
  msgstr "Использовать ноль для постоянных распродаж."
3211
 
3212
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3213
  msgid "Sale Template for non members"
3214
  msgstr "Шаблон распродажи для приглашенных"
3215
 
3216
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3217
  #, php-format
3218
  msgid ""
3219
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3222
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3223
  "пользователь должен войти в систему для покупки контента!"
3224
 
3225
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3226
  msgid "Sale Template for members"
3227
  msgstr "Шаблон распродажи для участников"
3228
 
3229
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3230
+ #: content/myCRED-addon-sell-content.php:428
3231
  #, php-format
3232
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3233
  msgstr ""
3234
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3235
  "работали! "
3236
 
3237
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3238
  msgid "Insufficient funds template"
3239
  msgstr "Шаблон недостатка средств"
3240
 
3241
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3242
  msgid "Log template for Purchases"
3243
  msgstr "Журнал шаблона для покупок"
3244
 
3245
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3246
  msgid "Log template for Sales"
3247
  msgstr "Журнал шаблона для распродаж"
3248
 
3249
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3250
  #, php-format
3251
  msgid "%s Sell This"
3252
  msgstr "%s продать это"
3253
 
3254
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3255
  #, php-format
3256
  msgid "%s Sell Content needs to be setup before you can use this feature."
3257
  msgstr ""
3258
  "%s Необходимо установить продажу контента перед началом использования этого "
3259
  "свойства."
3260
 
3261
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3262
  msgid "Setup add-on"
3263
  msgstr "Расширение настройки"
3264
 
3265
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3266
  msgid "Lets do it"
3267
  msgstr "Выполнить это"
3268
 
3269
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3270
+ #, php-format
3271
+ msgid "Enable sale of this %s"
3272
+ msgstr ""
3273
 
3274
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3275
  msgid "Purchase expires after"
3276
  msgstr "Срок действия покупки истекает после "
3277
 
3278
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3279
  msgid "Thank you for your purchase!"
3280
  msgstr "Благодарим вас за вашу покупку!"
3281
 
3282
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3283
+ #: content/myCRED-addon-sell-content.php:1091
3284
  msgid "The following content is set for sale:"
3285
  msgstr "Следующий контент установлен на продажу:"
3286
 
3287
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3288
  msgid "Purchased"
3289
  msgstr "Купленный"
3290
 
3573
  msgid "Excluded"
3574
  msgstr "Исключено"
3575
 
3576
+ #: ../includes/mycred-admin.php:282
3577
+ #, php-format
3578
+ msgid "Total: %s"
3579
+ msgstr ""
3580
+
3581
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3582
  #: modules/mycred-module-log.php:251
3583
  msgid "History"
3584
  msgstr "История"
3585
 
3586
+ #: ../includes/mycred-admin.php:292
3587
  msgid "Adjust"
3588
  msgstr "Корректировать"
3589
 
3590
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3591
  #, php-format
3592
  msgid "%singular% balance"
3593
  msgstr "%singular% баланс"
3594
 
3595
+ #: ../includes/mycred-admin.php:372
3596
  msgid "Adjust Your Balance"
3597
  msgstr "Корректировать свой баланс"
3598
 
3599
+ #: ../includes/mycred-admin.php:374
3600
  msgid "Adjust Users Balance"
3601
  msgstr "Корректировать баланс пользователя"
3602
 
3603
+ #: ../includes/mycred-admin.php:385
3604
  msgid "Log description for adjustment"
3605
  msgstr "Описание журнала для корректировки "
3606
 
3607
+ #: ../includes/mycred-admin.php:388
3608
  msgid "Update"
3609
  msgstr "Обновить"
3610
 
3611
+ #: ../includes/mycred-admin.php:389
3612
  msgid "Description is required!"
3613
  msgstr "Требуется обновление!"
3614
 
3615
+ #: ../includes/mycred-admin.php:489
3616
  msgid "ID"
3617
  msgstr "ID"
3618
 
3619
+ #: ../includes/mycred-admin.php:495
3620
  msgid "A positive or negative value"
3621
  msgstr "Положительное или отрицательное значение"
3622
 
3623
+ #: ../includes/mycred-admin.php:497
3624
  msgid "Update Balance"
3625
  msgstr "Обновить баланс"
3626
 
3748
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3749
  msgstr "myCRED требует версию SQL 5.0 или выше. Найдены версии:"
3750
 
3751
+ #: ../includes/mycred-install.php:53
3752
+ msgid ""
3753
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3754
+ "check your PHP configuration or contact your host and ask them to enable it "
3755
+ "for you!"
3756
+ msgstr ""
3757
+
3758
+ #: ../includes/mycred-install.php:58
3759
  msgid ""
3760
  "Sorry but your WordPress installation does not reach the minimum "
3761
  "requirements for running myCRED. The following errors were given:"
3763
  "К сожалению, ваша установка WordPress не соответствует минимальным "
3764
  "требованиям для запуска myCRED. Были обнаружены следующие ошибки:"
3765
 
3766
+ #: ../includes/mycred-install.php:247
3767
  msgid "myCRED needs your attention."
3768
  msgstr "myCRED нуждается в вашем обслуживании."
3769
 
3770
+ #: ../includes/mycred-install.php:247
3771
  msgid "Run Setup"
3772
  msgstr "Запустить установку"
3773
 
3774
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3775
  msgid "myCRED Setup"
3776
  msgstr "Установка myCRED"
3777
 
3778
+ #: ../includes/mycred-install.php:389
3779
  #, php-format
3780
  msgid "%s Setup"
3781
  msgstr "%s Установка"
3782
 
3783
+ #: ../includes/mycred-install.php:391
3784
  msgid "Step"
3785
  msgstr "Шаг"
3786
 
3787
+ #: ../includes/mycred-install.php:415
3788
  msgid ""
3789
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3790
  "points format, layout and security settings."
3792
  "Нажмите \"Начать установку\", чтобы установить myCRED. Вы сможете выбирать "
3793
  "формат ваших баллов, настройки макета страницы и безопасности. "
3794
 
3795
+ #: ../includes/mycred-install.php:416
3796
  msgid "Begin Setup"
3797
  msgstr "Начать установку"
3798
 
3799
+ #: ../includes/mycred-install.php:471
3800
  msgid "Select the format you want to use for your points."
3801
  msgstr "Выбрать формат, который вы хотите использовать для ваших единиц."
3802
 
3803
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3804
  msgid "Format"
3805
  msgstr "Формат"
3806
 
3807
+ #: ../includes/mycred-install.php:475
3808
  msgid "Separators"
3809
  msgstr "Сепараторы"
3810
 
3811
+ #: ../includes/mycred-install.php:485
3812
  msgid "Decimals"
3813
  msgstr "Дроби"
3814
 
3815
+ #: ../includes/mycred-install.php:487
3816
  msgid "Use zero for no decimals."
3817
  msgstr "Используйте ноль для не десятичных чисел"
3818
 
3819
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3820
  msgid "Presentation"
3821
  msgstr "Отображение"
3822
 
3823
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3824
  msgid "Name (Singular)"
3825
  msgstr "Имя (единственное число)"
3826
 
3827
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3828
  msgid "Name (Plural)"
3829
  msgstr "Имя (множественное число)"
3830
 
3831
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3832
  msgid "Prefix"
3833
  msgstr "Префикс"
3834
 
3835
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3836
  msgid "Suffix"
3837
  msgstr "Суффикс"
3838
 
3839
+ #: ../includes/mycred-install.php:515
3840
  msgid "Cancel Setup"
3841
  msgstr "Установка отмены"
3842
 
3843
+ #: ../includes/mycred-install.php:515
3844
  msgid "Cancel"
3845
  msgstr "Отменить"
3846
 
3847
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3848
  msgid "Next"
3849
  msgstr "Следующее"
3850
 
3851
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3852
  msgid "Security"
3853
  msgstr "Безопасность"
3854
 
3855
+ #: ../includes/mycred-install.php:550
3856
  msgid "Edit Settings Capability"
3857
  msgstr "Редактировать возможности настроек"
3858
 
3859
+ #: ../includes/mycred-install.php:554
3860
  msgid "Edit Users %plural% Capability"
3861
  msgstr "Редактировать возможности %plural% пользователей"
3862
 
3863
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3864
  msgid "Maximum %plural% payouts"
3865
  msgstr "Максимальные выплаты %plural%"
3866
 
3867
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3868
  msgid ""
3869
  "As an added security, you can set the maximum amount a user can gain or "
3870
  "loose in a single instance. If used, make sure this is the maximum amount a "
3877
  "пользователь сможет перевести, купить или потратить в магазине. Используйте "
3878
  "ноль для отключения."
3879
 
3880
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3881
  msgid "Exclude those who can \"Edit Settings\"."
3882
  msgstr "Исключить тех, кто может \"Редактировать Настройки\"."
3883
 
3884
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3885
  msgid "Exclude those who can \"Edit Users %plural%\"."
3886
  msgstr "Исключить тех, кто может \"Редактировать Настройки %plural%\"."
3887
 
3888
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3889
  msgid "Exclude the following user IDs:"
3890
  msgstr "Исключить ID следующих пользователей: "
3891
 
3892
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3893
  msgid "User Deletions"
3894
  msgstr "Удаление пользователя"
3895
 
3896
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3897
  msgid "Delete log entries when user is deleted."
3898
  msgstr "Удалять записи в журнале после удаления пользователя."
3899
 
3900
+ #: ../includes/mycred-install.php:603
3901
  msgid "Ready"
3902
  msgstr "Готово"
3903
 
3904
+ #: ../includes/mycred-install.php:604
3905
  msgid "Almost done! Click the button below to finish this setup."
3906
  msgstr "Почти готово! Нажмите кнопку ниже для завершения этой установки."
3907
 
3908
+ #: ../includes/mycred-install.php:605
3909
  msgid "Install & Run"
3910
  msgstr "Установка и запуск"
3911
 
4182
  msgid "Leaderboard is empty."
4183
  msgstr "Таблица лидеров пуста."
4184
 
4185
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4186
  msgid "Amount missing!"
4187
  msgstr "Сумма отсутствует!"
4188
 
4189
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4190
  msgid "Log Template Missing!"
4191
  msgstr "Шаблон журнала отсутствует!"
4192
 
4193
+ #: ../includes/mycred-shortcodes.php:444
4194
  msgid "Anchor missing URL!"
4195
  msgstr "Отсутствует привязка URL!"
4196
 
4197
+ #: ../includes/mycred-shortcodes.php:509
4198
  msgid "User ID missing for recipient."
4199
  msgstr "Отсутствует ID пользователя для получателя."
4200
 
4201
+ #: ../includes/mycred-shortcodes.php:563
4202
  msgid "Sent"
4203
  msgstr "Отправлено"
4204
 
4205
+ #: ../includes/mycred-shortcodes.php:564
4206
  msgid "Error - Try Again"
4207
  msgstr "Ошибка - Повторите попытку"
4208
 
4209
+ #: ../includes/mycred-shortcodes.php:672
4210
  msgid "A video ID is required for this shortcode"
4211
  msgstr "Для этого короткого номера требуется ID видео"
4212
 
4832
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4833
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4834
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4835
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4836
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4837
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4838
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5731
  "систему)."
5732
 
5733
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5734
+ #: gravityforms.php:115
5735
  msgid "No forms found."
5736
  msgstr "Формы не найдены."
5737
 
lang/mycred-sv_SE.mo CHANGED
Binary file
lang/mycred-sv_SE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:27:41 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
@@ -47,8 +47,8 @@ msgstr "Hjälpsamma Användare"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
- #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Arbetar..."
54
 
@@ -101,7 +101,7 @@ msgid "Log entry updated"
101
  msgstr "Log inlägg updaterad"
102
 
103
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
104
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr "Setup"
@@ -171,7 +171,7 @@ msgstr "En gång om dagen (börjar om efter midnatt)"
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
173
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
174
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
175
  msgid "Select"
176
  msgstr "Välj"
177
 
@@ -380,9 +380,9 @@ msgid "Pay Users"
380
  msgstr "Betala Användare"
381
 
382
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
383
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
384
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
385
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
386
  msgid "Amount"
387
  msgstr "Summa"
388
 
@@ -445,7 +445,7 @@ msgstr ""
445
  "fortsätta köra när du nästa gång aktiverar den,"
446
 
447
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
448
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
449
  msgid "Excludes"
450
  msgstr "Exkludera "
451
 
@@ -472,7 +472,7 @@ msgstr "Köp Log"
472
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
473
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
474
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
475
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
476
  msgid "Payments"
477
  msgstr "Köp"
478
 
@@ -500,7 +500,7 @@ msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
500
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
501
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
502
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
503
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
504
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
505
  #: includes/importers/mycred-cubepoints.php:365
506
  msgid "Point Type"
@@ -556,7 +556,7 @@ msgid "%s Payment Gateways"
556
  msgstr "%s Betalnings Operatörer"
557
 
558
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
559
- #: addon-buy-creds.php:663
560
  msgid "buyCRED Settings"
561
  msgstr "buyCRED Inställningar"
562
 
@@ -584,13 +584,13 @@ msgid "Time"
584
  msgstr "Tid"
585
 
586
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
587
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
588
  #: overview.php:173 ../modules/mycred-module-addons.php:190
589
  msgid "Gateway"
590
  msgstr "Operatör"
591
 
592
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
593
- #: addon-buy-creds.php:659
594
  msgid "Transaction ID"
595
  msgstr "Transaktions ID"
596
 
@@ -630,101 +630,101 @@ msgstr "Aktivera för test köp."
630
  msgid "Update Gateway Settings"
631
  msgstr "Uppdatera Operatör Inställningar"
632
 
633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
634
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
635
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
636
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
637
  msgid "User"
638
  msgstr "Användare"
639
 
640
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
641
  #: 640
642
  msgid "Date"
643
  msgstr "Datum"
644
 
645
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
646
  msgid "Payed"
647
  msgstr "Betalt"
648
 
649
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
650
  msgid "<strong>buy</strong>CRED Purchase Log"
651
  msgstr "<strong>buy</strong>CRED Köp Log"
652
 
653
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
654
  #: booking/mycred-eventespresso3.php:367
655
  msgid "Gateway Settings"
656
  msgstr "Operatör Inställningar"
657
 
658
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
659
  msgid ""
660
  "Only completed purchases are shown here. Purchases that were cancelled or "
661
  "failed are not logged."
662
  msgstr "Bara bekräftade köp visas här."
663
 
664
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
665
  #: 743 ../modules/mycred-module-log.php:462
666
  msgid "User Missing"
667
  msgstr "Användare saknas"
668
 
669
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
670
- #: content/myCRED-addon-sell-content.php:1112
671
  msgid "No purchases found"
672
  msgstr "Inga Köp"
673
 
674
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
675
- #: addon-buy-creds.php:1008
676
  msgid "This Add-on needs to setup before you can use this shortcode."
677
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
678
 
679
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
680
- #: addon-buy-creds.php:1026
681
  msgid "No gateways installed."
682
  msgstr "Inga Operatörer är installerade."
683
 
684
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
685
- #: addon-buy-creds.php:1027
686
  msgid "Gateway does not exist."
687
  msgstr "Kunde inte finna operatör."
688
 
689
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
690
  msgid "Yourself"
691
  msgstr "Till dig själv"
692
 
693
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
694
  msgid "No active gateways found."
695
  msgstr "Kunde inte hitta några aktiverade operatörer."
696
 
697
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
698
  msgid "The selected gateway is not active."
699
  msgstr "Operatören du valde är inte aktiverad."
700
 
701
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
702
  #, php-format
703
  msgid "Buy with %gateway%"
704
  msgstr "Köp genom %gateway%"
705
 
706
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
707
  #: content/myCRED-addon-sell-content.php:44
708
  msgid "Buy Now"
709
  msgstr "Köp"
710
 
711
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
712
  msgid "No users found"
713
  msgstr "Kunde inte hitta någon"
714
 
715
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
716
  msgid "To"
717
  msgstr "Till"
718
 
719
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
720
  msgid "Select Amount"
721
  msgstr "Välj summa"
722
 
723
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
724
  msgid "min."
725
  msgstr "min."
726
 
727
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
728
  msgid "Select Gateway"
729
  msgstr "Välj Operatör"
730
 
@@ -771,12 +771,12 @@ msgid "Cancel purchase"
771
  msgstr "Cancellara köp"
772
 
773
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
774
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
775
  msgid "required"
776
  msgstr "obligatoriskt"
777
 
778
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
779
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
780
  msgid "optional"
781
  msgstr "valfritt"
782
 
@@ -1382,9 +1382,9 @@ msgid "No coupons found in Trash"
1382
  msgstr "Fann inga kuponger i papperskorgen"
1383
 
1384
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1385
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1386
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1387
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1388
  #: module-addons.php:179
1389
  msgid "Email Notices"
1390
  msgstr "Email Uppdateringar"
@@ -1596,137 +1596,137 @@ msgstr "Kupong Laddning"
1596
  msgid "Apply Coupon"
1597
  msgstr "Validera"
1598
 
1599
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1600
- #: notices/myCRED-addon-email-notices.php:1138
1601
  msgid "Email Notice"
1602
  msgstr "E-postmeddelande"
1603
 
1604
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1605
  #: addons/ranks/myCRED-addon-ranks.php:248
1606
  msgid "Add New"
1607
  msgstr "Ny"
1608
 
1609
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1610
  msgid "Add New Notice"
1611
  msgstr "Ny Meddelande"
1612
 
1613
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1614
  msgid "Edit Notice"
1615
  msgstr "Justera Inställningar"
1616
 
1617
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1618
  msgid "New Notice"
1619
  msgstr "Ny Meddelande"
1620
 
1621
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1622
  msgid "View Notice"
1623
  msgstr "Se E-postmeddelande"
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1626
  msgid "Search Email Notices"
1627
  msgstr "Sök E-postmeddelande"
1628
 
1629
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1630
  msgid "No email notices found"
1631
  msgstr "Fann inga e-postmeddelande"
1632
 
1633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1634
  msgid "No email notices found in Trash"
1635
  msgstr "Fann inga e-postmeddelande i papperskorgen"
1636
 
1637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1638
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1639
  #: php:589
1640
  msgid "General"
1641
  msgstr "Allmänt"
1642
 
1643
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1644
  msgid "users balance changes"
1645
  msgstr "användarens saldo ändras"
1646
 
1647
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1648
  msgid "user gains %_plural%"
1649
  msgstr "användaren får %_plural%"
1650
 
1651
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1652
  msgid "user lose %_plural%"
1653
  msgstr "användaren förlorar %_plural%"
1654
 
1655
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1656
  msgid "users balance reaches zero"
1657
  msgstr "användarens saldo når noll"
1658
 
1659
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1660
  msgid "users balance goes minus"
1661
  msgstr "användarens saldo går minus"
1662
 
1663
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1664
  msgid "Sell Content Add-on"
1665
  msgstr "Sell Content Add-on"
1666
 
1667
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1668
  msgid "user buys content"
1669
  msgstr "köp av inlägg"
1670
 
1671
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1672
  msgid "authors content gets sold"
1673
  msgstr "sälj av inlägg"
1674
 
1675
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1676
  msgid "buyCREDs Add-on"
1677
  msgstr "buyCREDs Add-on"
1678
 
1679
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1680
  msgid "user buys %_plural%"
1681
  msgstr "köp av %_plural%"
1682
 
1683
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1684
  msgid "Transfer Add-on"
1685
  msgstr "Transfer Add-on"
1686
 
1687
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1688
  msgid "user sends %_plural%"
1689
  msgstr "användare skickar %_plural%"
1690
 
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1692
  msgid "user receives %_plural%"
1693
  msgstr "användare mottar %_plural%"
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1696
  msgid "Ranks Add-on"
1697
  msgstr "Ranks Add-on"
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1700
  msgid "user is demoted"
1701
  msgstr "användare degraderas"
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1704
  msgid "user is promoted"
1705
  msgstr "användare blir befordrad"
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1708
  msgid ""
1709
  "Settings that apply to all email notices and can not be overridden for "
1710
  "individual emails."
1711
  msgstr "Grund inställningar som inte går att kringgå i enskilda e-postmeddelanden."
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1714
  msgid "Email Format"
1715
  msgstr "E-post format"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1718
  msgid "Plain text emails only."
1719
  msgstr "Skicka som oformaterad text."
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1722
  msgid "HTML or Plain text emails."
1723
  msgstr "Skicka HTML formatering."
1724
 
1725
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1726
  msgid "Filters"
1727
  msgstr "Filter"
1728
 
1729
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1730
  msgid ""
1731
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1732
  "an email is sent."
@@ -1734,7 +1734,7 @@ msgstr ""
1734
  "Tillåt WordPress och andra plugins att formatera e-post meddelandets titel "
1735
  "innan den sänds."
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1738
  msgid ""
1739
  "Allow WordPress and Third Party Plugins to filter the email content before "
1740
  "an email is sent."
@@ -1742,49 +1742,49 @@ msgstr ""
1742
  "Tillåt WordPress och andra plugins att formatera e-post meddelandet innan "
1743
  "den skickas."
1744
 
1745
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1746
- #: notices/myCRED-addon-email-notices.php:303
1747
  msgid "Email Schedule"
1748
  msgstr ""
1749
 
1750
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1751
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1752
  msgstr ""
1753
 
1754
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1755
  msgid "Send emails immediately"
1756
  msgstr ""
1757
 
1758
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1759
  msgid "Send emails once an hour"
1760
  msgstr ""
1761
 
1762
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1763
  msgid "Send emails once a day"
1764
  msgstr ""
1765
 
1766
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1767
  msgid "Subscriptions"
1768
  msgstr ""
1769
 
1770
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1771
  #, php-format
1772
  msgid ""
1773
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1774
  "updates."
1775
  msgstr ""
1776
 
1777
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1778
  msgid "SMTP Override"
1779
  msgstr ""
1780
 
1781
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1782
  msgid ""
1783
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1784
  "use a SMTP plugin for emails."
1785
  msgstr ""
1786
 
1787
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1788
  msgid ""
1789
  "Default email settings. These settings can be individually overridden when "
1790
  "editing emails."
@@ -1792,181 +1792,181 @@ msgstr ""
1792
  "Förvalda e-postinställningar. Dessa inställningar kan individuellt "
1793
  "åsidosättas när du redigerar postmeddelanden."
1794
 
1795
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1796
- #: notices/myCRED-addon-email-notices.php:802
1797
  msgid "Email Settings"
1798
  msgstr "E-mail inställningar"
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1801
- #: notices/myCRED-addon-email-notices.php:925
1802
  msgid "Senders Name:"
1803
  msgstr "Avsändarens Namn:"
1804
 
1805
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1806
- #: notices/myCRED-addon-email-notices.php:927
1807
  msgid "Senders Email:"
1808
  msgstr "Avsändarens e-postadress"
1809
 
1810
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1811
  msgid "Reply-To:"
1812
  msgstr "Svars E-postadress"
1813
 
1814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1815
  msgid "Default Email Content"
1816
  msgstr "Standrard E-post meddelande"
1817
 
1818
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1819
  msgid "Default email content."
1820
  msgstr "Standard e-post meddelande"
1821
 
1822
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1823
  msgid "Default Email Styling"
1824
  msgstr "Standrad e-post css design"
1825
 
1826
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1827
  msgid "Ignored if HTML is not allowed in emails."
1828
  msgstr "Ignoreras om e-post inte använder HTML formatering."
1829
 
1830
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1831
- #: notices/myCRED-addon-email-notices.php:851
1832
  msgid "Email Subject"
1833
  msgstr "Ämne"
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1836
  msgid "Status"
1837
  msgstr "Status"
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1840
  msgid "Not Active"
1841
  msgstr "Inte Aktiv"
1842
 
1843
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1844
  #, php-format
1845
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1846
  msgstr "Planerad:<br /><strong>%1%s</strong>"
1847
 
1848
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1849
  msgid "Active"
1850
  msgstr "Aktiv"
1851
 
1852
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1853
  #, php-format
1854
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1855
  msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
1856
 
1857
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1858
  msgid "Email is sent when"
1859
  msgstr "E-post skickas när"
1860
 
1861
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1862
  msgid "Missing instance for this notice!"
1863
  msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
1864
 
1865
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1866
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1867
- #: addon-email-notices.php:790
1868
  msgid "Sent To"
1869
  msgstr "Skicka till"
1870
 
1871
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1872
- #: notices/myCRED-addon-email-notices.php:916
1873
  msgid "Administrator"
1874
  msgstr "Administratörer"
1875
 
1876
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1877
  msgid "Both Administrator and User"
1878
  msgstr "Både Administratörer och Användare"
1879
 
1880
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1881
  msgid "Available Template Tags"
1882
  msgstr "Valbara Template Tags"
1883
 
1884
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1885
  msgid "Email Header"
1886
  msgstr "E-post header"
1887
 
1888
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1889
  msgid "Send this email notice when..."
1890
  msgstr "Skicka e-post när ..."
1891
 
1892
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1893
  msgid "Recipient:"
1894
  msgstr "Mottagare"
1895
 
1896
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1897
  msgid "Both"
1898
  msgstr "Båda"
1899
 
1900
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1901
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1902
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1903
  #: module-settings.php:526
1904
  msgid "Label"
1905
  msgstr "Titel"
1906
 
1907
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1908
  msgid "Reply-To Email:"
1909
  msgstr "Svars e-postadress:"
1910
 
1911
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1912
  msgid "Save"
1913
  msgstr "Spara"
1914
 
1915
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1916
  msgid "CSS Styling"
1917
  msgstr "CSS design"
1918
 
1919
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1920
  msgid "Site Related"
1921
  msgstr "Hemsida relaterat"
1922
 
1923
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1924
  msgid "Your websites title"
1925
  msgstr "Din hemsidas titel"
1926
 
1927
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1928
  msgid "Your websites address"
1929
  msgstr "Din hemsidas URL adress"
1930
 
1931
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1932
  msgid "Your websites tagline (description)"
1933
  msgstr "Din hemsidas beskrivning"
1934
 
1935
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1936
  msgid "Your websites admin email"
1937
  msgstr "Din hemsidas administratör e-postadress"
1938
 
1939
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1940
  msgid "Total number of blog members"
1941
  msgstr "Total antal användare på hemsidan"
1942
 
1943
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1944
- #: notices/myCRED-addon-email-notices.php:1049
1945
  #, php-format
1946
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1947
  msgstr "E-post meddelandet sparat. See <a href=\"%1$s\">Alla meddelanden</a>."
1948
 
1949
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1950
  msgid "Email Notice Activated"
1951
  msgstr "E-post meddelande aktiverad"
1952
 
1953
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1954
  msgid "Email Notice Saved"
1955
  msgstr "E-post meddelande inställningar updaterade"
1956
 
1957
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1958
  #, php-format
1959
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1960
  msgstr ""
1961
  "E-post meddelande skickad till godkännande. See <a href=\"%1$s\">Alla "
1962
  "meddelanden</a>."
1963
 
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1965
  #, php-format
1966
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1967
  msgstr "E-post meddelande plannerad för: <strong>%1$s</strong>."
1968
 
1969
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
1970
  msgid ""
1971
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1972
  "are not yet ready to use this email notice!"
@@ -1974,35 +1974,35 @@ msgstr ""
1974
  "När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
1975
  "samma! Spara som kladd om du inte vill använda meddelandet just nu."
1976
 
1977
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
1978
  #, php-format
1979
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1980
  msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
1981
 
1982
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
1983
  msgid "This email notice is active."
1984
  msgstr "Detta e-post meddelande är inte aktivt."
1985
 
1986
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
1987
  msgid "Settings saved."
1988
  msgstr ""
1989
 
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
1991
  msgid "Unsubscribe"
1992
  msgstr ""
1993
 
1994
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
1995
  msgid "There are no email notifications yet."
1996
  msgstr ""
1997
 
1998
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
1999
  msgid "Save Changes"
2000
  msgstr ""
2001
 
2002
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2003
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2004
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2005
- #: php:412 ../includes/mycred-admin.php:478
2006
  msgid "Current Balance"
2007
  msgstr "Nuvarande Saldo"
2008
 
@@ -2446,8 +2446,8 @@ msgstr "Titel att visa på kvitton och i loggar"
2446
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2447
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2448
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2449
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2450
- #: sell-content.php:590
2451
  msgid "Button Label"
2452
  msgstr "Knapp Text"
2453
 
@@ -2460,8 +2460,8 @@ msgstr "Betalnings Knapp"
2460
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2461
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2462
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2463
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2464
- #: sell-content.php:586
2465
  msgid "Price"
2466
  msgstr "Pris"
2467
 
@@ -2483,7 +2483,7 @@ msgid "Log"
2483
  msgstr "Log"
2484
 
2485
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2486
- #: includes/mycred-admin.php:483
2487
  msgid "Log Entry"
2488
  msgstr "Log Inlägg"
2489
 
@@ -3045,9 +3045,9 @@ msgid "No users found with this rank"
3045
  msgstr "Inga användare hittades med denna rank"
3046
 
3047
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3048
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3049
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3050
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3051
  msgid "error"
3052
  msgstr "error"
3053
 
@@ -3067,41 +3067,41 @@ msgstr "Försäljning av %link_with_title%"
3067
  msgid "Hours"
3068
  msgstr "Timmar"
3069
 
3070
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
3071
  msgid "You can not buy this content."
3072
  msgstr "Du kan inte köpa detta innehåll"
3073
 
3074
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
3075
  msgid "Error. Try Again"
3076
  msgstr "Fel. Försök igen"
3077
 
3078
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
3079
  msgid "No Payout. Just charge."
3080
  msgstr "Ingen vinstdelning. Bara ta betalt."
3081
 
3082
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
3083
  msgid "Pay Content Author."
3084
  msgstr "Dela vinst med författaren."
3085
 
3086
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3087
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3088
  #: addons.php:224
3089
  msgid "Sell Content"
3090
  msgstr "Sälj Innehåll"
3091
 
3092
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
3093
  msgid "Post Types"
3094
  msgstr "Post Typer"
3095
 
3096
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
3097
  msgid "Comma separated list of post types that can be sold."
3098
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3099
 
3100
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
3101
  msgid "Percentage to pay Author"
3102
  msgstr "Procent att betala författaren"
3103
 
3104
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3105
  msgid ""
3106
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3107
  "authors are not paid."
@@ -3109,95 +3109,96 @@ msgstr ""
3109
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3110
  "ignorerar om vinstfördelning är inte aktiverad."
3111
 
3112
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3113
  msgid "Defaults"
3114
  msgstr "Standard Inställningar"
3115
 
3116
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3117
  msgid "Allow authors to change price."
3118
  msgstr "Tillåt författare att ändra priset."
3119
 
3120
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3121
  msgid "Allow authors to change button label."
3122
  msgstr "Tillåt användare att ändra knapp texten."
3123
 
3124
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3125
  msgid "Purchases expire after"
3126
  msgstr "Köp löper ut efter"
3127
 
3128
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3129
  msgid "Use zero for permanent sales."
3130
  msgstr "Använd noll till permanenta försäljningar."
3131
 
3132
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3133
  msgid "Sale Template for non members"
3134
  msgstr "Mall för besökare"
3135
 
3136
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3137
  #, php-format
3138
  msgid ""
3139
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3140
  "be logged in to buy content!"
3141
  msgstr "Använd inte %buy_button% coden här!"
3142
 
3143
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3144
  msgid "Sale Template for members"
3145
  msgstr "Mall för medlemmar"
3146
 
3147
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3148
- #: content/myCRED-addon-sell-content.php:431
3149
  #, php-format
3150
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3151
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3152
 
3153
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3154
  msgid "Insufficient funds template"
3155
  msgstr "Mall för när täckning saknas"
3156
 
3157
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3158
  msgid "Log template for Purchases"
3159
  msgstr "Log mall för köp"
3160
 
3161
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3162
  msgid "Log template for Sales"
3163
  msgstr "Log mall för försäljning"
3164
 
3165
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3166
  #, php-format
3167
  msgid "%s Sell This"
3168
  msgstr "%s Sälj Detta"
3169
 
3170
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3171
  #, php-format
3172
  msgid "%s Sell Content needs to be setup before you can use this feature."
3173
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3174
 
3175
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3176
  msgid "Setup add-on"
3177
  msgstr "Installera add-on"
3178
 
3179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3180
  msgid "Lets do it"
3181
  msgstr "Kör!"
3182
 
3183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3184
- msgid "Enable sale of this "
3185
- msgstr "Aktivera försäljning av detta innehål"
 
3186
 
3187
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3188
  msgid "Purchase expires after"
3189
  msgstr "Köp löper ut efter"
3190
 
3191
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3192
  msgid "Thank you for your purchase!"
3193
  msgstr "Tack för ditt köp!"
3194
 
3195
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3196
- #: content/myCRED-addon-sell-content.php:1094
3197
  msgid "The following content is set for sale:"
3198
  msgstr "Följande innehåll är till salu:"
3199
 
3200
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3201
  msgid "Purchased"
3202
  msgstr "Köp historik"
3203
 
@@ -3464,49 +3465,54 @@ msgstr ""
3464
  msgid "Excluded"
3465
  msgstr ""
3466
 
3467
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3468
  #: modules/mycred-module-log.php:251
3469
  msgid "History"
3470
  msgstr ""
3471
 
3472
- #: ../includes/mycred-admin.php:280
3473
  msgid "Adjust"
3474
  msgstr ""
3475
 
3476
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3477
  #, php-format
3478
  msgid "%singular% balance"
3479
  msgstr ""
3480
 
3481
- #: ../includes/mycred-admin.php:359
3482
  msgid "Adjust Your Balance"
3483
  msgstr ""
3484
 
3485
- #: ../includes/mycred-admin.php:361
3486
  msgid "Adjust Users Balance"
3487
  msgstr ""
3488
 
3489
- #: ../includes/mycred-admin.php:372
3490
  msgid "Log description for adjustment"
3491
  msgstr ""
3492
 
3493
- #: ../includes/mycred-admin.php:375
3494
  msgid "Update"
3495
  msgstr ""
3496
 
3497
- #: ../includes/mycred-admin.php:376
3498
  msgid "Description is required!"
3499
  msgstr ""
3500
 
3501
- #: ../includes/mycred-admin.php:476
3502
  msgid "ID"
3503
  msgstr ""
3504
 
3505
- #: ../includes/mycred-admin.php:482
3506
  msgid "A positive or negative value"
3507
  msgstr ""
3508
 
3509
- #: ../includes/mycred-admin.php:484
3510
  msgid "Update Balance"
3511
  msgstr ""
3512
 
@@ -3634,112 +3640,119 @@ msgstr ""
3634
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3635
  msgstr ""
3636
 
3637
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3638
  msgid ""
3639
  "Sorry but your WordPress installation does not reach the minimum "
3640
  "requirements for running myCRED. The following errors were given:"
3641
  msgstr ""
3642
 
3643
- #: ../includes/mycred-install.php:243
3644
  msgid "myCRED needs your attention."
3645
  msgstr ""
3646
 
3647
- #: ../includes/mycred-install.php:243
3648
  msgid "Run Setup"
3649
  msgstr ""
3650
 
3651
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3652
  msgid "myCRED Setup"
3653
  msgstr ""
3654
 
3655
- #: ../includes/mycred-install.php:385
3656
  #, php-format
3657
  msgid "%s Setup"
3658
  msgstr ""
3659
 
3660
- #: ../includes/mycred-install.php:387
3661
  msgid "Step"
3662
  msgstr ""
3663
 
3664
- #: ../includes/mycred-install.php:411
3665
  msgid ""
3666
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3667
  "points format, layout and security settings."
3668
  msgstr ""
3669
 
3670
- #: ../includes/mycred-install.php:412
3671
  msgid "Begin Setup"
3672
  msgstr ""
3673
 
3674
- #: ../includes/mycred-install.php:467
3675
  msgid "Select the format you want to use for your points."
3676
  msgstr ""
3677
 
3678
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3679
  msgid "Format"
3680
  msgstr ""
3681
 
3682
- #: ../includes/mycred-install.php:471
3683
  msgid "Separators"
3684
  msgstr ""
3685
 
3686
- #: ../includes/mycred-install.php:481
3687
  msgid "Decimals"
3688
  msgstr ""
3689
 
3690
- #: ../includes/mycred-install.php:483
3691
  msgid "Use zero for no decimals."
3692
  msgstr ""
3693
 
3694
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3695
  msgid "Presentation"
3696
  msgstr ""
3697
 
3698
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3699
  msgid "Name (Singular)"
3700
  msgstr ""
3701
 
3702
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3703
  msgid "Name (Plural)"
3704
  msgstr ""
3705
 
3706
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3707
  msgid "Prefix"
3708
  msgstr ""
3709
 
3710
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3711
  msgid "Suffix"
3712
  msgstr ""
3713
 
3714
- #: ../includes/mycred-install.php:511
3715
  msgid "Cancel Setup"
3716
  msgstr ""
3717
 
3718
- #: ../includes/mycred-install.php:511
3719
  msgid "Cancel"
3720
  msgstr ""
3721
 
3722
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3723
  msgid "Next"
3724
  msgstr ""
3725
 
3726
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3727
  msgid "Security"
3728
  msgstr ""
3729
 
3730
- #: ../includes/mycred-install.php:546
3731
  msgid "Edit Settings Capability"
3732
  msgstr ""
3733
 
3734
- #: ../includes/mycred-install.php:550
3735
  msgid "Edit Users %plural% Capability"
3736
  msgstr ""
3737
 
3738
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3739
  msgid "Maximum %plural% payouts"
3740
  msgstr ""
3741
 
3742
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3743
  msgid ""
3744
  "As an added security, you can set the maximum amount a user can gain or "
3745
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3747,35 +3760,35 @@ msgid ""
3747
  "disable."
3748
  msgstr ""
3749
 
3750
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3751
  msgid "Exclude those who can \"Edit Settings\"."
3752
  msgstr ""
3753
 
3754
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3755
  msgid "Exclude those who can \"Edit Users %plural%\"."
3756
  msgstr ""
3757
 
3758
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3759
  msgid "Exclude the following user IDs:"
3760
  msgstr ""
3761
 
3762
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3763
  msgid "User Deletions"
3764
  msgstr ""
3765
 
3766
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3767
  msgid "Delete log entries when user is deleted."
3768
  msgstr ""
3769
 
3770
- #: ../includes/mycred-install.php:599
3771
  msgid "Ready"
3772
  msgstr ""
3773
 
3774
- #: ../includes/mycred-install.php:600
3775
  msgid "Almost done! Click the button below to finish this setup."
3776
  msgstr ""
3777
 
3778
- #: ../includes/mycred-install.php:601
3779
  msgid "Install & Run"
3780
  msgstr ""
3781
 
@@ -4037,31 +4050,31 @@ msgstr ""
4037
  msgid "Leaderboard is empty."
4038
  msgstr ""
4039
 
4040
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
4041
  msgid "Amount missing!"
4042
  msgstr ""
4043
 
4044
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
4045
  msgid "Log Template Missing!"
4046
  msgstr ""
4047
 
4048
- #: ../includes/mycred-shortcodes.php:417
4049
  msgid "Anchor missing URL!"
4050
  msgstr ""
4051
 
4052
- #: ../includes/mycred-shortcodes.php:482
4053
  msgid "User ID missing for recipient."
4054
  msgstr ""
4055
 
4056
- #: ../includes/mycred-shortcodes.php:536
4057
  msgid "Sent"
4058
  msgstr ""
4059
 
4060
- #: ../includes/mycred-shortcodes.php:537
4061
  msgid "Error - Try Again"
4062
  msgstr ""
4063
 
4064
- #: ../includes/mycred-shortcodes.php:645
4065
  msgid "A video ID is required for this shortcode"
4066
  msgstr ""
4067
 
@@ -4640,7 +4653,7 @@ msgstr ""
4640
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4641
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4642
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4643
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4644
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4645
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4646
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5475,7 +5488,7 @@ msgid "Awards %_plural% for successful form submissions (by logged in users)."
5475
  msgstr ""
5476
 
5477
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5478
- #: gravityforms.php:86
5479
  msgid "No forms found."
5480
  msgstr ""
5481
 
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 Jun 25 2014 19:46:42 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Swedish\n"
47
 
48
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:562
52
  msgid "Processing..."
53
  msgstr "Arbetar..."
54
 
101
  msgstr "Log inlägg updaterad"
102
 
103
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
104
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr "Setup"
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
173
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
174
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
175
  msgid "Select"
176
  msgstr "Välj"
177
 
380
  msgstr "Betala Användare"
381
 
382
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
383
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
384
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
385
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
386
  msgid "Amount"
387
  msgstr "Summa"
388
 
445
  "fortsätta köra när du nästa gång aktiverar den,"
446
 
447
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
448
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
449
  msgid "Excludes"
450
  msgstr "Exkludera "
451
 
472
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
473
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
474
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
475
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
476
  msgid "Payments"
477
  msgstr "Köp"
478
 
500
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
501
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
502
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
503
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
504
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
505
  #: includes/importers/mycred-cubepoints.php:365
506
  msgid "Point Type"
556
  msgstr "%s Betalnings Operatörer"
557
 
558
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
559
+ #: addon-buy-creds.php:664
560
  msgid "buyCRED Settings"
561
  msgstr "buyCRED Inställningar"
562
 
584
  msgstr "Tid"
585
 
586
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
587
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
588
  #: overview.php:173 ../modules/mycred-module-addons.php:190
589
  msgid "Gateway"
590
  msgstr "Operatör"
591
 
592
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
593
+ #: addon-buy-creds.php:660
594
  msgid "Transaction ID"
595
  msgstr "Transaktions ID"
596
 
630
  msgid "Update Gateway Settings"
631
  msgstr "Uppdatera Operatör Inställningar"
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
634
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
635
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
636
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
637
  msgid "User"
638
  msgstr "Användare"
639
 
640
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
641
  #: 640
642
  msgid "Date"
643
  msgstr "Datum"
644
 
645
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
646
  msgid "Payed"
647
  msgstr "Betalt"
648
 
649
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
650
  msgid "<strong>buy</strong>CRED Purchase Log"
651
  msgstr "<strong>buy</strong>CRED Köp Log"
652
 
653
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
654
  #: booking/mycred-eventespresso3.php:367
655
  msgid "Gateway Settings"
656
  msgstr "Operatör Inställningar"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
659
  msgid ""
660
  "Only completed purchases are shown here. Purchases that were cancelled or "
661
  "failed are not logged."
662
  msgstr "Bara bekräftade köp visas här."
663
 
664
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
665
  #: 743 ../modules/mycred-module-log.php:462
666
  msgid "User Missing"
667
  msgstr "Användare saknas"
668
 
669
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
670
+ #: content/myCRED-addon-sell-content.php:1109
671
  msgid "No purchases found"
672
  msgstr "Inga Köp"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
675
+ #: addon-buy-creds.php:1009
676
  msgid "This Add-on needs to setup before you can use this shortcode."
677
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
678
 
679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
680
+ #: addon-buy-creds.php:1027
681
  msgid "No gateways installed."
682
  msgstr "Inga Operatörer är installerade."
683
 
684
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
685
+ #: addon-buy-creds.php:1028
686
  msgid "Gateway does not exist."
687
  msgstr "Kunde inte finna operatör."
688
 
689
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
690
  msgid "Yourself"
691
  msgstr "Till dig själv"
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
694
  msgid "No active gateways found."
695
  msgstr "Kunde inte hitta några aktiverade operatörer."
696
 
697
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
698
  msgid "The selected gateway is not active."
699
  msgstr "Operatören du valde är inte aktiverad."
700
 
701
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
702
  #, php-format
703
  msgid "Buy with %gateway%"
704
  msgstr "Köp genom %gateway%"
705
 
706
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
707
  #: content/myCRED-addon-sell-content.php:44
708
  msgid "Buy Now"
709
  msgstr "Köp"
710
 
711
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
712
  msgid "No users found"
713
  msgstr "Kunde inte hitta någon"
714
 
715
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
716
  msgid "To"
717
  msgstr "Till"
718
 
719
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
720
  msgid "Select Amount"
721
  msgstr "Välj summa"
722
 
723
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
724
  msgid "min."
725
  msgstr "min."
726
 
727
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
728
  msgid "Select Gateway"
729
  msgstr "Välj Operatör"
730
 
771
  msgstr "Cancellara köp"
772
 
773
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
774
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
775
  msgid "required"
776
  msgstr "obligatoriskt"
777
 
778
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
779
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
780
  msgid "optional"
781
  msgstr "valfritt"
782
 
1382
  msgstr "Fann inga kuponger i papperskorgen"
1383
 
1384
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1385
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1386
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1387
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1388
  #: module-addons.php:179
1389
  msgid "Email Notices"
1390
  msgstr "Email Uppdateringar"
1596
  msgid "Apply Coupon"
1597
  msgstr "Validera"
1598
 
1599
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1600
+ #: notices/myCRED-addon-email-notices.php:1107
1601
  msgid "Email Notice"
1602
  msgstr "E-postmeddelande"
1603
 
1604
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1605
  #: addons/ranks/myCRED-addon-ranks.php:248
1606
  msgid "Add New"
1607
  msgstr "Ny"
1608
 
1609
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1610
  msgid "Add New Notice"
1611
  msgstr "Ny Meddelande"
1612
 
1613
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1614
  msgid "Edit Notice"
1615
  msgstr "Justera Inställningar"
1616
 
1617
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1618
  msgid "New Notice"
1619
  msgstr "Ny Meddelande"
1620
 
1621
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1622
  msgid "View Notice"
1623
  msgstr "Se E-postmeddelande"
1624
 
1625
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1626
  msgid "Search Email Notices"
1627
  msgstr "Sök E-postmeddelande"
1628
 
1629
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1630
  msgid "No email notices found"
1631
  msgstr "Fann inga e-postmeddelande"
1632
 
1633
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1634
  msgid "No email notices found in Trash"
1635
  msgstr "Fann inga e-postmeddelande i papperskorgen"
1636
 
1637
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1638
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1639
  #: php:589
1640
  msgid "General"
1641
  msgstr "Allmänt"
1642
 
1643
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1644
  msgid "users balance changes"
1645
  msgstr "användarens saldo ändras"
1646
 
1647
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1648
  msgid "user gains %_plural%"
1649
  msgstr "användaren får %_plural%"
1650
 
1651
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1652
  msgid "user lose %_plural%"
1653
  msgstr "användaren förlorar %_plural%"
1654
 
1655
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1656
  msgid "users balance reaches zero"
1657
  msgstr "användarens saldo når noll"
1658
 
1659
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1660
  msgid "users balance goes minus"
1661
  msgstr "användarens saldo går minus"
1662
 
1663
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1664
  msgid "Sell Content Add-on"
1665
  msgstr "Sell Content Add-on"
1666
 
1667
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1668
  msgid "user buys content"
1669
  msgstr "köp av inlägg"
1670
 
1671
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1672
  msgid "authors content gets sold"
1673
  msgstr "sälj av inlägg"
1674
 
1675
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1676
  msgid "buyCREDs Add-on"
1677
  msgstr "buyCREDs Add-on"
1678
 
1679
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1680
  msgid "user buys %_plural%"
1681
  msgstr "köp av %_plural%"
1682
 
1683
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1684
  msgid "Transfer Add-on"
1685
  msgstr "Transfer Add-on"
1686
 
1687
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1688
  msgid "user sends %_plural%"
1689
  msgstr "användare skickar %_plural%"
1690
 
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1692
  msgid "user receives %_plural%"
1693
  msgstr "användare mottar %_plural%"
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1696
  msgid "Ranks Add-on"
1697
  msgstr "Ranks Add-on"
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1700
  msgid "user is demoted"
1701
  msgstr "användare degraderas"
1702
 
1703
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1704
  msgid "user is promoted"
1705
  msgstr "användare blir befordrad"
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1708
  msgid ""
1709
  "Settings that apply to all email notices and can not be overridden for "
1710
  "individual emails."
1711
  msgstr "Grund inställningar som inte går att kringgå i enskilda e-postmeddelanden."
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1714
  msgid "Email Format"
1715
  msgstr "E-post format"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1718
  msgid "Plain text emails only."
1719
  msgstr "Skicka som oformaterad text."
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1722
  msgid "HTML or Plain text emails."
1723
  msgstr "Skicka HTML formatering."
1724
 
1725
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1726
  msgid "Filters"
1727
  msgstr "Filter"
1728
 
1729
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1730
  msgid ""
1731
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1732
  "an email is sent."
1734
  "Tillåt WordPress och andra plugins att formatera e-post meddelandets titel "
1735
  "innan den sänds."
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1738
  msgid ""
1739
  "Allow WordPress and Third Party Plugins to filter the email content before "
1740
  "an email is sent."
1742
  "Tillåt WordPress och andra plugins att formatera e-post meddelandet innan "
1743
  "den skickas."
1744
 
1745
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1746
+ #: notices/myCRED-addon-email-notices.php:305
1747
  msgid "Email Schedule"
1748
  msgstr ""
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1751
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1752
  msgstr ""
1753
 
1754
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1755
  msgid "Send emails immediately"
1756
  msgstr ""
1757
 
1758
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1759
  msgid "Send emails once an hour"
1760
  msgstr ""
1761
 
1762
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1763
  msgid "Send emails once a day"
1764
  msgstr ""
1765
 
1766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1767
  msgid "Subscriptions"
1768
  msgstr ""
1769
 
1770
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1771
  #, php-format
1772
  msgid ""
1773
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1774
  "updates."
1775
  msgstr ""
1776
 
1777
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1778
  msgid "SMTP Override"
1779
  msgstr ""
1780
 
1781
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1782
  msgid ""
1783
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1784
  "use a SMTP plugin for emails."
1785
  msgstr ""
1786
 
1787
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1788
  msgid ""
1789
  "Default email settings. These settings can be individually overridden when "
1790
  "editing emails."
1792
  "Förvalda e-postinställningar. Dessa inställningar kan individuellt "
1793
  "åsidosättas när du redigerar postmeddelanden."
1794
 
1795
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1796
+ #: notices/myCRED-addon-email-notices.php:771
1797
  msgid "Email Settings"
1798
  msgstr "E-mail inställningar"
1799
 
1800
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1801
+ #: notices/myCRED-addon-email-notices.php:894
1802
  msgid "Senders Name:"
1803
  msgstr "Avsändarens Namn:"
1804
 
1805
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1806
+ #: notices/myCRED-addon-email-notices.php:896
1807
  msgid "Senders Email:"
1808
  msgstr "Avsändarens e-postadress"
1809
 
1810
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1811
  msgid "Reply-To:"
1812
  msgstr "Svars E-postadress"
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1815
  msgid "Default Email Content"
1816
  msgstr "Standrard E-post meddelande"
1817
 
1818
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1819
  msgid "Default email content."
1820
  msgstr "Standard e-post meddelande"
1821
 
1822
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1823
  msgid "Default Email Styling"
1824
  msgstr "Standrad e-post css design"
1825
 
1826
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1827
  msgid "Ignored if HTML is not allowed in emails."
1828
  msgstr "Ignoreras om e-post inte använder HTML formatering."
1829
 
1830
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1831
+ #: notices/myCRED-addon-email-notices.php:820
1832
  msgid "Email Subject"
1833
  msgstr "Ämne"
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1836
  msgid "Status"
1837
  msgstr "Status"
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1840
  msgid "Not Active"
1841
  msgstr "Inte Aktiv"
1842
 
1843
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1844
  #, php-format
1845
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1846
  msgstr "Planerad:<br /><strong>%1%s</strong>"
1847
 
1848
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1849
  msgid "Active"
1850
  msgstr "Aktiv"
1851
 
1852
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1853
  #, php-format
1854
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1855
  msgstr "Aktiv - Sist kört:<br /><strong>%1$s</strong>"
1856
 
1857
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1858
  msgid "Email is sent when"
1859
  msgstr "E-post skickas när"
1860
 
1861
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1862
  msgid "Missing instance for this notice!"
1863
  msgstr "E-post meddelandet saknar inställningar för när e-post skall skickas!"
1864
 
1865
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1866
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1867
+ #: addon-email-notices.php:759
1868
  msgid "Sent To"
1869
  msgstr "Skicka till"
1870
 
1871
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1872
+ #: notices/myCRED-addon-email-notices.php:885
1873
  msgid "Administrator"
1874
  msgstr "Administratörer"
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1877
  msgid "Both Administrator and User"
1878
  msgstr "Både Administratörer och Användare"
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1881
  msgid "Available Template Tags"
1882
  msgstr "Valbara Template Tags"
1883
 
1884
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1885
  msgid "Email Header"
1886
  msgstr "E-post header"
1887
 
1888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1889
  msgid "Send this email notice when..."
1890
  msgstr "Skicka e-post när ..."
1891
 
1892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1893
  msgid "Recipient:"
1894
  msgstr "Mottagare"
1895
 
1896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1897
  msgid "Both"
1898
  msgstr "Båda"
1899
 
1900
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1901
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1902
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1903
  #: module-settings.php:526
1904
  msgid "Label"
1905
  msgstr "Titel"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1908
  msgid "Reply-To Email:"
1909
  msgstr "Svars e-postadress:"
1910
 
1911
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1912
  msgid "Save"
1913
  msgstr "Spara"
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1916
  msgid "CSS Styling"
1917
  msgstr "CSS design"
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1920
  msgid "Site Related"
1921
  msgstr "Hemsida relaterat"
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1924
  msgid "Your websites title"
1925
  msgstr "Din hemsidas titel"
1926
 
1927
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1928
  msgid "Your websites address"
1929
  msgstr "Din hemsidas URL adress"
1930
 
1931
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1932
  msgid "Your websites tagline (description)"
1933
  msgstr "Din hemsidas beskrivning"
1934
 
1935
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1936
  msgid "Your websites admin email"
1937
  msgstr "Din hemsidas administratör e-postadress"
1938
 
1939
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1940
  msgid "Total number of blog members"
1941
  msgstr "Total antal användare på hemsidan"
1942
 
1943
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1944
+ #: notices/myCRED-addon-email-notices.php:1018
1945
  #, php-format
1946
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1947
  msgstr "E-post meddelandet sparat. See <a href=\"%1$s\">Alla meddelanden</a>."
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
1950
  msgid "Email Notice Activated"
1951
  msgstr "E-post meddelande aktiverad"
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
1954
  msgid "Email Notice Saved"
1955
  msgstr "E-post meddelande inställningar updaterade"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
1958
  #, php-format
1959
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1960
  msgstr ""
1961
  "E-post meddelande skickad till godkännande. See <a href=\"%1$s\">Alla "
1962
  "meddelanden</a>."
1963
 
1964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
1965
  #, php-format
1966
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1967
  msgstr "E-post meddelande plannerad för: <strong>%1$s</strong>."
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
1970
  msgid ""
1971
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1972
  "are not yet ready to use this email notice!"
1974
  "När ett e-post meddelande blir \"publicerad\" så börjar den användas med det "
1975
  "samma! Spara som kladd om du inte vill använda meddelandet just nu."
1976
 
1977
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
1978
  #, php-format
1979
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1980
  msgstr "E-post meddelandet aktiveras:<br /><stong>%1$s</strong>"
1981
 
1982
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
1983
  msgid "This email notice is active."
1984
  msgstr "Detta e-post meddelande är inte aktivt."
1985
 
1986
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
1987
  msgid "Settings saved."
1988
  msgstr ""
1989
 
1990
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
1991
  msgid "Unsubscribe"
1992
  msgstr ""
1993
 
1994
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
1995
  msgid "There are no email notifications yet."
1996
  msgstr ""
1997
 
1998
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
1999
  msgid "Save Changes"
2000
  msgstr ""
2001
 
2002
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2003
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2004
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2005
+ #: php:412 ../includes/mycred-admin.php:491
2006
  msgid "Current Balance"
2007
  msgstr "Nuvarande Saldo"
2008
 
2446
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2447
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2448
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2449
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2450
+ #: sell-content.php:587
2451
  msgid "Button Label"
2452
  msgstr "Knapp Text"
2453
 
2460
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2461
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2462
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2463
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2464
+ #: sell-content.php:583
2465
  msgid "Price"
2466
  msgstr "Pris"
2467
 
2483
  msgstr "Log"
2484
 
2485
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2486
+ #: includes/mycred-admin.php:496
2487
  msgid "Log Entry"
2488
  msgstr "Log Inlägg"
2489
 
3045
  msgstr "Inga användare hittades med denna rank"
3046
 
3047
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3048
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
3049
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
3050
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
3051
  msgid "error"
3052
  msgstr "error"
3053
 
3067
  msgid "Hours"
3068
  msgstr "Timmar"
3069
 
3070
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
3071
  msgid "You can not buy this content."
3072
  msgstr "Du kan inte köpa detta innehåll"
3073
 
3074
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
3075
  msgid "Error. Try Again"
3076
  msgstr "Fel. Försök igen"
3077
 
3078
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
3079
  msgid "No Payout. Just charge."
3080
  msgstr "Ingen vinstdelning. Bara ta betalt."
3081
 
3082
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
3083
  msgid "Pay Content Author."
3084
  msgstr "Dela vinst med författaren."
3085
 
3086
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
3087
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3088
  #: addons.php:224
3089
  msgid "Sell Content"
3090
  msgstr "Sälj Innehåll"
3091
 
3092
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
3093
  msgid "Post Types"
3094
  msgstr "Post Typer"
3095
 
3096
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
3097
  msgid "Comma separated list of post types that can be sold."
3098
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3099
 
3100
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3101
  msgid "Percentage to pay Author"
3102
  msgstr "Procent att betala författaren"
3103
 
3104
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3105
  msgid ""
3106
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3107
  "authors are not paid."
3109
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3110
  "ignorerar om vinstfördelning är inte aktiverad."
3111
 
3112
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3113
  msgid "Defaults"
3114
  msgstr "Standard Inställningar"
3115
 
3116
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3117
  msgid "Allow authors to change price."
3118
  msgstr "Tillåt författare att ändra priset."
3119
 
3120
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3121
  msgid "Allow authors to change button label."
3122
  msgstr "Tillåt användare att ändra knapp texten."
3123
 
3124
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3125
  msgid "Purchases expire after"
3126
  msgstr "Köp löper ut efter"
3127
 
3128
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3129
  msgid "Use zero for permanent sales."
3130
  msgstr "Använd noll till permanenta försäljningar."
3131
 
3132
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3133
  msgid "Sale Template for non members"
3134
  msgstr "Mall för besökare"
3135
 
3136
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3137
  #, php-format
3138
  msgid ""
3139
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3140
  "be logged in to buy content!"
3141
  msgstr "Använd inte %buy_button% coden här!"
3142
 
3143
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3144
  msgid "Sale Template for members"
3145
  msgstr "Mall för medlemmar"
3146
 
3147
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3148
+ #: content/myCRED-addon-sell-content.php:428
3149
  #, php-format
3150
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3151
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3152
 
3153
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3154
  msgid "Insufficient funds template"
3155
  msgstr "Mall för när täckning saknas"
3156
 
3157
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3158
  msgid "Log template for Purchases"
3159
  msgstr "Log mall för köp"
3160
 
3161
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3162
  msgid "Log template for Sales"
3163
  msgstr "Log mall för försäljning"
3164
 
3165
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3166
  #, php-format
3167
  msgid "%s Sell This"
3168
  msgstr "%s Sälj Detta"
3169
 
3170
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3171
  #, php-format
3172
  msgid "%s Sell Content needs to be setup before you can use this feature."
3173
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3174
 
3175
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3176
  msgid "Setup add-on"
3177
  msgstr "Installera add-on"
3178
 
3179
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3180
  msgid "Lets do it"
3181
  msgstr "Kör!"
3182
 
3183
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3184
+ #, php-format
3185
+ msgid "Enable sale of this %s"
3186
+ msgstr ""
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3189
  msgid "Purchase expires after"
3190
  msgstr "Köp löper ut efter"
3191
 
3192
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3193
  msgid "Thank you for your purchase!"
3194
  msgstr "Tack för ditt köp!"
3195
 
3196
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3197
+ #: content/myCRED-addon-sell-content.php:1091
3198
  msgid "The following content is set for sale:"
3199
  msgstr "Följande innehåll är till salu:"
3200
 
3201
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3202
  msgid "Purchased"
3203
  msgstr "Köp historik"
3204
 
3465
  msgid "Excluded"
3466
  msgstr ""
3467
 
3468
+ #: ../includes/mycred-admin.php:282
3469
+ #, php-format
3470
+ msgid "Total: %s"
3471
+ msgstr ""
3472
+
3473
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3474
  #: modules/mycred-module-log.php:251
3475
  msgid "History"
3476
  msgstr ""
3477
 
3478
+ #: ../includes/mycred-admin.php:292
3479
  msgid "Adjust"
3480
  msgstr ""
3481
 
3482
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3483
  #, php-format
3484
  msgid "%singular% balance"
3485
  msgstr ""
3486
 
3487
+ #: ../includes/mycred-admin.php:372
3488
  msgid "Adjust Your Balance"
3489
  msgstr ""
3490
 
3491
+ #: ../includes/mycred-admin.php:374
3492
  msgid "Adjust Users Balance"
3493
  msgstr ""
3494
 
3495
+ #: ../includes/mycred-admin.php:385
3496
  msgid "Log description for adjustment"
3497
  msgstr ""
3498
 
3499
+ #: ../includes/mycred-admin.php:388
3500
  msgid "Update"
3501
  msgstr ""
3502
 
3503
+ #: ../includes/mycred-admin.php:389
3504
  msgid "Description is required!"
3505
  msgstr ""
3506
 
3507
+ #: ../includes/mycred-admin.php:489
3508
  msgid "ID"
3509
  msgstr ""
3510
 
3511
+ #: ../includes/mycred-admin.php:495
3512
  msgid "A positive or negative value"
3513
  msgstr ""
3514
 
3515
+ #: ../includes/mycred-admin.php:497
3516
  msgid "Update Balance"
3517
  msgstr ""
3518
 
3640
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3641
  msgstr ""
3642
 
3643
+ #: ../includes/mycred-install.php:53
3644
+ msgid ""
3645
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3646
+ "check your PHP configuration or contact your host and ask them to enable it "
3647
+ "for you!"
3648
+ msgstr ""
3649
+
3650
+ #: ../includes/mycred-install.php:58
3651
  msgid ""
3652
  "Sorry but your WordPress installation does not reach the minimum "
3653
  "requirements for running myCRED. The following errors were given:"
3654
  msgstr ""
3655
 
3656
+ #: ../includes/mycred-install.php:247
3657
  msgid "myCRED needs your attention."
3658
  msgstr ""
3659
 
3660
+ #: ../includes/mycred-install.php:247
3661
  msgid "Run Setup"
3662
  msgstr ""
3663
 
3664
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3665
  msgid "myCRED Setup"
3666
  msgstr ""
3667
 
3668
+ #: ../includes/mycred-install.php:389
3669
  #, php-format
3670
  msgid "%s Setup"
3671
  msgstr ""
3672
 
3673
+ #: ../includes/mycred-install.php:391
3674
  msgid "Step"
3675
  msgstr ""
3676
 
3677
+ #: ../includes/mycred-install.php:415
3678
  msgid ""
3679
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3680
  "points format, layout and security settings."
3681
  msgstr ""
3682
 
3683
+ #: ../includes/mycred-install.php:416
3684
  msgid "Begin Setup"
3685
  msgstr ""
3686
 
3687
+ #: ../includes/mycred-install.php:471
3688
  msgid "Select the format you want to use for your points."
3689
  msgstr ""
3690
 
3691
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3692
  msgid "Format"
3693
  msgstr ""
3694
 
3695
+ #: ../includes/mycred-install.php:475
3696
  msgid "Separators"
3697
  msgstr ""
3698
 
3699
+ #: ../includes/mycred-install.php:485
3700
  msgid "Decimals"
3701
  msgstr ""
3702
 
3703
+ #: ../includes/mycred-install.php:487
3704
  msgid "Use zero for no decimals."
3705
  msgstr ""
3706
 
3707
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3708
  msgid "Presentation"
3709
  msgstr ""
3710
 
3711
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3712
  msgid "Name (Singular)"
3713
  msgstr ""
3714
 
3715
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3716
  msgid "Name (Plural)"
3717
  msgstr ""
3718
 
3719
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3720
  msgid "Prefix"
3721
  msgstr ""
3722
 
3723
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3724
  msgid "Suffix"
3725
  msgstr ""
3726
 
3727
+ #: ../includes/mycred-install.php:515
3728
  msgid "Cancel Setup"
3729
  msgstr ""
3730
 
3731
+ #: ../includes/mycred-install.php:515
3732
  msgid "Cancel"
3733
  msgstr ""
3734
 
3735
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3736
  msgid "Next"
3737
  msgstr ""
3738
 
3739
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3740
  msgid "Security"
3741
  msgstr ""
3742
 
3743
+ #: ../includes/mycred-install.php:550
3744
  msgid "Edit Settings Capability"
3745
  msgstr ""
3746
 
3747
+ #: ../includes/mycred-install.php:554
3748
  msgid "Edit Users %plural% Capability"
3749
  msgstr ""
3750
 
3751
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3752
  msgid "Maximum %plural% payouts"
3753
  msgstr ""
3754
 
3755
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3756
  msgid ""
3757
  "As an added security, you can set the maximum amount a user can gain or "
3758
  "loose in a single instance. If used, make sure this is the maximum amount a "
3760
  "disable."
3761
  msgstr ""
3762
 
3763
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3764
  msgid "Exclude those who can \"Edit Settings\"."
3765
  msgstr ""
3766
 
3767
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3768
  msgid "Exclude those who can \"Edit Users %plural%\"."
3769
  msgstr ""
3770
 
3771
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3772
  msgid "Exclude the following user IDs:"
3773
  msgstr ""
3774
 
3775
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3776
  msgid "User Deletions"
3777
  msgstr ""
3778
 
3779
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3780
  msgid "Delete log entries when user is deleted."
3781
  msgstr ""
3782
 
3783
+ #: ../includes/mycred-install.php:603
3784
  msgid "Ready"
3785
  msgstr ""
3786
 
3787
+ #: ../includes/mycred-install.php:604
3788
  msgid "Almost done! Click the button below to finish this setup."
3789
  msgstr ""
3790
 
3791
+ #: ../includes/mycred-install.php:605
3792
  msgid "Install & Run"
3793
  msgstr ""
3794
 
4050
  msgid "Leaderboard is empty."
4051
  msgstr ""
4052
 
4053
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
4054
  msgid "Amount missing!"
4055
  msgstr ""
4056
 
4057
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
4058
  msgid "Log Template Missing!"
4059
  msgstr ""
4060
 
4061
+ #: ../includes/mycred-shortcodes.php:444
4062
  msgid "Anchor missing URL!"
4063
  msgstr ""
4064
 
4065
+ #: ../includes/mycred-shortcodes.php:509
4066
  msgid "User ID missing for recipient."
4067
  msgstr ""
4068
 
4069
+ #: ../includes/mycred-shortcodes.php:563
4070
  msgid "Sent"
4071
  msgstr ""
4072
 
4073
+ #: ../includes/mycred-shortcodes.php:564
4074
  msgid "Error - Try Again"
4075
  msgstr ""
4076
 
4077
+ #: ../includes/mycred-shortcodes.php:672
4078
  msgid "A video ID is required for this shortcode"
4079
  msgstr ""
4080
 
4653
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4654
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4655
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4656
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4657
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4658
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4659
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5488
  msgstr ""
5489
 
5490
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5491
+ #: gravityforms.php:115
5492
  msgid "No forms found."
5493
  msgstr ""
5494
 
lang/mycred-zh_CN.mo CHANGED
Binary file
lang/mycred-zh_CN.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Jun 11 2014 16:27:55 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Chinese\n"
@@ -45,8 +45,8 @@ msgstr "真棒的人"
45
 
46
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
47
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
48
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
49
- #: includes/mycred-shortcodes.php:535
50
  msgid "Processing..."
51
  msgstr "处理中..."
52
 
@@ -99,7 +99,7 @@ msgid "Log entry updated"
99
  msgstr "日志条目更新"
100
 
101
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
102
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
103
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
104
  msgid "Setup"
105
  msgstr "设置"
@@ -167,7 +167,7 @@ msgstr "每天一次(在午夜重置)"
167
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
168
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
169
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
170
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
171
  msgid "Select"
172
  msgstr "选择"
173
 
@@ -367,9 +367,9 @@ msgid "Pay Users"
367
  msgstr "用户支付"
368
 
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
370
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
371
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
372
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
373
  msgid "Amount"
374
  msgstr "数量"
375
 
@@ -425,7 +425,7 @@ msgid ""
425
  msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,它将继续,直到它被重新激活。设置周期为零来重置。"
426
 
427
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
428
- #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
429
  msgid "Excludes"
430
  msgstr "排除"
431
 
@@ -452,7 +452,7 @@ msgstr "购买记录"
452
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
453
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
454
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
455
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
456
  msgid "Payments"
457
  msgstr "付款"
458
 
@@ -480,7 +480,7 @@ msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
480
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
481
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
482
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
483
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
484
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
485
  #: includes/importers/mycred-cubepoints.php:365
486
  msgid "Point Type"
@@ -536,7 +536,7 @@ msgid "%s Payment Gateways"
536
  msgstr "%s 支付网关"
537
 
538
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
539
- #: addon-buy-creds.php:663
540
  msgid "buyCRED Settings"
541
  msgstr "buyCRED设置"
542
 
@@ -564,13 +564,13 @@ msgid "Time"
564
  msgstr "时间"
565
 
566
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
567
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
568
  #: overview.php:173 ../modules/mycred-module-addons.php:190
569
  msgid "Gateway"
570
  msgstr "网关"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
573
- #: addon-buy-creds.php:659
574
  msgid "Transaction ID"
575
  msgstr "交易 ID"
576
 
@@ -610,101 +610,101 @@ msgstr "启用测试购买。"
610
  msgid "Update Gateway Settings"
611
  msgstr "更新网关设置"
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
614
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
615
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
616
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
617
  msgid "User"
618
  msgstr "用户"
619
 
620
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
621
  #: 640
622
  msgid "Date"
623
  msgstr "日期"
624
 
625
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
626
  msgid "Payed"
627
  msgstr "已支付"
628
 
629
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
630
  msgid "<strong>buy</strong>CRED Purchase Log"
631
  msgstr "<strong>buy</strong>CRED购买日志"
632
 
633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
634
  #: booking/mycred-eventespresso3.php:367
635
  msgid "Gateway Settings"
636
  msgstr "网关设置"
637
 
638
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
639
  msgid ""
640
  "Only completed purchases are shown here. Purchases that were cancelled or "
641
  "failed are not logged."
642
  msgstr "只在这里显示已完成的购买。取消或失败的购买将不会记录。"
643
 
644
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
645
  #: 743 ../modules/mycred-module-log.php:462
646
  msgid "User Missing"
647
  msgstr "用户丢失"
648
 
649
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
650
- #: content/myCRED-addon-sell-content.php:1112
651
  msgid "No purchases found"
652
  msgstr "没有找到购买"
653
 
654
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
655
- #: addon-buy-creds.php:1008
656
  msgid "This Add-on needs to setup before you can use this shortcode."
657
  msgstr "你需要安装这个扩展才可以使用这个简码。"
658
 
659
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
660
- #: addon-buy-creds.php:1026
661
  msgid "No gateways installed."
662
  msgstr "没有安装网关。"
663
 
664
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
665
- #: addon-buy-creds.php:1027
666
  msgid "Gateway does not exist."
667
  msgstr "网关不存在。"
668
 
669
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
670
  msgid "Yourself"
671
  msgstr "你自己"
672
 
673
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
674
  msgid "No active gateways found."
675
  msgstr "没有活跃的网关。"
676
 
677
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
678
  msgid "The selected gateway is not active."
679
  msgstr "所选择的网关没启用。"
680
 
681
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
682
  #, php-format
683
  msgid "Buy with %gateway%"
684
  msgstr "通过 %gateway% 购买。"
685
 
686
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
687
  #: content/myCRED-addon-sell-content.php:44
688
  msgid "Buy Now"
689
  msgstr "立即购买"
690
 
691
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
692
  msgid "No users found"
693
  msgstr "没有找到用户"
694
 
695
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
696
  msgid "To"
697
  msgstr "给"
698
 
699
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
700
  msgid "Select Amount"
701
  msgstr "选择金额"
702
 
703
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
704
  msgid "min."
705
  msgstr "分钟。"
706
 
707
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
708
  msgid "Select Gateway"
709
  msgstr "选择网关"
710
 
@@ -749,12 +749,12 @@ msgid "Cancel purchase"
749
  msgstr "取消购买"
750
 
751
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
752
- #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
753
  msgid "required"
754
  msgstr "必填"
755
 
756
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
757
- #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
758
  msgid "optional"
759
  msgstr "可选"
760
 
@@ -1339,9 +1339,9 @@ msgid "No coupons found in Trash"
1339
  msgstr "回收站没有优惠券"
1340
 
1341
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1342
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1343
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1344
- #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1345
  #: module-addons.php:179
1346
  msgid "Email Notices"
1347
  msgstr "邮件通知"
@@ -1545,403 +1545,403 @@ msgstr "返券"
1545
  msgid "Apply Coupon"
1546
  msgstr "申请优惠券"
1547
 
1548
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1549
- #: notices/myCRED-addon-email-notices.php:1138
1550
  msgid "Email Notice"
1551
  msgstr "邮件通知"
1552
 
1553
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1554
  #: addons/ranks/myCRED-addon-ranks.php:248
1555
  msgid "Add New"
1556
  msgstr "添加新信息"
1557
 
1558
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1559
  msgid "Add New Notice"
1560
  msgstr "添加新通知"
1561
 
1562
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1563
  msgid "Edit Notice"
1564
  msgstr "编辑通知"
1565
 
1566
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1567
  msgid "New Notice"
1568
  msgstr "新通知"
1569
 
1570
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1571
  msgid "View Notice"
1572
  msgstr "查看通知"
1573
 
1574
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1575
  msgid "Search Email Notices"
1576
  msgstr "搜索邮件通知"
1577
 
1578
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1579
  msgid "No email notices found"
1580
  msgstr "没有邮件通知"
1581
 
1582
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1583
  msgid "No email notices found in Trash"
1584
  msgstr "没有在回收站发现邮件通知"
1585
 
1586
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1587
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1588
  #: php:589
1589
  msgid "General"
1590
  msgstr "常规"
1591
 
1592
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1593
  msgid "users balance changes"
1594
  msgstr "用户余额变化"
1595
 
1596
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1597
  msgid "user gains %_plural%"
1598
  msgstr "用户收入 %_plural%"
1599
 
1600
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1601
  msgid "user lose %_plural%"
1602
  msgstr "用户支出 %_plural%"
1603
 
1604
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1605
  msgid "users balance reaches zero"
1606
  msgstr "用户余额为零"
1607
 
1608
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1609
  msgid "users balance goes minus"
1610
  msgstr "用户余额减去"
1611
 
1612
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1613
  msgid "Sell Content Add-on"
1614
  msgstr "出售内容扩展"
1615
 
1616
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1617
  msgid "user buys content"
1618
  msgstr "用户购买的内容"
1619
 
1620
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1621
  msgid "authors content gets sold"
1622
  msgstr "作者内容被出售"
1623
 
1624
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1625
  msgid "buyCREDs Add-on"
1626
  msgstr "buyCREDs 扩展"
1627
 
1628
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1629
  msgid "user buys %_plural%"
1630
  msgstr "用户购买 %_plural%"
1631
 
1632
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1633
  msgid "Transfer Add-on"
1634
  msgstr "传输扩展"
1635
 
1636
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1637
  msgid "user sends %_plural%"
1638
  msgstr "用户发送 %_plural%"
1639
 
1640
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1641
  msgid "user receives %_plural%"
1642
  msgstr "用户收到 %_plural%"
1643
 
1644
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1645
  msgid "Ranks Add-on"
1646
  msgstr "排名扩展"
1647
 
1648
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1649
  msgid "user is demoted"
1650
  msgstr "用户被降级"
1651
 
1652
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1653
  msgid "user is promoted"
1654
  msgstr "用户被提拔"
1655
 
1656
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1657
  msgid ""
1658
  "Settings that apply to all email notices and can not be overridden for "
1659
  "individual emails."
1660
  msgstr "设置适用于所有的电子邮件通知,这些设置不能被单个电子邮件覆盖。"
1661
 
1662
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1663
  msgid "Email Format"
1664
  msgstr "邮件格式"
1665
 
1666
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1667
  msgid "Plain text emails only."
1668
  msgstr "只有纯文本的电子邮件。"
1669
 
1670
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1671
  msgid "HTML or Plain text emails."
1672
  msgstr "HTML或纯文本电子邮件。"
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1675
  msgid "Filters"
1676
  msgstr "过滤器"
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1679
  msgid ""
1680
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1681
  "an email is sent."
1682
  msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的主题。"
1683
 
1684
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1685
  msgid ""
1686
  "Allow WordPress and Third Party Plugins to filter the email content before "
1687
  "an email is sent."
1688
  msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的内容。"
1689
 
1690
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1691
- #: notices/myCRED-addon-email-notices.php:303
1692
  msgid "Email Schedule"
1693
  msgstr ""
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1696
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1697
  msgstr ""
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1700
  msgid "Send emails immediately"
1701
  msgstr ""
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1704
  msgid "Send emails once an hour"
1705
  msgstr ""
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1708
  msgid "Send emails once a day"
1709
  msgstr ""
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1712
  msgid "Subscriptions"
1713
  msgstr ""
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1716
  #, php-format
1717
  msgid ""
1718
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1719
  "updates."
1720
  msgstr ""
1721
 
1722
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1723
  msgid "SMTP Override"
1724
  msgstr ""
1725
 
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1727
  msgid ""
1728
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1729
  "use a SMTP plugin for emails."
1730
  msgstr ""
1731
 
1732
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1733
  msgid ""
1734
  "Default email settings. These settings can be individually overridden when "
1735
  "editing emails."
1736
  msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
1737
 
1738
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1739
- #: notices/myCRED-addon-email-notices.php:802
1740
  msgid "Email Settings"
1741
  msgstr "邮件设置"
1742
 
1743
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1744
- #: notices/myCRED-addon-email-notices.php:925
1745
  msgid "Senders Name:"
1746
  msgstr "发件人名称:"
1747
 
1748
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1749
- #: notices/myCRED-addon-email-notices.php:927
1750
  msgid "Senders Email:"
1751
  msgstr "发件人的邮箱:"
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1754
  msgid "Reply-To:"
1755
  msgstr "回复给:"
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1758
  msgid "Default Email Content"
1759
  msgstr "默认邮件内容"
1760
 
1761
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1762
  msgid "Default email content."
1763
  msgstr "默认邮件内容。"
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1766
  msgid "Default Email Styling"
1767
  msgstr "默认邮件样式"
1768
 
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1770
  msgid "Ignored if HTML is not allowed in emails."
1771
  msgstr "如果邮件不允许使用HTML,请忽略。"
1772
 
1773
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1774
- #: notices/myCRED-addon-email-notices.php:851
1775
  msgid "Email Subject"
1776
  msgstr "邮件主题"
1777
 
1778
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1779
  msgid "Status"
1780
  msgstr "状态"
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1783
  msgid "Not Active"
1784
  msgstr "没启用"
1785
 
1786
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1787
  #, php-format
1788
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1789
  msgstr "预定:<br /><strong>%1$s</strong>"
1790
 
1791
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1792
  msgid "Active"
1793
  msgstr "状态"
1794
 
1795
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1796
  #, php-format
1797
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1798
  msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1801
  msgid "Email is sent when"
1802
  msgstr "发送邮件,当"
1803
 
1804
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1805
  msgid "Missing instance for this notice!"
1806
  msgstr "本通知缺少实例!"
1807
 
1808
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1809
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1810
- #: addon-email-notices.php:790
1811
  msgid "Sent To"
1812
  msgstr "发送给"
1813
 
1814
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1815
- #: notices/myCRED-addon-email-notices.php:916
1816
  msgid "Administrator"
1817
  msgstr "管理员"
1818
 
1819
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1820
  msgid "Both Administrator and User"
1821
  msgstr "管理员和用户"
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1824
  msgid "Available Template Tags"
1825
  msgstr "可用的模板标签"
1826
 
1827
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1828
  msgid "Email Header"
1829
  msgstr "邮件头部"
1830
 
1831
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1832
  msgid "Send this email notice when..."
1833
  msgstr "发送该邮件通知当..."
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1836
  msgid "Recipient:"
1837
  msgstr "收件人:"
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1840
  msgid "Both"
1841
  msgstr "两者"
1842
 
1843
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1844
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1845
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1846
  #: module-settings.php:526
1847
  msgid "Label"
1848
  msgstr "标签"
1849
 
1850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1851
  msgid "Reply-To Email:"
1852
  msgstr "回复给邮件:"
1853
 
1854
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1855
  msgid "Save"
1856
  msgstr "保存"
1857
 
1858
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1859
  msgid "CSS Styling"
1860
  msgstr "CSS样式"
1861
 
1862
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1863
  msgid "Site Related"
1864
  msgstr "网站相关"
1865
 
1866
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1867
  msgid "Your websites title"
1868
  msgstr "您的网站标题"
1869
 
1870
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1871
  msgid "Your websites address"
1872
  msgstr "您的网站地址"
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1875
  msgid "Your websites tagline (description)"
1876
  msgstr "您的网站标语(介绍)"
1877
 
1878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1879
  msgid "Your websites admin email"
1880
  msgstr "您的网站管理邮箱"
1881
 
1882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1883
  msgid "Total number of blog members"
1884
  msgstr "博客成员总数"
1885
 
1886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1887
- #: notices/myCRED-addon-email-notices.php:1049
1888
  #, php-format
1889
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1890
  msgstr "邮件通知已更新。查看 <a href=\"%1$s\">所有通知</a>。"
1891
 
1892
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1893
  msgid "Email Notice Activated"
1894
  msgstr "邮件通知已激活"
1895
 
1896
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1897
  msgid "Email Notice Saved"
1898
  msgstr "邮件通知已保存"
1899
 
1900
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1901
  #, php-format
1902
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1903
  msgstr "邮件通知已提请审批。查看 <a href=\"%1$s\">所有通知</a>。"
1904
 
1905
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1906
  #, php-format
1907
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1908
  msgstr "邮件通知定时:<strong>%1$s</strong>。"
1909
 
1910
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
1911
  msgid ""
1912
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1913
  "are not yet ready to use this email notice!"
1914
  msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
1915
 
1916
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
1917
  #, php-format
1918
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1919
  msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
1920
 
1921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
1922
  msgid "This email notice is active."
1923
  msgstr "此邮件通知已被激活。"
1924
 
1925
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
1926
  msgid "Settings saved."
1927
  msgstr ""
1928
 
1929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
1930
  msgid "Unsubscribe"
1931
  msgstr ""
1932
 
1933
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
1934
  msgid "There are no email notifications yet."
1935
  msgstr ""
1936
 
1937
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
1938
  msgid "Save Changes"
1939
  msgstr ""
1940
 
1941
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1942
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1943
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1944
- #: php:412 ../includes/mycred-admin.php:478
1945
  msgid "Current Balance"
1946
  msgstr "当前余额"
1947
 
@@ -2364,8 +2364,8 @@ msgstr "显示在收据和日志上的标题"
2364
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2365
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2366
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2367
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2368
- #: sell-content.php:590
2369
  msgid "Button Label"
2370
  msgstr "按钮标签"
2371
 
@@ -2378,8 +2378,8 @@ msgstr "支付按钮"
2378
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2379
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2380
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2381
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2382
- #: sell-content.php:586
2383
  msgid "Price"
2384
  msgstr "价格"
2385
 
@@ -2399,7 +2399,7 @@ msgid "Log"
2399
  msgstr "日志"
2400
 
2401
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2402
- #: includes/mycred-admin.php:483
2403
  msgid "Log Entry"
2404
  msgstr "日志条目"
2405
 
@@ -2942,9 +2942,9 @@ msgid "No users found with this rank"
2942
  msgstr "没有任何用户在这个等级中"
2943
 
2944
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2945
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
2946
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
2947
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2948
  msgid "error"
2949
  msgstr "错误"
2950
 
@@ -2964,135 +2964,136 @@ msgstr "销售 %link_with_title%"
2964
  msgid "Hours"
2965
  msgstr "小时"
2966
 
2967
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
2968
  msgid "You can not buy this content."
2969
  msgstr "你无法购买这个内容。"
2970
 
2971
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
2972
  msgid "Error. Try Again"
2973
  msgstr "错误,请重试"
2974
 
2975
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
2976
  msgid "No Payout. Just charge."
2977
  msgstr "不支付,只是充值。"
2978
 
2979
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
2980
  msgid "Pay Content Author."
2981
  msgstr "支付内容作者。"
2982
 
2983
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
2984
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2985
  #: addons.php:224
2986
  msgid "Sell Content"
2987
  msgstr "销售内容"
2988
 
2989
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
2990
  msgid "Post Types"
2991
  msgstr "文章类型"
2992
 
2993
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
2994
  msgid "Comma separated list of post types that can be sold."
2995
  msgstr "用逗号分隔的可以出售的文章类型列表。"
2996
 
2997
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
2998
  msgid "Percentage to pay Author"
2999
  msgstr "支付作者的百分比"
3000
 
3001
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
3002
  msgid ""
3003
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3004
  "authors are not paid."
3005
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3006
 
3007
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3008
  msgid "Defaults"
3009
  msgstr "默认"
3010
 
3011
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3012
  msgid "Allow authors to change price."
3013
  msgstr "允许作者更改价格。"
3014
 
3015
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3016
  msgid "Allow authors to change button label."
3017
  msgstr "允许作者更改按钮标签。"
3018
 
3019
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3020
  msgid "Purchases expire after"
3021
  msgstr "多久后购买过期"
3022
 
3023
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3024
  msgid "Use zero for permanent sales."
3025
  msgstr "使用零永久销售。"
3026
 
3027
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3028
  msgid "Sale Template for non members"
3029
  msgstr "用于非会员的销售模板"
3030
 
3031
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3032
  #, php-format
3033
  msgid ""
3034
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3035
  "be logged in to buy content!"
3036
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3037
 
3038
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3039
  msgid "Sale Template for members"
3040
  msgstr "用于会员的销售模板"
3041
 
3042
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3043
- #: content/myCRED-addon-sell-content.php:431
3044
  #, php-format
3045
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3046
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3047
 
3048
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3049
  msgid "Insufficient funds template"
3050
  msgstr "用于资金不足的模板"
3051
 
3052
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3053
  msgid "Log template for Purchases"
3054
  msgstr "用于购买的日志模板"
3055
 
3056
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3057
  msgid "Log template for Sales"
3058
  msgstr "用于销售的日志模板"
3059
 
3060
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3061
  #, php-format
3062
  msgid "%s Sell This"
3063
  msgstr "%s 销售这个"
3064
 
3065
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3066
  #, php-format
3067
  msgid "%s Sell Content needs to be setup before you can use this feature."
3068
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3069
 
3070
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3071
  msgid "Setup add-on"
3072
  msgstr "设置扩展"
3073
 
3074
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3075
  msgid "Lets do it"
3076
  msgstr "让我们开始吧"
3077
 
3078
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3079
- msgid "Enable sale of this "
3080
- msgstr "启用销售"
 
3081
 
3082
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3083
  msgid "Purchase expires after"
3084
  msgstr "多久后购买过期"
3085
 
3086
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3087
  msgid "Thank you for your purchase!"
3088
  msgstr "非常感谢您的购买!"
3089
 
3090
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3091
- #: content/myCRED-addon-sell-content.php:1094
3092
  msgid "The following content is set for sale:"
3093
  msgstr "下面的内容是设置来销售的:"
3094
 
3095
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3096
  msgid "Purchased"
3097
  msgstr "购买"
3098
 
@@ -3359,49 +3360,54 @@ msgstr "无法更新该用户的余额。"
3359
  msgid "Excluded"
3360
  msgstr "排除"
3361
 
3362
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3363
  #: modules/mycred-module-log.php:251
3364
  msgid "History"
3365
  msgstr "历史"
3366
 
3367
- #: ../includes/mycred-admin.php:280
3368
  msgid "Adjust"
3369
  msgstr "调整"
3370
 
3371
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3372
  #, php-format
3373
  msgid "%singular% balance"
3374
  msgstr "%singular% 余额"
3375
 
3376
- #: ../includes/mycred-admin.php:359
3377
  msgid "Adjust Your Balance"
3378
  msgstr "调整您的余额"
3379
 
3380
- #: ../includes/mycred-admin.php:361
3381
  msgid "Adjust Users Balance"
3382
  msgstr "调整用户余额"
3383
 
3384
- #: ../includes/mycred-admin.php:372
3385
  msgid "Log description for adjustment"
3386
  msgstr "调整是日志说明"
3387
 
3388
- #: ../includes/mycred-admin.php:375
3389
  msgid "Update"
3390
  msgstr "更新"
3391
 
3392
- #: ../includes/mycred-admin.php:376
3393
  msgid "Description is required!"
3394
  msgstr "说明为必填项!"
3395
 
3396
- #: ../includes/mycred-admin.php:476
3397
  msgid "ID"
3398
  msgstr "ID"
3399
 
3400
- #: ../includes/mycred-admin.php:482
3401
  msgid "A positive or negative value"
3402
  msgstr "正值或负值"
3403
 
3404
- #: ../includes/mycred-admin.php:484
3405
  msgid "Update Balance"
3406
  msgstr "更新余额"
3407
 
@@ -3529,112 +3535,119 @@ msgstr "myCRED需要 PHP5.2.4 或更高版本。版本检测:"
3529
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3530
  msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
3531
 
3532
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3533
  msgid ""
3534
  "Sorry but your WordPress installation does not reach the minimum "
3535
  "requirements for running myCRED. The following errors were given:"
3536
  msgstr "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
3537
 
3538
- #: ../includes/mycred-install.php:243
3539
  msgid "myCRED needs your attention."
3540
  msgstr "myCRED需要你的关注。"
3541
 
3542
- #: ../includes/mycred-install.php:243
3543
  msgid "Run Setup"
3544
  msgstr "运行设置程序"
3545
 
3546
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3547
  msgid "myCRED Setup"
3548
  msgstr "myCRED 设置"
3549
 
3550
- #: ../includes/mycred-install.php:385
3551
  #, php-format
3552
  msgid "%s Setup"
3553
  msgstr "%s 设置"
3554
 
3555
- #: ../includes/mycred-install.php:387
3556
  msgid "Step"
3557
  msgstr "步骤"
3558
 
3559
- #: ../includes/mycred-install.php:411
3560
  msgid ""
3561
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3562
  "points format, layout and security settings."
3563
  msgstr "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
3564
 
3565
- #: ../includes/mycred-install.php:412
3566
  msgid "Begin Setup"
3567
  msgstr "开始设置"
3568
 
3569
- #: ../includes/mycred-install.php:467
3570
  msgid "Select the format you want to use for your points."
3571
  msgstr "选择您要使用的积分格式。"
3572
 
3573
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3574
  msgid "Format"
3575
  msgstr "格式"
3576
 
3577
- #: ../includes/mycred-install.php:471
3578
  msgid "Separators"
3579
  msgstr "分离器"
3580
 
3581
- #: ../includes/mycred-install.php:481
3582
  msgid "Decimals"
3583
  msgstr "小数"
3584
 
3585
- #: ../includes/mycred-install.php:483
3586
  msgid "Use zero for no decimals."
3587
  msgstr "使用零则无小数。"
3588
 
3589
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3590
  msgid "Presentation"
3591
  msgstr "介绍"
3592
 
3593
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3594
  msgid "Name (Singular)"
3595
  msgstr "名称(单数)"
3596
 
3597
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3598
  msgid "Name (Plural)"
3599
  msgstr "名称(复数)"
3600
 
3601
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3602
  msgid "Prefix"
3603
  msgstr "前缀"
3604
 
3605
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3606
  msgid "Suffix"
3607
  msgstr "后缀"
3608
 
3609
- #: ../includes/mycred-install.php:511
3610
  msgid "Cancel Setup"
3611
  msgstr "取消设置"
3612
 
3613
- #: ../includes/mycred-install.php:511
3614
  msgid "Cancel"
3615
  msgstr "取消"
3616
 
3617
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3618
  msgid "Next"
3619
  msgstr "下一页"
3620
 
3621
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3622
  msgid "Security"
3623
  msgstr "安全"
3624
 
3625
- #: ../includes/mycred-install.php:546
3626
  msgid "Edit Settings Capability"
3627
  msgstr "编辑设置能力"
3628
 
3629
- #: ../includes/mycred-install.php:550
3630
  msgid "Edit Users %plural% Capability"
3631
  msgstr "编辑用户 %plural% 能力"
3632
 
3633
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3634
  msgid "Maximum %plural% payouts"
3635
  msgstr "最大 %plural% 支出"
3636
 
3637
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3638
  msgid ""
3639
  "As an added security, you can set the maximum amount a user can gain or "
3640
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3644,35 +3657,35 @@ msgstr ""
3644
  "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
3645
  "用零禁用。"
3646
 
3647
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3648
  msgid "Exclude those who can \"Edit Settings\"."
3649
  msgstr "排除那些可以\"编辑设置\"的用户。"
3650
 
3651
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3652
  msgid "Exclude those who can \"Edit Users %plural%\"."
3653
  msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
3654
 
3655
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3656
  msgid "Exclude the following user IDs:"
3657
  msgstr "排除以下用户ID:"
3658
 
3659
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3660
  msgid "User Deletions"
3661
  msgstr "用户删除"
3662
 
3663
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3664
  msgid "Delete log entries when user is deleted."
3665
  msgstr "用户被删除时,删除与之相关的日志条目。"
3666
 
3667
- #: ../includes/mycred-install.php:599
3668
  msgid "Ready"
3669
  msgstr "准备"
3670
 
3671
- #: ../includes/mycred-install.php:600
3672
  msgid "Almost done! Click the button below to finish this setup."
3673
  msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
3674
 
3675
- #: ../includes/mycred-install.php:601
3676
  msgid "Install & Run"
3677
  msgstr "安装与运行"
3678
 
@@ -3936,31 +3949,31 @@ msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你
3936
  msgid "Leaderboard is empty."
3937
  msgstr "排行榜是空的。"
3938
 
3939
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3940
  msgid "Amount missing!"
3941
  msgstr "数量缺失!"
3942
 
3943
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3944
  msgid "Log Template Missing!"
3945
  msgstr "日志模板缺失!"
3946
 
3947
- #: ../includes/mycred-shortcodes.php:417
3948
  msgid "Anchor missing URL!"
3949
  msgstr "缺失锚文本链接"
3950
 
3951
- #: ../includes/mycred-shortcodes.php:482
3952
  msgid "User ID missing for recipient."
3953
  msgstr "收件人用户名缺失。"
3954
 
3955
- #: ../includes/mycred-shortcodes.php:536
3956
  msgid "Sent"
3957
  msgstr "已发送"
3958
 
3959
- #: ../includes/mycred-shortcodes.php:537
3960
  msgid "Error - Try Again"
3961
  msgstr "错误 - 请重试"
3962
 
3963
- #: ../includes/mycred-shortcodes.php:645
3964
  msgid "A video ID is required for this shortcode"
3965
  msgstr "这个简码需要一个视频ID"
3966
 
@@ -4543,7 +4556,7 @@ msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们
4543
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4544
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4545
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4546
- #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4547
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4548
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4549
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5384,7 +5397,7 @@ msgid "Awards %_plural% for successful form submissions (by logged in users)."
5384
  msgstr "奖励 %_plural% 给成功的表单提交(由登录的用户)。"
5385
 
5386
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5387
- #: gravityforms.php:86
5388
  msgid "No forms found."
5389
  msgstr "没有找到形式。"
5390
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 25 2014 19:46:25 GMT+0200 (CEST)\n"
7
  "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Chinese\n"
45
 
46
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
47
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
48
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
49
+ #: includes/mycred-shortcodes.php:562
50
  msgid "Processing..."
51
  msgstr "处理中..."
52
 
99
  msgstr "日志条目更新"
100
 
101
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
102
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
103
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
104
  msgid "Setup"
105
  msgstr "设置"
167
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
168
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
169
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
170
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
171
  msgid "Select"
172
  msgstr "选择"
173
 
367
  msgstr "用户支付"
368
 
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
370
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
371
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
372
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
373
  msgid "Amount"
374
  msgstr "数量"
375
 
425
  msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,它将继续,直到它被重新激活。设置周期为零来重置。"
426
 
427
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
428
+ #: includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
429
  msgid "Excludes"
430
  msgstr "排除"
431
 
452
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
453
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
454
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
455
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
456
  msgid "Payments"
457
  msgstr "付款"
458
 
480
  #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
481
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
482
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
483
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
484
  #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
485
  #: includes/importers/mycred-cubepoints.php:365
486
  msgid "Point Type"
536
  msgstr "%s 支付网关"
537
 
538
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:664
540
  msgid "buyCRED Settings"
541
  msgstr "buyCRED设置"
542
 
564
  msgstr "时间"
565
 
566
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
567
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
568
  #: overview.php:173 ../modules/mycred-module-addons.php:190
569
  msgid "Gateway"
570
  msgstr "网关"
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
573
+ #: addon-buy-creds.php:660
574
  msgid "Transaction ID"
575
  msgstr "交易 ID"
576
 
610
  msgid "Update Gateway Settings"
611
  msgstr "更新网关设置"
612
 
613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
614
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
615
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
616
  #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
617
  msgid "User"
618
  msgstr "用户"
619
 
620
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
621
  #: 640
622
  msgid "Date"
623
  msgstr "日期"
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
626
  msgid "Payed"
627
  msgstr "已支付"
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
630
  msgid "<strong>buy</strong>CRED Purchase Log"
631
  msgstr "<strong>buy</strong>CRED购买日志"
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
634
  #: booking/mycred-eventespresso3.php:367
635
  msgid "Gateway Settings"
636
  msgstr "网关设置"
637
 
638
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
639
  msgid ""
640
  "Only completed purchases are shown here. Purchases that were cancelled or "
641
  "failed are not logged."
642
  msgstr "只在这里显示已完成的购买。取消或失败的购买将不会记录。"
643
 
644
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
645
  #: 743 ../modules/mycred-module-log.php:462
646
  msgid "User Missing"
647
  msgstr "用户丢失"
648
 
649
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
650
+ #: content/myCRED-addon-sell-content.php:1109
651
  msgid "No purchases found"
652
  msgstr "没有找到购买"
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
655
+ #: addon-buy-creds.php:1009
656
  msgid "This Add-on needs to setup before you can use this shortcode."
657
  msgstr "你需要安装这个扩展才可以使用这个简码。"
658
 
659
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
660
+ #: addon-buy-creds.php:1027
661
  msgid "No gateways installed."
662
  msgstr "没有安装网关。"
663
 
664
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
665
+ #: addon-buy-creds.php:1028
666
  msgid "Gateway does not exist."
667
  msgstr "网关不存在。"
668
 
669
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
670
  msgid "Yourself"
671
  msgstr "你自己"
672
 
673
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
674
  msgid "No active gateways found."
675
  msgstr "没有活跃的网关。"
676
 
677
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
678
  msgid "The selected gateway is not active."
679
  msgstr "所选择的网关没启用。"
680
 
681
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
682
  #, php-format
683
  msgid "Buy with %gateway%"
684
  msgstr "通过 %gateway% 购买。"
685
 
686
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
687
  #: content/myCRED-addon-sell-content.php:44
688
  msgid "Buy Now"
689
  msgstr "立即购买"
690
 
691
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
692
  msgid "No users found"
693
  msgstr "没有找到用户"
694
 
695
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
696
  msgid "To"
697
  msgstr "给"
698
 
699
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
700
  msgid "Select Amount"
701
  msgstr "选择金额"
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
704
  msgid "min."
705
  msgstr "分钟。"
706
 
707
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
708
  msgid "Select Gateway"
709
  msgstr "选择网关"
710
 
749
  msgstr "取消购买"
750
 
751
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
752
+ #: includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
753
  msgid "required"
754
  msgstr "必填"
755
 
756
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
757
+ #: includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
758
  msgid "optional"
759
  msgstr "可选"
760
 
1339
  msgstr "回收站没有优惠券"
1340
 
1341
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1342
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1343
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1344
+ #: addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1345
  #: module-addons.php:179
1346
  msgid "Email Notices"
1347
  msgstr "邮件通知"
1545
  msgid "Apply Coupon"
1546
  msgstr "申请优惠券"
1547
 
1548
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1549
+ #: notices/myCRED-addon-email-notices.php:1107
1550
  msgid "Email Notice"
1551
  msgstr "邮件通知"
1552
 
1553
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1554
  #: addons/ranks/myCRED-addon-ranks.php:248
1555
  msgid "Add New"
1556
  msgstr "添加新信息"
1557
 
1558
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1559
  msgid "Add New Notice"
1560
  msgstr "添加新通知"
1561
 
1562
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1563
  msgid "Edit Notice"
1564
  msgstr "编辑通知"
1565
 
1566
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1567
  msgid "New Notice"
1568
  msgstr "新通知"
1569
 
1570
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1571
  msgid "View Notice"
1572
  msgstr "查看通知"
1573
 
1574
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1575
  msgid "Search Email Notices"
1576
  msgstr "搜索邮件通知"
1577
 
1578
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1579
  msgid "No email notices found"
1580
  msgstr "没有邮件通知"
1581
 
1582
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1583
  msgid "No email notices found in Trash"
1584
  msgstr "没有在回收站发现邮件通知"
1585
 
1586
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1587
  #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1588
  #: php:589
1589
  msgid "General"
1590
  msgstr "常规"
1591
 
1592
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1593
  msgid "users balance changes"
1594
  msgstr "用户余额变化"
1595
 
1596
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1597
  msgid "user gains %_plural%"
1598
  msgstr "用户收入 %_plural%"
1599
 
1600
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1601
  msgid "user lose %_plural%"
1602
  msgstr "用户支出 %_plural%"
1603
 
1604
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1605
  msgid "users balance reaches zero"
1606
  msgstr "用户余额为零"
1607
 
1608
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1609
  msgid "users balance goes minus"
1610
  msgstr "用户余额减去"
1611
 
1612
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1613
  msgid "Sell Content Add-on"
1614
  msgstr "出售内容扩展"
1615
 
1616
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1617
  msgid "user buys content"
1618
  msgstr "用户购买的内容"
1619
 
1620
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1621
  msgid "authors content gets sold"
1622
  msgstr "作者内容被出售"
1623
 
1624
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1625
  msgid "buyCREDs Add-on"
1626
  msgstr "buyCREDs 扩展"
1627
 
1628
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1629
  msgid "user buys %_plural%"
1630
  msgstr "用户购买 %_plural%"
1631
 
1632
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1633
  msgid "Transfer Add-on"
1634
  msgstr "传输扩展"
1635
 
1636
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1637
  msgid "user sends %_plural%"
1638
  msgstr "用户发送 %_plural%"
1639
 
1640
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1641
  msgid "user receives %_plural%"
1642
  msgstr "用户收到 %_plural%"
1643
 
1644
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1645
  msgid "Ranks Add-on"
1646
  msgstr "排名扩展"
1647
 
1648
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1649
  msgid "user is demoted"
1650
  msgstr "用户被降级"
1651
 
1652
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1653
  msgid "user is promoted"
1654
  msgstr "用户被提拔"
1655
 
1656
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1657
  msgid ""
1658
  "Settings that apply to all email notices and can not be overridden for "
1659
  "individual emails."
1660
  msgstr "设置适用于所有的电子邮件通知,这些设置不能被单个电子邮件覆盖。"
1661
 
1662
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1663
  msgid "Email Format"
1664
  msgstr "邮件格式"
1665
 
1666
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1667
  msgid "Plain text emails only."
1668
  msgstr "只有纯文本的电子邮件。"
1669
 
1670
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1671
  msgid "HTML or Plain text emails."
1672
  msgstr "HTML或纯文本电子邮件。"
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1675
  msgid "Filters"
1676
  msgstr "过滤器"
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1679
  msgid ""
1680
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1681
  "an email is sent."
1682
  msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的主题。"
1683
 
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1685
  msgid ""
1686
  "Allow WordPress and Third Party Plugins to filter the email content before "
1687
  "an email is sent."
1688
  msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的内容。"
1689
 
1690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1691
+ #: notices/myCRED-addon-email-notices.php:305
1692
  msgid "Email Schedule"
1693
  msgstr ""
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1696
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1697
  msgstr ""
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1700
  msgid "Send emails immediately"
1701
  msgstr ""
1702
 
1703
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1704
  msgid "Send emails once an hour"
1705
  msgstr ""
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1708
  msgid "Send emails once a day"
1709
  msgstr ""
1710
 
1711
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1712
  msgid "Subscriptions"
1713
  msgstr ""
1714
 
1715
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1716
  #, php-format
1717
  msgid ""
1718
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1719
  "updates."
1720
  msgstr ""
1721
 
1722
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1723
  msgid "SMTP Override"
1724
  msgstr ""
1725
 
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1727
  msgid ""
1728
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1729
  "use a SMTP plugin for emails."
1730
  msgstr ""
1731
 
1732
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1733
  msgid ""
1734
  "Default email settings. These settings can be individually overridden when "
1735
  "editing emails."
1736
  msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1739
+ #: notices/myCRED-addon-email-notices.php:771
1740
  msgid "Email Settings"
1741
  msgstr "邮件设置"
1742
 
1743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1744
+ #: notices/myCRED-addon-email-notices.php:894
1745
  msgid "Senders Name:"
1746
  msgstr "发件人名称:"
1747
 
1748
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1749
+ #: notices/myCRED-addon-email-notices.php:896
1750
  msgid "Senders Email:"
1751
  msgstr "发件人的邮箱:"
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1754
  msgid "Reply-To:"
1755
  msgstr "回复给:"
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1758
  msgid "Default Email Content"
1759
  msgstr "默认邮件内容"
1760
 
1761
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1762
  msgid "Default email content."
1763
  msgstr "默认邮件内容。"
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1766
  msgid "Default Email Styling"
1767
  msgstr "默认邮件样式"
1768
 
1769
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1770
  msgid "Ignored if HTML is not allowed in emails."
1771
  msgstr "如果邮件不允许使用HTML,请忽略。"
1772
 
1773
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1774
+ #: notices/myCRED-addon-email-notices.php:820
1775
  msgid "Email Subject"
1776
  msgstr "邮件主题"
1777
 
1778
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1779
  msgid "Status"
1780
  msgstr "状态"
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1783
  msgid "Not Active"
1784
  msgstr "没启用"
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1787
  #, php-format
1788
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1789
  msgstr "预定:<br /><strong>%1$s</strong>"
1790
 
1791
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1792
  msgid "Active"
1793
  msgstr "状态"
1794
 
1795
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1796
  #, php-format
1797
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1798
  msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
1799
 
1800
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1801
  msgid "Email is sent when"
1802
  msgstr "发送邮件,当"
1803
 
1804
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1805
  msgid "Missing instance for this notice!"
1806
  msgstr "本通知缺少实例!"
1807
 
1808
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1809
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1810
+ #: addon-email-notices.php:759
1811
  msgid "Sent To"
1812
  msgstr "发送给"
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1815
+ #: notices/myCRED-addon-email-notices.php:885
1816
  msgid "Administrator"
1817
  msgstr "管理员"
1818
 
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1820
  msgid "Both Administrator and User"
1821
  msgstr "管理员和用户"
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1824
  msgid "Available Template Tags"
1825
  msgstr "可用的模板标签"
1826
 
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1828
  msgid "Email Header"
1829
  msgstr "邮件头部"
1830
 
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1832
  msgid "Send this email notice when..."
1833
  msgstr "发送该邮件通知当..."
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1836
  msgid "Recipient:"
1837
  msgstr "收件人:"
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1840
  msgid "Both"
1841
  msgstr "两者"
1842
 
1843
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1844
  #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1845
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1846
  #: module-settings.php:526
1847
  msgid "Label"
1848
  msgstr "标签"
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1851
  msgid "Reply-To Email:"
1852
  msgstr "回复给邮件:"
1853
 
1854
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1855
  msgid "Save"
1856
  msgstr "保存"
1857
 
1858
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1859
  msgid "CSS Styling"
1860
  msgstr "CSS样式"
1861
 
1862
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1863
  msgid "Site Related"
1864
  msgstr "网站相关"
1865
 
1866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1867
  msgid "Your websites title"
1868
  msgstr "您的网站标题"
1869
 
1870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1871
  msgid "Your websites address"
1872
  msgstr "您的网站地址"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1875
  msgid "Your websites tagline (description)"
1876
  msgstr "您的网站标语(介绍)"
1877
 
1878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1879
  msgid "Your websites admin email"
1880
  msgstr "您的网站管理邮箱"
1881
 
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1883
  msgid "Total number of blog members"
1884
  msgstr "博客成员总数"
1885
 
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1887
+ #: notices/myCRED-addon-email-notices.php:1018
1888
  #, php-format
1889
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1890
  msgstr "邮件通知已更新。查看 <a href=\"%1$s\">所有通知</a>。"
1891
 
1892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
1893
  msgid "Email Notice Activated"
1894
  msgstr "邮件通知已激活"
1895
 
1896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
1897
  msgid "Email Notice Saved"
1898
  msgstr "邮件通知已保存"
1899
 
1900
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
1901
  #, php-format
1902
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1903
  msgstr "邮件通知已提请审批。查看 <a href=\"%1$s\">所有通知</a>。"
1904
 
1905
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
1906
  #, php-format
1907
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1908
  msgstr "邮件通知定时:<strong>%1$s</strong>。"
1909
 
1910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
1911
  msgid ""
1912
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1913
  "are not yet ready to use this email notice!"
1914
  msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
1915
 
1916
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
1917
  #, php-format
1918
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1919
  msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
1922
  msgid "This email notice is active."
1923
  msgstr "此邮件通知已被激活。"
1924
 
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
1926
  msgid "Settings saved."
1927
  msgstr ""
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
1930
  msgid "Unsubscribe"
1931
  msgstr ""
1932
 
1933
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
1934
  msgid "There are no email notifications yet."
1935
  msgstr ""
1936
 
1937
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
1938
  msgid "Save Changes"
1939
  msgstr ""
1940
 
1941
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1942
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1943
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1944
+ #: php:412 ../includes/mycred-admin.php:491
1945
  msgid "Current Balance"
1946
  msgstr "当前余额"
1947
 
2364
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2365
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2366
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2367
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2368
+ #: sell-content.php:587
2369
  msgid "Button Label"
2370
  msgstr "按钮标签"
2371
 
2378
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2379
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2380
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2381
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2382
+ #: sell-content.php:583
2383
  msgid "Price"
2384
  msgstr "价格"
2385
 
2399
  msgstr "日志"
2400
 
2401
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2402
+ #: includes/mycred-admin.php:496
2403
  msgid "Log Entry"
2404
  msgstr "日志条目"
2405
 
2942
  msgstr "没有任何用户在这个等级中"
2943
 
2944
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2945
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
2946
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
2947
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
2948
  msgid "error"
2949
  msgstr "错误"
2950
 
2964
  msgid "Hours"
2965
  msgstr "小时"
2966
 
2967
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
2968
  msgid "You can not buy this content."
2969
  msgstr "你无法购买这个内容。"
2970
 
2971
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
2972
  msgid "Error. Try Again"
2973
  msgstr "错误,请重试"
2974
 
2975
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
2976
  msgid "No Payout. Just charge."
2977
  msgstr "不支付,只是充值。"
2978
 
2979
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
2980
  msgid "Pay Content Author."
2981
  msgstr "支付内容作者。"
2982
 
2983
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
2984
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2985
  #: addons.php:224
2986
  msgid "Sell Content"
2987
  msgstr "销售内容"
2988
 
2989
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
2990
  msgid "Post Types"
2991
  msgstr "文章类型"
2992
 
2993
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
2994
  msgid "Comma separated list of post types that can be sold."
2995
  msgstr "用逗号分隔的可以出售的文章类型列表。"
2996
 
2997
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
2998
  msgid "Percentage to pay Author"
2999
  msgstr "支付作者的百分比"
3000
 
3001
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
3002
  msgid ""
3003
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3004
  "authors are not paid."
3005
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3006
 
3007
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3008
  msgid "Defaults"
3009
  msgstr "默认"
3010
 
3011
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3012
  msgid "Allow authors to change price."
3013
  msgstr "允许作者更改价格。"
3014
 
3015
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3016
  msgid "Allow authors to change button label."
3017
  msgstr "允许作者更改按钮标签。"
3018
 
3019
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3020
  msgid "Purchases expire after"
3021
  msgstr "多久后购买过期"
3022
 
3023
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3024
  msgid "Use zero for permanent sales."
3025
  msgstr "使用零永久销售。"
3026
 
3027
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3028
  msgid "Sale Template for non members"
3029
  msgstr "用于非会员的销售模板"
3030
 
3031
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3032
  #, php-format
3033
  msgid ""
3034
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3035
  "be logged in to buy content!"
3036
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3037
 
3038
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3039
  msgid "Sale Template for members"
3040
  msgstr "用于会员的销售模板"
3041
 
3042
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3043
+ #: content/myCRED-addon-sell-content.php:428
3044
  #, php-format
3045
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3046
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3047
 
3048
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3049
  msgid "Insufficient funds template"
3050
  msgstr "用于资金不足的模板"
3051
 
3052
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3053
  msgid "Log template for Purchases"
3054
  msgstr "用于购买的日志模板"
3055
 
3056
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3057
  msgid "Log template for Sales"
3058
  msgstr "用于销售的日志模板"
3059
 
3060
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3061
  #, php-format
3062
  msgid "%s Sell This"
3063
  msgstr "%s 销售这个"
3064
 
3065
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3066
  #, php-format
3067
  msgid "%s Sell Content needs to be setup before you can use this feature."
3068
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3069
 
3070
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3071
  msgid "Setup add-on"
3072
  msgstr "设置扩展"
3073
 
3074
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3075
  msgid "Lets do it"
3076
  msgstr "让我们开始吧"
3077
 
3078
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3079
+ #, php-format
3080
+ msgid "Enable sale of this %s"
3081
+ msgstr ""
3082
 
3083
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3084
  msgid "Purchase expires after"
3085
  msgstr "多久后购买过期"
3086
 
3087
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3088
  msgid "Thank you for your purchase!"
3089
  msgstr "非常感谢您的购买!"
3090
 
3091
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3092
+ #: content/myCRED-addon-sell-content.php:1091
3093
  msgid "The following content is set for sale:"
3094
  msgstr "下面的内容是设置来销售的:"
3095
 
3096
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3097
  msgid "Purchased"
3098
  msgstr "购买"
3099
 
3360
  msgid "Excluded"
3361
  msgstr "排除"
3362
 
3363
+ #: ../includes/mycred-admin.php:282
3364
+ #, php-format
3365
+ msgid "Total: %s"
3366
+ msgstr ""
3367
+
3368
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3369
  #: modules/mycred-module-log.php:251
3370
  msgid "History"
3371
  msgstr "历史"
3372
 
3373
+ #: ../includes/mycred-admin.php:292
3374
  msgid "Adjust"
3375
  msgstr "调整"
3376
 
3377
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3378
  #, php-format
3379
  msgid "%singular% balance"
3380
  msgstr "%singular% 余额"
3381
 
3382
+ #: ../includes/mycred-admin.php:372
3383
  msgid "Adjust Your Balance"
3384
  msgstr "调整您的余额"
3385
 
3386
+ #: ../includes/mycred-admin.php:374
3387
  msgid "Adjust Users Balance"
3388
  msgstr "调整用户余额"
3389
 
3390
+ #: ../includes/mycred-admin.php:385
3391
  msgid "Log description for adjustment"
3392
  msgstr "调整是日志说明"
3393
 
3394
+ #: ../includes/mycred-admin.php:388
3395
  msgid "Update"
3396
  msgstr "更新"
3397
 
3398
+ #: ../includes/mycred-admin.php:389
3399
  msgid "Description is required!"
3400
  msgstr "说明为必填项!"
3401
 
3402
+ #: ../includes/mycred-admin.php:489
3403
  msgid "ID"
3404
  msgstr "ID"
3405
 
3406
+ #: ../includes/mycred-admin.php:495
3407
  msgid "A positive or negative value"
3408
  msgstr "正值或负值"
3409
 
3410
+ #: ../includes/mycred-admin.php:497
3411
  msgid "Update Balance"
3412
  msgstr "更新余额"
3413
 
3535
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3536
  msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
3537
 
3538
+ #: ../includes/mycred-install.php:53
3539
+ msgid ""
3540
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3541
+ "check your PHP configuration or contact your host and ask them to enable it "
3542
+ "for you!"
3543
+ msgstr ""
3544
+
3545
+ #: ../includes/mycred-install.php:58
3546
  msgid ""
3547
  "Sorry but your WordPress installation does not reach the minimum "
3548
  "requirements for running myCRED. The following errors were given:"
3549
  msgstr "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
3550
 
3551
+ #: ../includes/mycred-install.php:247
3552
  msgid "myCRED needs your attention."
3553
  msgstr "myCRED需要你的关注。"
3554
 
3555
+ #: ../includes/mycred-install.php:247
3556
  msgid "Run Setup"
3557
  msgstr "运行设置程序"
3558
 
3559
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3560
  msgid "myCRED Setup"
3561
  msgstr "myCRED 设置"
3562
 
3563
+ #: ../includes/mycred-install.php:389
3564
  #, php-format
3565
  msgid "%s Setup"
3566
  msgstr "%s 设置"
3567
 
3568
+ #: ../includes/mycred-install.php:391
3569
  msgid "Step"
3570
  msgstr "步骤"
3571
 
3572
+ #: ../includes/mycred-install.php:415
3573
  msgid ""
3574
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3575
  "points format, layout and security settings."
3576
  msgstr "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
3577
 
3578
+ #: ../includes/mycred-install.php:416
3579
  msgid "Begin Setup"
3580
  msgstr "开始设置"
3581
 
3582
+ #: ../includes/mycred-install.php:471
3583
  msgid "Select the format you want to use for your points."
3584
  msgstr "选择您要使用的积分格式。"
3585
 
3586
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3587
  msgid "Format"
3588
  msgstr "格式"
3589
 
3590
+ #: ../includes/mycred-install.php:475
3591
  msgid "Separators"
3592
  msgstr "分离器"
3593
 
3594
+ #: ../includes/mycred-install.php:485
3595
  msgid "Decimals"
3596
  msgstr "小数"
3597
 
3598
+ #: ../includes/mycred-install.php:487
3599
  msgid "Use zero for no decimals."
3600
  msgstr "使用零则无小数。"
3601
 
3602
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3603
  msgid "Presentation"
3604
  msgstr "介绍"
3605
 
3606
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3607
  msgid "Name (Singular)"
3608
  msgstr "名称(单数)"
3609
 
3610
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3611
  msgid "Name (Plural)"
3612
  msgstr "名称(复数)"
3613
 
3614
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3615
  msgid "Prefix"
3616
  msgstr "前缀"
3617
 
3618
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3619
  msgid "Suffix"
3620
  msgstr "后缀"
3621
 
3622
+ #: ../includes/mycred-install.php:515
3623
  msgid "Cancel Setup"
3624
  msgstr "取消设置"
3625
 
3626
+ #: ../includes/mycred-install.php:515
3627
  msgid "Cancel"
3628
  msgstr "取消"
3629
 
3630
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3631
  msgid "Next"
3632
  msgstr "下一页"
3633
 
3634
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3635
  msgid "Security"
3636
  msgstr "安全"
3637
 
3638
+ #: ../includes/mycred-install.php:550
3639
  msgid "Edit Settings Capability"
3640
  msgstr "编辑设置能力"
3641
 
3642
+ #: ../includes/mycred-install.php:554
3643
  msgid "Edit Users %plural% Capability"
3644
  msgstr "编辑用户 %plural% 能力"
3645
 
3646
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3647
  msgid "Maximum %plural% payouts"
3648
  msgstr "最大 %plural% 支出"
3649
 
3650
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3651
  msgid ""
3652
  "As an added security, you can set the maximum amount a user can gain or "
3653
  "loose in a single instance. If used, make sure this is the maximum amount a "
3657
  "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
3658
  "用零禁用。"
3659
 
3660
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3661
  msgid "Exclude those who can \"Edit Settings\"."
3662
  msgstr "排除那些可以\"编辑设置\"的用户。"
3663
 
3664
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3665
  msgid "Exclude those who can \"Edit Users %plural%\"."
3666
  msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
3667
 
3668
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3669
  msgid "Exclude the following user IDs:"
3670
  msgstr "排除以下用户ID:"
3671
 
3672
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3673
  msgid "User Deletions"
3674
  msgstr "用户删除"
3675
 
3676
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3677
  msgid "Delete log entries when user is deleted."
3678
  msgstr "用户被删除时,删除与之相关的日志条目。"
3679
 
3680
+ #: ../includes/mycred-install.php:603
3681
  msgid "Ready"
3682
  msgstr "准备"
3683
 
3684
+ #: ../includes/mycred-install.php:604
3685
  msgid "Almost done! Click the button below to finish this setup."
3686
  msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
3687
 
3688
+ #: ../includes/mycred-install.php:605
3689
  msgid "Install & Run"
3690
  msgstr "安装与运行"
3691
 
3949
  msgid "Leaderboard is empty."
3950
  msgstr "排行榜是空的。"
3951
 
3952
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
3953
  msgid "Amount missing!"
3954
  msgstr "数量缺失!"
3955
 
3956
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
3957
  msgid "Log Template Missing!"
3958
  msgstr "日志模板缺失!"
3959
 
3960
+ #: ../includes/mycred-shortcodes.php:444
3961
  msgid "Anchor missing URL!"
3962
  msgstr "缺失锚文本链接"
3963
 
3964
+ #: ../includes/mycred-shortcodes.php:509
3965
  msgid "User ID missing for recipient."
3966
  msgstr "收件人用户名缺失。"
3967
 
3968
+ #: ../includes/mycred-shortcodes.php:563
3969
  msgid "Sent"
3970
  msgstr "已发送"
3971
 
3972
+ #: ../includes/mycred-shortcodes.php:564
3973
  msgid "Error - Try Again"
3974
  msgstr "错误 - 请重试"
3975
 
3976
+ #: ../includes/mycred-shortcodes.php:672
3977
  msgid "A video ID is required for this shortcode"
3978
  msgstr "这个简码需要一个视频ID"
3979
 
4556
  #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4557
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4558
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4559
+ #: plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4560
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4561
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4562
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5397
  msgstr "奖励 %_plural% 给成功的表单提交(由登录的用户)。"
5398
 
5399
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5400
+ #: gravityforms.php:115
5401
  msgid "No forms found."
5402
  msgstr "没有找到形式。"
5403
 
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: Wed Jun 11 2014 16:24:59 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"
@@ -49,8 +49,8 @@ msgstr ""
49
 
50
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
51
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
52
- #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
53
- #: /includes/mycred-shortcodes.php:535
54
  msgid "Processing..."
55
  msgstr ""
56
 
@@ -103,7 +103,7 @@ msgid "Log entry updated"
103
  msgstr ""
104
 
105
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
106
- #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
@@ -171,7 +171,7 @@ msgstr ""
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
173
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
174
- #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
175
  msgid "Select"
176
  msgstr ""
177
 
@@ -369,9 +369,9 @@ msgid "Pay Users"
369
  msgstr ""
370
 
371
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
372
- #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
373
- #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
374
- #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
375
  msgid "Amount"
376
  msgstr ""
377
 
@@ -425,7 +425,7 @@ msgid ""
425
  msgstr ""
426
 
427
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
428
- #: /includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
429
  msgid "Excludes"
430
  msgstr ""
431
 
@@ -452,7 +452,7 @@ msgstr ""
452
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
453
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
454
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
455
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
456
  msgid "Payments"
457
  msgstr ""
458
 
@@ -480,7 +480,7 @@ msgstr ""
480
  #: /addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
481
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
482
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
483
- #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
484
  #: /includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
485
  #: /includes/importers/mycred-cubepoints.php:365
486
  msgid "Point Type"
@@ -536,7 +536,7 @@ msgid "%s Payment Gateways"
536
  msgstr ""
537
 
538
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
539
- #: addon-buy-creds.php:663
540
  msgid "buyCRED Settings"
541
  msgstr ""
542
 
@@ -564,13 +564,13 @@ msgid "Time"
564
  msgstr ""
565
 
566
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
567
- #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
568
  #: overview.php:173 ../modules/mycred-module-addons.php:190
569
  msgid "Gateway"
570
  msgstr ""
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
573
- #: addon-buy-creds.php:659
574
  msgid "Transaction ID"
575
  msgstr ""
576
 
@@ -610,101 +610,101 @@ msgstr ""
610
  msgid "Update Gateway Settings"
611
  msgstr ""
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
614
- #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
615
- #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
616
  #: /includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
617
  msgid "User"
618
  msgstr ""
619
 
620
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
621
  #: 640
622
  msgid "Date"
623
  msgstr ""
624
 
625
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
626
  msgid "Payed"
627
  msgstr ""
628
 
629
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
630
  msgid "<strong>buy</strong>CRED Purchase Log"
631
  msgstr ""
632
 
633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
634
  #: booking/mycred-eventespresso3.php:367
635
  msgid "Gateway Settings"
636
  msgstr ""
637
 
638
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
639
  msgid ""
640
  "Only completed purchases are shown here. Purchases that were cancelled or "
641
  "failed are not logged."
642
  msgstr ""
643
 
644
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
645
  #: 743 ../modules/mycred-module-log.php:462
646
  msgid "User Missing"
647
  msgstr ""
648
 
649
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
650
- #: content/myCRED-addon-sell-content.php:1112
651
  msgid "No purchases found"
652
  msgstr ""
653
 
654
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
655
- #: addon-buy-creds.php:1008
656
  msgid "This Add-on needs to setup before you can use this shortcode."
657
  msgstr ""
658
 
659
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
660
- #: addon-buy-creds.php:1026
661
  msgid "No gateways installed."
662
  msgstr ""
663
 
664
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
665
- #: addon-buy-creds.php:1027
666
  msgid "Gateway does not exist."
667
  msgstr ""
668
 
669
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
670
  msgid "Yourself"
671
  msgstr ""
672
 
673
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
674
  msgid "No active gateways found."
675
  msgstr ""
676
 
677
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
678
  msgid "The selected gateway is not active."
679
  msgstr ""
680
 
681
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
682
  #, php-format
683
  msgid "Buy with %gateway%"
684
  msgstr ""
685
 
686
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
687
  #: content/myCRED-addon-sell-content.php:44
688
  msgid "Buy Now"
689
  msgstr ""
690
 
691
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
692
  msgid "No users found"
693
  msgstr ""
694
 
695
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
696
  msgid "To"
697
  msgstr ""
698
 
699
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
700
  msgid "Select Amount"
701
  msgstr ""
702
 
703
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
704
  msgid "min."
705
  msgstr ""
706
 
707
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
708
  msgid "Select Gateway"
709
  msgstr ""
710
 
@@ -749,12 +749,12 @@ msgid "Cancel purchase"
749
  msgstr ""
750
 
751
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
752
- #: /includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
753
  msgid "required"
754
  msgstr ""
755
 
756
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
757
- #: /includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
758
  msgid "optional"
759
  msgstr ""
760
 
@@ -1335,9 +1335,9 @@ msgid "No coupons found in Trash"
1335
  msgstr ""
1336
 
1337
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1338
- #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1339
- #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1340
- #: /addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1341
  #: module-addons.php:179
1342
  msgid "Email Notices"
1343
  msgstr ""
@@ -1541,403 +1541,403 @@ msgstr ""
1541
  msgid "Apply Coupon"
1542
  msgstr ""
1543
 
1544
- #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1545
- #: notices/myCRED-addon-email-notices.php:1138
1546
  msgid "Email Notice"
1547
  msgstr ""
1548
 
1549
- #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1550
  #: /addons/ranks/myCRED-addon-ranks.php:248
1551
  msgid "Add New"
1552
  msgstr ""
1553
 
1554
- #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1555
  msgid "Add New Notice"
1556
  msgstr ""
1557
 
1558
- #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1559
  msgid "Edit Notice"
1560
  msgstr ""
1561
 
1562
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1563
  msgid "New Notice"
1564
  msgstr ""
1565
 
1566
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1567
  msgid "View Notice"
1568
  msgstr ""
1569
 
1570
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1571
  msgid "Search Email Notices"
1572
  msgstr ""
1573
 
1574
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1575
  msgid "No email notices found"
1576
  msgstr ""
1577
 
1578
- #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1579
  msgid "No email notices found in Trash"
1580
  msgstr ""
1581
 
1582
- #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1583
  #: /addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1584
  #: php:589
1585
  msgid "General"
1586
  msgstr ""
1587
 
1588
- #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1589
  msgid "users balance changes"
1590
  msgstr ""
1591
 
1592
- #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1593
  msgid "user gains %_plural%"
1594
  msgstr ""
1595
 
1596
- #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1597
  msgid "user lose %_plural%"
1598
  msgstr ""
1599
 
1600
- #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1601
  msgid "users balance reaches zero"
1602
  msgstr ""
1603
 
1604
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1605
  msgid "users balance goes minus"
1606
  msgstr ""
1607
 
1608
- #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1609
  msgid "Sell Content Add-on"
1610
  msgstr ""
1611
 
1612
- #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1613
  msgid "user buys content"
1614
  msgstr ""
1615
 
1616
- #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1617
  msgid "authors content gets sold"
1618
  msgstr ""
1619
 
1620
- #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1621
  msgid "buyCREDs Add-on"
1622
  msgstr ""
1623
 
1624
- #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1625
  msgid "user buys %_plural%"
1626
  msgstr ""
1627
 
1628
- #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1629
  msgid "Transfer Add-on"
1630
  msgstr ""
1631
 
1632
- #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1633
  msgid "user sends %_plural%"
1634
  msgstr ""
1635
 
1636
- #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1637
  msgid "user receives %_plural%"
1638
  msgstr ""
1639
 
1640
- #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1641
  msgid "Ranks Add-on"
1642
  msgstr ""
1643
 
1644
- #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1645
  msgid "user is demoted"
1646
  msgstr ""
1647
 
1648
- #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1649
  msgid "user is promoted"
1650
  msgstr ""
1651
 
1652
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1653
  msgid ""
1654
  "Settings that apply to all email notices and can not be overridden for "
1655
  "individual emails."
1656
  msgstr ""
1657
 
1658
- #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1659
  msgid "Email Format"
1660
  msgstr ""
1661
 
1662
- #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1663
  msgid "Plain text emails only."
1664
  msgstr ""
1665
 
1666
- #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1667
  msgid "HTML or Plain text emails."
1668
  msgstr ""
1669
 
1670
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1671
  msgid "Filters"
1672
  msgstr ""
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1675
  msgid ""
1676
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1677
  "an email is sent."
1678
  msgstr ""
1679
 
1680
- #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1681
  msgid ""
1682
  "Allow WordPress and Third Party Plugins to filter the email content before "
1683
  "an email is sent."
1684
  msgstr ""
1685
 
1686
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1687
- #: notices/myCRED-addon-email-notices.php:303
1688
  msgid "Email Schedule"
1689
  msgstr ""
1690
 
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1692
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1693
  msgstr ""
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1696
  msgid "Send emails immediately"
1697
  msgstr ""
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1700
  msgid "Send emails once an hour"
1701
  msgstr ""
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1704
  msgid "Send emails once a day"
1705
  msgstr ""
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1708
  msgid "Subscriptions"
1709
  msgstr ""
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1712
  #, php-format
1713
  msgid ""
1714
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1715
  "updates."
1716
  msgstr ""
1717
 
1718
- #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1719
  msgid "SMTP Override"
1720
  msgstr ""
1721
 
1722
- #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1723
  msgid ""
1724
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1725
  "use a SMTP plugin for emails."
1726
  msgstr ""
1727
 
1728
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1729
  msgid ""
1730
  "Default email settings. These settings can be individually overridden when "
1731
  "editing emails."
1732
  msgstr ""
1733
 
1734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1735
- #: notices/myCRED-addon-email-notices.php:802
1736
  msgid "Email Settings"
1737
  msgstr ""
1738
 
1739
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1740
- #: notices/myCRED-addon-email-notices.php:925
1741
  msgid "Senders Name:"
1742
  msgstr ""
1743
 
1744
- #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1745
- #: notices/myCRED-addon-email-notices.php:927
1746
  msgid "Senders Email:"
1747
  msgstr ""
1748
 
1749
- #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1750
  msgid "Reply-To:"
1751
  msgstr ""
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1754
  msgid "Default Email Content"
1755
  msgstr ""
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1758
  msgid "Default email content."
1759
  msgstr ""
1760
 
1761
- #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1762
  msgid "Default Email Styling"
1763
  msgstr ""
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1766
  msgid "Ignored if HTML is not allowed in emails."
1767
  msgstr ""
1768
 
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1770
- #: notices/myCRED-addon-email-notices.php:851
1771
  msgid "Email Subject"
1772
  msgstr ""
1773
 
1774
- #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1775
  msgid "Status"
1776
  msgstr ""
1777
 
1778
- #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1779
  msgid "Not Active"
1780
  msgstr ""
1781
 
1782
- #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1783
  #, php-format
1784
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1785
  msgstr ""
1786
 
1787
- #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1788
  msgid "Active"
1789
  msgstr ""
1790
 
1791
- #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1792
  #, php-format
1793
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1794
  msgstr ""
1795
 
1796
- #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1797
  msgid "Email is sent when"
1798
  msgstr ""
1799
 
1800
- #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1801
  msgid "Missing instance for this notice!"
1802
  msgstr ""
1803
 
1804
- #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1805
- #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1806
- #: addon-email-notices.php:790
1807
  msgid "Sent To"
1808
  msgstr ""
1809
 
1810
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1811
- #: notices/myCRED-addon-email-notices.php:916
1812
  msgid "Administrator"
1813
  msgstr ""
1814
 
1815
- #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1816
  msgid "Both Administrator and User"
1817
  msgstr ""
1818
 
1819
- #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1820
  msgid "Available Template Tags"
1821
  msgstr ""
1822
 
1823
- #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1824
  msgid "Email Header"
1825
  msgstr ""
1826
 
1827
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1828
  msgid "Send this email notice when..."
1829
  msgstr ""
1830
 
1831
- #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1832
  msgid "Recipient:"
1833
  msgstr ""
1834
 
1835
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1836
  msgid "Both"
1837
  msgstr ""
1838
 
1839
- #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1840
  #: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1841
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1842
  #: module-settings.php:526
1843
  msgid "Label"
1844
  msgstr ""
1845
 
1846
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1847
  msgid "Reply-To Email:"
1848
  msgstr ""
1849
 
1850
- #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1851
  msgid "Save"
1852
  msgstr ""
1853
 
1854
- #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1855
  msgid "CSS Styling"
1856
  msgstr ""
1857
 
1858
- #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1859
  msgid "Site Related"
1860
  msgstr ""
1861
 
1862
- #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1863
  msgid "Your websites title"
1864
  msgstr ""
1865
 
1866
- #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1867
  msgid "Your websites address"
1868
  msgstr ""
1869
 
1870
- #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1871
  msgid "Your websites tagline (description)"
1872
  msgstr ""
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1875
  msgid "Your websites admin email"
1876
  msgstr ""
1877
 
1878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1879
  msgid "Total number of blog members"
1880
  msgstr ""
1881
 
1882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1883
- #: notices/myCRED-addon-email-notices.php:1049
1884
  #, php-format
1885
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1886
  msgstr ""
1887
 
1888
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1889
  msgid "Email Notice Activated"
1890
  msgstr ""
1891
 
1892
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1893
  msgid "Email Notice Saved"
1894
  msgstr ""
1895
 
1896
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1897
  #, php-format
1898
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1899
  msgstr ""
1900
 
1901
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1902
  #, php-format
1903
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1904
  msgstr ""
1905
 
1906
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
1907
  msgid ""
1908
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1909
  "are not yet ready to use this email notice!"
1910
  msgstr ""
1911
 
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
1913
  #, php-format
1914
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1915
  msgstr ""
1916
 
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
1918
  msgid "This email notice is active."
1919
  msgstr ""
1920
 
1921
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
1922
  msgid "Settings saved."
1923
  msgstr ""
1924
 
1925
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
1926
  msgid "Unsubscribe"
1927
  msgstr ""
1928
 
1929
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
1930
  msgid "There are no email notifications yet."
1931
  msgstr ""
1932
 
1933
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
1934
  msgid "Save Changes"
1935
  msgstr ""
1936
 
1937
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1938
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1939
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1940
- #: php:412 ../includes/mycred-admin.php:478
1941
  msgid "Current Balance"
1942
  msgstr ""
1943
 
@@ -2357,8 +2357,8 @@ msgstr ""
2357
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2358
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2359
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2360
- #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2361
- #: sell-content.php:590
2362
  msgid "Button Label"
2363
  msgstr ""
2364
 
@@ -2371,8 +2371,8 @@ msgstr ""
2371
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2372
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2373
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2374
- #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2375
- #: sell-content.php:586
2376
  msgid "Price"
2377
  msgstr ""
2378
 
@@ -2392,7 +2392,7 @@ msgid "Log"
2392
  msgstr ""
2393
 
2394
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2395
- #: /includes/mycred-admin.php:483
2396
  msgid "Log Entry"
2397
  msgstr ""
2398
 
@@ -2935,9 +2935,9 @@ msgid "No users found with this rank"
2935
  msgstr ""
2936
 
2937
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2938
- #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
2939
- #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
2940
- #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2941
  msgid "error"
2942
  msgstr ""
2943
 
@@ -2957,135 +2957,136 @@ msgstr ""
2957
  msgid "Hours"
2958
  msgstr ""
2959
 
2960
- #: ../addons/sell-content/myCRED-addon-sell-content.php:247
2961
  msgid "You can not buy this content."
2962
  msgstr ""
2963
 
2964
- #: ../addons/sell-content/myCRED-addon-sell-content.php:310
2965
  msgid "Error. Try Again"
2966
  msgstr ""
2967
 
2968
- #: ../addons/sell-content/myCRED-addon-sell-content.php:332
2969
  msgid "No Payout. Just charge."
2970
  msgstr ""
2971
 
2972
- #: ../addons/sell-content/myCRED-addon-sell-content.php:333
2973
  msgid "Pay Content Author."
2974
  msgstr ""
2975
 
2976
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
2977
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2978
  #: addons.php:224
2979
  msgid "Sell Content"
2980
  msgstr ""
2981
 
2982
- #: ../addons/sell-content/myCRED-addon-sell-content.php:341
2983
  msgid "Post Types"
2984
  msgstr ""
2985
 
2986
- #: ../addons/sell-content/myCRED-addon-sell-content.php:345
2987
  msgid "Comma separated list of post types that can be sold."
2988
  msgstr ""
2989
 
2990
- #: ../addons/sell-content/myCRED-addon-sell-content.php:375
2991
  msgid "Percentage to pay Author"
2992
  msgstr ""
2993
 
2994
- #: ../addons/sell-content/myCRED-addon-sell-content.php:377
2995
  msgid ""
2996
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2997
  "authors are not paid."
2998
  msgstr ""
2999
 
3000
- #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3001
  msgid "Defaults"
3002
  msgstr ""
3003
 
3004
- #: ../addons/sell-content/myCRED-addon-sell-content.php:393
3005
  msgid "Allow authors to change price."
3006
  msgstr ""
3007
 
3008
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402
3009
  msgid "Allow authors to change button label."
3010
  msgstr ""
3011
 
3012
- #: ../addons/sell-content/myCRED-addon-sell-content.php:406
3013
  msgid "Purchases expire after"
3014
  msgstr ""
3015
 
3016
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3017
  msgid "Use zero for permanent sales."
3018
  msgstr ""
3019
 
3020
- #: ../addons/sell-content/myCRED-addon-sell-content.php:411
3021
  msgid "Sale Template for non members"
3022
  msgstr ""
3023
 
3024
- #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3025
  #, php-format
3026
  msgid ""
3027
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3028
  "be logged in to buy content!"
3029
  msgstr ""
3030
 
3031
- #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3032
  msgid "Sale Template for members"
3033
  msgstr ""
3034
 
3035
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3036
- #: content/myCRED-addon-sell-content.php:431
3037
  #, php-format
3038
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3039
  msgstr ""
3040
 
3041
- #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3042
  msgid "Insufficient funds template"
3043
  msgstr ""
3044
 
3045
- #: ../addons/sell-content/myCRED-addon-sell-content.php:435
3046
  msgid "Log template for Purchases"
3047
  msgstr ""
3048
 
3049
- #: ../addons/sell-content/myCRED-addon-sell-content.php:442
3050
  msgid "Log template for Sales"
3051
  msgstr ""
3052
 
3053
- #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3054
  #, php-format
3055
  msgid "%s Sell This"
3056
  msgstr ""
3057
 
3058
- #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3059
  #, php-format
3060
  msgid "%s Sell Content needs to be setup before you can use this feature."
3061
  msgstr ""
3062
 
3063
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3064
  msgid "Setup add-on"
3065
  msgstr ""
3066
 
3067
- #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3068
  msgid "Lets do it"
3069
  msgstr ""
3070
 
3071
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3072
- msgid "Enable sale of this "
 
3073
  msgstr ""
3074
 
3075
- #: ../addons/sell-content/myCRED-addon-sell-content.php:594
3076
  msgid "Purchase expires after"
3077
  msgstr ""
3078
 
3079
- #: ../addons/sell-content/myCRED-addon-sell-content.php:920
3080
  msgid "Thank you for your purchase!"
3081
  msgstr ""
3082
 
3083
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3084
- #: content/myCRED-addon-sell-content.php:1094
3085
  msgid "The following content is set for sale:"
3086
  msgstr ""
3087
 
3088
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1155
3089
  msgid "Purchased"
3090
  msgstr ""
3091
 
@@ -3352,49 +3353,54 @@ msgstr ""
3352
  msgid "Excluded"
3353
  msgstr ""
3354
 
3355
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
 
 
 
 
 
3356
  #: /modules/mycred-module-log.php:251
3357
  msgid "History"
3358
  msgstr ""
3359
 
3360
- #: ../includes/mycred-admin.php:280
3361
  msgid "Adjust"
3362
  msgstr ""
3363
 
3364
- #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3365
  #, php-format
3366
  msgid "%singular% balance"
3367
  msgstr ""
3368
 
3369
- #: ../includes/mycred-admin.php:359
3370
  msgid "Adjust Your Balance"
3371
  msgstr ""
3372
 
3373
- #: ../includes/mycred-admin.php:361
3374
  msgid "Adjust Users Balance"
3375
  msgstr ""
3376
 
3377
- #: ../includes/mycred-admin.php:372
3378
  msgid "Log description for adjustment"
3379
  msgstr ""
3380
 
3381
- #: ../includes/mycred-admin.php:375
3382
  msgid "Update"
3383
  msgstr ""
3384
 
3385
- #: ../includes/mycred-admin.php:376
3386
  msgid "Description is required!"
3387
  msgstr ""
3388
 
3389
- #: ../includes/mycred-admin.php:476
3390
  msgid "ID"
3391
  msgstr ""
3392
 
3393
- #: ../includes/mycred-admin.php:482
3394
  msgid "A positive or negative value"
3395
  msgstr ""
3396
 
3397
- #: ../includes/mycred-admin.php:484
3398
  msgid "Update Balance"
3399
  msgstr ""
3400
 
@@ -3522,112 +3528,119 @@ msgstr ""
3522
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3523
  msgstr ""
3524
 
3525
- #: ../includes/mycred-install.php:54
 
 
 
 
 
 
 
3526
  msgid ""
3527
  "Sorry but your WordPress installation does not reach the minimum "
3528
  "requirements for running myCRED. The following errors were given:"
3529
  msgstr ""
3530
 
3531
- #: ../includes/mycred-install.php:243
3532
  msgid "myCRED needs your attention."
3533
  msgstr ""
3534
 
3535
- #: ../includes/mycred-install.php:243
3536
  msgid "Run Setup"
3537
  msgstr ""
3538
 
3539
- #: ../includes/mycred-install.php:255 ../includes/mycred-install.php:256
3540
  msgid "myCRED Setup"
3541
  msgstr ""
3542
 
3543
- #: ../includes/mycred-install.php:385
3544
  #, php-format
3545
  msgid "%s Setup"
3546
  msgstr ""
3547
 
3548
- #: ../includes/mycred-install.php:387
3549
  msgid "Step"
3550
  msgstr ""
3551
 
3552
- #: ../includes/mycred-install.php:411
3553
  msgid ""
3554
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3555
  "points format, layout and security settings."
3556
  msgstr ""
3557
 
3558
- #: ../includes/mycred-install.php:412
3559
  msgid "Begin Setup"
3560
  msgstr ""
3561
 
3562
- #: ../includes/mycred-install.php:467
3563
  msgid "Select the format you want to use for your points."
3564
  msgstr ""
3565
 
3566
- #: ../includes/mycred-install.php:468 ../includes/mycred-widgets.php:223
3567
  msgid "Format"
3568
  msgstr ""
3569
 
3570
- #: ../includes/mycred-install.php:471
3571
  msgid "Separators"
3572
  msgstr ""
3573
 
3574
- #: ../includes/mycred-install.php:481
3575
  msgid "Decimals"
3576
  msgstr ""
3577
 
3578
- #: ../includes/mycred-install.php:483
3579
  msgid "Use zero for no decimals."
3580
  msgstr ""
3581
 
3582
- #: ../includes/mycred-install.php:486 ../modules/mycred-module-settings.php:356
3583
  msgid "Presentation"
3584
  msgstr ""
3585
 
3586
- #: ../includes/mycred-install.php:489 ../modules/mycred-module-settings.php:343
3587
  msgid "Name (Singular)"
3588
  msgstr ""
3589
 
3590
- #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:348
3591
  msgid "Name (Plural)"
3592
  msgstr ""
3593
 
3594
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:359
3595
  msgid "Prefix"
3596
  msgstr ""
3597
 
3598
- #: ../includes/mycred-install.php:507 ../modules/mycred-module-settings.php:367
3599
  msgid "Suffix"
3600
  msgstr ""
3601
 
3602
- #: ../includes/mycred-install.php:511
3603
  msgid "Cancel Setup"
3604
  msgstr ""
3605
 
3606
- #: ../includes/mycred-install.php:511
3607
  msgid "Cancel"
3608
  msgstr ""
3609
 
3610
- #: ../includes/mycred-install.php:511 ../includes/mycred-install.php:581
3611
  msgid "Next"
3612
  msgstr ""
3613
 
3614
- #: ../includes/mycred-install.php:543 ../modules/mycred-module-settings.php:375
3615
  msgid "Security"
3616
  msgstr ""
3617
 
3618
- #: ../includes/mycred-install.php:546
3619
  msgid "Edit Settings Capability"
3620
  msgstr ""
3621
 
3622
- #: ../includes/mycred-install.php:550
3623
  msgid "Edit Users %plural% Capability"
3624
  msgstr ""
3625
 
3626
- #: ../includes/mycred-install.php:554 ../modules/mycred-module-settings.php:388
3627
  msgid "Maximum %plural% payouts"
3628
  msgstr ""
3629
 
3630
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3631
  msgid ""
3632
  "As an added security, you can set the maximum amount a user can gain or "
3633
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -3635,35 +3648,35 @@ msgid ""
3635
  "disable."
3636
  msgstr ""
3637
 
3638
- #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3639
  msgid "Exclude those who can \"Edit Settings\"."
3640
  msgstr ""
3641
 
3642
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3643
  msgid "Exclude those who can \"Edit Users %plural%\"."
3644
  msgstr ""
3645
 
3646
- #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3647
  msgid "Exclude the following user IDs:"
3648
  msgstr ""
3649
 
3650
- #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:410
3651
  msgid "User Deletions"
3652
  msgstr ""
3653
 
3654
- #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:413
3655
  msgid "Delete log entries when user is deleted."
3656
  msgstr ""
3657
 
3658
- #: ../includes/mycred-install.php:599
3659
  msgid "Ready"
3660
  msgstr ""
3661
 
3662
- #: ../includes/mycred-install.php:600
3663
  msgid "Almost done! Click the button below to finish this setup."
3664
  msgstr ""
3665
 
3666
- #: ../includes/mycred-install.php:601
3667
  msgid "Install & Run"
3668
  msgstr ""
3669
 
@@ -3925,31 +3938,31 @@ msgstr ""
3925
  msgid "Leaderboard is empty."
3926
  msgstr ""
3927
 
3928
- #: ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:478
3929
  msgid "Amount missing!"
3930
  msgstr ""
3931
 
3932
- #: ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:486
3933
  msgid "Log Template Missing!"
3934
  msgstr ""
3935
 
3936
- #: ../includes/mycred-shortcodes.php:417
3937
  msgid "Anchor missing URL!"
3938
  msgstr ""
3939
 
3940
- #: ../includes/mycred-shortcodes.php:482
3941
  msgid "User ID missing for recipient."
3942
  msgstr ""
3943
 
3944
- #: ../includes/mycred-shortcodes.php:536
3945
  msgid "Sent"
3946
  msgstr ""
3947
 
3948
- #: ../includes/mycred-shortcodes.php:537
3949
  msgid "Error - Try Again"
3950
  msgstr ""
3951
 
3952
- #: ../includes/mycred-shortcodes.php:645
3953
  msgid "A video ID is required for this shortcode"
3954
  msgstr ""
3955
 
@@ -4528,7 +4541,7 @@ msgstr ""
4528
  #: /plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4529
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4530
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4531
- #: /plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4532
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4533
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4534
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
@@ -5363,7 +5376,7 @@ msgid "Awards %_plural% for successful form submissions (by logged in users)."
5363
  msgstr ""
5364
 
5365
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5366
- #: gravityforms.php:86
5367
  msgid "No forms found."
5368
  msgstr ""
5369
 
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 Jun 25 2014 19:44:44 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"
49
 
50
  #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
51
  #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
52
+ #: sell-content.php:306 ../addons/transfer/myCRED-addon-transfer.php:132 ..
53
+ #: /includes/mycred-shortcodes.php:562
54
  msgid "Processing..."
55
  msgstr ""
56
 
103
  msgstr ""
104
 
105
  #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
106
+ #: notices.php:707 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
171
  #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
173
  #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
174
+ #: notices.php:195 ../addons/email-notices/myCRED-addon-email-notices.php:857
175
  msgid "Select"
176
  msgstr ""
177
 
369
  msgstr ""
370
 
371
  #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
372
+ #: creds/myCRED-addon-buy-creds.php:658 ../addons/buy-creds/myCRED-addon-buy-
373
+ #: creds.php:1161 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
374
+ #: php:425 ../includes/mycred-admin.php:384 ../includes/mycred-admin.php:495
375
  msgid "Amount"
376
  msgstr ""
377
 
425
  msgstr ""
426
 
427
  #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
428
+ #: /includes/mycred-install.php:563 ../modules/mycred-module-settings.php:393
429
  msgid "Excludes"
430
  msgstr ""
431
 
452
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
453
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
454
  #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
455
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:358
456
  msgid "Payments"
457
  msgstr ""
458
 
480
  #: /addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
481
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
482
  #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
483
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:346 ..
484
  #: /includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
485
  #: /includes/importers/mycred-cubepoints.php:365
486
  msgid "Point Type"
536
  msgstr ""
537
 
538
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:664
540
  msgid "buyCRED Settings"
541
  msgstr ""
542
 
564
  msgstr ""
565
 
566
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
567
+ #: addon-buy-creds.php:655 ../includes/mycred-overview.php:166 ../includes/mycred-
568
  #: overview.php:173 ../modules/mycred-module-addons.php:190
569
  msgid "Gateway"
570
  msgstr ""
571
 
572
  #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
573
+ #: addon-buy-creds.php:660
574
  msgid "Transaction ID"
575
  msgstr ""
576
 
610
  msgid "Update Gateway Settings"
611
  msgstr ""
612
 
613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../addons/email-
614
+ #: notices/myCRED-addon-email-notices.php:755 ../addons/email-notices/myCRED-
615
+ #: addon-email-notices.php:884 ../includes/mycred-admin.php:490 ..
616
  #: /includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
617
  msgid "User"
618
  msgstr ""
619
 
620
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657 ../includes/mycred-log.php:
621
  #: 640
622
  msgid "Date"
623
  msgstr ""
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
626
  msgid "Payed"
627
  msgstr ""
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664
630
  msgid "<strong>buy</strong>CRED Purchase Log"
631
  msgstr ""
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:664 ../addons/gateway/event-
634
  #: booking/mycred-eventespresso3.php:367
635
  msgid "Gateway Settings"
636
  msgstr ""
637
 
638
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:668
639
  msgid ""
640
  "Only completed purchases are shown here. Purchases that were cancelled or "
641
  "failed are not logged."
642
  msgstr ""
643
 
644
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:777 ../includes/mycred-log.php:
645
  #: 743 ../modules/mycred-module-log.php:462
646
  msgid "User Missing"
647
  msgstr ""
648
 
649
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:840 ../addons/sell-
650
+ #: content/myCRED-addon-sell-content.php:1109
651
  msgid "No purchases found"
652
  msgstr ""
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:912 ../addons/buy-creds/myCRED-
655
+ #: addon-buy-creds.php:1009
656
  msgid "This Add-on needs to setup before you can use this shortcode."
657
  msgstr ""
658
 
659
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
660
+ #: addon-buy-creds.php:1027
661
  msgid "No gateways installed."
662
  msgstr ""
663
 
664
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:931 ../addons/buy-creds/myCRED-
665
+ #: addon-buy-creds.php:1028
666
  msgid "Gateway does not exist."
667
  msgstr ""
668
 
669
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:967
670
  msgid "Yourself"
671
  msgstr ""
672
 
673
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
674
  msgid "No active gateways found."
675
  msgstr ""
676
 
677
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1030
678
  msgid "The selected gateway is not active."
679
  msgstr ""
680
 
681
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1066
682
  #, php-format
683
  msgid "Buy with %gateway%"
684
  msgstr ""
685
 
686
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1072 ../addons/sell-
687
  #: content/myCRED-addon-sell-content.php:44
688
  msgid "Buy Now"
689
  msgstr ""
690
 
691
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1112
692
  msgid "No users found"
693
  msgstr ""
694
 
695
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1122
696
  msgid "To"
697
  msgstr ""
698
 
699
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1139
700
  msgid "Select Amount"
701
  msgstr ""
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1163
704
  msgid "min."
705
  msgstr ""
706
 
707
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
708
  msgid "Select Gateway"
709
  msgstr ""
710
 
749
  msgstr ""
750
 
751
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
752
+ #: /includes/mycred-admin.php:377 ../includes/mycred-admin.php:483
753
  msgid "required"
754
  msgstr ""
755
 
756
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
757
+ #: /includes/mycred-admin.php:379 ../includes/mycred-admin.php:485
758
  msgid "optional"
759
  msgstr ""
760
 
1335
  msgstr ""
1336
 
1337
  #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1338
+ #: addon-email-notices.php:163 ../addons/email-notices/myCRED-addon-email-notices.
1339
+ #: php:169 ../addons/email-notices/myCRED-addon-email-notices.php:175 ..
1340
+ #: /addons/email-notices/myCRED-addon-email-notices.php:272 ../modules/mycred-
1341
  #: module-addons.php:179
1342
  msgid "Email Notices"
1343
  msgstr ""
1541
  msgid "Apply Coupon"
1542
  msgstr ""
1543
 
1544
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164 ../addons/email-
1545
+ #: notices/myCRED-addon-email-notices.php:1107
1546
  msgid "Email Notice"
1547
  msgstr ""
1548
 
1549
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ..
1550
  #: /addons/ranks/myCRED-addon-ranks.php:248
1551
  msgid "Add New"
1552
  msgstr ""
1553
 
1554
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1555
  msgid "Add New Notice"
1556
  msgstr ""
1557
 
1558
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
1559
  msgid "Edit Notice"
1560
  msgstr ""
1561
 
1562
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1563
  msgid "New Notice"
1564
  msgstr ""
1565
 
1566
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1567
  msgid "View Notice"
1568
  msgstr ""
1569
 
1570
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1571
  msgid "Search Email Notices"
1572
  msgstr ""
1573
 
1574
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1575
  msgid "No email notices found"
1576
  msgstr ""
1577
 
1578
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1579
  msgid "No email notices found in Trash"
1580
  msgstr ""
1581
 
1582
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197 ..
1583
  #: /addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1584
  #: php:589
1585
  msgid "General"
1586
  msgstr ""
1587
 
1588
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1589
  msgid "users balance changes"
1590
  msgstr ""
1591
 
1592
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1593
  msgid "user gains %_plural%"
1594
  msgstr ""
1595
 
1596
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1597
  msgid "user lose %_plural%"
1598
  msgstr ""
1599
 
1600
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1601
  msgid "users balance reaches zero"
1602
  msgstr ""
1603
 
1604
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1605
  msgid "users balance goes minus"
1606
  msgstr ""
1607
 
1608
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1609
  msgid "Sell Content Add-on"
1610
  msgstr ""
1611
 
1612
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1613
  msgid "user buys content"
1614
  msgstr ""
1615
 
1616
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1617
  msgid "authors content gets sold"
1618
  msgstr ""
1619
 
1620
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:217
1621
  msgid "buyCREDs Add-on"
1622
  msgstr ""
1623
 
1624
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1625
  msgid "user buys %_plural%"
1626
  msgstr ""
1627
 
1628
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1629
  msgid "Transfer Add-on"
1630
  msgstr ""
1631
 
1632
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:226
1633
  msgid "user sends %_plural%"
1634
  msgstr ""
1635
 
1636
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:227
1637
  msgid "user receives %_plural%"
1638
  msgstr ""
1639
 
1640
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1641
  msgid "Ranks Add-on"
1642
  msgstr ""
1643
 
1644
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:235
1645
  msgid "user is demoted"
1646
  msgstr ""
1647
 
1648
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1649
  msgid "user is promoted"
1650
  msgstr ""
1651
 
1652
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:274
1653
  msgid ""
1654
  "Settings that apply to all email notices and can not be overridden for "
1655
  "individual emails."
1656
  msgstr ""
1657
 
1658
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:275
1659
  msgid "Email Format"
1660
  msgstr ""
1661
 
1662
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:279
1663
  msgid "Plain text emails only."
1664
  msgstr ""
1665
 
1666
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1667
  msgid "HTML or Plain text emails."
1668
  msgstr ""
1669
 
1670
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1671
  msgid "Filters"
1672
  msgstr ""
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1675
  msgid ""
1676
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1677
  "an email is sent."
1678
  msgstr ""
1679
 
1680
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1681
  msgid ""
1682
  "Allow WordPress and Third Party Plugins to filter the email content before "
1683
  "an email is sent."
1684
  msgstr ""
1685
 
1686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299 ../addons/email-
1687
+ #: notices/myCRED-addon-email-notices.php:305
1688
  msgid "Email Schedule"
1689
  msgstr ""
1690
 
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1692
  msgid "WordPress Cron is disabled. Emails will be sent immediately."
1693
  msgstr ""
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:309
1696
  msgid "Send emails immediately"
1697
  msgstr ""
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:313
1700
  msgid "Send emails once an hour"
1701
  msgstr ""
1702
 
1703
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:317
1704
  msgid "Send emails once a day"
1705
  msgstr ""
1706
 
1707
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1708
  msgid "Subscriptions"
1709
  msgstr ""
1710
 
1711
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:322
1712
  #, php-format
1713
  msgid ""
1714
  "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1715
  "updates."
1716
  msgstr ""
1717
 
1718
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:327
1719
  msgid "SMTP Override"
1720
  msgstr ""
1721
 
1722
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1723
  msgid ""
1724
  "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1725
  "use a SMTP plugin for emails."
1726
  msgstr ""
1727
 
1728
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:334
1729
  msgid ""
1730
  "Default email settings. These settings can be individually overridden when "
1731
  "editing emails."
1732
  msgstr ""
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:335 ../addons/email-
1735
+ #: notices/myCRED-addon-email-notices.php:771
1736
  msgid "Email Settings"
1737
  msgstr ""
1738
 
1739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338 ../addons/email-
1740
+ #: notices/myCRED-addon-email-notices.php:894
1741
  msgid "Senders Name:"
1742
  msgstr ""
1743
 
1744
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342 ../addons/email-
1745
+ #: notices/myCRED-addon-email-notices.php:896
1746
  msgid "Senders Email:"
1747
  msgstr ""
1748
 
1749
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
1750
  msgid "Reply-To:"
1751
  msgstr ""
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:350
1754
  msgid "Default Email Content"
1755
  msgstr ""
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:354
1758
  msgid "Default email content."
1759
  msgstr ""
1760
 
1761
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
1762
  msgid "Default Email Styling"
1763
  msgstr ""
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
1766
  msgid "Ignored if HTML is not allowed in emails."
1767
  msgstr ""
1768
 
1769
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:705 ../addons/email-
1770
+ #: notices/myCRED-addon-email-notices.php:820
1771
  msgid "Email Subject"
1772
  msgstr ""
1773
 
1774
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1775
  msgid "Status"
1776
  msgstr ""
1777
 
1778
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:726
1779
  msgid "Not Active"
1780
  msgstr ""
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1783
  #, php-format
1784
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1785
  msgstr ""
1786
 
1787
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:732
1788
  msgid "Active"
1789
  msgstr ""
1790
 
1791
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:734
1792
  #, php-format
1793
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1794
  msgstr ""
1795
 
1796
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:744
1797
  msgid "Email is sent when"
1798
  msgstr ""
1799
 
1800
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:746
1801
  msgid "Missing instance for this notice!"
1802
  msgstr ""
1803
 
1804
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:755 ../addons/email-
1805
+ #: notices/myCRED-addon-email-notices.php:757 ../addons/email-notices/myCRED-
1806
+ #: addon-email-notices.php:759
1807
  msgid "Sent To"
1808
  msgstr ""
1809
 
1810
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757 ../addons/email-
1811
+ #: notices/myCRED-addon-email-notices.php:885
1812
  msgid "Administrator"
1813
  msgstr ""
1814
 
1815
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1816
  msgid "Both Administrator and User"
1817
  msgstr ""
1818
 
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:780
1820
  msgid "Available Template Tags"
1821
  msgstr ""
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:791
1824
  msgid "Email Header"
1825
  msgstr ""
1826
 
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:851
1828
  msgid "Send this email notice when..."
1829
  msgstr ""
1830
 
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1832
  msgid "Recipient:"
1833
  msgstr ""
1834
 
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:886
1836
  msgid "Both"
1837
  msgstr ""
1838
 
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:890 ..
1840
  #: /addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1841
  #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1842
  #: module-settings.php:526
1843
  msgid "Label"
1844
  msgstr ""
1845
 
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:898
1847
  msgid "Reply-To Email:"
1848
  msgstr ""
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:904
1851
  msgid "Save"
1852
  msgstr ""
1853
 
1854
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:916
1855
  msgid "CSS Styling"
1856
  msgstr ""
1857
 
1858
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:932
1859
  msgid "Site Related"
1860
  msgstr ""
1861
 
1862
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:933
1863
  msgid "Your websites title"
1864
  msgstr ""
1865
 
1866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:934
1867
  msgid "Your websites address"
1868
  msgstr ""
1869
 
1870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1871
  msgid "Your websites tagline (description)"
1872
  msgstr ""
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:936
1875
  msgid "Your websites admin email"
1876
  msgstr ""
1877
 
1878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:937
1879
  msgid "Total number of blog members"
1880
  msgstr ""
1881
 
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1015 ../addons/email-
1883
+ #: notices/myCRED-addon-email-notices.php:1018
1884
  #, php-format
1885
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1886
  msgstr ""
1887
 
1888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
1889
  msgid "Email Notice Activated"
1890
  msgstr ""
1891
 
1892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
1893
  msgid "Email Notice Saved"
1894
  msgstr ""
1895
 
1896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1022
1897
  #, php-format
1898
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1899
  msgstr ""
1900
 
1901
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1024
1902
  #, php-format
1903
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1904
  msgstr ""
1905
 
1906
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1043
1907
  msgid ""
1908
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1909
  "are not yet ready to use this email notice!"
1910
  msgstr ""
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1045
1913
  #, php-format
1914
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1915
  msgstr ""
1916
 
1917
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1047
1918
  msgid "This email notice is active."
1919
  msgstr ""
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1058
1922
  msgid "Settings saved."
1923
  msgstr ""
1924
 
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1106
1926
  msgid "Unsubscribe"
1927
  msgstr ""
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1127
1930
  msgid "There are no email notifications yet."
1931
  msgstr ""
1932
 
1933
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1133
1934
  msgid "Save Changes"
1935
  msgstr ""
1936
 
1937
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1938
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1939
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1940
+ #: php:412 ../includes/mycred-admin.php:491
1941
  msgid "Current Balance"
1942
  msgstr ""
1943
 
2357
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2358
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2359
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2360
+ #: content/myCRED-addon-sell-content.php:394 ../addons/sell-content/myCRED-addon-
2361
+ #: sell-content.php:587
2362
  msgid "Button Label"
2363
  msgstr ""
2364
 
2371
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2372
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2373
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2374
+ #: content/myCRED-addon-sell-content.php:385 ../addons/sell-content/myCRED-addon-
2375
+ #: sell-content.php:583
2376
  msgid "Price"
2377
  msgstr ""
2378
 
2392
  msgstr ""
2393
 
2394
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2395
+ #: /includes/mycred-admin.php:496
2396
  msgid "Log Entry"
2397
  msgstr ""
2398
 
2935
  msgstr ""
2936
 
2937
  #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2938
+ #: shortcodes.php:379 ../includes/mycred-shortcodes.php:382 ../includes/mycred-
2939
+ #: shortcodes.php:444 ../includes/mycred-shortcodes.php:505 ../includes/mycred-
2940
+ #: shortcodes.php:509 ../includes/mycred-shortcodes.php:513
2941
  msgid "error"
2942
  msgstr ""
2943
 
2957
  msgid "Hours"
2958
  msgstr ""
2959
 
2960
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:244
2961
  msgid "You can not buy this content."
2962
  msgstr ""
2963
 
2964
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:307
2965
  msgid "Error. Try Again"
2966
  msgstr ""
2967
 
2968
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:329
2969
  msgid "No Payout. Just charge."
2970
  msgstr ""
2971
 
2972
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:330
2973
  msgid "Pay Content Author."
2974
  msgstr ""
2975
 
2976
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:336 ../includes/mycred-
2977
  #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2978
  #: addons.php:224
2979
  msgid "Sell Content"
2980
  msgstr ""
2981
 
2982
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:338
2983
  msgid "Post Types"
2984
  msgstr ""
2985
 
2986
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:342
2987
  msgid "Comma separated list of post types that can be sold."
2988
  msgstr ""
2989
 
2990
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
2991
  msgid "Percentage to pay Author"
2992
  msgstr ""
2993
 
2994
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:374
2995
  msgid ""
2996
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2997
  "authors are not paid."
2998
  msgstr ""
2999
 
3000
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:382
3001
  msgid "Defaults"
3002
  msgstr ""
3003
 
3004
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:390
3005
  msgid "Allow authors to change price."
3006
  msgstr ""
3007
 
3008
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:399
3009
  msgid "Allow authors to change button label."
3010
  msgstr ""
3011
 
3012
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3013
  msgid "Purchases expire after"
3014
  msgstr ""
3015
 
3016
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:405
3017
  msgid "Use zero for permanent sales."
3018
  msgstr ""
3019
 
3020
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3021
  msgid "Sale Template for non members"
3022
  msgstr ""
3023
 
3024
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:412
3025
  #, php-format
3026
  msgid ""
3027
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3028
  "be logged in to buy content!"
3029
  msgstr ""
3030
 
3031
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:416
3032
  msgid "Sale Template for members"
3033
  msgstr ""
3034
 
3035
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:420 ../addons/sell-
3036
+ #: content/myCRED-addon-sell-content.php:428
3037
  #, php-format
3038
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3039
  msgstr ""
3040
 
3041
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:424
3042
  msgid "Insufficient funds template"
3043
  msgstr ""
3044
 
3045
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:432
3046
  msgid "Log template for Purchases"
3047
  msgstr ""
3048
 
3049
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3050
  msgid "Log template for Sales"
3051
  msgstr ""
3052
 
3053
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3054
  #, php-format
3055
  msgid "%s Sell This"
3056
  msgstr ""
3057
 
3058
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:545
3059
  #, php-format
3060
  msgid "%s Sell Content needs to be setup before you can use this feature."
3061
  msgstr ""
3062
 
3063
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3064
  msgid "Setup add-on"
3065
  msgstr ""
3066
 
3067
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3068
  msgid "Lets do it"
3069
  msgstr ""
3070
 
3071
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:577
3072
+ #, php-format
3073
+ msgid "Enable sale of this %s"
3074
  msgstr ""
3075
 
3076
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:591
3077
  msgid "Purchase expires after"
3078
  msgstr ""
3079
 
3080
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:917
3081
  msgid "Thank you for your purchase!"
3082
  msgstr ""
3083
 
3084
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1005 ../addons/sell-
3085
+ #: content/myCRED-addon-sell-content.php:1091
3086
  msgid "The following content is set for sale:"
3087
  msgstr ""
3088
 
3089
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1151
3090
  msgid "Purchased"
3091
  msgstr ""
3092
 
3353
  msgid "Excluded"
3354
  msgstr ""
3355
 
3356
+ #: ../includes/mycred-admin.php:282
3357
+ #, php-format
3358
+ msgid "Total: %s"
3359
+ msgstr ""
3360
+
3361
+ #: ../includes/mycred-admin.php:291 ../modules/mycred-module-log.php:250 ..
3362
  #: /modules/mycred-module-log.php:251
3363
  msgid "History"
3364
  msgstr ""
3365
 
3366
+ #: ../includes/mycred-admin.php:292
3367
  msgid "Adjust"
3368
  msgstr ""
3369
 
3370
+ #: ../includes/mycred-admin.php:348 ../includes/mycred-admin.php:407
3371
  #, php-format
3372
  msgid "%singular% balance"
3373
  msgstr ""
3374
 
3375
+ #: ../includes/mycred-admin.php:372
3376
  msgid "Adjust Your Balance"
3377
  msgstr ""
3378
 
3379
+ #: ../includes/mycred-admin.php:374
3380
  msgid "Adjust Users Balance"
3381
  msgstr ""
3382
 
3383
+ #: ../includes/mycred-admin.php:385
3384
  msgid "Log description for adjustment"
3385
  msgstr ""
3386
 
3387
+ #: ../includes/mycred-admin.php:388
3388
  msgid "Update"
3389
  msgstr ""
3390
 
3391
+ #: ../includes/mycred-admin.php:389
3392
  msgid "Description is required!"
3393
  msgstr ""
3394
 
3395
+ #: ../includes/mycred-admin.php:489
3396
  msgid "ID"
3397
  msgstr ""
3398
 
3399
+ #: ../includes/mycred-admin.php:495
3400
  msgid "A positive or negative value"
3401
  msgstr ""
3402
 
3403
+ #: ../includes/mycred-admin.php:497
3404
  msgid "Update Balance"
3405
  msgstr ""
3406
 
3528
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3529
  msgstr ""
3530
 
3531
+ #: ../includes/mycred-install.php:53
3532
+ msgid ""
3533
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3534
+ "check your PHP configuration or contact your host and ask them to enable it "
3535
+ "for you!"
3536
+ msgstr ""
3537
+
3538
+ #: ../includes/mycred-install.php:58
3539
  msgid ""
3540
  "Sorry but your WordPress installation does not reach the minimum "
3541
  "requirements for running myCRED. The following errors were given:"
3542
  msgstr ""
3543
 
3544
+ #: ../includes/mycred-install.php:247
3545
  msgid "myCRED needs your attention."
3546
  msgstr ""
3547
 
3548
+ #: ../includes/mycred-install.php:247
3549
  msgid "Run Setup"
3550
  msgstr ""
3551
 
3552
+ #: ../includes/mycred-install.php:259 ../includes/mycred-install.php:260
3553
  msgid "myCRED Setup"
3554
  msgstr ""
3555
 
3556
+ #: ../includes/mycred-install.php:389
3557
  #, php-format
3558
  msgid "%s Setup"
3559
  msgstr ""
3560
 
3561
+ #: ../includes/mycred-install.php:391
3562
  msgid "Step"
3563
  msgstr ""
3564
 
3565
+ #: ../includes/mycred-install.php:415
3566
  msgid ""
3567
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3568
  "points format, layout and security settings."
3569
  msgstr ""
3570
 
3571
+ #: ../includes/mycred-install.php:416
3572
  msgid "Begin Setup"
3573
  msgstr ""
3574
 
3575
+ #: ../includes/mycred-install.php:471
3576
  msgid "Select the format you want to use for your points."
3577
  msgstr ""
3578
 
3579
+ #: ../includes/mycred-install.php:472 ../includes/mycred-widgets.php:223
3580
  msgid "Format"
3581
  msgstr ""
3582
 
3583
+ #: ../includes/mycred-install.php:475
3584
  msgid "Separators"
3585
  msgstr ""
3586
 
3587
+ #: ../includes/mycred-install.php:485
3588
  msgid "Decimals"
3589
  msgstr ""
3590
 
3591
+ #: ../includes/mycred-install.php:487
3592
  msgid "Use zero for no decimals."
3593
  msgstr ""
3594
 
3595
+ #: ../includes/mycred-install.php:490 ../modules/mycred-module-settings.php:356
3596
  msgid "Presentation"
3597
  msgstr ""
3598
 
3599
+ #: ../includes/mycred-install.php:493 ../modules/mycred-module-settings.php:343
3600
  msgid "Name (Singular)"
3601
  msgstr ""
3602
 
3603
+ #: ../includes/mycred-install.php:497 ../modules/mycred-module-settings.php:348
3604
  msgid "Name (Plural)"
3605
  msgstr ""
3606
 
3607
+ #: ../includes/mycred-install.php:503 ../modules/mycred-module-settings.php:359
3608
  msgid "Prefix"
3609
  msgstr ""
3610
 
3611
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:367
3612
  msgid "Suffix"
3613
  msgstr ""
3614
 
3615
+ #: ../includes/mycred-install.php:515
3616
  msgid "Cancel Setup"
3617
  msgstr ""
3618
 
3619
+ #: ../includes/mycred-install.php:515
3620
  msgid "Cancel"
3621
  msgstr ""
3622
 
3623
+ #: ../includes/mycred-install.php:515 ../includes/mycred-install.php:585
3624
  msgid "Next"
3625
  msgstr ""
3626
 
3627
+ #: ../includes/mycred-install.php:547 ../modules/mycred-module-settings.php:375
3628
  msgid "Security"
3629
  msgstr ""
3630
 
3631
+ #: ../includes/mycred-install.php:550
3632
  msgid "Edit Settings Capability"
3633
  msgstr ""
3634
 
3635
+ #: ../includes/mycred-install.php:554
3636
  msgid "Edit Users %plural% Capability"
3637
  msgstr ""
3638
 
3639
+ #: ../includes/mycred-install.php:558 ../modules/mycred-module-settings.php:388
3640
  msgid "Maximum %plural% payouts"
3641
  msgstr ""
3642
 
3643
+ #: ../includes/mycred-install.php:560 ../modules/mycred-module-settings.php:390
3644
  msgid ""
3645
  "As an added security, you can set the maximum amount a user can gain or "
3646
  "loose in a single instance. If used, make sure this is the maximum amount a "
3648
  "disable."
3649
  msgstr ""
3650
 
3651
+ #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:397
3652
  msgid "Exclude those who can \"Edit Settings\"."
3653
  msgstr ""
3654
 
3655
+ #: ../includes/mycred-install.php:571 ../modules/mycred-module-settings.php:401
3656
  msgid "Exclude those who can \"Edit Users %plural%\"."
3657
  msgstr ""
3658
 
3659
+ #: ../includes/mycred-install.php:574 ../modules/mycred-module-settings.php:405
3660
  msgid "Exclude the following user IDs:"
3661
  msgstr ""
3662
 
3663
+ #: ../includes/mycred-install.php:578 ../modules/mycred-module-settings.php:410
3664
  msgid "User Deletions"
3665
  msgstr ""
3666
 
3667
+ #: ../includes/mycred-install.php:582 ../modules/mycred-module-settings.php:413
3668
  msgid "Delete log entries when user is deleted."
3669
  msgstr ""
3670
 
3671
+ #: ../includes/mycred-install.php:603
3672
  msgid "Ready"
3673
  msgstr ""
3674
 
3675
+ #: ../includes/mycred-install.php:604
3676
  msgid "Almost done! Click the button below to finish this setup."
3677
  msgstr ""
3678
 
3679
+ #: ../includes/mycred-install.php:605
3680
  msgid "Install & Run"
3681
  msgstr ""
3682
 
3938
  msgid "Leaderboard is empty."
3939
  msgstr ""
3940
 
3941
+ #: ../includes/mycred-shortcodes.php:379 ../includes/mycred-shortcodes.php:505
3942
  msgid "Amount missing!"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-shortcodes.php:382 ../includes/mycred-shortcodes.php:513
3946
  msgid "Log Template Missing!"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-shortcodes.php:444
3950
  msgid "Anchor missing URL!"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-shortcodes.php:509
3954
  msgid "User ID missing for recipient."
3955
  msgstr ""
3956
 
3957
+ #: ../includes/mycred-shortcodes.php:563
3958
  msgid "Sent"
3959
  msgstr ""
3960
 
3961
+ #: ../includes/mycred-shortcodes.php:564
3962
  msgid "Error - Try Again"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/mycred-shortcodes.php:672
3966
  msgid "A video ID is required for this shortcode"
3967
  msgstr ""
3968
 
4541
  #: /plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4542
  #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4543
  #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4544
+ #: /plugins/mycred-hook-gravityforms.php:142 ../plugins/mycred-hook-invite-anyone.
4545
  #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4546
  #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4547
  #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
5376
  msgstr ""
5377
 
5378
  #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5379
+ #: gravityforms.php:115
5380
  msgid "No forms found."
5381
  msgstr ""
5382
 
modules/mycred-module-hooks.php CHANGED
@@ -1272,7 +1272,7 @@ if ( ! class_exists( 'myCRED_Hook_Click_Links' ) ) {
1272
  /**
1273
  * AJAX Call Handler
1274
  * @since 1.1
1275
- * @version 1.3.2
1276
  */
1277
  public function ajax_call_link_points() {
1278
  // We must be logged in
@@ -1292,7 +1292,7 @@ if ( ! class_exists( 'myCRED_Hook_Click_Links' ) ) {
1292
  require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
1293
  $protect = new myCRED_Protect();
1294
  list ( $amount, $type, $id ) = $test = array_pad( explode( ':', $protect->do_decode( $_POST['key'] ) ), 3, '' );
1295
- if ( $amount == '' || $type == '' || $id == '' ) die( json_encode( $test ) );
1296
 
1297
  // Bail now if this was not intenteded for this type
1298
  if ( $type != $this->mycred_type ) return;
1272
  /**
1273
  * AJAX Call Handler
1274
  * @since 1.1
1275
+ * @version 1.3.3
1276
  */
1277
  public function ajax_call_link_points() {
1278
  // We must be logged in
1292
  require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
1293
  $protect = new myCRED_Protect();
1294
  list ( $amount, $type, $id ) = $test = array_pad( explode( ':', $protect->do_decode( $_POST['key'] ) ), 3, '' );
1295
+ if ( $amount == '' || $type == '' || $id == '' ) die( json_encode( 310 ) );
1296
 
1297
  // Bail now if this was not intenteded for this type
1298
  if ( $type != $this->mycred_type ) return;
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.6
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.6' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
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
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.7' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
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.9.1
6
- Stable tag: 1.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,8 +11,6 @@ myCRED is an adaptive points management system that lets you award / charge your
11
 
12
  == Description ==
13
 
14
- **Important**
15
-
16
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
17
 
18
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
@@ -72,7 +70,7 @@ myCRED points can be whole numbers or use up to 20 decimals.
72
 
73
  = Does myCRED support Multiple Point Types? =
74
 
75
- Yes! myCRED as of version 1.4 officially supports multiple point types. You can setup an unlimited number of point types with it's own settings, available hooks and log page for each administration. Note that add-ons have limited support. Please consult the myCRED website for more inforamtion.
76
 
77
  = Can users use points to pay for items in my store? =
78
 
@@ -102,8 +100,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
102
 
103
  == Upgrade Notice ==
104
 
105
- = 1.4.6 =
106
- Improvement of Email Notifications, Invite Anyone and bug fixes.
107
 
108
  == Other Notes ==
109
 
@@ -125,18 +123,17 @@ Improvement of Email Notifications, Invite Anyone and bug fixes.
125
 
126
  == Changelog ==
127
 
 
 
 
 
 
 
 
 
 
128
  = 1.4.6 =
129
- * FIX - Ranks on Multisites are not working when master template is not enabled.
130
- * FIX - buyCRED Purchases of custom point type is not getting logged correctly.
131
- * FIX - BuddyPress Media plugin support restored.
132
- * FIX - Removed stray unused variable in rank function.
133
- * FIX - Added missing Cron check in banking add-on.
134
- * NEW - Chinese Translation.
135
- * NEW - Portuguese (Brazil) Translation.
136
- * NEW - Added support for custom translations via the wp-content/languages/ folder.
137
- * NEW - On BuddyPress sites, invited users does not give points to the inviter until the account has been activated (if used).
138
- * NEW - Email Notifications can not be set to be sent hourly, daily or immediately (default).
139
- * NEW - Added new mycred_email_subscriptions shortcode to allow users to unsubscribe from email notifications.
140
 
141
  = 1.4.5 =
142
  http://mycred.me/support/changelog/
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.9.1
6
+ Stable tag: 1.4.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
11
 
12
  == Description ==
13
 
 
 
14
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
15
 
16
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
70
 
71
  = Does myCRED support Multiple Point Types? =
72
 
73
+ Yes! myCRED as of version 1.4 officially supports multiple point types. You can setup an unlimited number of point types with it's own settings, available hooks and log page for each administration. Note that add-ons have limited support. Please consult the myCRED website for more information.
74
 
75
  = Can users use points to pay for items in my store? =
76
 
100
 
101
  == Upgrade Notice ==
102
 
103
+ = 1.4.7 =
104
+ Important bug fixes for myCRED.
105
 
106
  == Other Notes ==
107
 
123
 
124
  == Changelog ==
125
 
126
+ = 1.4.7 =
127
+ * FIX - Enforce fix for Email Notifications Cron bug.
128
+ * FIX - Custom point type is not being imported via the Balance Importer.
129
+ * FIX - Sell Content add-on uses incorrect logic for author check.
130
+ * FIX - Renamed coupon code array key to prevent some themes from injecting html elements inside our own shortcode elements.
131
+ * UPDATED - Portuguese (Brazil) language.
132
+ * NEW - Added new mycred_content_sale_count shortcode to show a posts total number of sales.
133
+ * NEW - Added new mycred_profit_share_sell_content filter to adjust the share percentage for the Sell Content add-on.
134
+
135
  = 1.4.6 =
136
+ http://mycred.me/support/changelog/
 
 
 
 
 
 
 
 
 
 
137
 
138
  = 1.4.5 =
139
  http://mycred.me/support/changelog/