myCRED - Version 1.3.3.2

Version Description

Security Update.

=

Download this release

Release Info

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

Code changes from version 1.3.3.1 to 1.3.3.2

addons/banking/abstracts/mycred-abstract-service.php CHANGED
@@ -231,19 +231,19 @@ if ( !class_exists( 'myCRED_Service' ) ) {
231
  switch ( $rate ) {
232
  case 'hourly' :
233
  if ( $now == 0 && $last_run == 23 ) return true;
234
- elseif ( $now-1 == $last_run ) return true;
235
  break;
236
  case 'daily' :
237
- if ( $now == 0 && $last_run >= 365 ) return true;
238
- elseif ( $now-1 == $last_run ) return true;
239
  break;
240
  case 'weekly' :
241
  if ( $now == 0 && $last_run >= 52 ) return true;
242
- elseif ( $now-1 == $last_run ) return true;
243
  break;
244
  case 'monthly' :
245
  if ( $now == 1 && $last_run == 12 ) return true;
246
- elseif ( $now-1 == $last_run ) return true;
247
  break;
248
  case 'quarterly' :
249
  $current_quarter = substr( $now, 0, -1 );
@@ -254,10 +254,10 @@ if ( !class_exists( 'myCRED_Service' ) ) {
254
  if ( 'Q' . $last_quarter == $last_run ) return true;
255
  break;
256
  case 'semiannually' :
257
- if ( $now != $last_run ) return true;
258
  break;
259
  case 'annually' :
260
- if ( $now-1 == $last_run ) return true;
261
  break;
262
  default :
263
  return apply_filters( 'mycred_banking_time_to_run', false, $rate, $last_run );
231
  switch ( $rate ) {
232
  case 'hourly' :
233
  if ( $now == 0 && $last_run == 23 ) return true;
234
+ elseif ( $now > $last_run ) return true;
235
  break;
236
  case 'daily' :
237
+ if ( $now == 0 && $last_run >= 364 ) return true;
238
+ elseif ( $now > $last_run ) return true;
239
  break;
240
  case 'weekly' :
241
  if ( $now == 0 && $last_run >= 52 ) return true;
242
+ elseif ( $now > $last_run ) return true;
243
  break;
244
  case 'monthly' :
245
  if ( $now == 1 && $last_run == 12 ) return true;
246
+ elseif ( $now > $last_run ) return true;
247
  break;
248
  case 'quarterly' :
249
  $current_quarter = substr( $now, 0, -1 );
254
  if ( 'Q' . $last_quarter == $last_run ) return true;
255
  break;
256
  case 'semiannually' :
257
+ if ( $now > $last_run ) return true;
258
  break;
259
  case 'annually' :
260
+ if ( $now > $last_run ) return true;
261
  break;
262
  default :
263
  return apply_filters( 'mycred_banking_time_to_run', false, $rate, $last_run );
addons/buy-creds/gateways/paypal-standard.php CHANGED
@@ -5,7 +5,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
5
  * PayPal Payments Standard - Payment Gateway
6
  *
7
  * @since 0.1
8
- * @version 1.0
9
  */
10
  if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
11
  class myCRED_PayPal_Standard extends myCRED_Payment_Gateway {
@@ -74,7 +74,7 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
74
  curl_setopt( $call, CURLOPT_POSTFIELDS, $request );
75
  curl_setopt( $call, CURLOPT_SSL_VERIFYPEER, 1 );
76
  curl_setopt( $call, CURLOPT_CAINFO, myCRED_PURCHASE_DIR . '/cacert.pem' );
77
- curl_setopt( $call, CURLOPT_SSL_VERIFYHOST, 1 );
78
  curl_setopt( $call, CURLOPT_FRESH_CONNECT, 1 );
79
  curl_setopt( $call, CURLOPT_FORBID_REUSE, 1 );
80
  curl_setopt( $call, CURLOPT_HTTPHEADER, array( 'Connection: Close' ) );
5
  * PayPal Payments Standard - Payment Gateway
6
  *
7
  * @since 0.1
8
+ * @version 1.0.1
9
  */
10
  if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
11
  class myCRED_PayPal_Standard extends myCRED_Payment_Gateway {
74
  curl_setopt( $call, CURLOPT_POSTFIELDS, $request );
75
  curl_setopt( $call, CURLOPT_SSL_VERIFYPEER, 1 );
76
  curl_setopt( $call, CURLOPT_CAINFO, myCRED_PURCHASE_DIR . '/cacert.pem' );
77
+ curl_setopt( $call, CURLOPT_SSL_VERIFYHOST, 2 );
78
  curl_setopt( $call, CURLOPT_FRESH_CONNECT, 1 );
79
  curl_setopt( $call, CURLOPT_FORBID_REUSE, 1 );
80
  curl_setopt( $call, CURLOPT_HTTPHEADER, array( 'Connection: Close' ) );
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -2,8 +2,8 @@
2
  /**
3
  * Addon: buyCRED
4
  * Addon URI: http://mycred.me/add-ons/buycred/
5
- * Version: 1.1
6
- * Description: The <strong>buy</strong>CRED Add-on allows your users to buy points using PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also let your users buy points for other members.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
9
  */
@@ -29,6 +29,8 @@ require_once( myCRED_PURCHASE_DIR . 'gateways/paypal-standard.php' );
29
  require_once( myCRED_PURCHASE_DIR . 'gateways/netbilling.php' );
30
  require_once( myCRED_PURCHASE_DIR . 'gateways/skrill.php' );
31
  require_once( myCRED_PURCHASE_DIR . 'gateways/zombaio.php' );
 
 
32
  /**
33
  * myCRED_Buy_CREDs class
34
  *
@@ -67,7 +69,7 @@ if ( ! class_exists( 'myCRED_Buy_CREDs' ) ) {
67
  * Process
68
  * Processes Gateway returns and IPN calls
69
  * @since 0.1
70
- * @version 1.1
71
  */
72
  public function module_init() {
73
  // Add shortcodes first
@@ -114,7 +116,7 @@ if ( ! class_exists( 'myCRED_Buy_CREDs' ) ) {
114
  $gateway = new $class( $this->gateway_prefs );
115
 
116
  // Check payment processing
117
- if ( isset( $_REQUEST['mycred_call'] ) ) {
118
  $gateway->process();
119
 
120
  do_action( 'mycred_buy_cred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
@@ -122,7 +124,7 @@ if ( ! class_exists( 'myCRED_Buy_CREDs' ) ) {
122
  }
123
 
124
  // Check purchase request
125
- elseif ( isset( $_REQUEST['mycred_buy'] ) ) {
126
  // Validate token
127
  $token = false;
128
  if ( isset( $_REQUEST['token'] ) && wp_verify_nonce( $_REQUEST['token'], 'mycred-buy-creds' ) )
@@ -541,6 +543,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
541
  }
542
 
543
  extract( shortcode_atts( array(
 
544
  'gateway' => '',
545
  'amount' => '',
546
  'gift_to' => false,
@@ -590,16 +593,21 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
590
  }
591
 
592
  // Button
593
- if ( ! empty( $gateway ) ) {
594
- $gateway_title = $installed[$gateway]['title'];
595
 
596
- $button = explode( ' ', $gateway_title );
597
- $button = $button[0];
598
- $button = __( 'Buy with', 'mycred' ) . ' ' . $button;
599
- $classes[] = $gateway;
600
- }
601
- else {
602
- $button = __( 'Buy Now', 'mycred' );
 
 
 
 
 
603
  }
604
 
605
  // Start constructing form with title and submit button
@@ -710,7 +718,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
710
 
711
  $form .= '
712
  <input type="hidden" name="token" value="' . wp_create_nonce( 'mycred-buy-creds' ) . '" />
713
- <input type="submit" name="submit" value="' . $button . '" class="mycred-buy button large" />
714
  </form>';
715
 
716
  return $form;
2
  /**
3
  * Addon: buyCRED
4
  * Addon URI: http://mycred.me/add-ons/buycred/
5
+ * Version: 1.1.1
6
+ * Description: The <strong>buy</strong>CRED Add-on allows your users to buy points using PayPal, Skrill (Moneybookers), Zombaio or NETbilling. <strong>buy</strong>CRED can also let your users buy points for other members.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
9
  */
29
  require_once( myCRED_PURCHASE_DIR . 'gateways/netbilling.php' );
30
  require_once( myCRED_PURCHASE_DIR . 'gateways/skrill.php' );
31
  require_once( myCRED_PURCHASE_DIR . 'gateways/zombaio.php' );
32
+ do_action( 'mycred_buycred_load_gateways' );
33
+
34
  /**
35
  * myCRED_Buy_CREDs class
36
  *
69
  * Process
70
  * Processes Gateway returns and IPN calls
71
  * @since 0.1
72
+ * @version 1.2
73
  */
74
  public function module_init() {
75
  // Add shortcodes first
116
  $gateway = new $class( $this->gateway_prefs );
117
 
118
  // Check payment processing
119
+ if ( isset( $_REQUEST['mycred_call'] ) || $gateway_id == 'zombaio' ) {
120
  $gateway->process();
121
 
122
  do_action( 'mycred_buy_cred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
124
  }
125
 
126
  // Check purchase request
127
+ if ( isset( $_REQUEST['mycred_buy'] ) ) {
128
  // Validate token
129
  $token = false;
130
  if ( isset( $_REQUEST['token'] ) && wp_verify_nonce( $_REQUEST['token'], 'mycred-buy-creds' ) )
543
  }
544
 
545
  extract( shortcode_atts( array(
546
+ 'button' => '',
547
  'gateway' => '',
548
  'amount' => '',
549
  'gift_to' => false,
593
  }
594
 
595
  // Button
596
+ if ( ! empty( $gateway ) && isset( $installed[ $gateway ]['title'] ) && empty( $button ) )
597
+ $button_label = __( 'Buy with %gateway%', 'mycred' );
598
 
599
+ elseif ( ! empty( $button ) )
600
+ $button_label = $button;
601
+
602
+ else
603
+ $button_label = __( 'Buy Now', 'mycred' );
604
+
605
+ $button_label = $this->core->template_tags_general( $button_label );
606
+
607
+ if ( ! empty( $gateway ) ) {
608
+ $gateway_name = explode( ' ', $installed[ $gateway ]['title'] );
609
+ $button_label = str_replace( '%gateway%', $gateway_name[0], $button_label );
610
+ $classes[] = $gateway_name[0];
611
  }
612
 
613
  // Start constructing form with title and submit button
718
 
719
  $form .= '
720
  <input type="hidden" name="token" value="' . wp_create_nonce( 'mycred-buy-creds' ) . '" />
721
+ <input type="submit" name="submit" value="' . $button_label . '" class="mycred-buy button large" />
722
  </form>';
723
 
724
  return $form;
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -315,7 +315,6 @@ ORDER BY ID;", 'ARRAY_A' );
315
  if ( $balance >= $mycred->number( $rank['min'] ) && $balance <= $mycred->number( $rank['max'] ) ) {
316
  $rank_id = $rank['ID'];
317
  $rank_title = $rank['title'];
318
- break;
319
  }
320
  }
321
  unset( $ranks );
315
  if ( $balance >= $mycred->number( $rank['min'] ) && $balance <= $mycred->number( $rank['max'] ) ) {
316
  $rank_id = $rank['ID'];
317
  $rank_title = $rank['title'];
 
318
  }
319
  }
320
  unset( $ranks );
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Sell Content
4
  * Addon URI: http://mycred.me/add-ons/sell-content/
5
- * Version: 1.1
6
  * Description: This add-on allows you to sell posts, pages or any public post types on your website. You can either sell the entire content or using our shortcode, sell parts of your content allowing you to offer "teasers".
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -284,7 +284,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
284
  /**
285
  * Settings Page
286
  * @since 0.1
287
- * @version 1.1
288
  */
289
  public function after_general_settings() {
290
  $sell_content = $this->sell_content;
@@ -346,7 +346,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
346
  <li class="empty">&nbsp;</li>
347
  <li>
348
  <label for="<?php echo $this->field_id( array( 'defaults' => 'button_label' ) ); ?>"><?php _e( 'Button Label', 'mycred' ); ?></label>
349
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'defaults' => 'button_label' ) ); ?>" id="<?php echo $this->field_id( array( 'defaults' => 'button_label' ) ); ?>" value="<?php echo $sell_content['defaults']['button_label']; ?>" size="12" /></div>
350
  </li>
351
  <li>
352
  <input type="checkbox" name="<?php echo $this->field_name( array( 'defaults' => 'overwrite_buttonlabel' ) ); ?>" id="<?php echo $this->field_id( array( 'defaults' => 'overwrite_buttonlabel' ) ); ?>" <?php checked( $sell_content['defaults']['overwrite_buttonlabel'], 1 ); ?> value="1" />
@@ -362,7 +362,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
362
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'visitors' ) ); ?>"><?php _e( 'Sale Template for non members', 'mycred' ); ?></label>
363
  <ol id="myCRED-buy-template-visitors">
364
  <li>
365
- <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'visitors' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'visitors' ) ); ?>" class="large-text code"><?php echo $sell_content['templates']['visitors']; ?></textarea>
366
  <span class="description"><?php _e( 'Do <strong>not</strong> use the %buy_button% in this template as a user must be logged in to buy content!', 'mycred' ); ?><br />
367
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %price%', 'mycred' ); ?></span>
368
  </li>
@@ -370,7 +370,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
370
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'members' ) ); ?>"><?php _e( 'Sale Template for members', 'mycred' ); ?></label>
371
  <ol id="myCRED-buy-template-members">
372
  <li>
373
- <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'members' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'members' ) ); ?>" class="large-text code"><?php echo $sell_content['templates']['members']; ?></textarea>
374
  <span class="description"><?php _e( 'Your template must contain the %buy_button% tag for purchases to work!', 'mycred' ); ?><br />
375
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %buy_button%, %price%', 'mycred' ); ?></span>
376
  </li>
@@ -378,7 +378,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
378
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'cantafford' ) ); ?>"><?php _e( 'Insufficient funds template', 'mycred' ); ?></label>
379
  <ol id="myCRED-buy-template-insufficient">
380
  <li>
381
- <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'cantafford' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'cantafford' ) ); ?>" class="large-text code"><?php echo $sell_content['templates']['cantafford']; ?></textarea>
382
  <span class="description"><?php _e( 'Your template must contain the %buy_button% tag for purchases to work!', 'mycred' ); ?><br />
383
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %buy_button%, %price%', 'mycred' ); ?></span>
384
  </li>
@@ -386,14 +386,14 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
386
  <label class="subheader" for="<?php echo $this->field_id( array( 'logs' => 'buy' ) ); ?>"><?php _e( 'Log template for Purchases', 'mycred' ); ?></label>
387
  <ol id="myCRED-buy-template-purchase">
388
  <li>
389
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'logs' => 'buy' ) ); ?>" id="<?php echo $this->field_id( array( 'logs' => 'buy' ) ); ?>" value="<?php echo $sell_content['logs']['buy']; ?>" class="long" /></div>
390
  <span class="description"><?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url% or %link_with_title%', 'mycred' ); ?></span>
391
  </li>
392
  </ol>
393
  <label class="subheader" for="<?php echo $this->field_id( array( 'logs' => 'sell' ) ); ?>"><?php _e( 'Log template for Sales', 'mycred' ); ?></label>
394
  <ol id="myCRED-buy-template-sale">
395
  <li>
396
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'logs' => 'sell' ) ); ?>" id="<?php echo $this->field_id( array( 'logs' => 'sell' ) ); ?>" value="<?php echo $sell_content['logs']['sell']; ?>" class="long" /></div>
397
  <span class="description"><?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url% or %link_with_title%', 'mycred' ); ?></span>
398
  </li>
399
  </ol>
@@ -597,6 +597,70 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
597
  update_post_meta( $post_id, 'myCRED_sell_content', $prefs );
598
  }
599
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
600
  /**
601
  * For Sale
602
  * Checks if a given post is for sale.
@@ -628,7 +692,8 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
628
  // Admins can view
629
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
630
  // Authors can view
631
- if ( isset( $GLOBALS['post'] ) && $GLOBALS['post']->post_author == $user_id ) return true;
 
632
 
633
  global $wpdb;
634
 
@@ -735,15 +800,17 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
735
  *
736
  * @returns (string) content
737
  * @since 0.1
738
- * @version 1.0.2
739
  */
740
  public function the_content( $content ) {
741
  global $mycred_content_purchase;
742
 
 
 
 
743
  // If content is for sale
744
- if ( isset( $GLOBALS['post']->ID ) && $this->for_sale( $GLOBALS['post']->ID ) ) {
745
  // Prep
746
- $post_id = $GLOBALS['post']->ID;
747
  $user_id = get_current_user_id();
748
  $sell_content = $this->sell_content;
749
  $prefs = $this->get_sale_prefs( $post_id );
@@ -754,7 +821,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
754
 
755
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
756
  $template = $this->core->template_tags_general( $template );
757
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
758
  return '<div class="mycred-content-forsale">' . $template . '</div>';
759
  }
760
 
@@ -764,14 +831,14 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
764
 
765
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
766
  $template = $this->core->template_tags_general( $template );
767
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
768
- $template = $this->get_button( $template, $GLOBALS['post'] );
769
  return '
770
  <form action="" method="post">
771
  <input type="hidden" name="mycred_purchase[post_id]" value="' . $post_id . '" />
772
- <input type="hidden" name="mycred_purchase[post_type]" value="' . $GLOBALS['post']->post_type . '" />
773
  <input type="hidden" name="mycred_purchase[user_id]" value="' . get_current_user_id() . '" />
774
- <input type="hidden" name="mycred_purchase[author]" value="' . $GLOBALS['post']->post_author . '" />
775
  <input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
776
  <input type="hidden" name="mycred_purchase[action]" value="buy" />
777
  <div class="mycred-content-forsale">' . $template . '</div>
@@ -783,7 +850,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
783
 
784
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
785
  $template = $this->core->template_tags_general( $template );
786
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
787
  return '<div class="mycred-content-forsale">' . $template . '</div>';
788
  }
789
  }
@@ -805,10 +872,14 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
805
  *
806
  * @returns (string) content
807
  * @since 0.1
808
- * @version 1.2.1
809
  */
810
  public function render_shortcode( $atts, $content ) {
811
- $post_id = $GLOBALS['post']->ID;
 
 
 
 
812
  $user_id = get_current_user_id();
813
  $sell_content = $this->sell_content;
814
 
@@ -835,7 +906,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
835
 
836
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
837
  $template = $this->core->template_tags_general( $template );
838
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
839
  unset( $content );
840
  return '<div class="mycred-content-forsale">' . $template . '</div>';
841
  }
@@ -846,15 +917,15 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
846
 
847
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
848
  $template = $this->core->template_tags_general( $template );
849
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
850
- $template = $this->get_button( $template, $GLOBALS['post'] );
851
  unset( $content );
852
  return '
853
  <form action="" method="post">
854
  <input type="hidden" name="mycred_purchase[post_id]" value="' . $post_id . '" />
855
- <input type="hidden" name="mycred_purchase[post_type]" value="' . $GLOBALS['post']->post_type . '" />
856
  <input type="hidden" name="mycred_purchase[user_id]" value="' . get_current_user_id() . '" />
857
- <input type="hidden" name="mycred_purchase[author]" value="' . $GLOBALS['post']->post_author . '" />
858
  <input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
859
  <input type="hidden" name="mycred_purchase[action]" value="buy" />
860
  <div class="mycred-content-forsale">' . $template . '</div>
@@ -867,13 +938,13 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
867
 
868
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
869
  $template = $this->core->template_tags_general( $template );
870
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
871
  unset( $content );
872
  return '<div class="mycred-content-forsale">' . $template . '</div>';
873
  }
874
 
875
  // Admin and Author Wrapper for highlight of content set for sale
876
- if ( mycred_is_admin() || $GLOBALS['post']->post_author == $user_id )
877
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
878
 
879
  return do_shortcode( $content );
@@ -891,7 +962,10 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
891
  public function render_ajax_shortcode( $atts, $content ) {
892
  global $mycred_buy_content;
893
 
894
- $post_id = $GLOBALS['post']->ID;
 
 
 
895
  $user_id = get_current_user_id();
896
  $sell_content = $this->sell_content;
897
 
@@ -918,7 +992,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
918
 
919
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
920
  $template = $this->core->template_tags_general( $template );
921
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
922
  unset( $content );
923
  return '<div class="mycred-content-forsale">' . $template . '</div>';
924
  }
@@ -929,14 +1003,14 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
929
 
930
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
931
  $template = $this->core->template_tags_general( $template );
932
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
933
 
934
  if ( isset( $prefs['button_label'] ) )
935
  $button_text = $prefs['button_label'];
936
  else
937
  $button_text = $sell_content['defaults']['button_label'];
938
 
939
- $button = '<input type="button" data-id="' . $GLOBALS['post']->ID . '" name="mycred-buy-button" value="' . $this->core->template_tags_post( $button_text, $GLOBALS['post'] ) . '" class="mycred-sell-this-button button large" />';
940
  $template = str_replace( '%buy_button%', $button, $template );
941
  unset( $content );
942
 
@@ -950,13 +1024,13 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
950
 
951
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
952
  $template = $this->core->template_tags_general( $template );
953
- $template = $this->core->template_tags_post( $template, $GLOBALS['post'] );
954
  unset( $content );
955
  return '<div class="mycred-content-forsale">' . $template . '</div>';
956
  }
957
 
958
  // Admin and Author Wrapper for highlight of content set for sale
959
- if ( mycred_is_admin() || $GLOBALS['post']->post_author == $user_id )
960
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
961
 
962
  return do_shortcode( $content );
2
  /**
3
  * Addon: Sell Content
4
  * Addon URI: http://mycred.me/add-ons/sell-content/
5
+ * Version: 1.2.1
6
  * Description: This add-on allows you to sell posts, pages or any public post types on your website. You can either sell the entire content or using our shortcode, sell parts of your content allowing you to offer "teasers".
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
284
  /**
285
  * Settings Page
286
  * @since 0.1
287
+ * @version 1.1.1
288
  */
289
  public function after_general_settings() {
290
  $sell_content = $this->sell_content;
346
  <li class="empty">&nbsp;</li>
347
  <li>
348
  <label for="<?php echo $this->field_id( array( 'defaults' => 'button_label' ) ); ?>"><?php _e( 'Button Label', 'mycred' ); ?></label>
349
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'defaults' => 'button_label' ) ); ?>" id="<?php echo $this->field_id( array( 'defaults' => 'button_label' ) ); ?>" value="<?php echo esc_attr( $sell_content['defaults']['button_label'] ); ?>" size="12" /></div>
350
  </li>
351
  <li>
352
  <input type="checkbox" name="<?php echo $this->field_name( array( 'defaults' => 'overwrite_buttonlabel' ) ); ?>" id="<?php echo $this->field_id( array( 'defaults' => 'overwrite_buttonlabel' ) ); ?>" <?php checked( $sell_content['defaults']['overwrite_buttonlabel'], 1 ); ?> value="1" />
362
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'visitors' ) ); ?>"><?php _e( 'Sale Template for non members', 'mycred' ); ?></label>
363
  <ol id="myCRED-buy-template-visitors">
364
  <li>
365
+ <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'visitors' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'visitors' ) ); ?>" class="large-text code"><?php echo esc_attr( $sell_content['templates']['visitors'] ); ?></textarea>
366
  <span class="description"><?php _e( 'Do <strong>not</strong> use the %buy_button% in this template as a user must be logged in to buy content!', 'mycred' ); ?><br />
367
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %price%', 'mycred' ); ?></span>
368
  </li>
370
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'members' ) ); ?>"><?php _e( 'Sale Template for members', 'mycred' ); ?></label>
371
  <ol id="myCRED-buy-template-members">
372
  <li>
373
+ <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'members' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'members' ) ); ?>" class="large-text code"><?php echo esc_attr( $sell_content['templates']['members'] ); ?></textarea>
374
  <span class="description"><?php _e( 'Your template must contain the %buy_button% tag for purchases to work!', 'mycred' ); ?><br />
375
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %buy_button%, %price%', 'mycred' ); ?></span>
376
  </li>
378
  <label class="subheader" for="<?php echo $this->field_id( array( 'templates' => 'cantafford' ) ); ?>"><?php _e( 'Insufficient funds template', 'mycred' ); ?></label>
379
  <ol id="myCRED-buy-template-insufficient">
380
  <li>
381
+ <textarea rows="10" cols="50" name="<?php echo $this->field_name( array( 'templates' => 'cantafford' ) ); ?>" id="<?php echo $this->field_id( array( 'templates' => 'cantafford' ) ); ?>" class="large-text code"><?php echo esc_attr( $sell_content['templates']['cantafford'] ); ?></textarea>
382
  <span class="description"><?php _e( 'Your template must contain the %buy_button% tag for purchases to work!', 'mycred' ); ?><br />
383
  <?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %buy_button%, %price%', 'mycred' ); ?></span>
384
  </li>
386
  <label class="subheader" for="<?php echo $this->field_id( array( 'logs' => 'buy' ) ); ?>"><?php _e( 'Log template for Purchases', 'mycred' ); ?></label>
387
  <ol id="myCRED-buy-template-purchase">
388
  <li>
389
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'logs' => 'buy' ) ); ?>" id="<?php echo $this->field_id( array( 'logs' => 'buy' ) ); ?>" value="<?php echo esc_attr( $sell_content['logs']['buy'] ); ?>" class="long" /></div>
390
  <span class="description"><?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url% or %link_with_title%', 'mycred' ); ?></span>
391
  </li>
392
  </ol>
393
  <label class="subheader" for="<?php echo $this->field_id( array( 'logs' => 'sell' ) ); ?>"><?php _e( 'Log template for Sales', 'mycred' ); ?></label>
394
  <ol id="myCRED-buy-template-sale">
395
  <li>
396
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'logs' => 'sell' ) ); ?>" id="<?php echo $this->field_id( array( 'logs' => 'sell' ) ); ?>" value="<?php echo esc_attr( $sell_content['logs']['sell'] ); ?>" class="long" /></div>
397
  <span class="description"><?php _e( 'Available template tags are: %singular%, %plural%, %post_title%, %post_url% or %link_with_title%', 'mycred' ); ?></span>
398
  </li>
399
  </ol>
597
  update_post_meta( $post_id, 'myCRED_sell_content', $prefs );
598
  }
599
 
600
+ /**
601
+ * Get the Post ID
602
+ * Added support for sale of bbPress items.
603
+ * @since 1.2
604
+ * @version 1.0
605
+ */
606
+ public function get_post_ID() {
607
+ $post_id = $bbp_topic_id = $bbp_reply_id = 0;
608
+ if ( function_exists( 'bbpress' ) ) {
609
+ global $wp_query;
610
+
611
+ $bbp = bbpress();
612
+
613
+ // Currently inside a topic loop
614
+ if ( ! empty( $bbp->topic_query->in_the_loop ) && isset( $bbp->topic_query->post->ID ) )
615
+ $bbp_topic_id = $bbp->topic_query->post->ID;
616
+
617
+ // Currently inside a search loop
618
+ elseif ( ! empty( $bbp->search_query->in_the_loop ) && isset( $bbp->search_query->post->ID ) && bbp_is_topic( $bbp->search_query->post->ID ) )
619
+ $bbp_topic_id = $bbp->search_query->post->ID;
620
+
621
+ // Currently viewing/editing a topic, likely alone
622
+ elseif ( ( bbp_is_single_topic() || bbp_is_topic_edit() ) && ! empty( $bbp->current_topic_id ) )
623
+ $bbp_topic_id = $bbp->current_topic_id;
624
+
625
+ // Currently viewing/editing a topic, likely in a loop
626
+ elseif ( ( bbp_is_single_topic() || bbp_is_topic_edit() ) && isset( $wp_query->post->ID ) )
627
+ $bbp_topic_id = $wp_query->post->ID;
628
+
629
+ // So far, no topic found, check if we are in a reply
630
+ if ( $bbp_topic_id == 0 ) {
631
+
632
+ // Currently inside a replies loop
633
+ if ( !empty( $bbp->reply_query->in_the_loop ) && isset( $bbp->reply_query->post->ID ) )
634
+ $bbp_reply_id = $bbp->reply_query->post->ID;
635
+
636
+ // Currently inside a search loop
637
+ elseif ( !empty( $bbp->search_query->in_the_loop ) && isset( $bbp->search_query->post->ID ) && bbp_is_reply( $bbp->search_query->post->ID ) )
638
+ $bbp_reply_id = $bbp->search_query->post->ID;
639
+
640
+ // Currently viewing a forum
641
+ elseif ( ( bbp_is_single_reply() || bbp_is_reply_edit() ) && !empty( $bbp->current_reply_id ) )
642
+ $bbp_reply_id = $bbp->current_reply_id;
643
+
644
+ // Currently viewing a reply
645
+ elseif ( ( bbp_is_single_reply() || bbp_is_reply_edit() ) && isset( $wp_query->post->ID ) )
646
+ $bbp_reply_id = $wp_query->post->ID;
647
+
648
+ if ( $bbp_reply_id != 0 )
649
+ $post_id = $bbp_reply_id;
650
+
651
+ }
652
+
653
+ // Else we are in a topic
654
+ else $post_id = $bbp_topic_id;
655
+
656
+ }
657
+
658
+ if ( $post_id == 0 )
659
+ $post_id = $GLOBALS['post']->ID;
660
+
661
+ return apply_filters( 'mycred_sell_this_get_post_ID', $post_id, $this );
662
+ }
663
+
664
  /**
665
  * For Sale
666
  * Checks if a given post is for sale.
692
  // Admins can view
693
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
694
  // Authors can view
695
+ $the_post = get_post( $post_id );
696
+ if ( ! isset( $the_post->post_author ) && $the_post->post_author == $user_id ) return true;
697
 
698
  global $wpdb;
699
 
800
  *
801
  * @returns (string) content
802
  * @since 0.1
803
+ * @version 1.1
804
  */
805
  public function the_content( $content ) {
806
  global $mycred_content_purchase;
807
 
808
+ $post_id = $this->get_post_ID();
809
+ $the_post = get_post( $post_id );
810
+
811
  // If content is for sale
812
+ if ( $this->for_sale( $post_id ) ) {
813
  // Prep
 
814
  $user_id = get_current_user_id();
815
  $sell_content = $this->sell_content;
816
  $prefs = $this->get_sale_prefs( $post_id );
821
 
822
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
823
  $template = $this->core->template_tags_general( $template );
824
+ $template = $this->core->template_tags_post( $template, $the_post );
825
  return '<div class="mycred-content-forsale">' . $template . '</div>';
826
  }
827
 
831
 
832
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
833
  $template = $this->core->template_tags_general( $template );
834
+ $template = $this->core->template_tags_post( $template, $the_post );
835
+ $template = $this->get_button( $template, $the_post );
836
  return '
837
  <form action="" method="post">
838
  <input type="hidden" name="mycred_purchase[post_id]" value="' . $post_id . '" />
839
+ <input type="hidden" name="mycred_purchase[post_type]" value="' . $the_post->post_type . '" />
840
  <input type="hidden" name="mycred_purchase[user_id]" value="' . get_current_user_id() . '" />
841
+ <input type="hidden" name="mycred_purchase[author]" value="' . $the_post->post_author . '" />
842
  <input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
843
  <input type="hidden" name="mycred_purchase[action]" value="buy" />
844
  <div class="mycred-content-forsale">' . $template . '</div>
850
 
851
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
852
  $template = $this->core->template_tags_general( $template );
853
+ $template = $this->core->template_tags_post( $template, $the_post );
854
  return '<div class="mycred-content-forsale">' . $template . '</div>';
855
  }
856
  }
872
  *
873
  * @returns (string) content
874
  * @since 0.1
875
+ * @version 1.3
876
  */
877
  public function render_shortcode( $atts, $content ) {
878
+ // The Post
879
+ $post_id = $this->get_post_ID();
880
+ $the_post = get_post( $post_id );
881
+
882
+ // The User
883
  $user_id = get_current_user_id();
884
  $sell_content = $this->sell_content;
885
 
906
 
907
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
908
  $template = $this->core->template_tags_general( $template );
909
+ $template = $this->core->template_tags_post( $template, $the_post );
910
  unset( $content );
911
  return '<div class="mycred-content-forsale">' . $template . '</div>';
912
  }
917
 
918
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
919
  $template = $this->core->template_tags_general( $template );
920
+ $template = $this->core->template_tags_post( $template, $the_post );
921
+ $template = $this->get_button( $template, $the_post );
922
  unset( $content );
923
  return '
924
  <form action="" method="post">
925
  <input type="hidden" name="mycred_purchase[post_id]" value="' . $post_id . '" />
926
+ <input type="hidden" name="mycred_purchase[post_type]" value="' . $the_post->post_type . '" />
927
  <input type="hidden" name="mycred_purchase[user_id]" value="' . get_current_user_id() . '" />
928
+ <input type="hidden" name="mycred_purchase[author]" value="' . $the_post->post_author . '" />
929
  <input type="hidden" name="mycred_purchase_token" value="' . wp_create_nonce( 'buy-content' ) . '" />
930
  <input type="hidden" name="mycred_purchase[action]" value="buy" />
931
  <div class="mycred-content-forsale">' . $template . '</div>
938
 
939
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
940
  $template = $this->core->template_tags_general( $template );
941
+ $template = $this->core->template_tags_post( $template, $the_post );
942
  unset( $content );
943
  return '<div class="mycred-content-forsale">' . $template . '</div>';
944
  }
945
 
946
  // Admin and Author Wrapper for highlight of content set for sale
947
+ if ( mycred_is_admin() || $the_post->post_author == $user_id )
948
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
949
 
950
  return do_shortcode( $content );
962
  public function render_ajax_shortcode( $atts, $content ) {
963
  global $mycred_buy_content;
964
 
965
+ // The Post
966
+ $post_id = $this->get_post_ID();
967
+ $the_post = get_post( $post_id );
968
+
969
  $user_id = get_current_user_id();
970
  $sell_content = $this->sell_content;
971
 
992
 
993
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
994
  $template = $this->core->template_tags_general( $template );
995
+ $template = $this->core->template_tags_post( $template, $the_post );
996
  unset( $content );
997
  return '<div class="mycred-content-forsale">' . $template . '</div>';
998
  }
1003
 
1004
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1005
  $template = $this->core->template_tags_general( $template );
1006
+ $template = $this->core->template_tags_post( $template, $the_post );
1007
 
1008
  if ( isset( $prefs['button_label'] ) )
1009
  $button_text = $prefs['button_label'];
1010
  else
1011
  $button_text = $sell_content['defaults']['button_label'];
1012
 
1013
+ $button = '<input type="button" data-id="' . $the_post->ID . '" name="mycred-buy-button" value="' . $this->core->template_tags_post( $button_text, $the_post ) . '" class="mycred-sell-this-button button large" />';
1014
  $template = str_replace( '%buy_button%', $button, $template );
1015
  unset( $content );
1016
 
1024
 
1025
  $template = str_replace( '%price%', $this->core->format_creds( $prefs['price'] ), $template );
1026
  $template = $this->core->template_tags_general( $template );
1027
+ $template = $this->core->template_tags_post( $template, $the_post );
1028
  unset( $content );
1029
  return '<div class="mycred-content-forsale">' . $template . '</div>';
1030
  }
1031
 
1032
  // Admin and Author Wrapper for highlight of content set for sale
1033
+ if ( mycred_is_admin() || $the_post->post_author == $user_id )
1034
  $content = '<div class="mycred-mark-title">' . __( 'The following content is set for sale:', 'mycred' ) . '</div><div class="mycred-mark-content">' . $content . '</div>';
1035
 
1036
  return do_shortcode( $content );
includes/mycred-about.php CHANGED
@@ -145,8 +145,10 @@ function mycred_about_credit_page() {
145
  <h4><?php _e( 'Bug Finders', 'mycred' ); ?></h4>
146
  <p><?php _e( 'Users who have taken the time to report bugs helping me improve this plugin.', 'mycred' ); ?></p>
147
  <ul>
148
- <li><a href="http://mycred.me/members/douglas-dupuis-9_o8jr2b/">Douglas</a></li>
149
- <li><a href="http://mycred.me/members/joebethepro-com/">joe</a></li>
 
 
150
  </ul>
151
  </div>
152
  <div class="last-feature">
@@ -154,6 +156,8 @@ function mycred_about_credit_page() {
154
  <p><?php _e( 'Users who have helped with translating this plugin.', 'mycred' ); ?></p>
155
  <ul>
156
  <li><a href="http://bp-fr.net/">Dan</a> <em>( French )</em></li>
 
 
157
  </ul>
158
  </div>
159
  </div>
145
  <h4><?php _e( 'Bug Finders', 'mycred' ); ?></h4>
146
  <p><?php _e( 'Users who have taken the time to report bugs helping me improve this plugin.', 'mycred' ); ?></p>
147
  <ul>
148
+ <li><a href="http://mycred.me/members/kpd10435/" target="_blank">kpd10435</a></li>
149
+ <li><a href="http://fitbobcat.com" target="_blank">Johnathan Martin</a></li>
150
+ <li><a href="http://mycred.me/members/threadsgeneration/" target="_blank">Gabriel Galvão</a></li>
151
+ <li>Bryan</li>
152
  </ul>
153
  </div>
154
  <div class="last-feature">
156
  <p><?php _e( 'Users who have helped with translating this plugin.', 'mycred' ); ?></p>
157
  <ul>
158
  <li><a href="http://bp-fr.net/">Dan</a> <em>( French )</em></li>
159
+ <li>Biz.O <em>( Vietnamese )</em></li>
160
+ <li>Mani <em>( Persian )</em></li>
161
  </ul>
162
  </div>
163
  </div>
includes/mycred-admin.php CHANGED
@@ -81,6 +81,8 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
81
  // Data
82
  $data = apply_filters( 'mycred_manual_change', array( 'ref_type' => 'user' ), $this );
83
 
 
 
84
  // Execute
85
  $this->core->add_creds(
86
  'manual',
@@ -91,15 +93,18 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
91
  $data
92
  );
93
 
 
 
 
94
 
95
- die( json_encode( array( 'status' => 'OK', 'current' => $this->core->get_users_cred( $user_id ) ) ) );
96
  }
97
 
98
  /**
99
  * Admin Header
100
  * @filter mycred_icon_menu
101
  * @since 0.1
102
- * @version 1.2
103
  */
104
  public function admin_header() {
105
  $screen = get_current_screen();
@@ -107,15 +112,6 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
107
  wp_enqueue_script( 'mycred-inline-edit' );
108
  wp_enqueue_style( 'mycred-inline-edit' );
109
  }
110
-
111
- $image = apply_filters( 'mycred_icon_menu', plugins_url( 'assets/images/logo-menu.png', myCRED_THIS ) );
112
- echo '
113
- <style type="text/css">
114
- #adminmenu .toplevel_page_myCRED div.wp-menu-image { background-image: url(' . $image . '); background-position: 1px -28px; }
115
- #adminmenu .toplevel_page_myCRED:hover div.wp-menu-image,
116
- #adminmenu .toplevel_page_myCRED.current div.wp-menu-image,
117
- #adminmenu .toplevel_page_myCRED .wp-menu-open div.wp-menu-image { background-position: 1px 0; }
118
- </style>' . "\n";
119
  }
120
 
121
  /**
81
  // Data
82
  $data = apply_filters( 'mycred_manual_change', array( 'ref_type' => 'user' ), $this );
83
 
84
+ $current = $this->core->get_users_cred( $user_id );
85
+
86
  // Execute
87
  $this->core->add_creds(
88
  'manual',
93
  $data
94
  );
95
 
96
+ $new = $this->core->get_users_cred( $user_id );
97
+ if ( $current+$amount != $new )
98
+ $new = $this->core->number( $current+$amount );
99
 
100
+ die( json_encode( array( 'status' => 'OK', 'current' => $new, 'blog_id' => $GLOBALS['blog_id'] ) ) );
101
  }
102
 
103
  /**
104
  * Admin Header
105
  * @filter mycred_icon_menu
106
  * @since 0.1
107
+ * @version 1.2.1
108
  */
109
  public function admin_header() {
110
  $screen = get_current_screen();
112
  wp_enqueue_script( 'mycred-inline-edit' );
113
  wp_enqueue_style( 'mycred-inline-edit' );
114
  }
 
 
 
 
 
 
 
 
 
115
  }
116
 
117
  /**
includes/mycred-functions.php CHANGED
@@ -5,20 +5,30 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Settings class
6
  * @see http://codex.mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
- * @version 1.3
9
  */
10
  if ( ! class_exists( 'myCRED_Settings' ) ) {
11
  class myCRED_Settings {
12
 
13
  public $core;
14
  public $log_table;
 
 
 
 
15
 
16
  /**
17
  * Construct
18
  */
19
  function __construct() {
20
- if ( is_multisite() ) {
21
- if ( mycred_override_settings() )
 
 
 
 
 
 
22
  $this->core = get_blog_option( 1, 'mycred_pref_core', $this->defaults() );
23
  else
24
  $this->core = get_blog_option( $GLOBALS['blog_id'], 'mycred_pref_core', $this->defaults() );
@@ -38,7 +48,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
38
  else {
39
  global $wpdb;
40
 
41
- if ( mycred_centralize_log() )
42
  $this->log_table = $wpdb->base_prefix . 'myCRED_log';
43
  else
44
  $this->log_table = $wpdb->prefix . 'myCRED_log';
@@ -427,7 +437,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
427
  * @param $data (object) Log entry data object
428
  * @return (string) parsed string
429
  * @since 0.1
430
- * @version 1.2.1
431
  */
432
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
433
  if ( $ref_id === NULL ) return $content;
@@ -468,6 +478,14 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
468
  $url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
469
  }
470
 
 
 
 
 
 
 
 
 
471
  $content = str_replace( '%display_name%', $user->display_name, $content );
472
  $content = str_replace( '%user_profile_url%', $url, $content );
473
  $content = str_replace( '%user_profile_link%', '<a href="' . $url . '">' . $user->display_name . '</a>', $content );
@@ -778,6 +796,11 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
778
  if ( empty( $user_id ) ) return $this->zero();
779
 
780
  if ( empty( $type ) ) $type = $this->get_cred_id();
 
 
 
 
 
781
  $balance = get_user_meta( $user_id, $type, true );
782
  if ( empty( $balance ) ) $balance = $this->zero();
783
 
@@ -804,6 +827,10 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
804
  if ( $user_id === NULL || $amount === NULL ) return $amount;
805
  if ( empty( $this->cred_id ) ) $this->cred_id = $this->get_cred_id();
806
 
 
 
 
 
807
  // Enforce max
808
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
809
  $amount = $this->number( $this->max() );
@@ -815,7 +842,11 @@ if ( ! class_exists( 'myCRED_Settings' ) ) {
815
  $current_balance = $this->get_users_cred( $user_id );
816
  $new_balance = $current_balance+$amount;
817
 
818
- // Update creds
 
 
 
 
819
  update_user_meta( $user_id, $this->cred_id, $new_balance );
820
 
821
  // Rankings
@@ -1606,19 +1637,19 @@ function is_mycred_ready()
1606
 
1607
  // By default we start with the main sites setup. If it is not a multisite installation
1608
  // get_blog_option() will default to get_option() for us.
1609
- if ( is_multisite() )
1610
  $setup = get_blog_option( 1, 'mycred_setup_completed' );
1611
  else
1612
  $setup = get_option( 'mycred_setup_completed' );
1613
 
1614
  // If it is a multisite and the master template is not used, check if this site has
1615
  // been installed
1616
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_override_settings() )
1617
  $setup = get_blog_option( $GLOBALS['blog_id'], 'mycred_setup_completed' );
1618
 
1619
  // Make sure that if we switch from central log to seperate logs, we install this
1620
  // log if it does not exists.
1621
- if ( is_multisite() && $GLOBALS['blog_id'] > 1 && ! mycred_centralize_log() ) {
1622
  mycred_install_log( $mycred->core['format']['decimals'], $mycred->log_table );
1623
  }
1624
 
5
  * myCRED_Settings class
6
  * @see http://codex.mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
+ * @version 1.3.1
9
  */
10
  if ( ! class_exists( 'myCRED_Settings' ) ) {
11
  class myCRED_Settings {
12
 
13
  public $core;
14
  public $log_table;
15
+
16
+ public $is_multisite = false;
17
+ public $use_master_template = false;
18
+ public $use_central_logging = false;
19
 
20
  /**
21
  * Construct
22
  */
23
  function __construct() {
24
+ // Prep
25
+ $this->is_multisite = is_multisite();
26
+ $this->use_master_template = mycred_override_settings();
27
+ $this->use_central_logging = mycred_centralize_log();
28
+
29
+ // Load Settings
30
+ if ( $this->is_multisite ) {
31
+ if ( $this->use_master_template )
32
  $this->core = get_blog_option( 1, 'mycred_pref_core', $this->defaults() );
33
  else
34
  $this->core = get_blog_option( $GLOBALS['blog_id'], 'mycred_pref_core', $this->defaults() );
48
  else {
49
  global $wpdb;
50
 
51
+ if ( $this->is_multisite && $this->use_central_logging )
52
  $this->log_table = $wpdb->base_prefix . 'myCRED_log';
53
  else
54
  $this->log_table = $wpdb->prefix . 'myCRED_log';
437
  * @param $data (object) Log entry data object
438
  * @return (string) parsed string
439
  * @since 0.1
440
+ * @version 1.3
441
  */
442
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
443
  if ( $ref_id === NULL ) return $content;
478
  $url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
479
  }
480
 
481
+ // At this point if we do not have an ID, the user no longer
482
+ // exists and we did not save their details. Replace all user related
483
+ // template tags with blanks.
484
+ if ( ! isset( $user->ID ) ) {
485
+ $content = apply_filters( 'mycred_parse_tags_missing_user', $content );
486
+ return str_replace( array( '%display_name%', '%user_profile_url%', '%user_profile_link%', '%user_nicename%', '%user_email%', '%user_url%', '%balance%', '%balance_f%', '%rank%', '%ranking%', '%ranking%' ), '', $content );
487
+ }
488
+
489
  $content = str_replace( '%display_name%', $user->display_name, $content );
490
  $content = str_replace( '%user_profile_url%', $url, $content );
491
  $content = str_replace( '%user_profile_link%', '<a href="' . $url . '">' . $user->display_name . '</a>', $content );
796
  if ( empty( $user_id ) ) return $this->zero();
797
 
798
  if ( empty( $type ) ) $type = $this->get_cred_id();
799
+
800
+ // Handle multisites without centralized log
801
+ if ( $this->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->use_central_logging )
802
+ $type .= '_' . $GLOBALS['blog_id'];
803
+
804
  $balance = get_user_meta( $user_id, $type, true );
805
  if ( empty( $balance ) ) $balance = $this->zero();
806
 
827
  if ( $user_id === NULL || $amount === NULL ) return $amount;
828
  if ( empty( $this->cred_id ) ) $this->cred_id = $this->get_cred_id();
829
 
830
+ // Let others override this function now
831
+ if ( has_filter( 'mycred_pre_update_users_balance' ) )
832
+ return apply_filters( 'mycred_pre_update_users_balance', 0, $user_id, $amount, $this );
833
+
834
  // Enforce max
835
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
836
  $amount = $this->number( $this->max() );
842
  $current_balance = $this->get_users_cred( $user_id );
843
  $new_balance = $current_balance+$amount;
844
 
845
+ // Handle multisites without centralized log
846
+ if ( $this->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->use_central_logging )
847
+ $this->cred_id .= '_' . $GLOBALS['blog_id'];
848
+
849
+ // Update balance
850
  update_user_meta( $user_id, $this->cred_id, $new_balance );
851
 
852
  // Rankings
1637
 
1638
  // By default we start with the main sites setup. If it is not a multisite installation
1639
  // get_blog_option() will default to get_option() for us.
1640
+ if ( $mycred->is_multisite )
1641
  $setup = get_blog_option( 1, 'mycred_setup_completed' );
1642
  else
1643
  $setup = get_option( 'mycred_setup_completed' );
1644
 
1645
  // If it is a multisite and the master template is not used, check if this site has
1646
  // been installed
1647
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_master_template )
1648
  $setup = get_blog_option( $GLOBALS['blog_id'], 'mycred_setup_completed' );
1649
 
1650
  // Make sure that if we switch from central log to seperate logs, we install this
1651
  // log if it does not exists.
1652
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging ) {
1653
  mycred_install_log( $mycred->core['format']['decimals'], $mycred->log_table );
1654
  }
1655
 
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-fa_IR.mo ADDED
Binary file
lang/mycred-vi.mo ADDED
Binary file
lang/mycred.pot CHANGED
@@ -4,193 +4,194 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
- "POT-Creation-Date: 2013-12-18 10:46+0100\n"
8
- "PO-Revision-Date: 2013-12-18 10:46+0100\n"
9
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
10
  "Language-Team: LANGUAGE <support@mycred.me>\n"
11
  "Language: en_US\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.6.2\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _n;_e;__\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3.3.1\n"
 
20
  "X-Poedit-SearchPath-1: .\n"
21
 
22
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:355
23
  msgid "My Balance: %cred_f%"
24
  msgstr ""
25
 
26
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:388
27
  #, php-format
28
  msgid "About %s"
29
  msgstr ""
30
 
31
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:397
32
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:138
33
  msgid "Awesome People"
34
  msgstr ""
35
 
36
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:478
37
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:501
38
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:235
39
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:913
40
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:275
41
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:138
42
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:408
43
  msgid "Processing..."
44
  msgstr ""
45
 
46
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:479
47
  msgid ""
48
  "Warning! All entries in your log will be permamenly removed! This can not be "
49
  "undone!"
50
  msgstr ""
51
 
52
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:480
53
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
54
  msgstr ""
55
 
56
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:481
57
  msgid "Done!"
58
  msgstr ""
59
 
60
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:482
61
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:500
62
  msgid "Close"
63
  msgstr ""
64
 
65
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:483
66
  msgid "Export users %plural%"
67
  msgstr ""
68
 
69
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:499
70
  #, php-format
71
  msgid "Edit Users %s balance"
72
  msgstr ""
73
 
74
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:563
75
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:583
76
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:622
77
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:447
78
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:531
79
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:421
80
  msgid "Setup"
81
  msgstr ""
82
 
83
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:565
84
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:342
85
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:175
86
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:19
87
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:20
88
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:21
89
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:246
90
  msgid "Settings"
91
  msgstr ""
92
 
93
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:587
94
  msgid "About"
95
  msgstr ""
96
 
97
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:588
98
  msgid "Tutorials"
99
  msgstr ""
100
 
101
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:589
102
  msgid "Codex"
103
  msgstr ""
104
 
105
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/mycred.php:590
106
  msgid "Store"
107
  msgstr ""
108
 
109
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:57
110
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
111
  msgstr ""
112
 
113
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:66
114
  msgid "This Hook has no settings"
115
  msgstr ""
116
 
117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:133
118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1051
119
  msgid "No limit"
120
  msgstr ""
121
 
122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:134
123
  msgid "Once every 24 hours"
124
  msgstr ""
125
 
126
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:135
127
  msgid "Once every 12 hours"
128
  msgstr ""
129
 
130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:136
131
  msgid "Once every 7 days"
132
  msgstr ""
133
 
134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:137
135
  msgid "Once per day (reset at midnight)"
136
  msgstr ""
137
 
138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-hook.php:144
139
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:342
140
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:276
141
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:297
142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
143
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:563
144
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:516
145
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:373
146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:184
147
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:771
148
  msgid "Select"
149
  msgstr ""
150
 
151
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-module.php:42
152
  msgid "myCRED_Module() Error. A Module ID is required!"
153
  msgstr ""
154
 
155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-module.php:313
156
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-module.php:321
157
  msgid "Surprise"
158
  msgstr ""
159
 
160
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-module.php:378
161
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:154
162
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:194
163
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:103
164
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:202
165
  msgid "click to close"
166
  msgstr ""
167
 
168
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/abstracts/mycred-abstract-module.php:379
169
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:155
170
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:195
171
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:104
172
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:203
173
  msgid "click to open"
174
  msgstr ""
175
 
176
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:12
177
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:49
178
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:50
179
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:51
180
  msgid "Banking"
181
  msgstr ""
182
 
183
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:13
184
  msgid ""
185
  "This add-on allows you to offer interest on your users points balances or "
186
  "setup recurring payouts."
187
  msgstr ""
188
 
189
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:110
190
  msgid "Compound Interest"
191
  msgstr ""
192
 
193
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:111
194
  msgid ""
195
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
196
  "annual and is compounded daily as long as this service is enabled. Positive "
@@ -198,210 +199,210 @@ msgid ""
198
  "rate will to users loosing %_plural%."
199
  msgstr ""
200
 
201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:117
202
  msgid "Recurring Payouts"
203
  msgstr ""
204
 
205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:118
206
  msgid ""
207
  "Give your users %_plural% on a regular basis with the option to set the "
208
  "number of times you want this payout to run (cycles)."
209
  msgstr ""
210
 
211
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:167
212
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:458
213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:149
214
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:254
215
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:215
216
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:149
217
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:266
218
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:355
219
  msgid "Access Denied"
220
  msgstr ""
221
 
222
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:174
223
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:355
224
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:226
225
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:158
226
  msgid "Settings Updated"
227
  msgstr ""
228
 
229
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:179
230
  #, php-format
231
  msgid "%s Banking"
232
  msgstr ""
233
 
234
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:180
235
  msgid ""
236
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
237
  "purchases or payments using the Gateway add-on, along with offering interest "
238
  "on %_plural% balances."
239
  msgstr ""
240
 
241
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:183
242
  msgid "WP-Cron deactivation detected!"
243
  msgstr ""
244
 
245
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:184
246
  msgid "Warning! This add-on requires WP - Cron to work."
247
  msgstr ""
248
 
249
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:197
250
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:384
251
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:172
252
  msgid "Enable"
253
  msgstr ""
254
 
255
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/myCRED-addon-banking.php:210
256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:185
257
  msgid "Update Changes"
258
  msgstr ""
259
 
260
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:57
261
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
262
  msgstr ""
263
 
264
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:66
265
  msgid "This Service has no settings"
266
  msgstr ""
267
 
268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:143
269
  msgid "Hourly"
270
  msgstr ""
271
 
272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:147
273
  msgid "Daily"
274
  msgstr ""
275
 
276
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:151
277
  msgid "Weekly"
278
  msgstr ""
279
 
280
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:155
281
  msgid "Monthly"
282
  msgstr ""
283
 
284
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:159
285
  msgid "Quarterly"
286
  msgstr ""
287
 
288
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:163
289
  msgid "Semiannually"
290
  msgstr ""
291
 
292
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/abstracts/mycred-abstract-service.php:167
293
  msgid "Annually"
294
  msgstr ""
295
 
296
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:25
297
  msgid "%plural% interest rate payment"
298
  msgstr ""
299
 
300
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:275
301
  msgid "Interest Rate"
302
  msgstr ""
303
 
304
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:282
305
  msgid "Payed / Charged"
306
  msgstr ""
307
 
308
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:288
309
  msgid ""
310
  "The interest rate can be either positive or negative and is compounded daily."
311
  msgstr ""
312
 
313
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:291
314
  msgid "Minimum Balance"
315
  msgstr ""
316
 
317
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:295
318
  msgid "The minimum requires balance for interest to apply."
319
  msgstr ""
320
 
321
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:298
322
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:263
323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:254
324
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:309
325
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:360
326
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:393
327
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:93
328
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:141
329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:335
330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:440
331
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1248
332
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1579
333
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:110
334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:112
335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:121
336
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:146
337
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:159
338
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:105
339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:118
340
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:130
341
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:143
342
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-polls.php:132
343
  msgid "Log Template"
344
  msgstr ""
345
 
346
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:302
347
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
348
  msgstr ""
349
 
350
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:305
351
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:270
352
  msgid "Run Time"
353
  msgstr ""
354
 
355
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-interest.php:309
356
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:274
357
  msgid ""
358
  "For large websites, if you are running into time out issues during payouts, "
359
  "you can set the number of seconds a process can run. Use zero for unlimited, "
360
  "but be careful especially if you are on a shared server."
361
  msgstr ""
362
 
363
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:21
364
  msgid "Daily %_plural%"
365
  msgstr ""
366
 
367
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:225
368
  msgid "Not yet run"
369
  msgstr ""
370
 
371
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:230
372
  msgid "Pay Users"
373
  msgstr ""
374
 
375
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:233
376
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:684
377
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:350
378
  msgid "Amount"
379
  msgstr ""
380
 
381
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:235
382
  msgid "Can not be zero."
383
  msgstr ""
384
 
385
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:239
386
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:252
387
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1594
388
  msgid "Interval"
389
  msgstr ""
390
 
391
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:244
392
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:253
393
  msgid "Cycles"
394
  msgstr ""
395
 
396
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:246
397
  msgid "Set to -1 for unlimited"
398
  msgstr ""
399
 
400
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:249
401
  msgid "Last Run / Activated"
402
  msgstr ""
403
 
404
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:252
405
  msgid ""
406
  "Select how often you want to award %_plural%. Note that when this service is "
407
  "enabled, the first payout will be in the beginning of the next period. So "
@@ -409,965 +410,965 @@ msgid ""
409
  "morning."
410
  msgstr ""
411
 
412
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:253
413
  msgid ""
414
  "Cycles let you choose how many intervals this service should run. Each time "
415
  "a cycle runs, the value will decrease until it hits zero, in which case this "
416
  "service will deactivate itself. Use -1 to run unlimited times."
417
  msgstr ""
418
 
419
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:254
420
  msgid "Important"
421
  msgstr ""
422
 
423
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:254
424
  msgid ""
425
  "You can always stop payouts by deactivating this service. Just remember that "
426
  "if you deactivate while there are cycles left, this service will continue on "
427
  "when it gets re-activated. Set cycles to zero to reset."
428
  msgstr ""
429
 
430
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:256
431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:597
432
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:289
433
  msgid "Excludes"
434
  msgstr ""
435
 
436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:260
437
  msgid ""
438
  "Comma separated list of user IDs to exclude from this service. No spaces "
439
  "allowed!"
440
  msgstr ""
441
 
442
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/banking/services/mycred-bank-service-payouts.php:267
443
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-galleries.php:81
444
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:435
445
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:448
446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:461
447
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:474
448
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:487
449
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:500
450
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:514
451
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:527
452
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:540
453
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:553
454
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:175
455
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:188
456
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:201
457
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:214
458
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:338
459
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:351
460
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:390
461
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:403
462
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:416
463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:429
464
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:449
465
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:444
466
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1583
467
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:109
468
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:122
469
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:144
470
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:165
471
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:499
472
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:512
473
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:328
474
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:341
475
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:365
476
  msgid "Available template tags: General"
477
  msgstr ""
478
 
479
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:13
480
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:407
481
  msgid "BuddyPress"
482
  msgstr ""
483
 
484
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:14
485
  msgid ""
486
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
487
  "BuddyPress allowing you to hook into most BuddyPress related actions."
488
  msgstr ""
489
 
490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:58
491
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:69
492
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:379
493
  msgid "My History"
494
  msgstr ""
495
 
496
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:59
497
  #, php-format
498
  msgid "%s's History"
499
  msgstr ""
500
 
501
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:239
502
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:248
503
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:447
504
  msgid "All"
505
  msgstr ""
506
 
507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:240
508
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:448
509
  msgid "Today"
510
  msgstr ""
511
 
512
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:241
513
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:449
514
  msgid "Yesterday"
515
  msgstr ""
516
 
517
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:242
518
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:450
519
  msgid "This Week"
520
  msgstr ""
521
 
522
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:243
523
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:451
524
  msgid "This Month"
525
  msgstr ""
526
 
527
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:343
528
  msgid "BuddyPress: Groups"
529
  msgstr ""
530
 
531
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:344
532
  msgid ""
533
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
534
  "zero to disable a specific hook."
535
  msgstr ""
536
 
537
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:351
538
  msgid "BuddyPress: Members"
539
  msgstr ""
540
 
541
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:352
542
  msgid "Awards %_plural% for profile related actions."
543
  msgstr ""
544
 
545
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:359
546
  msgid "BuddyPress: Links"
547
  msgstr ""
548
 
549
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:360
550
  msgid "Awards %_plural% for link related actions."
551
  msgstr ""
552
 
553
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:367
554
  msgid "BuddyPress: Gallery Actions"
555
  msgstr ""
556
 
557
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:368
558
  msgid ""
559
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
560
  "Gallery."
561
  msgstr ""
562
 
563
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:388
564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:395
565
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:852
566
  msgid "Do not show."
567
  msgstr ""
568
 
569
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:389
570
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:853
571
  msgid "Include in Profile Header."
572
  msgstr ""
573
 
574
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:390
575
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:854
576
  msgid "Include under the \"Profile\" tab"
577
  msgstr ""
578
 
579
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:391
580
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:855
581
  msgid "Include under the \"Profile\" tab and Profile Header."
582
  msgstr ""
583
 
584
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:396
585
  msgid "Show in Profile"
586
  msgstr ""
587
 
588
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:409
589
  msgid "%singular% Balance"
590
  msgstr ""
591
 
592
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:425
593
  msgid "Members can view each others %_singular% balance."
594
  msgstr ""
595
 
596
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:430
597
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:176
598
  msgid "Template"
599
  msgstr ""
600
 
601
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:432
602
  msgid "Available template tags are: %creds%, %number%, %rank%"
603
  msgstr ""
604
 
605
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:433
606
  msgid ""
607
  "Note that you can also use %rank_logo% to show the feature image of the rank."
608
  msgstr ""
609
 
610
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:437
611
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:162
612
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:70
613
  msgid "%plural% History"
614
  msgstr ""
615
 
616
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:453
617
  msgid "Members can view each others %_plural% history."
618
  msgstr ""
619
 
620
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:458
621
  msgid "Menu Title"
622
  msgstr ""
623
 
624
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:460
625
  msgid "Title shown to me"
626
  msgstr ""
627
 
628
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:465
629
  #, php-format
630
  msgid "Title shown to others. Use %s to show the first name."
631
  msgstr ""
632
 
633
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:470
634
  msgid "Menu Position"
635
  msgstr ""
636
 
637
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:472
638
  msgid "Current menu positions:"
639
  msgstr ""
640
 
641
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:477
642
  msgid "History URL slug"
643
  msgstr ""
644
 
645
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:479
646
  msgid "Do not use empty spaces!"
647
  msgstr ""
648
 
649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/myCRED-addon-buddypress.php:484
650
  msgid "Number of history entries to show"
651
  msgstr ""
652
 
653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-galleries.php:72
654
  msgid "%plural% for New Gallery"
655
  msgstr ""
656
 
657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-galleries.php:79
658
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:433
659
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:446
660
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:459
661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:472
662
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:485
663
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:498
664
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:512
665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:525
666
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:538
667
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:551
668
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:173
669
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:186
670
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:199
671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:212
672
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:336
673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:349
674
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:362
675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:375
676
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:388
677
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:401
678
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:414
679
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:427
680
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:303
681
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:560
682
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:573
683
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:608
684
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:930
685
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:947
686
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:964
687
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:276
688
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:440
689
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:453
690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:466
691
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:484
692
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:497
693
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:516
694
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:544
695
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-contact-form7.php:136
696
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:142
697
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:163
698
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:497
699
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:510
700
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:313
701
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:326
702
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:339
703
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:363
704
  msgid "Log template"
705
  msgstr ""
706
 
707
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:419
708
  msgid "%plural% for Creating Groups"
709
  msgstr ""
710
 
711
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:423
712
  msgid ""
713
  "If you use a negative value and the user does not have enough %_plural% the "
714
  "\"Create Group\" button will be disabled."
715
  msgstr ""
716
 
717
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:427
718
  msgid "Number of members before awarding %_plural%"
719
  msgstr ""
720
 
721
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:429
722
  msgid "Use zero to award %_plural% when group is created."
723
  msgstr ""
724
 
725
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:439
726
  msgid "%plural% for Deleting Groups"
727
  msgstr ""
728
 
729
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:452
730
  msgid "%plural% for New Forum Topic"
731
  msgstr ""
732
 
733
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:465
734
  msgid "%plural% for Editing Forum Topic"
735
  msgstr ""
736
 
737
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:478
738
  msgid "%plural% for New Forum Post"
739
  msgstr ""
740
 
741
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:491
742
  msgid "%plural% for Editing Forum Post"
743
  msgstr ""
744
 
745
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:504
746
  msgid "%plural% for Joining Groups"
747
  msgstr ""
748
 
749
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:508
750
  msgid ""
751
  "If you use a negative value and the user does not have enough %_plural% the "
752
  "\"Join Group\" button will be disabled."
753
  msgstr ""
754
 
755
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:518
756
  msgid "%plural% for Leaving Groups"
757
  msgstr ""
758
 
759
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:531
760
  msgid "%plural% for New Group Avatar"
761
  msgstr ""
762
 
763
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-groups.php:544
764
  msgid "%plural% for New Group Comment"
765
  msgstr ""
766
 
767
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:166
768
  msgid "%plural% for New Links"
769
  msgstr ""
770
 
771
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:179
772
  msgid "%plural% for Vote on Link"
773
  msgstr ""
774
 
775
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:192
776
  msgid "%plural% for Updating Links"
777
  msgstr ""
778
 
779
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-links.php:205
780
  msgid "%plural% for Deleting Links"
781
  msgstr ""
782
 
783
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:324
784
  msgid "%plural% for Profile Updates"
785
  msgstr ""
786
 
787
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:330
788
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:503
789
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:527
790
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:350
791
  msgid "Daily Limit"
792
  msgstr ""
793
 
794
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:332
795
  msgid "Daily limit. User zero for unlimited."
796
  msgstr ""
797
 
798
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:342
799
  msgid "%plural% for New Avatar"
800
  msgstr ""
801
 
802
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:355
803
  msgid "%plural% for New Friendships"
804
  msgstr ""
805
 
806
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:364
807
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:377
808
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:199
809
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:206
810
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:307
811
  msgid "Available template tags: General, User"
812
  msgstr ""
813
 
814
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:368
815
  msgid "%plural% for Leaving Friendship"
816
  msgstr ""
817
 
818
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:381
819
  msgid "%plural% for New Comment"
820
  msgstr ""
821
 
822
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:394
823
  msgid "%plural% for Deleting Comment"
824
  msgstr ""
825
 
826
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:407
827
  msgid "%plural% for New Messages"
828
  msgstr ""
829
 
830
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buddypress/hooks/bp-profile.php:420
831
  msgid "%plural% for Sending Gift"
832
  msgstr ""
833
 
834
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:12
835
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:238
836
  msgid "buyCRED"
837
  msgstr ""
838
 
839
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:13
840
  msgid ""
841
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
842
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
843
  "also let your users buy points for other members."
844
  msgstr ""
845
 
846
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:55
847
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:56
848
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:57
849
  msgid "Payment Gateways"
850
  msgstr ""
851
 
852
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:213
853
  msgid "Please login to purchase %_plural%"
854
  msgstr ""
855
 
856
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:227
857
  msgid "Gift purchase from %display_name%."
858
  msgstr ""
859
 
860
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:240
861
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:639
862
  msgid "Minimum %plural%"
863
  msgstr ""
864
 
865
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:244
866
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
867
  msgstr ""
868
 
869
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:247
870
  msgid "Login Template"
871
  msgstr ""
872
 
873
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:251
874
  msgid "Content to show when a user is not logged in."
875
  msgstr ""
876
 
877
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:258
878
  msgid ""
879
  "Available template tags: General and %gateway% for the payment gateway used."
880
  msgstr ""
881
 
882
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:261
883
  msgid "Thank You Page"
884
  msgstr ""
885
 
886
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:264
887
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:285
888
  msgid "Custom URL"
889
  msgstr ""
890
 
891
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:269
892
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:290
893
  msgid "Page"
894
  msgstr ""
895
 
896
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:282
897
  msgid "Cancellation Page"
898
  msgstr ""
899
 
900
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:303
901
  msgid "Gifting"
902
  msgstr ""
903
 
904
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:305
905
  msgid "Allow users to buy %_plural% for other users."
906
  msgstr ""
907
 
908
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:306
909
  msgid "Allow users to buy %_plural% for content authors."
910
  msgstr ""
911
 
912
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:311
913
  msgid "Available template tags: %singular%, %plural% and %display_name%"
914
  msgstr ""
915
 
916
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:360
917
  #, php-format
918
  msgid "%s Payment Gateways"
919
  msgstr ""
920
 
921
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:361
922
  msgid ""
923
  "Select the payment gateways you want to offer your users to buy %plural%."
924
  msgstr ""
925
 
926
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:377
927
  msgid "Test Mode"
928
  msgstr ""
929
 
930
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:379
931
  msgid "Enabled"
932
  msgstr ""
933
 
934
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:382
935
  msgid "Disabled"
936
  msgstr ""
937
 
938
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:402
939
  msgid "Update Gateway Settings"
940
  msgstr ""
941
 
942
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:441
943
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:538
944
  msgid "This Add-on needs to setup before you can use this shortcode."
945
  msgstr ""
946
 
947
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:459
948
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:555
949
  msgid "No gateways installed."
950
  msgstr ""
951
 
952
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:460
953
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:556
954
  msgid "Gateway does not exist."
955
  msgstr ""
956
 
957
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:496
958
  msgid "Yourself"
959
  msgstr ""
960
 
961
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:557
962
  msgid "No active gateways found."
963
  msgstr ""
964
 
965
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:558
966
  msgid "The selected gateway is not active."
967
  msgstr ""
968
 
969
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:598
970
  msgid "Buy with"
971
  msgstr ""
972
 
973
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:602
974
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:49
975
  msgid "Buy Now"
976
  msgstr ""
977
 
978
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:635
979
  msgid "No users found"
980
  msgstr ""
981
 
982
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:645
983
  msgid "To"
984
  msgstr ""
985
 
986
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:662
987
  msgid "Select Amount"
988
  msgstr ""
989
 
990
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:686
991
  msgid "min."
992
  msgstr ""
993
 
994
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:694
995
  msgid "Select Gateway"
996
  msgstr ""
997
 
998
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:60
999
  msgid ""
1000
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1001
  "class."
1002
  msgstr ""
1003
 
1004
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:69
1005
  msgid ""
1006
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1007
  msgstr ""
1008
 
1009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:85
1010
  msgid "This Payment Gateway has no settings"
1011
  msgstr ""
1012
 
1013
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:237
1014
  msgid "Go to "
1015
  msgstr ""
1016
 
1017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:258
1018
  msgid "Payment Gateway Logo"
1019
  msgstr ""
1020
 
1021
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:271
1022
  msgid "Click here if you are not automatically redirected"
1023
  msgstr ""
1024
 
1025
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:891
1026
  msgid "Outside US"
1027
  msgstr ""
1028
 
1029
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:26
1030
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:23
1031
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:28
1032
  msgid "Purchase of myCRED %plural%"
1033
  msgstr ""
1034
 
1035
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:55
1036
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:318
1037
  msgid "You have tried too many times. Please contact support."
1038
  msgstr ""
1039
 
1040
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:62
1041
  msgid "This payment gateway has not yet been setup! Exiting."
1042
  msgstr ""
1043
 
1044
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:81
1045
  msgid "First name can not be empty"
1046
  msgstr ""
1047
 
1048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:87
1049
  msgid "Last name can not be empty"
1050
  msgstr ""
1051
 
1052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:93
1053
  msgid "Street can not be empty"
1054
  msgstr ""
1055
 
1056
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:99
1057
  msgid "City can not be empty"
1058
  msgstr ""
1059
 
1060
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:105
1061
  msgid "Country can not be empty"
1062
  msgstr ""
1063
 
1064
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:113
1065
  msgid "State can not be empty"
1066
  msgstr ""
1067
 
1068
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:121
1069
  msgid "Zip / Post Code can not be empty"
1070
  msgstr ""
1071
 
1072
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:127
1073
  msgid "Email can not be empty"
1074
  msgstr ""
1075
 
1076
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:143
1077
  msgid "Please enter your credit card number"
1078
  msgstr ""
1079
 
1080
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:149
1081
  msgid "Card Expiration Month must be selected"
1082
  msgstr ""
1083
 
1084
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:155
1085
  msgid "Card Expiration Year must be set"
1086
  msgstr ""
1087
 
1088
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:161
1089
  msgid "Please enter the CVV2 code from the back of your card"
1090
  msgstr ""
1091
 
1092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:170
1093
  msgid "Account Routing number missing"
1094
  msgstr ""
1095
 
1096
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:176
1097
  msgid "Account Number missing"
1098
  msgstr ""
1099
 
1100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:184
1101
  msgid "Incorrect Credit Card number"
1102
  msgstr ""
1103
 
1104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:190
1105
  msgid "The credit card entered is past its expiration date."
1106
  msgstr ""
1107
 
1108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:196
1109
  msgid "The CVV2 number entered is not valid."
1110
  msgstr ""
1111
 
1112
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:202
1113
  msgid "The bank routing number entered is not valid."
1114
  msgstr ""
1115
 
1116
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:205
1117
  msgid "The bank account number entered is not valid."
1118
  msgstr ""
1119
 
1120
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:312
1121
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:333
1122
  msgid "Invalid Address"
1123
  msgstr ""
1124
 
1125
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:315
1126
  msgid "Invalid CVV2"
1127
  msgstr ""
1128
 
1129
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:321
1130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:324
1131
  msgid "Please contact support."
1132
  msgstr ""
1133
 
1134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:327
1135
  msgid "Your email address is invalid."
1136
  msgstr ""
1137
 
1138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:330
1139
  msgid "Your information is invalid. Please correct"
1140
  msgstr ""
1141
 
1142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:336
1143
  msgid "Your card was declined. Please try again."
1144
  msgstr ""
1145
 
1146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:340
1147
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:358
1148
  msgid "Duplicate transaction. Please contact support"
1149
  msgstr ""
1150
 
1151
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:343
1152
  msgid "Your transaction was approved"
1153
  msgstr ""
1154
 
1155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:350
1156
  msgid " error: "
1157
  msgstr ""
1158
 
1159
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:425
1160
  msgid "NETbilling"
1161
  msgstr ""
1162
 
1163
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:432
1164
  msgid "Debug"
1165
  msgstr ""
1166
 
1167
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:441
1168
  msgid "Error"
1169
  msgstr ""
1170
 
1171
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:442
1172
  msgid "The following error/s were found: "
1173
  msgstr ""
1174
 
1175
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:450
1176
  msgid "Please update and try again."
1177
  msgstr ""
1178
 
1179
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:456
1180
  msgid "Transaction Approved"
1181
  msgstr ""
1182
 
1183
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:457
1184
  msgid "Your have successfully purchased "
1185
  msgstr ""
1186
 
1187
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:458
1188
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:468
1189
  msgid "Click here to continue"
1190
  msgstr ""
1191
 
1192
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:466
1193
  msgid "Transaction Declined"
1194
  msgstr ""
1195
 
1196
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:467
1197
  msgid ""
1198
  "I am sorry but your transaction could not be completed due to the following "
1199
  msgstr ""
1200
 
1201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:476
1202
  msgid "Transaction Error"
1203
  msgstr ""
1204
 
1205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:477
1206
  msgid "NETbilling returned the following error: "
1207
  msgstr ""
1208
 
1209
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:478
1210
  msgid "Please try again."
1211
  msgstr ""
1212
 
1213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:482
1214
  msgid "Purchase of"
1215
  msgstr ""
1216
 
1217
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:482
1218
  msgid "for"
1219
  msgstr ""
1220
 
1221
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:483
1222
  msgid "Fields marked * are required!"
1223
  msgstr ""
1224
 
1225
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:493
1226
  msgid "Billing Details"
1227
  msgstr ""
1228
 
1229
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:562
1230
  msgid "Month"
1231
  msgstr ""
1232
 
1233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:568
1234
  msgid "Year"
1235
  msgstr ""
1236
 
1237
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:609
1238
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:317
1239
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:338
1240
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:281
1241
  msgid "Sandbox Mode"
1242
  msgstr ""
1243
 
1244
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:615
1245
  msgid "Account ID"
1246
  msgstr ""
1247
 
1248
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:621
1249
  msgid "Site Tag"
1250
  msgstr ""
1251
 
1252
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:627
1253
  msgid "Dynamic IP Security Code"
1254
  msgstr ""
1255
 
1256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:633
1257
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:337
1258
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:364
1259
  msgid "Item Name"
1260
  msgstr ""
1261
 
1262
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:639
1263
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:344
1264
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:371
1265
  msgid "%plural% Exchange Rate"
1266
  msgstr ""
1267
 
1268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:645
1269
  msgid "Allowed Attempts"
1270
  msgstr ""
1271
 
1272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:649
1273
  msgid "Maximum number of attempts allowed for purchases."
1274
  msgstr ""
1275
 
1276
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:652
1277
  msgid "Advanced"
1278
  msgstr ""
1279
 
1280
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:656
1281
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1282
  msgstr ""
1283
 
1284
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:660
1285
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1286
  msgstr ""
1287
 
1288
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:664
1289
  msgid ""
1290
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1291
  "disable_negative_db)"
1292
  msgstr ""
1293
 
1294
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:668
1295
  msgid ""
1296
  "Disable only the negative database component of the fraud protection system."
1297
  msgstr ""
1298
 
1299
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:672
1300
  msgid "Disable automatic sending of both merchant and customer email receipts."
1301
  msgstr ""
1302
 
1303
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/netbilling.php:676
1304
  msgid "Disable immediate rejection of expired cards."
1305
  msgstr ""
1306
 
1307
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:226
1308
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:211
1309
  msgid "Success"
1310
  msgstr ""
1311
 
1312
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:227
1313
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:212
1314
  msgid "Thank you for your purchase"
1315
  msgstr ""
1316
 
1317
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:240
1318
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:225
1319
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:231
1320
  msgid "Please setup this gateway before attempting to make a purchase!"
1321
  msgstr ""
1322
 
1323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:295
1324
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:266
1325
  msgid "Return to "
1326
  msgstr ""
1327
 
1328
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:300
1329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:320
1330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:262
1331
  msgid "Processing payment &hellip;"
1332
  msgstr ""
1333
 
1334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:323
1335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:344
1336
  msgid "Currency"
1337
  msgstr ""
1338
 
1339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:328
1340
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:401
1341
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:432
1342
  msgid "Important!"
1343
  msgstr ""
1344
 
1345
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:328
1346
  msgid ""
1347
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1348
  "transactions will not be approved until you login to your PayPal account and "
1349
  "Accept each transaction!"
1350
  msgstr ""
1351
 
1352
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:331
1353
  msgid "Account Email"
1354
  msgstr ""
1355
 
1356
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:341
1357
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:368
1358
  msgid "Description of the item being purchased by the user."
1359
  msgstr ""
1360
 
1361
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:347
1362
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:374
1363
  msgid "Your selected currency"
1364
  msgstr ""
1365
 
1366
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:350
1367
  msgid "IPN Address"
1368
  msgstr ""
1369
 
1370
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/paypal-standard.php:354
1371
  msgid ""
1372
  "For this gateway to work, you must login to your PayPal account and under "
1373
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
@@ -1375,658 +1376,658 @@ msgid ""
1375
  "have selected \"Receive IPN messages (Enabled)\"."
1376
  msgstr ""
1377
 
1378
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:303
1379
  msgid "Product:"
1380
  msgstr ""
1381
 
1382
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:312
1383
  msgid "Gift to:"
1384
  msgstr ""
1385
 
1386
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:313
1387
  msgid "(author)"
1388
  msgstr ""
1389
 
1390
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:341
1391
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1392
  msgstr ""
1393
 
1394
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:351
1395
  msgid "Merchant Account Email"
1396
  msgstr ""
1397
 
1398
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:357
1399
  msgid "Secret Word"
1400
  msgstr ""
1401
 
1402
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:361
1403
  msgid ""
1404
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1405
  msgstr ""
1406
 
1407
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:377
1408
  msgid "Confirmation Email"
1409
  msgstr ""
1410
 
1411
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:380
1412
  msgid ""
1413
  "Ask Skrill to send me a confirmation email for each successful purchase."
1414
  msgstr ""
1415
 
1416
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:383
1417
  msgid "Checkout Page"
1418
  msgstr ""
1419
 
1420
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:386
1421
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:81
1422
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:782
1423
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:596
1424
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:188
1425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:363
1426
  msgid "Title"
1427
  msgstr ""
1428
 
1429
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:388
1430
  msgid ""
1431
  "If left empty, your account email is used as title on the Skill Payment Page."
1432
  msgstr ""
1433
 
1434
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:391
1435
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:305
1436
  msgid "Logo URL"
1437
  msgstr ""
1438
 
1439
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:393
1440
  msgid ""
1441
  "The URL to the image you want to use on the top of the gateway. For best "
1442
  "integration results we recommend you use logos with dimensions up to 200px "
1443
  "in width and 50px in height."
1444
  msgstr ""
1445
 
1446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:396
1447
  msgid "Confirmation Note"
1448
  msgstr ""
1449
 
1450
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:398
1451
  msgid ""
1452
  "Optional text to show user once a transaction has been successfully "
1453
  "completed. This text is shown by Skrill."
1454
  msgstr ""
1455
 
1456
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:402
1457
  msgid ""
1458
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1459
  "When a user selects this option, no %_plural% are awarded! You will need to "
1460
  "manually award these once the bank transfer is completed."
1461
  msgstr ""
1462
 
1463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/skrill.php:403
1464
  msgid ""
1465
  "By default purchases made using Skrill will result in users having to signup "
1466
  "for a Skrill account (if they do not have one already). You can contact "
1467
  "Skrill Merchant Services and request to disable this feature."
1468
  msgstr ""
1469
 
1470
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:287
1471
  msgid "Site ID"
1472
  msgstr ""
1473
 
1474
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:293
1475
  msgid "GW Password"
1476
  msgstr ""
1477
 
1478
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:299
1479
  msgid "Pricing ID"
1480
  msgstr ""
1481
 
1482
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:311
1483
  msgid "IP Verification"
1484
  msgstr ""
1485
 
1486
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:314
1487
  msgid "Do not verify that callbacks are coming from Zombaio."
1488
  msgstr ""
1489
 
1490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:317
1491
  msgid "Language"
1492
  msgstr ""
1493
 
1494
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:324
1495
  msgid "Postback URL (ZScript)"
1496
  msgstr ""
1497
 
1498
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/buy-creds/gateways/zombaio.php:328
1499
  msgid ""
1500
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1501
  "address and click validate."
1502
  msgstr ""
1503
 
1504
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:12
1505
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:153
1506
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:159
1507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:165
1508
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:263
1509
  msgid "Email Notices"
1510
  msgstr ""
1511
 
1512
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:13
1513
  msgid "Create email notices for any type of myCRED instance."
1514
  msgstr ""
1515
 
1516
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:154
1517
  msgid "Email Notice"
1518
  msgstr ""
1519
 
1520
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:155
1521
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:260
1522
  msgid "Add New"
1523
  msgstr ""
1524
 
1525
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:156
1526
  msgid "Add New Notice"
1527
  msgstr ""
1528
 
1529
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:157
1530
  msgid "Edit Notice"
1531
  msgstr ""
1532
 
1533
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:158
1534
  msgid "New Notice"
1535
  msgstr ""
1536
 
1537
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:160
1538
  msgid "View Notice"
1539
  msgstr ""
1540
 
1541
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:161
1542
  msgid "Search Email Notices"
1543
  msgstr ""
1544
 
1545
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:162
1546
  msgid "No email notices found"
1547
  msgstr ""
1548
 
1549
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:163
1550
  msgid "No email notices found in Trash"
1551
  msgstr ""
1552
 
1553
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:186
1554
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:846
1555
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:317
1556
  msgid "General"
1557
  msgstr ""
1558
 
1559
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:187
1560
  msgid "users balance changes"
1561
  msgstr ""
1562
 
1563
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:188
1564
  msgid "user gains %_plural%"
1565
  msgstr ""
1566
 
1567
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:189
1568
  msgid "user lose %_plural%"
1569
  msgstr ""
1570
 
1571
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:190
1572
  msgid "users balance reaches zero"
1573
  msgstr ""
1574
 
1575
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:191
1576
  msgid "users balance goes minus"
1577
  msgstr ""
1578
 
1579
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:197
1580
  msgid "Sell Content Add-on"
1581
  msgstr ""
1582
 
1583
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:198
1584
  msgid "user buys content"
1585
  msgstr ""
1586
 
1587
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:199
1588
  msgid "authors content gets sold"
1589
  msgstr ""
1590
 
1591
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:206
1592
  msgid "buyCREDs Add-on"
1593
  msgstr ""
1594
 
1595
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:207
1596
  msgid "user buys %_plural%"
1597
  msgstr ""
1598
 
1599
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:214
1600
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:109
1601
  msgid "Transfer Add-on"
1602
  msgstr ""
1603
 
1604
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:215
1605
  msgid "user sends %_plural%"
1606
  msgstr ""
1607
 
1608
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:216
1609
  msgid "user receives %_plural%"
1610
  msgstr ""
1611
 
1612
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:223
1613
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:113
1614
  msgid "Ranks Add-on"
1615
  msgstr ""
1616
 
1617
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:224
1618
  msgid "user is demoted"
1619
  msgstr ""
1620
 
1621
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:225
1622
  msgid "user is promoted"
1623
  msgstr ""
1624
 
1625
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:265
1626
  msgid ""
1627
  "Settings that apply to all email notices and can not be overridden for "
1628
  "individual emails."
1629
  msgstr ""
1630
 
1631
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:266
1632
  msgid "Email Format"
1633
  msgstr ""
1634
 
1635
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:270
1636
  msgid "Plain text emails only."
1637
  msgstr ""
1638
 
1639
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:274
1640
  msgid "HTML or Plain text emails."
1641
  msgstr ""
1642
 
1643
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:277
1644
  msgid "Filters"
1645
  msgstr ""
1646
 
1647
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:281
1648
  msgid ""
1649
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1650
  "an email is sent."
1651
  msgstr ""
1652
 
1653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:285
1654
  msgid ""
1655
  "Allow WordPress and Third Party Plugins to filter the email content before "
1656
  "an email is sent."
1657
  msgstr ""
1658
 
1659
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:288
1660
  msgid ""
1661
  "Default email settings. These settings can be individually overridden when "
1662
  "editing emails."
1663
  msgstr ""
1664
 
1665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:289
1666
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:685
1667
  msgid "Email Settings"
1668
  msgstr ""
1669
 
1670
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:292
1671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:802
1672
  msgid "Senders Name:"
1673
  msgstr ""
1674
 
1675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:296
1676
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:804
1677
  msgid "Senders Email:"
1678
  msgstr ""
1679
 
1680
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:300
1681
  msgid "Reply-To:"
1682
  msgstr ""
1683
 
1684
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:304
1685
  msgid "Default Email Content"
1686
  msgstr ""
1687
 
1688
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:308
1689
  msgid "Default email content."
1690
  msgstr ""
1691
 
1692
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:311
1693
  msgid "Default Email Styling"
1694
  msgstr ""
1695
 
1696
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:315
1697
  msgid "Ignored if HTML is not allowed in emails."
1698
  msgstr ""
1699
 
1700
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:620
1701
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:734
1702
  msgid "Email Subject"
1703
  msgstr ""
1704
 
1705
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:621
1706
  msgid "Status"
1707
  msgstr ""
1708
 
1709
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:641
1710
  msgid "Not Active"
1711
  msgstr ""
1712
 
1713
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:643
1714
  #, php-format
1715
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1716
  msgstr ""
1717
 
1718
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:647
1719
  msgid "Active"
1720
  msgstr ""
1721
 
1722
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:649
1723
  #, php-format
1724
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1725
  msgstr ""
1726
 
1727
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:658
1728
  msgid "Email is sent when"
1729
  msgstr ""
1730
 
1731
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:660
1732
  msgid "Missing instance for this notice!"
1733
  msgstr ""
1734
 
1735
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:669
1736
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:671
1737
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:673
1738
  msgid "Sent To"
1739
  msgstr ""
1740
 
1741
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:669
1742
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:796
1743
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:346
1744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:276
1745
  msgid "User"
1746
  msgstr ""
1747
 
1748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:671
1749
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:797
1750
  msgid "Administrator"
1751
  msgstr ""
1752
 
1753
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:673
1754
  msgid "Both Administrator and User"
1755
  msgstr ""
1756
 
1757
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:694
1758
  msgid "Available Template Tags"
1759
  msgstr ""
1760
 
1761
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:705
1762
  msgid "Email Header"
1763
  msgstr ""
1764
 
1765
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:765
1766
  msgid "Send this email notice when..."
1767
  msgstr ""
1768
 
1769
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:794
1770
  msgid "Recipient:"
1771
  msgstr ""
1772
 
1773
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:798
1774
  msgid "Both"
1775
  msgstr ""
1776
 
1777
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:806
1778
  msgid "Reply-To Email:"
1779
  msgstr ""
1780
 
1781
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:812
1782
  msgid "Save"
1783
  msgstr ""
1784
 
1785
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:824
1786
  msgid "CSS Styling"
1787
  msgstr ""
1788
 
1789
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:839
1790
  msgid "Site Related"
1791
  msgstr ""
1792
 
1793
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:840
1794
  msgid "Your websites title"
1795
  msgstr ""
1796
 
1797
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:841
1798
  msgid "Your websites address"
1799
  msgstr ""
1800
 
1801
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:842
1802
  msgid "Your websites tagline (description)"
1803
  msgstr ""
1804
 
1805
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:843
1806
  msgid "Your websites admin email"
1807
  msgstr ""
1808
 
1809
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:844
1810
  msgid "Total number of blog members"
1811
  msgstr ""
1812
 
1813
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:847
1814
  msgid "Points name in singular format"
1815
  msgstr ""
1816
 
1817
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:848
1818
  msgid "Points name in plural"
1819
  msgstr ""
1820
 
1821
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:849
1822
  msgid "Login URL"
1823
  msgstr ""
1824
 
1825
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:852
1826
  msgid "User Related"
1827
  msgstr ""
1828
 
1829
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:853
1830
  msgid "The users ID"
1831
  msgstr ""
1832
 
1833
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:854
1834
  msgid "The users login name (username)"
1835
  msgstr ""
1836
 
1837
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:855
1838
  msgid "The users display name"
1839
  msgstr ""
1840
 
1841
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:856
1842
  msgid "The users profile address"
1843
  msgstr ""
1844
 
1845
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:857
1846
  msgid "Link to the users profile address with their display name as title"
1847
  msgstr ""
1848
 
1849
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:858
1850
  msgid "The users current balance unformated"
1851
  msgstr ""
1852
 
1853
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:859
1854
  msgid "The users current balance formated"
1855
  msgstr ""
1856
 
1857
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:861
1858
  msgid "Post Related"
1859
  msgstr ""
1860
 
1861
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:862
1862
  msgid "Post Title"
1863
  msgstr ""
1864
 
1865
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:863
1866
  msgid "Post URL address"
1867
  msgstr ""
1868
 
1869
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:864
1870
  msgid "Link to post Post title"
1871
  msgstr ""
1872
 
1873
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:865
1874
  msgid "The post type"
1875
  msgstr ""
1876
 
1877
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:941
1878
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:944
1879
  #, php-format
1880
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1881
  msgstr ""
1882
 
1883
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:942
1884
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:544
1885
  msgid "Custom field updated"
1886
  msgstr ""
1887
 
1888
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:943
1889
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:545
1890
  msgid "Custom filed updated"
1891
  msgstr ""
1892
 
1893
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:946
1894
  msgid "Email Notice Activated"
1895
  msgstr ""
1896
 
1897
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:947
1898
  msgid "Email Notice Saved"
1899
  msgstr ""
1900
 
1901
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:948
1902
  #, php-format
1903
  msgid ""
1904
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1905
  msgstr ""
1906
 
1907
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:950
1908
  #, php-format
1909
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1910
  msgstr ""
1911
 
1912
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:969
1913
  msgid ""
1914
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1915
  "you are not yet ready to use this email notice!"
1916
  msgstr ""
1917
 
1918
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:971
1919
  #, php-format
1920
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1921
  msgstr ""
1922
 
1923
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/email-notices/myCRED-addon-email-notices.php:973
1924
  msgid "This email notice is active."
1925
  msgstr ""
1926
 
1927
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/myCRED-addon-gateway.php:12
1928
  msgid "Gateway"
1929
  msgstr ""
1930
 
1931
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/myCRED-addon-gateway.php:13
1932
  msgid ""
1933
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1934
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1935
  "Espresso, Events Manager."
1936
  msgstr ""
1937
 
1938
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:132
1939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:270
1940
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:294
1941
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:408
1942
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:347
1943
  msgid "Current Balance"
1944
  msgstr ""
1945
 
1946
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:136
1947
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:112
1948
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:274
1949
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:298
1950
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:412
1951
  msgid "Total Cost"
1952
  msgstr ""
1953
 
1954
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:140
1955
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:278
1956
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:302
1957
  msgid "Balance After Purchase"
1958
  msgstr ""
1959
 
1960
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:164
1961
  msgid "Payment"
1962
  msgstr ""
1963
 
1964
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:167
1965
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:216
1966
  #, php-format
1967
  msgid "<a href=\"%s\">Go Back</a>"
1968
  msgstr ""
1969
 
1970
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:170
1971
  msgid "will be deducted from your account."
1972
  msgstr ""
1973
 
1974
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:206
1975
  #, php-format
1976
  msgid ""
1977
  "Sorry, but you can not use this gateway as your account is excluded. Please "
1978
  "<a href=\"%s\">select a different payment method</a>."
1979
  msgstr ""
1980
 
1981
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:225
1982
  msgid "Paid"
1983
  msgstr ""
1984
 
1985
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:228
1986
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:34
1987
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:51
1988
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:52
1989
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:76
1990
  msgid "myCRED"
1991
  msgstr ""
1992
 
1993
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:328
1994
  msgid "%_singular% Balance"
1995
  msgstr ""
1996
 
1997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:330
1998
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:96
1999
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:25
2000
  msgid "Payment for Order: #%order_id%"
2001
  msgstr ""
2002
 
2003
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:333
2004
  msgid "Product Sale: %post_title%"
2005
  msgstr ""
2006
 
2007
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:334
2008
  msgid "Pay using your account balance."
2009
  msgstr ""
2010
 
2011
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:335
2012
  msgid ""
2013
  "TOTAL amount has been deducted from your account. Your current balance is: "
2014
  "%balance_f%"
2015
  msgstr ""
2016
 
2017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:336
2018
  msgid ""
2019
  "Insufficient funds. Please select another form of payment. Your current "
2020
  "balance is: %balance_f%"
2021
  msgstr ""
2022
 
2023
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:337
2024
  msgid ""
2025
  "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2026
  "%\">login</a>."
2027
  msgstr ""
2028
 
2029
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:344
2030
  #, php-format
2031
  msgid ""
2032
  "Let your users pay for items in their shopping cart using their %s Account. "
@@ -2034,134 +2035,134 @@ msgid ""
2034
  "purchase!"
2035
  msgstr ""
2036
 
2037
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:347
2038
  msgid "Method Name"
2039
  msgstr ""
2040
 
2041
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:349
2042
  msgid ""
2043
  "Enter a public name for this payment method that is displayed to users - No "
2044
  "HTML"
2045
  msgstr ""
2046
 
2047
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:354
2048
  msgid "Gateway Logo URL"
2049
  msgstr ""
2050
 
2051
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:362
2052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:95
2053
  msgid ""
2054
  "Log entry template for successful payments. Available template tags: "
2055
  "%order_id%, %order_link%"
2056
  msgstr ""
2057
 
2058
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:369
2059
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:101
2060
  msgid "How much is 1 %_singular% worth in %currency%?"
2061
  msgstr ""
2062
 
2063
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:374
2064
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:106
2065
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:324
2066
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:427
2067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:474
2068
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:558
2069
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:525
2070
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:594
2071
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:658
2072
  msgid "Exchange Rate"
2073
  msgstr ""
2074
 
2075
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:383
2076
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:134
2077
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:328
2078
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:439
2079
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:465
2080
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:549
2081
  msgid "Profit Sharing"
2082
  msgstr ""
2083
 
2084
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:386
2085
  msgid "Percentage"
2086
  msgstr ""
2087
 
2088
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:388
2089
  msgid "Option to share sales with the product owner. User zero to disable"
2090
  msgstr ""
2091
 
2092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:395
2093
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:336
2094
  msgid ""
2095
  "Log entry template for profit sharing. Available template tags: General and "
2096
  "Post related"
2097
  msgstr ""
2098
 
2099
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:400
2100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:339
2101
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:534
2102
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:606
2103
  msgid "Messages"
2104
  msgstr ""
2105
 
2106
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:403
2107
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:350
2108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:544
2109
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:616
2110
  msgid "Insufficient Funds"
2111
  msgstr ""
2112
 
2113
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:405
2114
  msgid "Message to show when the user can not use this gateway."
2115
  msgstr ""
2116
 
2117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:407
2118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:415
2119
  msgid "Available template tags are: General."
2120
  msgstr ""
2121
 
2122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:411
2123
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:346
2124
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:467
2125
  msgid "Visitors"
2126
  msgstr ""
2127
 
2128
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:413
2129
  msgid "Message to show to buyers that are not logged in."
2130
  msgstr ""
2131
 
2132
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:419
2133
  msgid "User Instructions"
2134
  msgstr ""
2135
 
2136
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:421
2137
  msgid "Information to show users before payment."
2138
  msgstr ""
2139
 
2140
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:423
2141
  msgid ""
2142
  "Available template tags are: %balance% and %balance_f% for users current "
2143
  "balance."
2144
  msgstr ""
2145
 
2146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:427
2147
  msgid "Confirmation Information"
2148
  msgstr ""
2149
 
2150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:429
2151
  msgid "Information to display on the order confirmation page. - HTML allowed"
2152
  msgstr ""
2153
 
2154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:431
2155
  msgid ""
2156
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2157
  "- users current balance."
2158
  msgstr ""
2159
 
2160
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:435
2161
  msgid "Order Confirmation Email"
2162
  msgstr ""
2163
 
2164
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:437
2165
  #, php-format
2166
  msgid ""
2167
  "This is the email text to send to those who have made %s checkouts. It "
@@ -2170,776 +2171,776 @@ msgid ""
2170
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2171
  msgstr ""
2172
 
2173
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-marketpress.php:439
2174
  #, php-format
2175
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2176
  msgstr ""
2177
 
2178
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:35
2179
  msgid "Let users pay using their myCRED balance."
2180
  msgstr ""
2181
 
2182
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:74
2183
  msgid "Enable/Disable"
2184
  msgstr ""
2185
 
2186
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:76
2187
  msgid "Enable myCRED Payment"
2188
  msgstr ""
2189
 
2190
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:78
2191
  msgid ""
2192
  "Users who are not logged in or excluded from using myCRED will not have "
2193
  "access to this gateway!"
2194
  msgstr ""
2195
 
2196
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:83
2197
  msgid "Title to show for this payment option."
2198
  msgstr ""
2199
 
2200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:84
2201
  msgid "Pay with myCRED"
2202
  msgstr ""
2203
 
2204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:88
2205
  msgid "Customer Message"
2206
  msgstr ""
2207
 
2208
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:90
2209
  msgid "Deduct the amount from your %_plural% balance."
2210
  msgstr ""
2211
 
2212
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:113
2213
  msgid "Show Total"
2214
  msgstr ""
2215
 
2216
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:115
2217
  msgid "Show the final price in %_plural% ."
2218
  msgstr ""
2219
 
2220
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:117
2221
  msgid "Do not show"
2222
  msgstr ""
2223
 
2224
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:118
2225
  msgid "Show in Cart"
2226
  msgstr ""
2227
 
2228
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:119
2229
  msgid "Show on Checkout Page"
2230
  msgstr ""
2231
 
2232
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:120
2233
  msgid "Show in Cart and on Checkout Page"
2234
  msgstr ""
2235
 
2236
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:125
2237
  msgid "Label"
2238
  msgstr ""
2239
 
2240
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:127
2241
  msgid "Order Total in %_plural%"
2242
  msgstr ""
2243
 
2244
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:136
2245
  msgid "Option to share a percentage of the sale with the product owner."
2246
  msgstr ""
2247
 
2248
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:143
2249
  msgid ""
2250
  "Log entry template for profit sharing. Available template tags: General and "
2251
  "Post related."
2252
  msgstr ""
2253
 
2254
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:144
2255
  msgid "Sale of %post_title%"
2256
  msgstr ""
2257
 
2258
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:169
2259
  msgid "myCRED Payment"
2260
  msgstr ""
2261
 
2262
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:170
2263
  msgid ""
2264
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2265
  "users with insufficient funds and users who are not logged in will not see "
2266
  "this payment gateway on the checkout page."
2267
  msgstr ""
2268
 
2269
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:191
2270
  msgid "You must be logged in to pay with %_plural%"
2271
  msgstr ""
2272
 
2273
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:197
2274
  msgid "You can not use this gateway. Please try a different payment option."
2275
  msgstr ""
2276
 
2277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:209
2278
  msgid "Insufficient funds. Please try a different payment option."
2279
  msgstr ""
2280
 
2281
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:273
2282
  msgid "Your account has successfully been charged."
2283
  msgstr ""
2284
 
2285
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-woocommerce.php:483
2286
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:120
2287
  msgid "Your current balance"
2288
  msgstr ""
2289
 
2290
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:27
2291
  msgid "Store sale"
2292
  msgstr ""
2293
 
2294
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:29
2295
  msgid "You must be logged in to use this gateway"
2296
  msgstr ""
2297
 
2298
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:30
2299
  msgid "Insufficient Funds."
2300
  msgstr ""
2301
 
2302
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:31
2303
  msgid "Deduct the amount from your balance."
2304
  msgstr ""
2305
 
2306
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:101
2307
  msgid "Item"
2308
  msgstr ""
2309
 
2310
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:186
2311
  msgid "You can not use this gateway."
2312
  msgstr ""
2313
 
2314
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:320
2315
  msgid "Log Template for Payments"
2316
  msgstr ""
2317
 
2318
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:321
2319
  msgid ""
2320
  "Log entry template for successful payments. Available template tags: "
2321
  "General, %order_id%"
2322
  msgstr ""
2323
 
2324
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:325
2325
  #, php-format
2326
  msgid "How much is 1 %s worth in %s"
2327
  msgstr ""
2328
 
2329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:331
2330
  msgid "Payout"
2331
  msgstr ""
2332
 
2333
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:332
2334
  msgid ""
2335
  "Option to share a percentage of the sale with the product owner (post "
2336
  "author). User zero to disable."
2337
  msgstr ""
2338
 
2339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:342
2340
  msgid "Instructions"
2341
  msgstr ""
2342
 
2343
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:343
2344
  msgid ""
2345
  "Optional instructions to show users when selecting this gateway. Leave empty "
2346
  "to hide."
2347
  msgstr ""
2348
 
2349
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:347
2350
  msgid "Message to show visitors who are not logged in."
2351
  msgstr ""
2352
 
2353
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/carts/mycred-wpecommerce.php:351
2354
  msgid ""
2355
  "Message to show when users does not have enough %plural% to pay using this "
2356
  "gateway."
2357
  msgstr ""
2358
 
2359
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:24
2360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:450
2361
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:534
2362
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:312
2363
  msgid "Payments"
2364
  msgstr ""
2365
 
2366
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:25
2367
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:36
2368
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:33
2369
  msgid "Pay Now"
2370
  msgstr ""
2371
 
2372
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:29
2373
  msgid "Payment for Event Registration"
2374
  msgstr ""
2375
 
2376
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:336
2377
  #, php-format
2378
  msgid "Activate %s"
2379
  msgstr ""
2380
 
2381
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:344
2382
  #, php-format
2383
  msgid "Deactivate %s"
2384
  msgstr ""
2385
 
2386
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:360
2387
  msgid "Gateway Settings"
2388
  msgstr ""
2389
 
2390
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:392
2391
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:440
2392
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:520
2393
  #, php-format
2394
  msgid "How many %s is 1 %s worth?"
2395
  msgstr ""
2396
 
2397
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:398
2398
  msgid "Gateways Settings Successfully Updated"
2399
  msgstr ""
2400
 
2401
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:406
2402
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:510
2403
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:582
2404
  msgid "Labels"
2405
  msgstr ""
2406
 
2407
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:409
2408
  msgid "Gateway Title"
2409
  msgstr ""
2410
 
2411
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:411
2412
  msgid "Title to show on Payment page"
2413
  msgstr ""
2414
 
2415
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:414
2416
  msgid "Payment Type"
2417
  msgstr ""
2418
 
2419
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:416
2420
  msgid "Title to show on receipts and logs"
2421
  msgstr ""
2422
 
2423
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:419
2424
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:599
2426
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:348
2427
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:540
2428
  msgid "Button Label"
2429
  msgstr ""
2430
 
2431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:421
2432
  msgid "Pay Button"
2433
  msgstr ""
2434
 
2435
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:424
2436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:132
2437
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:135
2438
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:332
2439
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:335
2440
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:339
2441
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:536
2442
  msgid "Price"
2443
  msgstr ""
2444
 
2445
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:434
2446
  msgid ""
2447
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2448
  "<code>mycred_no_sale</code>"
2449
  msgstr ""
2450
 
2451
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:435
2452
  msgid "Users must be logged in to use this gateway!"
2453
  msgstr ""
2454
 
2455
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:441
2456
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:468
2457
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:552
2458
  msgid ""
2459
  "Option to share sales with the event owner (post author). Use zero to "
2460
  "disable."
2461
  msgstr ""
2462
 
2463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:444
2464
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:22
2465
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:23
2466
  msgid "Log"
2467
  msgstr ""
2468
 
2469
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:447
2470
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:549
2471
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:623
2472
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:681
2473
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:351
2474
  msgid "Log Entry"
2475
  msgstr ""
2476
 
2477
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:454
2478
  msgid "Templates"
2479
  msgstr ""
2480
 
2481
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:457
2482
  msgid "Solvent users"
2483
  msgstr ""
2484
 
2485
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:459
2486
  msgid ""
2487
  "Message to show users on the payment page before they are charged. Leave "
2488
  "empty to hide.<br />Available template tags: General"
2489
  msgstr ""
2490
 
2491
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:462
2492
  msgid "Insolvent users"
2493
  msgstr ""
2494
 
2495
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:464
2496
  msgid ""
2497
  "Message to show users who do not have enough points to pay.<br />Available "
2498
  "template tags: General"
2499
  msgstr ""
2500
 
2501
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:469
2502
  msgid ""
2503
  "Message to show visitors (users not logged in) on the payment page.<br /"
2504
  ">Available template tags: General"
2505
  msgstr ""
2506
 
2507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:479
2508
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:382
2509
  msgid "Update Settings"
2510
  msgstr ""
2511
 
2512
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:30
2513
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:27
2514
  msgid "Payment for tickets to %link_with_title%"
2515
  msgstr ""
2516
 
2517
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:31
2518
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:28
2519
  msgid "Ticket refund for %link_with_title%"
2520
  msgstr ""
2521
 
2522
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:35
2523
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:32
2524
  msgid "Pay using your %_plural% balance"
2525
  msgstr ""
2526
 
2527
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:37
2528
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:34
2529
  msgid "Pay"
2530
  msgstr ""
2531
 
2532
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2533
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:37
2534
  msgid "Thank you for your payment!"
2535
  msgstr ""
2536
 
2537
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2538
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:38
2539
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2540
  msgstr ""
2541
 
2542
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:129
2543
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:329
2544
  msgid "Ticket Type"
2545
  msgstr ""
2546
 
2547
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:138
2548
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:338
2549
  msgid "Spaces"
2550
  msgstr ""
2551
 
2552
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:223
2553
  msgid "You can not pay using this gateway."
2554
  msgstr ""
2555
 
2556
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:362
2557
  msgid "Reject"
2558
  msgstr ""
2559
 
2560
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:366
2561
  msgid "Delete"
2562
  msgstr ""
2563
 
2564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:371
2565
  msgid "Edit/View"
2566
  msgstr ""
2567
 
2568
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:452
2569
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:536
2570
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2571
  msgstr ""
2572
 
2573
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:453
2574
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:537
2575
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2576
  msgstr ""
2577
 
2578
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:454
2579
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:538
2580
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2581
  msgstr ""
2582
 
2583
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:458
2584
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:491
2585
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:542
2586
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:575
2587
  msgid "Refunds"
2588
  msgstr ""
2589
 
2590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:461
2591
  msgid ""
2592
  "The percentage of the paid amount to refund if a user cancells their "
2593
  "booking. Use zero for no refunds. No refunds are given to \"Rejected\" "
2594
  "bookings!"
2595
  msgstr ""
2596
 
2597
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:481
2598
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:565
2599
  msgid "Log Templates"
2600
  msgstr ""
2601
 
2602
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:484
2603
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:568
2604
  msgid "Purchases"
2605
  msgstr ""
2606
 
2607
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:487
2608
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:494
2609
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:571
2610
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:578
2611
  msgid "Available template tags: General and Post related."
2612
  msgstr ""
2613
 
2614
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:513
2615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:585
2616
  msgid "Payment Link Label"
2617
  msgstr ""
2618
 
2619
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:516
2620
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:588
2621
  msgid ""
2622
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2623
  "HTML allowed."
2624
  msgstr ""
2625
 
2626
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
2627
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:592
2628
  msgid "Payment Header"
2629
  msgstr ""
2630
 
2631
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:523
2632
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:595
2633
  msgid "Shown on top of the payment form. No HTML allowed."
2634
  msgstr ""
2635
 
2636
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:530
2637
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:602
2638
  msgid "The button label for payments. No HTML allowed!"
2639
  msgstr ""
2640
 
2641
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:537
2642
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:609
2643
  msgid "Successful Payments"
2644
  msgstr ""
2645
 
2646
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:540
2647
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
2648
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:612
2649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:619
2650
  msgid "No HTML allowed! Available template tags: General"
2651
  msgstr ""
2652
 
2653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:416
2654
  msgid "Balance After Payment"
2655
  msgstr ""
2656
 
2657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:526
2658
  msgid "Click to toggle"
2659
  msgstr ""
2660
 
2661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:527
2662
  #, php-format
2663
  msgid "%s Payments"
2664
  msgstr ""
2665
 
2666
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:545
2667
  msgid ""
2668
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2669
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2670
  msgstr ""
2671
 
2672
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:12
2673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:40
2674
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:41
2675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:42
2676
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:743
2677
  msgid "Import"
2678
  msgstr ""
2679
 
2680
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:13
2681
  msgid ""
2682
  "With the Import add-on you can import CSV files, CubePoints or existing "
2683
  "points under any custom user meta values."
2684
  msgstr ""
2685
 
2686
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:91
2687
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:749
2688
  msgid "CSV File"
2689
  msgstr ""
2690
 
2691
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:92
2692
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2693
  msgstr ""
2694
 
2695
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:95
2696
  msgid "CubePoints"
2697
  msgstr ""
2698
 
2699
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:96
2700
  msgid "Import CubePoints"
2701
  msgstr ""
2702
 
2703
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:99
2704
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:769
2705
  msgid "Custom User Meta"
2706
  msgstr ""
2707
 
2708
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:100
2709
  msgid "Import %_plural% from pre-existing custom user meta."
2710
  msgstr ""
2711
 
2712
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:217
2713
  msgid "No file selected. Please select your CSV file and try again."
2714
  msgstr ""
2715
 
2716
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:232
2717
  msgid "Failed to load file."
2718
  msgstr ""
2719
 
2720
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:253
2721
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:423
2722
  #, php-format
2723
  msgid ""
2724
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2725
  msgstr ""
2726
 
2727
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:262
2728
  msgid ""
2729
  "No valid records found in file. Make sure you have selected the correct way "
2730
  "to identify users in the mycred_user column!"
2731
  msgstr ""
2732
 
2733
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:268
2734
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:351
2735
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:438
2736
  #, php-format
2737
  msgid ""
2738
  "Import successfully completed. A total of %d users were effected and %d "
2739
  "entires were skipped. Import completed in %.2f seconds."
2740
  msgstr ""
2741
 
2742
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:302
2743
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:587
2744
  msgid "No CubePoints found."
2745
  msgstr ""
2746
 
2747
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:336
2748
  #, php-format
2749
  msgid ""
2750
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2751
  "seconds."
2752
  msgstr ""
2753
 
2754
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:345
2755
  msgid "No valid CubePoints founds."
2756
  msgstr ""
2757
 
2758
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:371
2759
  msgid "Missing meta key. Not sure what I should be looking for."
2760
  msgstr ""
2761
 
2762
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:390
2763
  #, php-format
2764
  msgid "No rows found for the <strong>%s</strong> meta key."
2765
  msgstr ""
2766
 
2767
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:432
2768
  msgid "No valid records founds."
2769
  msgstr ""
2770
 
2771
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:466
2772
  #, php-format
2773
  msgid "%s Import"
2774
  msgstr ""
2775
 
2776
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:478
2777
  msgid "Remember to de-activate this add-on once you are done importing!"
2778
  msgstr ""
2779
 
2780
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:510
2781
  msgid "File"
2782
  msgstr ""
2783
 
2784
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:514
2785
  msgid "Maximum allowed upload size is "
2786
  msgstr ""
2787
 
2788
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:514
2789
  msgid ""
2790
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2791
  "Optional columns: <code>mycred_log</code>."
2792
  msgstr ""
2793
 
2794
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:517
2795
  msgid "Identify Users By"
2796
  msgstr ""
2797
 
2798
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:520
2799
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:345
2800
  msgid "ID"
2801
  msgstr ""
2802
 
2803
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:521
2804
  msgid "Username"
2805
  msgstr ""
2806
 
2807
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:522
2808
  msgid "Email"
2809
  msgstr ""
2810
 
2811
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:529
2812
  msgid "How much is 1 imported value worth?"
2813
  msgstr ""
2814
 
2815
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:534
2816
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:602
2817
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:666
2818
  msgid "Round"
2819
  msgstr ""
2820
 
2821
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:535
2822
  msgid "None"
2823
  msgstr ""
2824
 
2825
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:536
2826
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:604
2827
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:668
2828
  msgid "Round Up"
2829
  msgstr ""
2830
 
2831
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:537
2832
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:605
2833
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:669
2834
  msgid "Round Down"
2835
  msgstr ""
2836
 
2837
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:542
2838
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:610
2839
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:674
2840
  msgid "Precision"
2841
  msgstr ""
2842
 
2843
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:544
2844
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:612
2845
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:676
2846
  msgid ""
2847
  "The optional number of decimal digits to round to. Use zero to round the "
2848
  "nearest whole number."
2849
  msgstr ""
2850
 
2851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:553
2852
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:627
2853
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:685
2854
  msgid "See the help tab for available template tags. Leave blank to disable."
2855
  msgstr ""
2856
 
2857
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:558
2858
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:632
2859
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:696
2860
  msgid "Run Import"
2861
  msgstr ""
2862
 
2863
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:585
2864
  #, php-format
2865
  msgid "Found %d users with CubePoints."
2866
  msgstr ""
2867
 
2868
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:588
2869
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:652
2870
  msgid "Meta Key"
2871
  msgstr ""
2872
 
2873
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:603
2874
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:667
2875
  msgid "Do not round"
2876
  msgstr ""
2877
 
2878
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:617
2879
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:688
2880
  msgid "After Import"
2881
  msgstr ""
2882
 
2883
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:620
2884
  msgid "Delete users CubePoints balance."
2885
  msgstr ""
2886
 
2887
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:691
2888
  msgid "Delete the old value."
2889
  msgstr ""
2890
 
2891
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:720
2892
  msgid "Failed to get file contents."
2893
  msgstr ""
2894
 
2895
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:725
2896
  msgid "Failed to put file contents."
2897
  msgstr ""
2898
 
2899
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:745
2900
  msgid ""
2901
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2902
  "database. Remember that the import can take time depending on your file size "
2903
  "or the number of users being imported."
2904
  msgstr ""
2905
 
2906
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:751
2907
  msgid "CSV Import"
2908
  msgstr ""
2909
 
2910
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:752
2911
  msgid ""
2912
  "Imports using a comma-separated values file requires the following columns:"
2913
  msgstr ""
2914
 
2915
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:753
2916
  msgid ""
2917
  "Column identifing the user. All rows must identify the user the same way, "
2918
  "either using an ID, Username (user_login) or email. Users that can not be "
2919
  "found will be ignored."
2920
  msgstr ""
2921
 
2922
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:754
2923
  msgid ""
2924
  "Column with the amount to be imported. If set, an exchange rate is applied "
2925
  "to this value before import."
2926
  msgstr ""
2927
 
2928
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:755
2929
  msgid ""
2930
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2931
  "the log entry for each import."
2932
  msgstr ""
2933
 
2934
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:759
2935
  msgid "Cubepoints"
2936
  msgstr ""
2937
 
2938
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:761
2939
  msgid "Cubepoints Import"
2940
  msgstr ""
2941
 
2942
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:762
2943
  msgid ""
2944
  "When this page loads, the importer will automatically check if you have been "
2945
  "using Cubepoints. If you have, you can import these with the option to "
@@ -2947,1193 +2948,1193 @@ msgid ""
2947
  "clean."
2948
  msgstr ""
2949
 
2950
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:763
2951
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:773
2952
  msgid ""
2953
  "Before a value is imported, you can apply an exchange rate. To import "
2954
  "without changing the value, use 1 as the exchange rate."
2955
  msgstr ""
2956
 
2957
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:764
2958
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:774
2959
  msgid ""
2960
  "You can select to add a log entry for each import or leave the template "
2961
  "empty to skip."
2962
  msgstr ""
2963
 
2964
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:765
2965
  msgid ""
2966
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
2967
  "installation exists."
2968
  msgstr ""
2969
 
2970
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:771
2971
  msgid "Custom User Meta Import"
2972
  msgstr ""
2973
 
2974
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:772
2975
  msgid ""
2976
  "You can import any type of points that have previously been saved in your "
2977
  "database. All you need is the meta key under which it has been saved."
2978
  msgstr ""
2979
 
2980
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/import/myCRED-addon-import.php:775
2981
  msgid ""
2982
  "Please note that the meta key is case sensitive and can not contain "
2983
  "whitespaces!"
2984
  msgstr ""
2985
 
2986
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:12
2987
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:167
2988
  msgid "Notifications"
2989
  msgstr ""
2990
 
2991
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:13
2992
  msgid "Notify your users when their balances changes."
2993
  msgstr ""
2994
 
2995
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:169
2996
  msgid "Styling"
2997
  msgstr ""
2998
 
2999
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:173
3000
  msgid "Use the included CSS Styling for notifications."
3001
  msgstr ""
3002
 
3003
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:180
3004
  msgid ""
3005
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
3006
  msgstr ""
3007
 
3008
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:183
3009
  msgid "Transient Lifespan"
3010
  msgstr ""
3011
 
3012
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:187
3013
  msgid ""
3014
  "The number of days a users notification is saved before being automatically "
3015
  "deleted."
3016
  msgstr ""
3017
 
3018
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:190
3019
  msgid "Duration"
3020
  msgstr ""
3021
 
3022
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/notifications/myCRED-addon-notifications.php:194
3023
  msgid ""
3024
  "The number of milliseconds a notice should be visible.<br />Use zero to "
3025
  "require that the user closes the notice manually. 1000 milliseconds = 1 "
3026
  "second."
3027
  msgstr ""
3028
 
3029
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:12
3030
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:258
3031
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:264
3032
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:270
3033
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:777
3034
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:972
3035
  msgid "Ranks"
3036
  msgstr ""
3037
 
3038
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:13
3039
  msgid ""
3040
  "Create ranks for users reaching a certain number of points with the option "
3041
  "to add logos for each rank."
3042
  msgstr ""
3043
 
3044
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:236
3045
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3046
  msgstr ""
3047
 
3048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:237
3049
  msgid "Are you sure you want to re-assign user ranks?"
3050
  msgstr ""
3051
 
3052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:259
3053
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:471
3054
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:488
3055
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:583
3056
  msgid "Rank"
3057
  msgstr ""
3058
 
3059
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:261
3060
  msgid "Add New Rank"
3061
  msgstr ""
3062
 
3063
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:262
3064
  msgid "Edit Rank"
3065
  msgstr ""
3066
 
3067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:263
3068
  msgid "New Rank"
3069
  msgstr ""
3070
 
3071
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:265
3072
  msgid "View Rank"
3073
  msgstr ""
3074
 
3075
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:266
3076
  msgid "Search Ranks"
3077
  msgstr ""
3078
 
3079
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:267
3080
  msgid "No ranks found"
3081
  msgstr ""
3082
 
3083
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:268
3084
  msgid "No ranks found in Trash"
3085
  msgstr ""
3086
 
3087
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:333
3088
  #, php-format
3089
  msgid "Completed - Total of %d users effected"
3090
  msgstr ""
3091
 
3092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:335
3093
  msgid "Log is Empty"
3094
  msgstr ""
3095
 
3096
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:517
3097
  msgid "Newbie"
3098
  msgstr ""
3099
 
3100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:543
3101
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:546
3102
  #, php-format
3103
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
3104
  msgstr ""
3105
 
3106
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:548
3107
  msgid "Rank Activated"
3108
  msgstr ""
3109
 
3110
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:549
3111
  msgid "Rank Saved"
3112
  msgstr ""
3113
 
3114
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:550
3115
  #, php-format
3116
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
3117
  msgstr ""
3118
 
3119
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:552
3120
  #, php-format
3121
  msgid "Rank scheduled for: <strong>%1$s</strong>."
3122
  msgstr ""
3123
 
3124
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:609
3125
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:664
3126
  msgid "Rank Title"
3127
  msgstr ""
3128
 
3129
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:610
3130
  msgid "Logo"
3131
  msgstr ""
3132
 
3133
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:611
3134
  msgid "Requirement"
3135
  msgstr ""
3136
 
3137
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:612
3138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:367
3139
  msgid "Users"
3140
  msgstr ""
3141
 
3142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:628
3143
  msgid "No Logo Set"
3144
  msgstr ""
3145
 
3146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:637
3147
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:642
3148
  msgid "Any Value"
3149
  msgstr ""
3150
 
3151
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:644
3152
  msgid "Maximum %plural%"
3153
  msgstr ""
3154
 
3155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:677
3156
  msgid "Rank Settings"
3157
  msgstr ""
3158
 
3159
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:699
3160
  msgid "Minimum %plural% to reach this rank"
3161
  msgstr ""
3162
 
3163
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:703
3164
  msgid "Maximum %plural% to be included in this rank"
3165
  msgstr ""
3166
 
3167
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:710
3168
  msgid "All Published Ranks"
3169
  msgstr ""
3170
 
3171
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:717
3172
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:719
3173
  msgid "Not Set"
3174
  msgstr ""
3175
 
3176
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:724
3177
  msgid "No Ranks found"
3178
  msgstr ""
3179
 
3180
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:779
3181
  msgid "Rank Features"
3182
  msgstr ""
3183
 
3184
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:783
3185
  msgid "%plural% requirement"
3186
  msgstr ""
3187
 
3188
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:784
3189
  msgid "Featured Image (Logo)"
3190
  msgstr ""
3191
 
3192
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:785
3193
  msgid "Content"
3194
  msgstr ""
3195
 
3196
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:786
3197
  msgid "Excerpt"
3198
  msgstr ""
3199
 
3200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:787
3201
  msgid "Comments"
3202
  msgstr ""
3203
 
3204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:788
3205
  msgid "Page Attributes"
3206
  msgstr ""
3207
 
3208
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:789
3209
  msgid "Custom Fields"
3210
  msgstr ""
3211
 
3212
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:792
3213
  msgid "Public"
3214
  msgstr ""
3215
 
3216
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:796
3217
  msgid ""
3218
  "If you want to create a template archive for each rank, you must select to "
3219
  "have ranks public. Defaults to disabled."
3220
  msgstr ""
3221
 
3222
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:799
3223
  msgid "Rank Basis"
3224
  msgstr ""
3225
 
3226
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:802
3227
  msgid "Users are ranked according to their current balance."
3228
  msgstr ""
3229
 
3230
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:805
3231
  msgid ""
3232
  "Users are ranked according to the total amount of %_plural% they have "
3233
  "accumulated."
3234
  msgstr ""
3235
 
3236
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:809
3237
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:814
3238
  msgid "Calculate Totals"
3239
  msgstr ""
3240
 
3241
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:812
3242
  msgid ""
3243
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3244
  "the users current balance will be used as a starting point."
3245
  msgstr ""
3246
 
3247
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:812
3248
  msgid ""
3249
  "Once a users total has been calculated, they will be assigned to their "
3250
  "appropriate roles. For this reason, it is highly recommended that you first "
3251
  "setup your ranks!"
3252
  msgstr ""
3253
 
3254
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:813
3255
  msgid ""
3256
  "Depending on your log size and number of users this process may take a "
3257
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3258
  "until this is completed!"
3259
  msgstr ""
3260
 
3261
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:818
3262
  msgid "Archive URL"
3263
  msgstr ""
3264
 
3265
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:822
3266
  msgid "Ignored if Ranks are not public"
3267
  msgstr ""
3268
 
3269
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:825
3270
  msgid "Display Order"
3271
  msgstr ""
3272
 
3273
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:832
3274
  msgid "Ascending - Lowest rank to highest"
3275
  msgstr ""
3276
 
3277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:833
3278
  msgid "Descending - Highest rank to lowest"
3279
  msgstr ""
3280
 
3281
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:842
3282
  msgid ""
3283
  "Select in what order ranks should be displayed in your admin area and/or "
3284
  "front if ranks are \"Public\""
3285
  msgstr ""
3286
 
3287
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:858
3288
  msgid "Rank in BuddyPress"
3289
  msgstr ""
3290
 
3291
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:926
3292
  msgid "Script Communication Error"
3293
  msgstr ""
3294
 
3295
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:975
3296
  msgid "Rank Post Type"
3297
  msgstr ""
3298
 
3299
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:979
3300
  msgid "No. of ranks"
3301
  msgstr ""
3302
 
3303
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:983
3304
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:356
3305
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:371
3306
  msgid "Actions"
3307
  msgstr ""
3308
 
3309
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:984
3310
  msgid "Remove All Ranks"
3311
  msgstr ""
3312
 
3313
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/myCRED-addon-ranks.php:984
3314
  msgid "Assign Ranks to Users"
3315
  msgstr ""
3316
 
3317
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-functions.php:181
3318
  msgid "mycred_get_users_rank() : Missing required user id"
3319
  msgstr ""
3320
 
3321
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-functions.php:192
3322
  msgid "no rank"
3323
  msgstr ""
3324
 
3325
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-functions.php:271
3326
  msgid "No rank"
3327
  msgstr ""
3328
 
3329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:57
3330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:132
3331
  msgid "No users found with this rank"
3332
  msgstr ""
3333
 
3334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:62
3335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:226
3336
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:229
3337
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:290
3338
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:351
3339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:355
3340
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:359
3341
  msgid "error"
3342
  msgstr ""
3343
 
3344
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:62
3345
  msgid "Rank ID is required!"
3346
  msgstr ""
3347
 
3348
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:12
3349
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:303
3350
  msgid "Sell Content"
3351
  msgstr ""
3352
 
3353
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:13
3354
  msgid ""
3355
  "This add-on allows you to sell posts, pages or any public post types on your "
3356
  "website. You can either sell the entire content or using our shortcode, sell "
3357
  "parts of your content allowing you to offer \"teasers\"."
3358
  msgstr ""
3359
 
3360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:42
3361
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3362
  msgstr ""
3363
 
3364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:43
3365
  msgid ""
3366
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3367
  "</p>"
3368
  msgstr ""
3369
 
3370
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:44
3371
  msgid ""
3372
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3373
  "<p><strong>Price</strong>: %price%</p>"
3374
  msgstr ""
3375
 
3376
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:54
3377
  msgid "Purchase of %link_with_title%"
3378
  msgstr ""
3379
 
3380
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:55
3381
  msgid "Sale of %link_with_title%"
3382
  msgstr ""
3383
 
3384
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:71
3385
  msgid "Hours"
3386
  msgstr ""
3387
 
3388
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:213
3389
  msgid "You can not buy this content."
3390
  msgstr ""
3391
 
3392
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:276
3393
  msgid "Error. Try Again"
3394
  msgstr ""
3395
 
3396
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:298
3397
  msgid "No Payout. Just charge."
3398
  msgstr ""
3399
 
3400
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:299
3401
  msgid "Pay Content Author."
3402
  msgstr ""
3403
 
3404
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:305
3405
  msgid "Post Types"
3406
  msgstr ""
3407
 
3408
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:309
3409
  msgid "Comma separated list of post types that can be sold."
3410
  msgstr ""
3411
 
3412
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:326
3413
  msgid "Percentage to pay Author"
3414
  msgstr ""
3415
 
3416
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:328
3417
  msgid ""
3418
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3419
  "authors are not paid."
3420
  msgstr ""
3421
 
3422
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:336
3423
  msgid "Defaults"
3424
  msgstr ""
3425
 
3426
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:344
3427
  msgid "Allow authors to change price."
3428
  msgstr ""
3429
 
3430
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:353
3431
  msgid "Allow authors to change button label."
3432
  msgstr ""
3433
 
3434
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:357
3435
  msgid "Purchases expire after"
3436
  msgstr ""
3437
 
3438
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:359
3439
  msgid "Use zero for permanent sales."
3440
  msgstr ""
3441
 
3442
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:362
3443
  msgid "Sale Template for non members"
3444
  msgstr ""
3445
 
3446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:366
3447
  msgid ""
3448
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3449
  "be logged in to buy content!"
3450
  msgstr ""
3451
 
3452
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:367
3453
  msgid ""
3454
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3455
  "%link_with_title%, %price%"
3456
  msgstr ""
3457
 
3458
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:370
3459
  msgid "Sale Template for members"
3460
  msgstr ""
3461
 
3462
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:374
3463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:382
3464
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3465
  msgstr ""
3466
 
3467
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:375
3468
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:383
3469
  msgid ""
3470
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3471
  "%link_with_title%, %buy_button%, %price%"
3472
  msgstr ""
3473
 
3474
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:378
3475
  msgid "Insufficient funds template"
3476
  msgstr ""
3477
 
3478
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:386
3479
  msgid "Log template for Purchases"
3480
  msgstr ""
3481
 
3482
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:390
3483
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:397
3484
  msgid ""
3485
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3486
  "or %link_with_title%"
3487
  msgstr ""
3488
 
3489
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:393
3490
  msgid "Log template for Sales"
3491
  msgstr ""
3492
 
3493
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:444
3494
  #, php-format
3495
  msgid "%s Sell This"
3496
  msgstr ""
3497
 
3498
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:498
3499
  #, php-format
3500
  msgid "%s Sell Content needs to be setup before you can use this feature."
3501
  msgstr ""
3502
 
3503
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:501
3504
  msgid "Setup add-on"
3505
  msgstr ""
3506
 
3507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:501
3508
  msgid "Lets do it"
3509
  msgstr ""
3510
 
3511
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:530
3512
  msgid "Enable sale of this "
3513
  msgstr ""
3514
 
3515
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:544
3516
  msgid "Purchase expires after"
3517
  msgstr ""
3518
 
3519
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:793
3520
  msgid "Thank you for your purchase!"
3521
  msgstr ""
3522
 
3523
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:877
3524
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:960
3525
  msgid "The following content is set for sale:"
3526
  msgstr ""
3527
 
3528
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:978
3529
  msgid "No purchases found"
3530
  msgstr ""
3531
 
3532
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/sell-content/myCRED-addon-sell-content.php:1015
3533
  msgid "Purchased"
3534
  msgstr ""
3535
 
3536
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:12
3537
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:51
3538
  msgid "Transfer"
3539
  msgstr ""
3540
 
3541
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:13
3542
  msgid ""
3543
  "Allow your users to send or \"donate\" points to other members by either "
3544
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3545
  msgstr ""
3546
 
3547
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:44
3548
  msgid "You do not have enough %plural% to send."
3549
  msgstr ""
3550
 
3551
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:45
3552
  msgid "You have exceeded your %limit% transfer limit."
3553
  msgstr ""
3554
 
3555
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:146
3556
  msgid "Transaction completed."
3557
  msgstr ""
3558
 
3559
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:147
3560
  msgid ""
3561
  "Security token could not be verified. Please contact your site administrator!"
3562
  msgstr ""
3563
 
3564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:148
3565
  msgid "Communications error. Please try again later."
3566
  msgstr ""
3567
 
3568
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:149
3569
  msgid "Recipient not found. Please try again."
3570
  msgstr ""
3571
 
3572
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:150
3573
  msgid "Transaction declined by recipient."
3574
  msgstr ""
3575
 
3576
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:151
3577
  msgid "Incorrect amount. Please try again."
3578
  msgstr ""
3579
 
3580
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:152
3581
  msgid ""
3582
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3583
  "this has been done!"
3584
  msgstr ""
3585
 
3586
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:153
3587
  msgid "Insufficient funds. Please enter a lower amount."
3588
  msgstr ""
3589
 
3590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:154
3591
  msgid "Transfer Limit exceeded."
3592
  msgstr ""
3593
 
3594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:179
3595
  msgid "No limits."
3596
  msgstr ""
3597
 
3598
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:180
3599
  msgid "Impose daily limit."
3600
  msgstr ""
3601
 
3602
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:181
3603
  msgid "Impose weekly limit."
3604
  msgstr ""
3605
 
3606
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:188
3607
  msgid "User Login (user_login)"
3608
  msgstr ""
3609
 
3610
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:189
3611
  msgid "User Email (user_email)"
3612
  msgstr ""
3613
 
3614
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:193
3615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:590
3616
  msgid "Transfer %plural%"
3617
  msgstr ""
3618
 
3619
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:195
3620
  msgid "Log template for sending"
3621
  msgstr ""
3622
 
3623
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:202
3624
  msgid "Log template for receiving"
3625
  msgstr ""
3626
 
3627
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:209
3628
  msgid "Autofill Recipient"
3629
  msgstr ""
3630
 
3631
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:218
3632
  msgid "Select what user details recipients should be autofilled by."
3633
  msgstr ""
3634
 
3635
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:221
3636
  msgid "Reload"
3637
  msgstr ""
3638
 
3639
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:224
3640
  msgid "Reload page on successful transfers."
3641
  msgstr ""
3642
 
3643
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:227
3644
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:969
3645
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1255
3646
  msgid "Limits"
3647
  msgstr ""
3648
 
3649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:244
3650
  msgid "Maximum Amount"
3651
  msgstr ""
3652
 
3653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:246
3654
  msgid "This amount is ignored if no limits are imposed."
3655
  msgstr ""
3656
 
3657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:249
3658
  msgid "Form Templates"
3659
  msgstr ""
3660
 
3661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:252
3662
  msgid "Not logged in Template"
3663
  msgstr ""
3664
 
3665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:254
3666
  msgid ""
3667
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3668
  "elements allowed!"
3669
  msgstr ""
3670
 
3671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:258
3672
  msgid "Balance Template"
3673
  msgstr ""
3674
 
3675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:260
3676
  msgid ""
3677
  "Template to use when displaying the users balance (if included). No HTML "
3678
  "elements allowed!"
3679
  msgstr ""
3680
 
3681
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:264
3682
  msgid "Limit Template"
3683
  msgstr ""
3684
 
3685
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:266
3686
  msgid ""
3687
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3688
  msgstr ""
3689
 
3690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:270
3691
  msgid "Button Template"
3692
  msgstr ""
3693
 
3694
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:272
3695
  msgid "Send Transfer button template. No HTML elements allowed!"
3696
  msgstr ""
3697
 
3698
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:275
3699
  msgid "Error Messages"
3700
  msgstr ""
3701
 
3702
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:278
3703
  msgid "Balance to low to send."
3704
  msgstr ""
3705
 
3706
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:280
3707
  msgid ""
3708
  "Text to show when a users balance is to low for transfers. Leave empty to "
3709
  "hide. No HTML elements allowed!"
3710
  msgstr ""
3711
 
3712
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:284
3713
  msgid "Transfer Limit Reached."
3714
  msgstr ""
3715
 
3716
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:286
3717
  msgid ""
3718
  "Text to show when a user has reached their transfer limit (if used). Leave "
3719
  "empty to hide. No HTML elements allowed!"
3720
  msgstr ""
3721
 
3722
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:519
3723
  msgid "Allow transfers between users."
3724
  msgstr ""
3725
 
3726
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:521
3727
  #, php-format
3728
  msgid "(%s) Transfer"
3729
  msgstr ""
3730
 
3731
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:535
3732
  msgid "The myCRED Transfer add-on has not yet been setup!"
3733
  msgstr ""
3734
 
3735
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:601
3736
  msgid "Show users balance"
3737
  msgstr ""
3738
 
3739
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:605
3740
  msgid "Show users limit"
3741
  msgstr ""
3742
 
3743
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:701
3744
  msgid "username"
3745
  msgstr ""
3746
 
3747
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:703
3748
  msgid "email"
3749
  msgstr ""
3750
 
3751
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:705
3752
  #, php-format
3753
  msgid "recipients %s"
3754
  msgstr ""
3755
 
3756
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:755
3757
  msgid "To:"
3758
  msgstr ""
3759
 
3760
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/addons/transfer/myCRED-addon-transfer.php:761
3761
  msgid "Amount:"
3762
  msgstr ""
3763
 
3764
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:26
3765
  #, php-format
3766
  msgid ""
3767
  "Thank you for choosing %s as your points management tool!<br />I hope you "
3768
  "have as much fun using it as I had developing it."
3769
  msgstr ""
3770
 
3771
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:37
3772
  msgid "What&#8217;s New"
3773
  msgstr ""
3774
 
3775
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:39
3776
  msgid "Credits"
3777
  msgstr ""
3778
 
3779
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:79
3780
  #, php-format
3781
  msgid "Welcome to %s %s"
3782
  msgstr ""
3783
 
3784
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:83
3785
  msgid "New Features"
3786
  msgstr ""
3787
 
3788
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:86
3789
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:27
3790
  #, php-format
3791
  msgid "%s Right Now"
3792
  msgstr ""
3793
 
3794
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:87
3795
  msgid ""
3796
  "This new Dashboard widget gives you an overview of %_plural% gained or lost "
3797
  "by your users along with a few other summaries based on your logs content."
3798
  msgstr ""
3799
 
3800
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:90
3801
  msgid "YouTube Iframe API"
3802
  msgstr ""
3803
 
3804
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:91
3805
  msgid ""
3806
  "The \"%plural% for watching videos\" hook has been updated to use the "
3807
  "YouTube Iframe API which allows you to embed videos that can also be viewed "
3808
  "on mobile devices."
3809
  msgstr ""
3810
 
3811
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:94
3812
  msgid "Added Support"
3813
  msgstr ""
3814
 
3815
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:97
3816
  msgid "SimplePress"
3817
  msgstr ""
3818
 
3819
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:98
3820
  #, php-format
3821
  msgid "As of 1.3.3, %s has a built in support for SimplePress!"
3822
  msgstr ""
3823
 
3824
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:98
3825
  msgid ""
3826
  "Once you have installed SimplePress, you will find the \"SimplePress\" hook "
3827
  "on your Hooks page. You can award or deduct %_plural% for new topics and "
3828
  "topic posts."
3829
  msgstr ""
3830
 
3831
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:102
3832
  msgid ""
3833
  "With WordPress Social Invitations aka WSI you can enhance your site by "
3834
  "letting your users to invite their social network friends. This plugin works "
3835
  "perfectly with Buddypress and also hooks into Invite Anyone Plugin."
3836
  msgstr ""
3837
 
3838
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:103
3839
  msgid ""
3840
  "Please consult the plugins website for information on how to install and "
3841
  "setup this plugin."
3842
  msgstr ""
3843
 
3844
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:106
3845
  msgid "Improvements"
3846
  msgstr ""
3847
 
3848
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:110
3849
  msgid ""
3850
  "The transfer add-on has received several improvements which gives you must "
3851
  "better control of customizing your setup."
3852
  msgstr ""
3853
 
3854
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:114
3855
  msgid ""
3856
  "The ranks add-on has received several bug fixes, especially if you are "
3857
  "assigning ranks according to your users total accumilated points and not "
3858
  "their current balance."
3859
  msgstr ""
3860
 
3861
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:115
3862
  msgid ""
3863
  "If you have been experiencing issues with users not getting the correct "
3864
  "rank, please make sure you \"Calculate Totals\" to fix the issue!"
3865
  msgstr ""
3866
 
3867
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:118
3868
  msgid "Events Management"
3869
  msgstr ""
3870
 
3871
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:119
3872
  msgid ""
3873
  "Fixed the issue with users not being able to pay for events in the free "
3874
  "version, if attendance is pre-approved."
3875
  msgstr ""
3876
 
3877
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:142
3878
  #, php-format
3879
  msgid "%s Users"
3880
  msgstr ""
3881
 
3882
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:145
3883
  msgid "Bug Finders"
3884
  msgstr ""
3885
 
3886
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:146
3887
  msgid ""
3888
  "Users who have taken the time to report bugs helping me improve this plugin."
3889
  msgstr ""
3890
 
3891
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:153
3892
  msgid "Plugin Translators"
3893
  msgstr ""
3894
 
3895
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:154
3896
  msgid "Users who have helped with translating this plugin."
3897
  msgstr ""
3898
 
3899
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:160
3900
  msgid "Find out more"
3901
  msgstr ""
3902
 
3903
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-about.php:161
3904
  #, php-format
3905
  msgid ""
3906
  "You can always find more information about this plugin on the %s <a href=\"%s"
3907
  "\">website</a>."
3908
  msgstr ""
3909
 
3910
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:68
3911
  msgid "User is excluded"
3912
  msgstr ""
3913
 
3914
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:73
3915
  msgid "Log Entry can not be empty"
3916
  msgstr ""
3917
 
3918
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:77
3919
  msgid "Amount can not be zero"
3920
  msgstr ""
3921
 
3922
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:171
3923
  msgid "Excluded"
3924
  msgstr ""
3925
 
3926
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:178
3927
  msgid "History"
3928
  msgstr ""
3929
 
3930
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:179
3931
  msgid "Adjust"
3932
  msgstr ""
3933
 
3934
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:230
3935
  #, php-format
3936
  msgid "My current %singular% balance"
3937
  msgstr ""
3938
 
3939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:253
3940
  msgid "Adjust Your Balance"
3941
  msgstr ""
3942
 
3943
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:255
3944
  msgid "Adjust Users Balance"
3945
  msgstr ""
3946
 
3947
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:262
3948
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:339
3949
  msgid "required"
3950
  msgstr ""
3951
 
3952
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:264
3953
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:341
3954
  msgid "optional"
3955
  msgstr ""
3956
 
3957
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:270
3958
  msgid "Log description for adjustment"
3959
  msgstr ""
3960
 
3961
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:271
3962
  msgid "Update"
3963
  msgstr ""
3964
 
3965
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:272
3966
  msgid "Description is required!"
3967
  msgstr ""
3968
 
3969
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:277
3970
  msgid "Users Current Balance"
3971
  msgstr ""
3972
 
3973
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:350
3974
  msgid "A positive or negative value"
3975
  msgstr ""
3976
 
3977
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-admin.php:352
3978
  msgid "Update Balance"
3979
  msgstr ""
3980
 
3981
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:67
3982
  msgid "Point"
3983
  msgstr ""
3984
 
3985
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:68
3986
  msgid "Points"
3987
  msgstr ""
3988
 
3989
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:391
3990
  msgid "Deleted"
3991
  msgstr ""
3992
 
3993
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:526
3994
  msgid "Deleted Item"
3995
  msgstr ""
3996
 
3997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:1435
3998
  msgid "ref empty"
3999
  msgstr ""
4000
 
4001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:1443
4002
  msgid "incorrect user id format"
4003
  msgstr ""
4004
 
4005
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:1456
4006
  msgid "incorrect unix timestamp (from):"
4007
  msgstr ""
4008
 
4009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-functions.php:1465
4010
  msgid "incorrect unix timestamp (to):"
4011
  msgstr ""
4012
 
4013
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:38
4014
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
4015
  msgstr ""
4016
 
4017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:43
4018
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4019
  msgstr ""
4020
 
4021
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:48
4022
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4023
  msgstr ""
4024
 
4025
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:53
4026
  msgid ""
4027
  "Sorry but your WordPress installation does not reach the minimum "
4028
  "requirements for running myCRED. The following errors were given:"
4029
  msgstr ""
4030
 
4031
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:265
4032
  msgid "myCRED needs your attention."
4033
  msgstr ""
4034
 
4035
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:265
4036
  msgid "Run Setup"
4037
  msgstr ""
4038
 
4039
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:277
4040
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:278
4041
  msgid "myCRED Setup"
4042
  msgstr ""
4043
 
4044
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:423
4045
  msgid "Step"
4046
  msgstr ""
4047
 
4048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:446
4049
  msgid ""
4050
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4051
  "points format, layout and security settings."
4052
  msgstr ""
4053
 
4054
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:447
4055
  msgid "Begin Setup"
4056
  msgstr ""
4057
 
4058
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:504
4059
  msgid "Select the format you want to use for your points."
4060
  msgstr ""
4061
 
4062
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:505
4063
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:202
4064
  msgid "Format"
4065
  msgstr ""
4066
 
4067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:508
4068
  msgid "Separators"
4069
  msgstr ""
4070
 
4071
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:518
4072
  msgid "Decimals"
4073
  msgstr ""
4074
 
4075
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:520
4076
  msgid "Use zero for no decimals."
4077
  msgstr ""
4078
 
4079
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:523
4080
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:252
4081
  msgid "Presentation"
4082
  msgstr ""
4083
 
4084
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:526
4085
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:239
4086
  msgid "Name (Singular)"
4087
  msgstr ""
4088
 
4089
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:530
4090
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:244
4091
  msgid "Name (Plural)"
4092
  msgstr ""
4093
 
4094
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:536
4095
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:255
4096
  msgid "Prefix"
4097
  msgstr ""
4098
 
4099
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:544
4100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:263
4101
  msgid "Suffix"
4102
  msgstr ""
4103
 
4104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:549
4105
  msgid "Cancel Setup"
4106
  msgstr ""
4107
 
4108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:549
4109
  msgid "Cancel"
4110
  msgstr ""
4111
 
4112
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:549
4113
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:637
4114
  msgid "Next"
4115
  msgstr ""
4116
 
4117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:581
4118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:271
4119
  msgid "Security"
4120
  msgstr ""
4121
 
4122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:584
4123
  msgid "Edit Settings Capability"
4124
  msgstr ""
4125
 
4126
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:588
4127
  msgid "Edit Users %plural% Capability"
4128
  msgstr ""
4129
 
4130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:592
4131
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:284
4132
  msgid "Maximum %plural% payouts"
4133
  msgstr ""
4134
 
4135
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:594
4136
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:286
4137
  msgid ""
4138
  "As an added security, you can set the maximum amount a user can gain or "
4139
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4141,811 +4142,811 @@ msgid ""
4141
  "disable."
4142
  msgstr ""
4143
 
4144
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:601
4145
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:293
4146
  msgid "Exclude those who can \"Edit Settings\"."
4147
  msgstr ""
4148
 
4149
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:605
4150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:297
4151
  msgid "Exclude those who can \"Edit Users %plural%\"."
4152
  msgstr ""
4153
 
4154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:608
4155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:301
4156
  msgid "Exclude the following user IDs:"
4157
  msgstr ""
4158
 
4159
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:612
4160
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:306
4161
  msgid "Rankings"
4162
  msgstr ""
4163
 
4164
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:616
4165
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:310
4166
  msgid "Update rankings each time a users balance changes."
4167
  msgstr ""
4168
 
4169
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:620
4170
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:314
4171
  msgid "Update rankings once a day."
4172
  msgstr ""
4173
 
4174
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:624
4175
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:318
4176
  msgid "Update rankings once a week."
4177
  msgstr ""
4178
 
4179
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:628
4180
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:322
4181
  msgid "Update rankings on a specific date."
4182
  msgstr ""
4183
 
4184
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:632
4185
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:277
4186
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:326
4187
  msgid "Date"
4188
  msgstr ""
4189
 
4190
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:656
4191
  msgid "Ready"
4192
  msgstr ""
4193
 
4194
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:657
4195
  msgid "Almost done! Click the button below to finish this setup."
4196
  msgstr ""
4197
 
4198
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-install.php:658
4199
  msgid "Install & Run"
4200
  msgstr ""
4201
 
4202
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:279
4203
  msgid "Entry"
4204
  msgstr ""
4205
 
4206
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:379
4207
  msgid "User Missing"
4208
  msgstr ""
4209
 
4210
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:418
4211
  msgid "No log entries found"
4212
  msgstr ""
4213
 
4214
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:433
4215
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:435
4216
  msgid "Search Log"
4217
  msgstr ""
4218
 
4219
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-log.php:434
4220
  msgid "search log entries"
4221
  msgstr ""
4222
 
4223
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:60
4224
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:61
4225
  msgid "Network Settings"
4226
  msgstr ""
4227
 
4228
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:158
4229
  #, php-format
4230
  msgid "%s Network"
4231
  msgstr ""
4232
 
4233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:164
4234
  #, php-format
4235
  msgid "Note! %s has not yet been setup."
4236
  msgstr ""
4237
 
4238
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:168
4239
  msgid "Network Settings Updated"
4240
  msgstr ""
4241
 
4242
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:170
4243
  #, php-format
4244
  msgid "Configure network settings for %s."
4245
  msgstr ""
4246
 
4247
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:177
4248
  msgid "Master Template"
4249
  msgstr ""
4250
 
4251
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:181
4252
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:195
4253
  msgid "Yes"
4254
  msgstr ""
4255
 
4256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:185
4257
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:199
4258
  msgid "No"
4259
  msgstr ""
4260
 
4261
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:188
4262
  #, php-format
4263
  msgid ""
4264
  "If enabled, %s will use your main site's settings for all other sites in "
4265
  "your network."
4266
  msgstr ""
4267
 
4268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:191
4269
  msgid "Central Logging"
4270
  msgstr ""
4271
 
4272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:202
4273
  #, php-format
4274
  msgid "If enabled, %s will log all site actions in your main site's log."
4275
  msgstr ""
4276
 
4277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:205
4278
  msgid "Site Block"
4279
  msgstr ""
4280
 
4281
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:209
4282
  #, php-format
4283
  msgid "Comma separated list of blog ids where %s is to be disabled."
4284
  msgstr ""
4285
 
4286
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-network.php:218
4287
  msgid "Save Network Settings"
4288
  msgstr ""
4289
 
4290
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:39
4291
  msgid "Reference Occurrences"
4292
  msgstr ""
4293
 
4294
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:47
4295
  msgid "%singular% Totals"
4296
  msgstr ""
4297
 
4298
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:78
4299
  msgid "no modules shown"
4300
  msgstr ""
4301
 
4302
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:148
4303
  msgid "Show"
4304
  msgstr ""
4305
 
4306
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:169
4307
  msgid "No modules found"
4308
  msgstr ""
4309
 
4310
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:296
4311
  msgid "Your log is empty"
4312
  msgstr ""
4313
 
4314
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:312
4315
  msgid "Number"
4316
  msgstr ""
4317
 
4318
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:346
4319
  msgid "Earned by users"
4320
  msgstr ""
4321
 
4322
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:350
4323
  msgid "Taken from users"
4324
  msgstr ""
4325
 
4326
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:359
4327
  msgid "Purchased by users"
4328
  msgstr ""
4329
 
4330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:370
4331
  msgid "Transferred between users"
4332
  msgstr ""
4333
 
4334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:381
4335
  msgid "Used as payment"
4336
  msgstr ""
4337
 
4338
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-overview.php:390
4339
  msgid ""
4340
  "Note that manual balance adjustments without a log entry are not counted."
4341
  msgstr ""
4342
 
4343
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:523
4344
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4345
  msgstr ""
4346
 
4347
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:526
4348
  msgid "Click Update Settings to load the Remote API settings."
4349
  msgstr ""
4350
 
4351
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:528
4352
  msgid "Allow Remote Access"
4353
  msgstr ""
4354
 
4355
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:549
4356
  msgid "Remote Access"
4357
  msgstr ""
4358
 
4359
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:551
4360
  msgid "API Key"
4361
  msgstr ""
4362
 
4363
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:554
4364
  msgid "Key"
4365
  msgstr ""
4366
 
4367
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:555
4368
  msgid "min. 12 characters"
4369
  msgstr ""
4370
 
4371
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:556
4372
  msgid "Required for this feature to work!<br />Minimum 12 characters."
4373
  msgstr ""
4374
 
4375
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:559
4376
  msgid "Key Length"
4377
  msgstr ""
4378
 
4379
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:564
4380
  msgid "Generate New Key"
4381
  msgstr ""
4382
 
4383
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:566
4384
  msgid "Warning!"
4385
  msgstr ""
4386
 
4387
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:566
4388
  msgid ""
4389
  "Keep this key safe! Those you share this key with will be able to remotely "
4390
  "deduct / add / transfer %plural%!"
4391
  msgstr ""
4392
 
4393
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:568
4394
  msgid "Incoming URI"
4395
  msgstr ""
4396
 
4397
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:572
4398
  msgid ""
4399
  "The incoming call address. Remote calls made to any other URL will be "
4400
  "ignored."
4401
  msgstr ""
4402
 
4403
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:575
4404
  msgid "Debug Mode"
4405
  msgstr ""
4406
 
4407
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-remote.php:578
4408
  msgid ""
4409
  "Remember to disable when not used to prevent mischievous calls from learning "
4410
  "about your setup!"
4411
  msgstr ""
4412
 
4413
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:147
4414
  msgid "Leaderboard is empty."
4415
  msgstr ""
4416
 
4417
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:226
4418
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:351
4419
  msgid "Amount missing!"
4420
  msgstr ""
4421
 
4422
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:229
4423
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:359
4424
  msgid "Log Template Missing!"
4425
  msgstr ""
4426
 
4427
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:290
4428
  msgid "Anchor missing URL!"
4429
  msgstr ""
4430
 
4431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:355
4432
  msgid "User ID missing for recipient."
4433
  msgstr ""
4434
 
4435
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:409
4436
  msgid "Sent"
4437
  msgstr ""
4438
 
4439
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:410
4440
  msgid "Error - Try Again"
4441
  msgstr ""
4442
 
4443
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-shortcodes.php:508
4444
  msgid "A video ID is required for this shortcode"
4445
  msgstr ""
4446
 
4447
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:21
4448
  #, php-format
4449
  msgid "Show the current users %s balance"
4450
  msgstr ""
4451
 
4452
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:23
4453
  #, php-format
4454
  msgid "(%s) My Balance"
4455
  msgstr ""
4456
 
4457
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:158
4458
  msgid "My Balance"
4459
  msgstr ""
4460
 
4461
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:169
4462
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4463
  msgstr ""
4464
 
4465
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:193
4466
  msgid "Layout"
4467
  msgstr ""
4468
 
4469
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:195
4470
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:218
4471
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:228
4472
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:377
4473
  msgid "See the help tab for available template tags."
4474
  msgstr ""
4475
 
4476
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:200
4477
  msgid "Include users ranking"
4478
  msgstr ""
4479
 
4480
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:204
4481
  msgid ""
4482
  "This will be appended after the balance. See the help tab for available "
4483
  "template tags."
4484
  msgstr ""
4485
 
4486
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:210
4487
  msgid "Include history"
4488
  msgstr ""
4489
 
4490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:212
4491
  msgid "History Title"
4492
  msgstr ""
4493
 
4494
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:214
4495
  msgid "Number of entires"
4496
  msgstr ""
4497
 
4498
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:216
4499
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:375
4500
  msgid "Row layout"
4501
  msgstr ""
4502
 
4503
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:224
4504
  msgid "Show message when not logged in"
4505
  msgstr ""
4506
 
4507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:226
4508
  msgid "Message"
4509
  msgstr ""
4510
 
4511
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:300
4512
  #, php-format
4513
  msgid "Show a list of users sorted by their %s balance"
4514
  msgstr ""
4515
 
4516
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:302
4517
  #, php-format
4518
  msgid "(%s) Leaderboard"
4519
  msgstr ""
4520
 
4521
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:355
4522
  msgid "Leaderboard"
4523
  msgstr ""
4524
 
4525
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:368
4526
  msgid "Visible to non-members"
4527
  msgstr ""
4528
 
4529
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:371
4530
  msgid "Number of users"
4531
  msgstr ""
4532
 
4533
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:380
4534
  msgid "Offset"
4535
  msgstr ""
4536
 
4537
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:382
4538
  msgid "Optional offset of order. Use zero to return the first in the list."
4539
  msgstr ""
4540
 
4541
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:385
4542
  msgid "Order"
4543
  msgstr ""
4544
 
4545
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:389
4546
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:195
4547
  msgid "Ascending"
4548
  msgstr ""
4549
 
4550
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/includes/mycred-widgets.php:390
4551
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:195
4552
  msgid "Descending"
4553
  msgstr ""
4554
 
4555
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:24
4556
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:25
4557
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:26
4558
  msgid "Add-ons"
4559
  msgstr ""
4560
 
4561
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:261
4562
  #, php-format
4563
  msgid "%s Add-ons"
4564
  msgstr ""
4565
 
4566
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:266
4567
  msgid "Add-on Activated"
4568
  msgstr ""
4569
 
4570
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:268
4571
  msgid "Add-on Deactivated"
4572
  msgstr ""
4573
 
4574
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:271
4575
  msgid "Add-ons can expand your current installation with further features."
4576
  msgstr ""
4577
 
4578
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:290
4579
  #, php-format
4580
  msgid "You can find more add-ons in our %s."
4581
  msgstr ""
4582
 
4583
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:290
4584
  msgid "online store"
4585
  msgstr ""
4586
 
4587
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:310
4588
  msgid "Deactivate Add-on"
4589
  msgstr ""
4590
 
4591
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:311
4592
  msgid "Deactivate"
4593
  msgstr ""
4594
 
4595
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:316
4596
  msgid "Activate Add-on"
4597
  msgstr ""
4598
 
4599
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:317
4600
  msgid "Activate"
4601
  msgstr ""
4602
 
4603
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:334
4604
  msgid "Version"
4605
  msgstr ""
4606
 
4607
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:337
4608
  msgid "By"
4609
  msgstr ""
4610
 
4611
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-addons.php:340
4612
  msgid "Documentation"
4613
  msgstr ""
4614
 
4615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:56
4616
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:76
4617
  msgid "Access denied for this action"
4618
  msgstr ""
4619
 
4620
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:93
4621
  msgid "Accounts successfully reset"
4622
  msgstr ""
4623
 
4624
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:124
4625
  msgid "No users found to export"
4626
  msgstr ""
4627
 
4628
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:222
4629
  #, php-format
4630
  msgid "%s Settings"
4631
  msgstr ""
4632
 
4633
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:229
4634
  msgid "Adjust your core or add-on settings. Follow us on:"
4635
  msgstr ""
4636
 
4637
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:229
4638
  msgid "Facebook"
4639
  msgstr ""
4640
 
4641
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:229
4642
  msgid "Google Plus"
4643
  msgstr ""
4644
 
4645
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:234
4646
  msgid "Core Settings"
4647
  msgstr ""
4648
 
4649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:236
4650
  msgid "Name"
4651
  msgstr ""
4652
 
4653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:241
4654
  msgid "Accessible though the %singular% template tag."
4655
  msgstr ""
4656
 
4657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:246
4658
  msgid "Accessible though the %plural% template tag."
4659
  msgstr ""
4660
 
4661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:249
4662
  msgid "Tip"
4663
  msgstr ""
4664
 
4665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:249
4666
  msgid ""
4667
  "Adding an underscore at the beginning of template tag for names will return "
4668
  "them in lowercase. i.e. %_singular%"
4669
  msgstr ""
4670
 
4671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:267
4672
  msgid "Separator"
4673
  msgstr ""
4674
 
4675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:274
4676
  msgid "Edit Settings"
4677
  msgstr ""
4678
 
4679
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:276
4680
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:281
4681
  msgid "Capability to check for."
4682
  msgstr ""
4683
 
4684
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:279
4685
  msgid "Edit Users %plural%"
4686
  msgstr ""
4687
 
4688
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:303
4689
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4690
  msgstr ""
4691
 
4692
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:343
4693
  msgid "Management"
4694
  msgstr ""
4695
 
4696
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:345
4697
  msgid "The Log"
4698
  msgstr ""
4699
 
4700
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:348
4701
  msgid "Table Name"
4702
  msgstr ""
4703
 
4704
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:352
4705
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:92
4706
  msgid "Entries"
4707
  msgstr ""
4708
 
4709
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:357
4710
  msgid "Empty Log"
4711
  msgstr ""
4712
 
4713
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:363
4714
  msgid "User Meta Key"
4715
  msgstr ""
4716
 
4717
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:372
4718
  msgid "Set all to zero"
4719
  msgstr ""
4720
 
4721
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:372
4722
  msgid "CSV Export"
4723
  msgstr ""
4724
 
4725
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:390
4726
  msgid "Identify users by"
4727
  msgstr ""
4728
 
4729
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:395
4730
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:188
4731
  msgid "User ID"
4732
  msgstr ""
4733
 
4734
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:396
4735
  msgid "User Email"
4736
  msgstr ""
4737
 
4738
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:397
4739
  msgid "User Login"
4740
  msgstr ""
4741
 
4742
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:404
4743
  msgid ""
4744
  "Use ID if you intend to use this export as a backup of your current site "
4745
  "while Email is recommended if you want to export to a different site."
4746
  msgstr ""
4747
 
4748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:407
4749
  msgid "Import Log Entry"
4750
  msgstr ""
4751
 
4752
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:409
4753
  #, php-format
4754
  msgid ""
4755
  "Optional log entry to use if you intend to import this file in a different "
4756
  "%s installation."
4757
  msgstr ""
4758
 
4759
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-general.php:412
4760
  msgid "Export"
4761
  msgstr ""
4762
 
4763
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:23
4764
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:24
4765
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:25
4766
  msgid "Hooks"
4767
  msgstr ""
4768
 
4769
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:85
4770
  msgid "%plural% for registrations"
4771
  msgstr ""
4772
 
4773
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:86
4774
  msgid "Award %_plural% for users joining your website."
4775
  msgstr ""
4776
 
4777
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:92
4778
  msgid "%plural% for logins"
4779
  msgstr ""
4780
 
4781
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:93
4782
  msgid ""
4783
  "Award %_plural% for logging in to your website. You can also set an optional "
4784
  "limit."
4785
  msgstr ""
4786
 
4787
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:99
4788
  msgid "%plural% for publishing content"
4789
  msgstr ""
4790
 
4791
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:100
4792
  msgid ""
4793
  "Award %_plural% for publishing content on your website. If your custom post "
4794
  "type is not shown bellow, make sure it is set to \"Public\"."
4795
  msgstr ""
4796
 
4797
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:106
4798
  msgid "%plural% for comments"
4799
  msgstr ""
4800
 
4801
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:107
4802
  msgid "Award %_plural% for making comments."
4803
  msgstr ""
4804
 
4805
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:113
4806
  msgid "%plural% for clicking on links"
4807
  msgstr ""
4808
 
4809
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:114
4810
  msgid ""
4811
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4812
  "shortcode."
4813
  msgstr ""
4814
 
4815
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:120
4816
  msgid "%plural% for viewing Videos"
4817
  msgstr ""
4818
 
4819
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:121
4820
  msgid ""
4821
  "Award %_plural% to users who watches videos embedded using the "
4822
  "[mycred_video] shortcode."
4823
  msgstr ""
4824
 
4825
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:156
4826
  #, php-format
4827
  msgid "%s Hooks"
4828
  msgstr ""
4829
 
4830
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:160
4831
  msgid ""
4832
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4833
  "depending on their actions around your website."
4834
  msgstr ""
4835
 
4836
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:447
4837
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:147
4838
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:168
4839
  msgid "Limit"
4840
  msgstr ""
4841
 
4842
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:554
4843
  msgid "%plural% for Posts"
4844
  msgstr ""
4845
 
4846
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:564
4847
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:577
4848
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:612
4849
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:268
4850
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:278
4851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:442
4852
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:455
4853
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:468
4854
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:486
4855
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:499
4856
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:518
4857
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:546
4858
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-contact-form7.php:138
4859
  msgid "Available template tags: General, Post"
4860
  msgstr ""
4861
 
4862
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:567
4863
  msgid "%plural% for Pages"
4864
  msgstr ""
4865
 
4866
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:602
4867
  msgid "%plural% for %s"
4868
  msgstr ""
4869
 
4870
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:918
4871
  msgid "Approved Comment"
4872
  msgstr ""
4873
 
4874
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:921
4875
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:938
4876
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:955
4877
  msgid "Comment Author"
4878
  msgstr ""
4879
 
4880
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:925
4881
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:942
4882
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:959
4883
  msgid "Content Author"
4884
  msgstr ""
4885
 
4886
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:932
4887
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:949
4888
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:966
4889
  msgid "Available template tags: General, Comment"
4890
  msgstr ""
4891
 
4892
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:935
4893
  msgid "Comment Marked SPAM"
4894
  msgstr ""
4895
 
4896
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:952
4897
  msgid "Trashed / Unapproved Comments"
4898
  msgstr ""
4899
 
4900
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:972
4901
  msgid "Limit per post"
4902
  msgstr ""
4903
 
4904
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:974
4905
  msgid ""
4906
  "The number of comments per post that grants %_plural% to the comment author. "
4907
  "Use zero for unlimited."
4908
  msgstr ""
4909
 
4910
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:978
4911
  msgid "Limit per day"
4912
  msgstr ""
4913
 
4914
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:980
4915
  msgid ""
4916
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4917
  msgstr ""
4918
 
4919
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:985
4920
  msgid ""
4921
  "%plural% is to be awarded even when comment authors reply to their own "
4922
  "comment."
4923
  msgstr ""
4924
 
4925
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1052
4926
  msgid "Once for each unique URL"
4927
  msgstr ""
4928
 
4929
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1053
4930
  msgid "Once for each unique link id"
4931
  msgstr ""
4932
 
4933
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1245
4934
  msgid ""
4935
  "The default amount to award for clicking on links. You can override this in "
4936
  "the shortcode."
4937
  msgstr ""
4938
 
4939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1252
4940
  msgid ""
4941
  "Available template tags: General and custom tags: %url%, %title% or %id%."
4942
  msgstr ""
4943
 
4944
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1263
4945
  msgid "Note!"
4946
  msgstr ""
4947
 
4948
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1263
4949
  msgid ""
4950
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4951
  "generate one automatically based on the value set under href. If you are "
@@ -4953,331 +4954,331 @@ msgid ""
4953
  "by ID."
4954
  msgstr ""
4955
 
4956
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1576
4957
  msgid "Amount to award for viewing videos."
4958
  msgstr ""
4959
 
4960
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1586
4961
  msgid "Award Logic"
4962
  msgstr ""
4963
 
4964
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1588
4965
  msgid "Select when %_plural% should be awarded or deducted."
4966
  msgstr ""
4967
 
4968
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1589
4969
  msgid "Play - As soon as video starts playing."
4970
  msgstr ""
4971
 
4972
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1590
4973
  msgid "Full - First when the entire video has played."
4974
  msgstr ""
4975
 
4976
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1591
4977
  msgid "Interval - For each x number of seconds watched."
4978
  msgstr ""
4979
 
4980
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1596
4981
  msgid "Number of seconds"
4982
  msgstr ""
4983
 
4984
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1603
4985
  msgid "Leniency"
4986
  msgstr ""
4987
 
4988
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1605
4989
  msgid ""
4990
  "The maximum percentage a users view of a movie can differ from the actual "
4991
  "length."
4992
  msgstr ""
4993
 
4994
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-hooks.php:1608
4995
  msgid ""
4996
  "Do not set this value to zero! A lot of thing can happen while a user "
4997
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4998
  "buffering or play back errors."
4999
  msgstr ""
5000
 
5001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:24
5002
  msgid "Activity Log"
5003
  msgstr ""
5004
 
5005
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:175
5006
  msgid "Show all references"
5007
  msgstr ""
5008
 
5009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:194
5010
  msgid "Show in order"
5011
  msgstr ""
5012
 
5013
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:207
5014
  msgid "Filter"
5015
  msgstr ""
5016
 
5017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:233
5018
  #, php-format
5019
  msgid "Showing %d %s"
5020
  msgstr ""
5021
 
5022
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:233
5023
  msgid "entry"
5024
  msgstr ""
5025
 
5026
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/modules/mycred-module-log.php:252
5027
  msgid "Search results for"
5028
  msgstr ""
5029
 
5030
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:16
5031
  msgid "BadgeOS"
5032
  msgstr ""
5033
 
5034
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:17
5035
  msgid ""
5036
  "Default settings for each BadgeOS Achievement type. These settings may be "
5037
  "overridden for individual achievement type."
5038
  msgstr ""
5039
 
5040
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:93
5041
  #, php-format
5042
  msgid ""
5043
  "Please setup your <a href=\"%s\">default settings</a> before using this "
5044
  "feature."
5045
  msgstr ""
5046
 
5047
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:104
5048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:106
5049
  msgid "%plural% to Award"
5050
  msgstr ""
5051
 
5052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:108
5053
  msgid "Use zero to disable"
5054
  msgstr ""
5055
 
5056
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:119
5057
  msgid "Deduction Log Template"
5058
  msgstr ""
5059
 
5060
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:255
5061
  #, php-format
5062
  msgid "Default %s for %s"
5063
  msgstr ""
5064
 
5065
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:262
5066
  msgid "Use zero to disable users gaining %_plural%"
5067
  msgstr ""
5068
 
5069
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:266
5070
  msgid "Default Log template"
5071
  msgstr ""
5072
 
5073
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-badgeOS.php:272
5074
  msgid "Deduct %_plural% if user looses "
5075
  msgstr ""
5076
 
5077
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:16
5078
  msgid "bbPress"
5079
  msgstr ""
5080
 
5081
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:17
5082
  msgid "Awards %_plural% for bbPress actions."
5083
  msgstr ""
5084
 
5085
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:433
5086
  msgid "%plural% for New Forum"
5087
  msgstr ""
5088
 
5089
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:446
5090
  msgid "%plural% for Forum Deletion"
5091
  msgstr ""
5092
 
5093
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:459
5094
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:306
5095
  msgid "%plural% for New Topic"
5096
  msgstr ""
5097
 
5098
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:473
5099
  msgid "Forum authors can receive %_plural% for creating new topics."
5100
  msgstr ""
5101
 
5102
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:477
5103
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:537
5104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:319
5105
  msgid "%plural% for Topic Deletion"
5106
  msgstr ""
5107
 
5108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:490
5109
  msgid "%plural% for Favorited Topic"
5110
  msgstr ""
5111
 
5112
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:505
5113
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:529
5114
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:352
5115
  msgid "Use zero for unlimited"
5116
  msgstr ""
5117
 
5118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:509
5119
  msgid "%plural% for New Reply"
5120
  msgstr ""
5121
 
5122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:523
5123
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5124
  msgstr ""
5125
 
5126
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-bbPress.php:533
5127
  msgid "Show users %_plural% balance in replies"
5128
  msgstr ""
5129
 
5130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-contact-form7.php:16
5131
  msgid "Contact Form 7 Form Submissions"
5132
  msgstr ""
5133
 
5134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-contact-form7.php:17
5135
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5136
  msgstr ""
5137
 
5138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-contact-form7.php:108
5139
  msgid "No forms found."
5140
  msgstr ""
5141
 
5142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:16
5143
  msgid "Events Manager"
5144
  msgstr ""
5145
 
5146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:17
5147
  msgid "Awards %_plural% for users attending events."
5148
  msgstr ""
5149
 
5150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:140
5151
  msgid "Attending Event"
5152
  msgstr ""
5153
 
5154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:150
5155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:163
5156
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:134
5157
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:147
5158
  msgid "Available template tags: General and Post Related"
5159
  msgstr ""
5160
 
5161
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-events-manager-light.php:153
5162
  msgid "Cancelling Attendance"
5163
  msgstr ""
5164
 
5165
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:16
5166
  msgid "GD Star Rating"
5167
  msgstr ""
5168
 
5169
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:17
5170
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5171
  msgstr ""
5172
 
5173
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:99
5174
  msgid "Rating"
5175
  msgstr ""
5176
 
5177
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-gd-star-rating.php:112
5178
  msgid "Up / Down Vote"
5179
  msgstr ""
5180
 
5181
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:16
5182
  msgid "Invite Anyone Plugin"
5183
  msgstr ""
5184
 
5185
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:17
5186
  msgid ""
5187
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5188
  "accepted."
5189
  msgstr ""
5190
 
5191
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:135
5192
  msgid "%plural% for Sending An Invite"
5193
  msgstr ""
5194
 
5195
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:151
5196
  msgid ""
5197
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5198
  msgstr ""
5199
 
5200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:155
5201
  msgid "%plural% for Accepting An Invite"
5202
  msgstr ""
5203
 
5204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:159
5205
  msgid "%plural% for each invited user that accepts an invitation."
5206
  msgstr ""
5207
 
5208
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-invite-anyone.php:172
5209
  msgid ""
5210
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5211
  "unlimited."
5212
  msgstr ""
5213
 
5214
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:16
5215
  msgid "Jetpack Subscriptions"
5216
  msgstr ""
5217
 
5218
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:17
5219
  msgid ""
5220
  "Awards %_plural% for users signing up for site or comment updates using "
5221
  "Jetpack."
5222
  msgstr ""
5223
 
5224
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:490
5225
  msgid "Site Subscriptions"
5226
  msgstr ""
5227
 
5228
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-jetpack.php:503
5229
  msgid "Comment Subscriptions"
5230
  msgstr ""
5231
 
5232
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:16
5233
  msgid "Simple:Press"
5234
  msgstr ""
5235
 
5236
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:17
5237
  msgid "Awards %_plural% for Simple:Press actions."
5238
  msgstr ""
5239
 
5240
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:315
5241
  msgid "Available template tag: General and %topic_name%"
5242
  msgstr ""
5243
 
5244
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:332
5245
  msgid "%plural% for New Topic Post"
5246
  msgstr ""
5247
 
5248
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:346
5249
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5250
  msgstr ""
5251
 
5252
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-simplepress.php:356
5253
  msgid "%plural% for Topic Post Deletion"
5254
  msgstr ""
5255
 
5256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:16
5257
  msgid "WP Favorite Posts"
5258
  msgstr ""
5259
 
5260
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:17
5261
  msgid "Awards %_plural% for users adding posts to their favorites."
5262
  msgstr ""
5263
 
5264
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:124
5265
  msgid "Adding Content to Favorites"
5266
  msgstr ""
5267
 
5268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-favorite-posts.php:137
5269
  msgid "Removing Content from Favorites"
5270
  msgstr ""
5271
 
5272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-polls.php:16
5273
  msgid "WP-Polls"
5274
  msgstr ""
5275
 
5276
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-polls.php:17
5277
  msgid "Awards %_plural% for users voting in polls."
5278
  msgstr ""
5279
 
5280
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3.1/plugins/mycred-hook-wp-polls.php:136
5281
  msgid ""
5282
  "Available template tags: General. You can also use %poll_id% and "
5283
  "%poll_question%."
4
  msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
+ "POT-Creation-Date: 2014-01-29 20:56+0100\n"
8
+ "PO-Revision-Date: 2014-01-29 20:57+0100\n"
9
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
10
  "Language-Team: LANGUAGE <support@mycred.me>\n"
11
  "Language: en_US\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.6.3\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-KeywordsList: _n;_e;__\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/multisite/wp-content/plugins/"
20
+ "mycred\n"
21
  "X-Poedit-SearchPath-1: .\n"
22
 
23
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:355
24
  msgid "My Balance: %cred_f%"
25
  msgstr ""
26
 
27
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:388
28
  #, php-format
29
  msgid "About %s"
30
  msgstr ""
31
 
32
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:397
33
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:138
34
  msgid "Awesome People"
35
  msgstr ""
36
 
37
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:478
38
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:501
39
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:235
40
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:913
41
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:275
42
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:138
43
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:408
44
  msgid "Processing..."
45
  msgstr ""
46
 
47
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:479
48
  msgid ""
49
  "Warning! All entries in your log will be permamenly removed! This can not be "
50
  "undone!"
51
  msgstr ""
52
 
53
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:480
54
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
55
  msgstr ""
56
 
57
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:481
58
  msgid "Done!"
59
  msgstr ""
60
 
61
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:482
62
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:500
63
  msgid "Close"
64
  msgstr ""
65
 
66
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:483
67
  msgid "Export users %plural%"
68
  msgstr ""
69
 
70
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:499
71
  #, php-format
72
  msgid "Edit Users %s balance"
73
  msgstr ""
74
 
75
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:563
76
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:583
77
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:622
78
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:447
79
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:531
80
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:421
81
  msgid "Setup"
82
  msgstr ""
83
 
84
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:565
85
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:342
86
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:175
87
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:19
88
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:20
89
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:21
90
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:246
91
  msgid "Settings"
92
  msgstr ""
93
 
94
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:587
95
  msgid "About"
96
  msgstr ""
97
 
98
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:588
99
  msgid "Tutorials"
100
  msgstr ""
101
 
102
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:589
103
  msgid "Codex"
104
  msgstr ""
105
 
106
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/mycred.php:590
107
  msgid "Store"
108
  msgstr ""
109
 
110
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:57
111
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
112
  msgstr ""
113
 
114
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:66
115
  msgid "This Hook has no settings"
116
  msgstr ""
117
 
118
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:133
119
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1054
120
  msgid "No limit"
121
  msgstr ""
122
 
123
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:134
124
  msgid "Once every 24 hours"
125
  msgstr ""
126
 
127
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:135
128
  msgid "Once every 12 hours"
129
  msgstr ""
130
 
131
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:136
132
  msgid "Once every 7 days"
133
  msgstr ""
134
 
135
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:137
136
  msgid "Once per day (reset at midnight)"
137
  msgstr ""
138
 
139
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-hook.php:144
140
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:342
141
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:276
142
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:297
143
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
144
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:563
145
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:516
146
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:373
147
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:184
148
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:771
149
  msgid "Select"
150
  msgstr ""
151
 
152
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-module.php:42
153
  msgid "myCRED_Module() Error. A Module ID is required!"
154
  msgstr ""
155
 
156
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-module.php:313
157
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-module.php:321
158
  msgid "Surprise"
159
  msgstr ""
160
 
161
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-module.php:378
162
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:154
163
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:194
164
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:103
165
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:202
166
  msgid "click to close"
167
  msgstr ""
168
 
169
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/abstracts/mycred-abstract-module.php:379
170
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:155
171
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:195
172
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:104
173
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:203
174
  msgid "click to open"
175
  msgstr ""
176
 
177
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:12
178
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:49
179
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:50
180
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:51
181
  msgid "Banking"
182
  msgstr ""
183
 
184
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:13
185
  msgid ""
186
  "This add-on allows you to offer interest on your users points balances or "
187
  "setup recurring payouts."
188
  msgstr ""
189
 
190
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:110
191
  msgid "Compound Interest"
192
  msgstr ""
193
 
194
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:111
195
  msgid ""
196
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
197
  "annual and is compounded daily as long as this service is enabled. Positive "
199
  "rate will to users loosing %_plural%."
200
  msgstr ""
201
 
202
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:117
203
  msgid "Recurring Payouts"
204
  msgstr ""
205
 
206
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:118
207
  msgid ""
208
  "Give your users %_plural% on a regular basis with the option to set the "
209
  "number of times you want this payout to run (cycles)."
210
  msgstr ""
211
 
212
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:167
213
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:458
214
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:149
215
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:254
216
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:215
217
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:149
218
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:266
219
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:355
220
  msgid "Access Denied"
221
  msgstr ""
222
 
223
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:174
224
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:355
225
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:226
226
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:158
227
  msgid "Settings Updated"
228
  msgstr ""
229
 
230
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:179
231
  #, php-format
232
  msgid "%s Banking"
233
  msgstr ""
234
 
235
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:180
236
  msgid ""
237
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
238
  "purchases or payments using the Gateway add-on, along with offering interest "
239
  "on %_plural% balances."
240
  msgstr ""
241
 
242
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:183
243
  msgid "WP-Cron deactivation detected!"
244
  msgstr ""
245
 
246
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:184
247
  msgid "Warning! This add-on requires WP - Cron to work."
248
  msgstr ""
249
 
250
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:197
251
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:384
252
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:172
253
  msgid "Enable"
254
  msgstr ""
255
 
256
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/myCRED-addon-banking.php:210
257
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:185
258
  msgid "Update Changes"
259
  msgstr ""
260
 
261
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:57
262
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
263
  msgstr ""
264
 
265
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:66
266
  msgid "This Service has no settings"
267
  msgstr ""
268
 
269
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:143
270
  msgid "Hourly"
271
  msgstr ""
272
 
273
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:147
274
  msgid "Daily"
275
  msgstr ""
276
 
277
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:151
278
  msgid "Weekly"
279
  msgstr ""
280
 
281
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:155
282
  msgid "Monthly"
283
  msgstr ""
284
 
285
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:159
286
  msgid "Quarterly"
287
  msgstr ""
288
 
289
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:163
290
  msgid "Semiannually"
291
  msgstr ""
292
 
293
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/abstracts/mycred-abstract-service.php:167
294
  msgid "Annually"
295
  msgstr ""
296
 
297
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:25
298
  msgid "%plural% interest rate payment"
299
  msgstr ""
300
 
301
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:275
302
  msgid "Interest Rate"
303
  msgstr ""
304
 
305
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:282
306
  msgid "Payed / Charged"
307
  msgstr ""
308
 
309
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:288
310
  msgid ""
311
  "The interest rate can be either positive or negative and is compounded daily."
312
  msgstr ""
313
 
314
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:291
315
  msgid "Minimum Balance"
316
  msgstr ""
317
 
318
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:295
319
  msgid "The minimum requires balance for interest to apply."
320
  msgstr ""
321
 
322
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:298
323
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:263
324
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:254
325
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:309
326
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:360
327
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:393
328
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:93
329
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:141
330
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:335
331
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:443
332
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1251
333
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1582
334
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:110
335
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:112
336
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:121
337
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:146
338
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:159
339
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:105
340
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:118
341
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:130
342
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:143
343
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-polls.php:132
344
  msgid "Log Template"
345
  msgstr ""
346
 
347
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:302
348
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
349
  msgstr ""
350
 
351
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:305
352
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:270
353
  msgid "Run Time"
354
  msgstr ""
355
 
356
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-interest.php:309
357
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:274
358
  msgid ""
359
  "For large websites, if you are running into time out issues during payouts, "
360
  "you can set the number of seconds a process can run. Use zero for unlimited, "
361
  "but be careful especially if you are on a shared server."
362
  msgstr ""
363
 
364
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:21
365
  msgid "Daily %_plural%"
366
  msgstr ""
367
 
368
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:225
369
  msgid "Not yet run"
370
  msgstr ""
371
 
372
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:230
373
  msgid "Pay Users"
374
  msgstr ""
375
 
376
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:233
377
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:684
378
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:355
379
  msgid "Amount"
380
  msgstr ""
381
 
382
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:235
383
  msgid "Can not be zero."
384
  msgstr ""
385
 
386
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:239
387
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:252
388
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1597
389
  msgid "Interval"
390
  msgstr ""
391
 
392
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:244
393
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:253
394
  msgid "Cycles"
395
  msgstr ""
396
 
397
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:246
398
  msgid "Set to -1 for unlimited"
399
  msgstr ""
400
 
401
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:249
402
  msgid "Last Run / Activated"
403
  msgstr ""
404
 
405
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:252
406
  msgid ""
407
  "Select how often you want to award %_plural%. Note that when this service is "
408
  "enabled, the first payout will be in the beginning of the next period. So "
410
  "morning."
411
  msgstr ""
412
 
413
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:253
414
  msgid ""
415
  "Cycles let you choose how many intervals this service should run. Each time "
416
  "a cycle runs, the value will decrease until it hits zero, in which case this "
417
  "service will deactivate itself. Use -1 to run unlimited times."
418
  msgstr ""
419
 
420
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:254
421
  msgid "Important"
422
  msgstr ""
423
 
424
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:254
425
  msgid ""
426
  "You can always stop payouts by deactivating this service. Just remember that "
427
  "if you deactivate while there are cycles left, this service will continue on "
428
  "when it gets re-activated. Set cycles to zero to reset."
429
  msgstr ""
430
 
431
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:256
432
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:597
433
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:289
434
  msgid "Excludes"
435
  msgstr ""
436
 
437
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:260
438
  msgid ""
439
  "Comma separated list of user IDs to exclude from this service. No spaces "
440
  "allowed!"
441
  msgstr ""
442
 
443
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/banking/services/mycred-bank-service-payouts.php:267
444
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-galleries.php:81
445
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:435
446
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:448
447
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:461
448
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:474
449
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:487
450
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:500
451
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:514
452
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:527
453
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:540
454
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:553
455
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:175
456
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:188
457
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:201
458
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:214
459
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:338
460
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:351
461
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:390
462
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:403
463
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:416
464
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:429
465
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:449
466
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:447
467
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1586
468
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:109
469
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:122
470
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:144
471
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:165
472
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:499
473
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:512
474
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:328
475
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:341
476
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:365
477
  msgid "Available template tags: General"
478
  msgstr ""
479
 
480
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:13
481
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:407
482
  msgid "BuddyPress"
483
  msgstr ""
484
 
485
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:14
486
  msgid ""
487
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
488
  "BuddyPress allowing you to hook into most BuddyPress related actions."
489
  msgstr ""
490
 
491
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:58
492
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:69
493
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:379
494
  msgid "My History"
495
  msgstr ""
496
 
497
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:59
498
  #, php-format
499
  msgid "%s's History"
500
  msgstr ""
501
 
502
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:239
503
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:248
504
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:447
505
  msgid "All"
506
  msgstr ""
507
 
508
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:240
509
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:448
510
  msgid "Today"
511
  msgstr ""
512
 
513
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:241
514
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:449
515
  msgid "Yesterday"
516
  msgstr ""
517
 
518
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:242
519
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:450
520
  msgid "This Week"
521
  msgstr ""
522
 
523
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:243
524
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:451
525
  msgid "This Month"
526
  msgstr ""
527
 
528
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:343
529
  msgid "BuddyPress: Groups"
530
  msgstr ""
531
 
532
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:344
533
  msgid ""
534
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
535
  "zero to disable a specific hook."
536
  msgstr ""
537
 
538
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:351
539
  msgid "BuddyPress: Members"
540
  msgstr ""
541
 
542
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:352
543
  msgid "Awards %_plural% for profile related actions."
544
  msgstr ""
545
 
546
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:359
547
  msgid "BuddyPress: Links"
548
  msgstr ""
549
 
550
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:360
551
  msgid "Awards %_plural% for link related actions."
552
  msgstr ""
553
 
554
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:367
555
  msgid "BuddyPress: Gallery Actions"
556
  msgstr ""
557
 
558
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:368
559
  msgid ""
560
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
561
  "Gallery."
562
  msgstr ""
563
 
564
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:388
565
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:395
566
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:852
567
  msgid "Do not show."
568
  msgstr ""
569
 
570
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:389
571
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:853
572
  msgid "Include in Profile Header."
573
  msgstr ""
574
 
575
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:390
576
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:854
577
  msgid "Include under the \"Profile\" tab"
578
  msgstr ""
579
 
580
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:391
581
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:855
582
  msgid "Include under the \"Profile\" tab and Profile Header."
583
  msgstr ""
584
 
585
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:396
586
  msgid "Show in Profile"
587
  msgstr ""
588
 
589
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:409
590
  msgid "%singular% Balance"
591
  msgstr ""
592
 
593
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:425
594
  msgid "Members can view each others %_singular% balance."
595
  msgstr ""
596
 
597
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:430
598
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:176
599
  msgid "Template"
600
  msgstr ""
601
 
602
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:432
603
  msgid "Available template tags are: %creds%, %number%, %rank%"
604
  msgstr ""
605
 
606
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:433
607
  msgid ""
608
  "Note that you can also use %rank_logo% to show the feature image of the rank."
609
  msgstr ""
610
 
611
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:437
612
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:162
613
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:70
614
  msgid "%plural% History"
615
  msgstr ""
616
 
617
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:453
618
  msgid "Members can view each others %_plural% history."
619
  msgstr ""
620
 
621
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:458
622
  msgid "Menu Title"
623
  msgstr ""
624
 
625
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:460
626
  msgid "Title shown to me"
627
  msgstr ""
628
 
629
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:465
630
  #, php-format
631
  msgid "Title shown to others. Use %s to show the first name."
632
  msgstr ""
633
 
634
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:470
635
  msgid "Menu Position"
636
  msgstr ""
637
 
638
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:472
639
  msgid "Current menu positions:"
640
  msgstr ""
641
 
642
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:477
643
  msgid "History URL slug"
644
  msgstr ""
645
 
646
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:479
647
  msgid "Do not use empty spaces!"
648
  msgstr ""
649
 
650
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/myCRED-addon-buddypress.php:484
651
  msgid "Number of history entries to show"
652
  msgstr ""
653
 
654
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-galleries.php:72
655
  msgid "%plural% for New Gallery"
656
  msgstr ""
657
 
658
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-galleries.php:79
659
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:433
660
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:446
661
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:459
662
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:472
663
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:485
664
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:498
665
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:512
666
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:525
667
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:538
668
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:551
669
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:173
670
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:186
671
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:199
672
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:212
673
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:336
674
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:349
675
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:362
676
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:375
677
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:388
678
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:401
679
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:414
680
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:427
681
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:306
682
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:563
683
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:576
684
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:611
685
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:933
686
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:950
687
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:967
688
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:276
689
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:440
690
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:453
691
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:466
692
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:484
693
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:497
694
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:516
695
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:544
696
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-contact-form7.php:136
697
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:142
698
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:163
699
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:497
700
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:510
701
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:313
702
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:326
703
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:339
704
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:363
705
  msgid "Log template"
706
  msgstr ""
707
 
708
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:419
709
  msgid "%plural% for Creating Groups"
710
  msgstr ""
711
 
712
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:423
713
  msgid ""
714
  "If you use a negative value and the user does not have enough %_plural% the "
715
  "\"Create Group\" button will be disabled."
716
  msgstr ""
717
 
718
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:427
719
  msgid "Number of members before awarding %_plural%"
720
  msgstr ""
721
 
722
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:429
723
  msgid "Use zero to award %_plural% when group is created."
724
  msgstr ""
725
 
726
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:439
727
  msgid "%plural% for Deleting Groups"
728
  msgstr ""
729
 
730
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:452
731
  msgid "%plural% for New Forum Topic"
732
  msgstr ""
733
 
734
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:465
735
  msgid "%plural% for Editing Forum Topic"
736
  msgstr ""
737
 
738
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:478
739
  msgid "%plural% for New Forum Post"
740
  msgstr ""
741
 
742
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:491
743
  msgid "%plural% for Editing Forum Post"
744
  msgstr ""
745
 
746
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:504
747
  msgid "%plural% for Joining Groups"
748
  msgstr ""
749
 
750
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:508
751
  msgid ""
752
  "If you use a negative value and the user does not have enough %_plural% the "
753
  "\"Join Group\" button will be disabled."
754
  msgstr ""
755
 
756
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:518
757
  msgid "%plural% for Leaving Groups"
758
  msgstr ""
759
 
760
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:531
761
  msgid "%plural% for New Group Avatar"
762
  msgstr ""
763
 
764
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-groups.php:544
765
  msgid "%plural% for New Group Comment"
766
  msgstr ""
767
 
768
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:166
769
  msgid "%plural% for New Links"
770
  msgstr ""
771
 
772
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:179
773
  msgid "%plural% for Vote on Link"
774
  msgstr ""
775
 
776
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:192
777
  msgid "%plural% for Updating Links"
778
  msgstr ""
779
 
780
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-links.php:205
781
  msgid "%plural% for Deleting Links"
782
  msgstr ""
783
 
784
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:324
785
  msgid "%plural% for Profile Updates"
786
  msgstr ""
787
 
788
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:330
789
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:503
790
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:527
791
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:350
792
  msgid "Daily Limit"
793
  msgstr ""
794
 
795
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:332
796
  msgid "Daily limit. User zero for unlimited."
797
  msgstr ""
798
 
799
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:342
800
  msgid "%plural% for New Avatar"
801
  msgstr ""
802
 
803
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:355
804
  msgid "%plural% for New Friendships"
805
  msgstr ""
806
 
807
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:364
808
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:377
809
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:199
810
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:206
811
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:310
812
  msgid "Available template tags: General, User"
813
  msgstr ""
814
 
815
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:368
816
  msgid "%plural% for Leaving Friendship"
817
  msgstr ""
818
 
819
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:381
820
  msgid "%plural% for New Comment"
821
  msgstr ""
822
 
823
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:394
824
  msgid "%plural% for Deleting Comment"
825
  msgstr ""
826
 
827
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:407
828
  msgid "%plural% for New Messages"
829
  msgstr ""
830
 
831
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buddypress/hooks/bp-profile.php:420
832
  msgid "%plural% for Sending Gift"
833
  msgstr ""
834
 
835
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:12
836
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:238
837
  msgid "buyCRED"
838
  msgstr ""
839
 
840
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:13
841
  msgid ""
842
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
843
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
844
  "also let your users buy points for other members."
845
  msgstr ""
846
 
847
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:55
848
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:56
849
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:57
850
  msgid "Payment Gateways"
851
  msgstr ""
852
 
853
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:213
854
  msgid "Please login to purchase %_plural%"
855
  msgstr ""
856
 
857
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:227
858
  msgid "Gift purchase from %display_name%."
859
  msgstr ""
860
 
861
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:240
862
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:639
863
  msgid "Minimum %plural%"
864
  msgstr ""
865
 
866
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:244
867
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
868
  msgstr ""
869
 
870
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:247
871
  msgid "Login Template"
872
  msgstr ""
873
 
874
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:251
875
  msgid "Content to show when a user is not logged in."
876
  msgstr ""
877
 
878
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:258
879
  msgid ""
880
  "Available template tags: General and %gateway% for the payment gateway used."
881
  msgstr ""
882
 
883
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:261
884
  msgid "Thank You Page"
885
  msgstr ""
886
 
887
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:264
888
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:285
889
  msgid "Custom URL"
890
  msgstr ""
891
 
892
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:269
893
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:290
894
  msgid "Page"
895
  msgstr ""
896
 
897
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:282
898
  msgid "Cancellation Page"
899
  msgstr ""
900
 
901
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:303
902
  msgid "Gifting"
903
  msgstr ""
904
 
905
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:305
906
  msgid "Allow users to buy %_plural% for other users."
907
  msgstr ""
908
 
909
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:306
910
  msgid "Allow users to buy %_plural% for content authors."
911
  msgstr ""
912
 
913
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:311
914
  msgid "Available template tags: %singular%, %plural% and %display_name%"
915
  msgstr ""
916
 
917
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:360
918
  #, php-format
919
  msgid "%s Payment Gateways"
920
  msgstr ""
921
 
922
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:361
923
  msgid ""
924
  "Select the payment gateways you want to offer your users to buy %plural%."
925
  msgstr ""
926
 
927
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:377
928
  msgid "Test Mode"
929
  msgstr ""
930
 
931
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:379
932
  msgid "Enabled"
933
  msgstr ""
934
 
935
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:382
936
  msgid "Disabled"
937
  msgstr ""
938
 
939
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:402
940
  msgid "Update Gateway Settings"
941
  msgstr ""
942
 
943
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:441
944
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:538
945
  msgid "This Add-on needs to setup before you can use this shortcode."
946
  msgstr ""
947
 
948
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:459
949
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:555
950
  msgid "No gateways installed."
951
  msgstr ""
952
 
953
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:460
954
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:556
955
  msgid "Gateway does not exist."
956
  msgstr ""
957
 
958
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:496
959
  msgid "Yourself"
960
  msgstr ""
961
 
962
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:557
963
  msgid "No active gateways found."
964
  msgstr ""
965
 
966
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:558
967
  msgid "The selected gateway is not active."
968
  msgstr ""
969
 
970
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:598
971
  msgid "Buy with"
972
  msgstr ""
973
 
974
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:602
975
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:49
976
  msgid "Buy Now"
977
  msgstr ""
978
 
979
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:635
980
  msgid "No users found"
981
  msgstr ""
982
 
983
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:645
984
  msgid "To"
985
  msgstr ""
986
 
987
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:662
988
  msgid "Select Amount"
989
  msgstr ""
990
 
991
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:686
992
  msgid "min."
993
  msgstr ""
994
 
995
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/myCRED-addon-buy-creds.php:694
996
  msgid "Select Gateway"
997
  msgstr ""
998
 
999
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:60
1000
  msgid ""
1001
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1002
  "class."
1003
  msgstr ""
1004
 
1005
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:69
1006
  msgid ""
1007
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1008
  msgstr ""
1009
 
1010
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:85
1011
  msgid "This Payment Gateway has no settings"
1012
  msgstr ""
1013
 
1014
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:237
1015
  msgid "Go to "
1016
  msgstr ""
1017
 
1018
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:258
1019
  msgid "Payment Gateway Logo"
1020
  msgstr ""
1021
 
1022
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:271
1023
  msgid "Click here if you are not automatically redirected"
1024
  msgstr ""
1025
 
1026
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:891
1027
  msgid "Outside US"
1028
  msgstr ""
1029
 
1030
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:26
1031
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:23
1032
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:28
1033
  msgid "Purchase of myCRED %plural%"
1034
  msgstr ""
1035
 
1036
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:55
1037
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:318
1038
  msgid "You have tried too many times. Please contact support."
1039
  msgstr ""
1040
 
1041
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:62
1042
  msgid "This payment gateway has not yet been setup! Exiting."
1043
  msgstr ""
1044
 
1045
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:81
1046
  msgid "First name can not be empty"
1047
  msgstr ""
1048
 
1049
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:87
1050
  msgid "Last name can not be empty"
1051
  msgstr ""
1052
 
1053
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:93
1054
  msgid "Street can not be empty"
1055
  msgstr ""
1056
 
1057
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:99
1058
  msgid "City can not be empty"
1059
  msgstr ""
1060
 
1061
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:105
1062
  msgid "Country can not be empty"
1063
  msgstr ""
1064
 
1065
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:113
1066
  msgid "State can not be empty"
1067
  msgstr ""
1068
 
1069
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:121
1070
  msgid "Zip / Post Code can not be empty"
1071
  msgstr ""
1072
 
1073
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:127
1074
  msgid "Email can not be empty"
1075
  msgstr ""
1076
 
1077
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:143
1078
  msgid "Please enter your credit card number"
1079
  msgstr ""
1080
 
1081
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:149
1082
  msgid "Card Expiration Month must be selected"
1083
  msgstr ""
1084
 
1085
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:155
1086
  msgid "Card Expiration Year must be set"
1087
  msgstr ""
1088
 
1089
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:161
1090
  msgid "Please enter the CVV2 code from the back of your card"
1091
  msgstr ""
1092
 
1093
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:170
1094
  msgid "Account Routing number missing"
1095
  msgstr ""
1096
 
1097
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:176
1098
  msgid "Account Number missing"
1099
  msgstr ""
1100
 
1101
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:184
1102
  msgid "Incorrect Credit Card number"
1103
  msgstr ""
1104
 
1105
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:190
1106
  msgid "The credit card entered is past its expiration date."
1107
  msgstr ""
1108
 
1109
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:196
1110
  msgid "The CVV2 number entered is not valid."
1111
  msgstr ""
1112
 
1113
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:202
1114
  msgid "The bank routing number entered is not valid."
1115
  msgstr ""
1116
 
1117
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:205
1118
  msgid "The bank account number entered is not valid."
1119
  msgstr ""
1120
 
1121
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:312
1122
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:333
1123
  msgid "Invalid Address"
1124
  msgstr ""
1125
 
1126
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:315
1127
  msgid "Invalid CVV2"
1128
  msgstr ""
1129
 
1130
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:321
1131
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:324
1132
  msgid "Please contact support."
1133
  msgstr ""
1134
 
1135
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:327
1136
  msgid "Your email address is invalid."
1137
  msgstr ""
1138
 
1139
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:330
1140
  msgid "Your information is invalid. Please correct"
1141
  msgstr ""
1142
 
1143
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:336
1144
  msgid "Your card was declined. Please try again."
1145
  msgstr ""
1146
 
1147
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:340
1148
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:358
1149
  msgid "Duplicate transaction. Please contact support"
1150
  msgstr ""
1151
 
1152
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:343
1153
  msgid "Your transaction was approved"
1154
  msgstr ""
1155
 
1156
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:350
1157
  msgid " error: "
1158
  msgstr ""
1159
 
1160
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:425
1161
  msgid "NETbilling"
1162
  msgstr ""
1163
 
1164
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:432
1165
  msgid "Debug"
1166
  msgstr ""
1167
 
1168
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:441
1169
  msgid "Error"
1170
  msgstr ""
1171
 
1172
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:442
1173
  msgid "The following error/s were found: "
1174
  msgstr ""
1175
 
1176
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:450
1177
  msgid "Please update and try again."
1178
  msgstr ""
1179
 
1180
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:456
1181
  msgid "Transaction Approved"
1182
  msgstr ""
1183
 
1184
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:457
1185
  msgid "Your have successfully purchased "
1186
  msgstr ""
1187
 
1188
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:458
1189
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:468
1190
  msgid "Click here to continue"
1191
  msgstr ""
1192
 
1193
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:466
1194
  msgid "Transaction Declined"
1195
  msgstr ""
1196
 
1197
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:467
1198
  msgid ""
1199
  "I am sorry but your transaction could not be completed due to the following "
1200
  msgstr ""
1201
 
1202
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:476
1203
  msgid "Transaction Error"
1204
  msgstr ""
1205
 
1206
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:477
1207
  msgid "NETbilling returned the following error: "
1208
  msgstr ""
1209
 
1210
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:478
1211
  msgid "Please try again."
1212
  msgstr ""
1213
 
1214
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:482
1215
  msgid "Purchase of"
1216
  msgstr ""
1217
 
1218
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:482
1219
  msgid "for"
1220
  msgstr ""
1221
 
1222
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:483
1223
  msgid "Fields marked * are required!"
1224
  msgstr ""
1225
 
1226
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:493
1227
  msgid "Billing Details"
1228
  msgstr ""
1229
 
1230
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:562
1231
  msgid "Month"
1232
  msgstr ""
1233
 
1234
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:568
1235
  msgid "Year"
1236
  msgstr ""
1237
 
1238
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:609
1239
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:314
1240
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:338
1241
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:281
1242
  msgid "Sandbox Mode"
1243
  msgstr ""
1244
 
1245
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:615
1246
  msgid "Account ID"
1247
  msgstr ""
1248
 
1249
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:621
1250
  msgid "Site Tag"
1251
  msgstr ""
1252
 
1253
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:627
1254
  msgid "Dynamic IP Security Code"
1255
  msgstr ""
1256
 
1257
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:633
1258
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:334
1259
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:364
1260
  msgid "Item Name"
1261
  msgstr ""
1262
 
1263
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:639
1264
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:341
1265
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:371
1266
  msgid "%plural% Exchange Rate"
1267
  msgstr ""
1268
 
1269
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:645
1270
  msgid "Allowed Attempts"
1271
  msgstr ""
1272
 
1273
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:649
1274
  msgid "Maximum number of attempts allowed for purchases."
1275
  msgstr ""
1276
 
1277
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:652
1278
  msgid "Advanced"
1279
  msgstr ""
1280
 
1281
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:656
1282
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1283
  msgstr ""
1284
 
1285
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:660
1286
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1287
  msgstr ""
1288
 
1289
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:664
1290
  msgid ""
1291
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1292
  "disable_negative_db)"
1293
  msgstr ""
1294
 
1295
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:668
1296
  msgid ""
1297
  "Disable only the negative database component of the fraud protection system."
1298
  msgstr ""
1299
 
1300
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:672
1301
  msgid "Disable automatic sending of both merchant and customer email receipts."
1302
  msgstr ""
1303
 
1304
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/netbilling.php:676
1305
  msgid "Disable immediate rejection of expired cards."
1306
  msgstr ""
1307
 
1308
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:223
1309
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:211
1310
  msgid "Success"
1311
  msgstr ""
1312
 
1313
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:224
1314
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:212
1315
  msgid "Thank you for your purchase"
1316
  msgstr ""
1317
 
1318
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:237
1319
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:225
1320
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:231
1321
  msgid "Please setup this gateway before attempting to make a purchase!"
1322
  msgstr ""
1323
 
1324
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:292
1325
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:266
1326
  msgid "Return to "
1327
  msgstr ""
1328
 
1329
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:297
1330
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:320
1331
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:262
1332
  msgid "Processing payment &hellip;"
1333
  msgstr ""
1334
 
1335
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:320
1336
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:344
1337
  msgid "Currency"
1338
  msgstr ""
1339
 
1340
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:325
1341
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:401
1342
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:432
1343
  msgid "Important!"
1344
  msgstr ""
1345
 
1346
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:325
1347
  msgid ""
1348
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1349
  "transactions will not be approved until you login to your PayPal account and "
1350
  "Accept each transaction!"
1351
  msgstr ""
1352
 
1353
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:328
1354
  msgid "Account Email"
1355
  msgstr ""
1356
 
1357
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:338
1358
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:368
1359
  msgid "Description of the item being purchased by the user."
1360
  msgstr ""
1361
 
1362
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:344
1363
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:374
1364
  msgid "Your selected currency"
1365
  msgstr ""
1366
 
1367
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:347
1368
  msgid "IPN Address"
1369
  msgstr ""
1370
 
1371
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/paypal-standard.php:351
1372
  msgid ""
1373
  "For this gateway to work, you must login to your PayPal account and under "
1374
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
1376
  "have selected \"Receive IPN messages (Enabled)\"."
1377
  msgstr ""
1378
 
1379
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:303
1380
  msgid "Product:"
1381
  msgstr ""
1382
 
1383
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:312
1384
  msgid "Gift to:"
1385
  msgstr ""
1386
 
1387
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:313
1388
  msgid "(author)"
1389
  msgstr ""
1390
 
1391
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:341
1392
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1393
  msgstr ""
1394
 
1395
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:351
1396
  msgid "Merchant Account Email"
1397
  msgstr ""
1398
 
1399
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:357
1400
  msgid "Secret Word"
1401
  msgstr ""
1402
 
1403
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:361
1404
  msgid ""
1405
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1406
  msgstr ""
1407
 
1408
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:377
1409
  msgid "Confirmation Email"
1410
  msgstr ""
1411
 
1412
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:380
1413
  msgid ""
1414
  "Ask Skrill to send me a confirmation email for each successful purchase."
1415
  msgstr ""
1416
 
1417
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:383
1418
  msgid "Checkout Page"
1419
  msgstr ""
1420
 
1421
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:386
1422
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:81
1423
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:782
1424
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:596
1425
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:188
1426
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:363
1427
  msgid "Title"
1428
  msgstr ""
1429
 
1430
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:388
1431
  msgid ""
1432
  "If left empty, your account email is used as title on the Skill Payment Page."
1433
  msgstr ""
1434
 
1435
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:391
1436
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:305
1437
  msgid "Logo URL"
1438
  msgstr ""
1439
 
1440
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:393
1441
  msgid ""
1442
  "The URL to the image you want to use on the top of the gateway. For best "
1443
  "integration results we recommend you use logos with dimensions up to 200px "
1444
  "in width and 50px in height."
1445
  msgstr ""
1446
 
1447
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:396
1448
  msgid "Confirmation Note"
1449
  msgstr ""
1450
 
1451
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:398
1452
  msgid ""
1453
  "Optional text to show user once a transaction has been successfully "
1454
  "completed. This text is shown by Skrill."
1455
  msgstr ""
1456
 
1457
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:402
1458
  msgid ""
1459
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1460
  "When a user selects this option, no %_plural% are awarded! You will need to "
1461
  "manually award these once the bank transfer is completed."
1462
  msgstr ""
1463
 
1464
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/skrill.php:403
1465
  msgid ""
1466
  "By default purchases made using Skrill will result in users having to signup "
1467
  "for a Skrill account (if they do not have one already). You can contact "
1468
  "Skrill Merchant Services and request to disable this feature."
1469
  msgstr ""
1470
 
1471
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:287
1472
  msgid "Site ID"
1473
  msgstr ""
1474
 
1475
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:293
1476
  msgid "GW Password"
1477
  msgstr ""
1478
 
1479
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:299
1480
  msgid "Pricing ID"
1481
  msgstr ""
1482
 
1483
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:311
1484
  msgid "IP Verification"
1485
  msgstr ""
1486
 
1487
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:314
1488
  msgid "Do not verify that callbacks are coming from Zombaio."
1489
  msgstr ""
1490
 
1491
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:317
1492
  msgid "Language"
1493
  msgstr ""
1494
 
1495
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:324
1496
  msgid "Postback URL (ZScript)"
1497
  msgstr ""
1498
 
1499
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/buy-creds/gateways/zombaio.php:328
1500
  msgid ""
1501
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1502
  "address and click validate."
1503
  msgstr ""
1504
 
1505
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:12
1506
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:153
1507
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:159
1508
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:165
1509
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:263
1510
  msgid "Email Notices"
1511
  msgstr ""
1512
 
1513
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:13
1514
  msgid "Create email notices for any type of myCRED instance."
1515
  msgstr ""
1516
 
1517
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:154
1518
  msgid "Email Notice"
1519
  msgstr ""
1520
 
1521
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:155
1522
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:260
1523
  msgid "Add New"
1524
  msgstr ""
1525
 
1526
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:156
1527
  msgid "Add New Notice"
1528
  msgstr ""
1529
 
1530
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:157
1531
  msgid "Edit Notice"
1532
  msgstr ""
1533
 
1534
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:158
1535
  msgid "New Notice"
1536
  msgstr ""
1537
 
1538
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:160
1539
  msgid "View Notice"
1540
  msgstr ""
1541
 
1542
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:161
1543
  msgid "Search Email Notices"
1544
  msgstr ""
1545
 
1546
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:162
1547
  msgid "No email notices found"
1548
  msgstr ""
1549
 
1550
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:163
1551
  msgid "No email notices found in Trash"
1552
  msgstr ""
1553
 
1554
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:186
1555
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:846
1556
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:317
1557
  msgid "General"
1558
  msgstr ""
1559
 
1560
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:187
1561
  msgid "users balance changes"
1562
  msgstr ""
1563
 
1564
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:188
1565
  msgid "user gains %_plural%"
1566
  msgstr ""
1567
 
1568
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:189
1569
  msgid "user lose %_plural%"
1570
  msgstr ""
1571
 
1572
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:190
1573
  msgid "users balance reaches zero"
1574
  msgstr ""
1575
 
1576
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:191
1577
  msgid "users balance goes minus"
1578
  msgstr ""
1579
 
1580
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:197
1581
  msgid "Sell Content Add-on"
1582
  msgstr ""
1583
 
1584
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:198
1585
  msgid "user buys content"
1586
  msgstr ""
1587
 
1588
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:199
1589
  msgid "authors content gets sold"
1590
  msgstr ""
1591
 
1592
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:206
1593
  msgid "buyCREDs Add-on"
1594
  msgstr ""
1595
 
1596
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:207
1597
  msgid "user buys %_plural%"
1598
  msgstr ""
1599
 
1600
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:214
1601
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:109
1602
  msgid "Transfer Add-on"
1603
  msgstr ""
1604
 
1605
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:215
1606
  msgid "user sends %_plural%"
1607
  msgstr ""
1608
 
1609
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:216
1610
  msgid "user receives %_plural%"
1611
  msgstr ""
1612
 
1613
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:223
1614
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:113
1615
  msgid "Ranks Add-on"
1616
  msgstr ""
1617
 
1618
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:224
1619
  msgid "user is demoted"
1620
  msgstr ""
1621
 
1622
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:225
1623
  msgid "user is promoted"
1624
  msgstr ""
1625
 
1626
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:265
1627
  msgid ""
1628
  "Settings that apply to all email notices and can not be overridden for "
1629
  "individual emails."
1630
  msgstr ""
1631
 
1632
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:266
1633
  msgid "Email Format"
1634
  msgstr ""
1635
 
1636
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:270
1637
  msgid "Plain text emails only."
1638
  msgstr ""
1639
 
1640
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:274
1641
  msgid "HTML or Plain text emails."
1642
  msgstr ""
1643
 
1644
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:277
1645
  msgid "Filters"
1646
  msgstr ""
1647
 
1648
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:281
1649
  msgid ""
1650
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1651
  "an email is sent."
1652
  msgstr ""
1653
 
1654
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:285
1655
  msgid ""
1656
  "Allow WordPress and Third Party Plugins to filter the email content before "
1657
  "an email is sent."
1658
  msgstr ""
1659
 
1660
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:288
1661
  msgid ""
1662
  "Default email settings. These settings can be individually overridden when "
1663
  "editing emails."
1664
  msgstr ""
1665
 
1666
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:289
1667
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:685
1668
  msgid "Email Settings"
1669
  msgstr ""
1670
 
1671
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:292
1672
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:802
1673
  msgid "Senders Name:"
1674
  msgstr ""
1675
 
1676
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:296
1677
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:804
1678
  msgid "Senders Email:"
1679
  msgstr ""
1680
 
1681
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:300
1682
  msgid "Reply-To:"
1683
  msgstr ""
1684
 
1685
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:304
1686
  msgid "Default Email Content"
1687
  msgstr ""
1688
 
1689
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:308
1690
  msgid "Default email content."
1691
  msgstr ""
1692
 
1693
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:311
1694
  msgid "Default Email Styling"
1695
  msgstr ""
1696
 
1697
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:315
1698
  msgid "Ignored if HTML is not allowed in emails."
1699
  msgstr ""
1700
 
1701
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:620
1702
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:734
1703
  msgid "Email Subject"
1704
  msgstr ""
1705
 
1706
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:621
1707
  msgid "Status"
1708
  msgstr ""
1709
 
1710
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:641
1711
  msgid "Not Active"
1712
  msgstr ""
1713
 
1714
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:643
1715
  #, php-format
1716
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1717
  msgstr ""
1718
 
1719
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:647
1720
  msgid "Active"
1721
  msgstr ""
1722
 
1723
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:649
1724
  #, php-format
1725
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1726
  msgstr ""
1727
 
1728
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:658
1729
  msgid "Email is sent when"
1730
  msgstr ""
1731
 
1732
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:660
1733
  msgid "Missing instance for this notice!"
1734
  msgstr ""
1735
 
1736
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:669
1737
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:671
1738
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:673
1739
  msgid "Sent To"
1740
  msgstr ""
1741
 
1742
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:669
1743
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:796
1744
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:351
1745
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:276
1746
  msgid "User"
1747
  msgstr ""
1748
 
1749
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:671
1750
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:797
1751
  msgid "Administrator"
1752
  msgstr ""
1753
 
1754
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:673
1755
  msgid "Both Administrator and User"
1756
  msgstr ""
1757
 
1758
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:694
1759
  msgid "Available Template Tags"
1760
  msgstr ""
1761
 
1762
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:705
1763
  msgid "Email Header"
1764
  msgstr ""
1765
 
1766
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:765
1767
  msgid "Send this email notice when..."
1768
  msgstr ""
1769
 
1770
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:794
1771
  msgid "Recipient:"
1772
  msgstr ""
1773
 
1774
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:798
1775
  msgid "Both"
1776
  msgstr ""
1777
 
1778
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:806
1779
  msgid "Reply-To Email:"
1780
  msgstr ""
1781
 
1782
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:812
1783
  msgid "Save"
1784
  msgstr ""
1785
 
1786
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:824
1787
  msgid "CSS Styling"
1788
  msgstr ""
1789
 
1790
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:839
1791
  msgid "Site Related"
1792
  msgstr ""
1793
 
1794
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:840
1795
  msgid "Your websites title"
1796
  msgstr ""
1797
 
1798
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:841
1799
  msgid "Your websites address"
1800
  msgstr ""
1801
 
1802
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:842
1803
  msgid "Your websites tagline (description)"
1804
  msgstr ""
1805
 
1806
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:843
1807
  msgid "Your websites admin email"
1808
  msgstr ""
1809
 
1810
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:844
1811
  msgid "Total number of blog members"
1812
  msgstr ""
1813
 
1814
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:847
1815
  msgid "Points name in singular format"
1816
  msgstr ""
1817
 
1818
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:848
1819
  msgid "Points name in plural"
1820
  msgstr ""
1821
 
1822
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:849
1823
  msgid "Login URL"
1824
  msgstr ""
1825
 
1826
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:852
1827
  msgid "User Related"
1828
  msgstr ""
1829
 
1830
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:853
1831
  msgid "The users ID"
1832
  msgstr ""
1833
 
1834
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:854
1835
  msgid "The users login name (username)"
1836
  msgstr ""
1837
 
1838
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:855
1839
  msgid "The users display name"
1840
  msgstr ""
1841
 
1842
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:856
1843
  msgid "The users profile address"
1844
  msgstr ""
1845
 
1846
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:857
1847
  msgid "Link to the users profile address with their display name as title"
1848
  msgstr ""
1849
 
1850
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:858
1851
  msgid "The users current balance unformated"
1852
  msgstr ""
1853
 
1854
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:859
1855
  msgid "The users current balance formated"
1856
  msgstr ""
1857
 
1858
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:861
1859
  msgid "Post Related"
1860
  msgstr ""
1861
 
1862
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:862
1863
  msgid "Post Title"
1864
  msgstr ""
1865
 
1866
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:863
1867
  msgid "Post URL address"
1868
  msgstr ""
1869
 
1870
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:864
1871
  msgid "Link to post Post title"
1872
  msgstr ""
1873
 
1874
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:865
1875
  msgid "The post type"
1876
  msgstr ""
1877
 
1878
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:941
1879
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:944
1880
  #, php-format
1881
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1882
  msgstr ""
1883
 
1884
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:942
1885
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:544
1886
  msgid "Custom field updated"
1887
  msgstr ""
1888
 
1889
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:943
1890
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:545
1891
  msgid "Custom filed updated"
1892
  msgstr ""
1893
 
1894
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:946
1895
  msgid "Email Notice Activated"
1896
  msgstr ""
1897
 
1898
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:947
1899
  msgid "Email Notice Saved"
1900
  msgstr ""
1901
 
1902
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:948
1903
  #, php-format
1904
  msgid ""
1905
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1906
  msgstr ""
1907
 
1908
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:950
1909
  #, php-format
1910
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1911
  msgstr ""
1912
 
1913
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:969
1914
  msgid ""
1915
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1916
  "you are not yet ready to use this email notice!"
1917
  msgstr ""
1918
 
1919
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:971
1920
  #, php-format
1921
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1922
  msgstr ""
1923
 
1924
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/email-notices/myCRED-addon-email-notices.php:973
1925
  msgid "This email notice is active."
1926
  msgstr ""
1927
 
1928
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/myCRED-addon-gateway.php:12
1929
  msgid "Gateway"
1930
  msgstr ""
1931
 
1932
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/myCRED-addon-gateway.php:13
1933
  msgid ""
1934
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1935
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1936
  "Espresso, Events Manager."
1937
  msgstr ""
1938
 
1939
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:132
1940
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:270
1941
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:294
1942
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:408
1943
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:352
1944
  msgid "Current Balance"
1945
  msgstr ""
1946
 
1947
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:136
1948
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:112
1949
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:274
1950
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:298
1951
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:412
1952
  msgid "Total Cost"
1953
  msgstr ""
1954
 
1955
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:140
1956
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:278
1957
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:302
1958
  msgid "Balance After Purchase"
1959
  msgstr ""
1960
 
1961
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:164
1962
  msgid "Payment"
1963
  msgstr ""
1964
 
1965
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:167
1966
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:216
1967
  #, php-format
1968
  msgid "<a href=\"%s\">Go Back</a>"
1969
  msgstr ""
1970
 
1971
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:170
1972
  msgid "will be deducted from your account."
1973
  msgstr ""
1974
 
1975
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:206
1976
  #, php-format
1977
  msgid ""
1978
  "Sorry, but you can not use this gateway as your account is excluded. Please "
1979
  "<a href=\"%s\">select a different payment method</a>."
1980
  msgstr ""
1981
 
1982
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:225
1983
  msgid "Paid"
1984
  msgstr ""
1985
 
1986
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:228
1987
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:34
1988
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:51
1989
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:52
1990
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:76
1991
  msgid "myCRED"
1992
  msgstr ""
1993
 
1994
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:328
1995
  msgid "%_singular% Balance"
1996
  msgstr ""
1997
 
1998
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:330
1999
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:96
2000
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:25
2001
  msgid "Payment for Order: #%order_id%"
2002
  msgstr ""
2003
 
2004
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:333
2005
  msgid "Product Sale: %post_title%"
2006
  msgstr ""
2007
 
2008
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:334
2009
  msgid "Pay using your account balance."
2010
  msgstr ""
2011
 
2012
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:335
2013
  msgid ""
2014
  "TOTAL amount has been deducted from your account. Your current balance is: "
2015
  "%balance_f%"
2016
  msgstr ""
2017
 
2018
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:336
2019
  msgid ""
2020
  "Insufficient funds. Please select another form of payment. Your current "
2021
  "balance is: %balance_f%"
2022
  msgstr ""
2023
 
2024
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:337
2025
  msgid ""
2026
  "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2027
  "%\">login</a>."
2028
  msgstr ""
2029
 
2030
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:344
2031
  #, php-format
2032
  msgid ""
2033
  "Let your users pay for items in their shopping cart using their %s Account. "
2035
  "purchase!"
2036
  msgstr ""
2037
 
2038
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:347
2039
  msgid "Method Name"
2040
  msgstr ""
2041
 
2042
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:349
2043
  msgid ""
2044
  "Enter a public name for this payment method that is displayed to users - No "
2045
  "HTML"
2046
  msgstr ""
2047
 
2048
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:354
2049
  msgid "Gateway Logo URL"
2050
  msgstr ""
2051
 
2052
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:362
2053
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:95
2054
  msgid ""
2055
  "Log entry template for successful payments. Available template tags: "
2056
  "%order_id%, %order_link%"
2057
  msgstr ""
2058
 
2059
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:369
2060
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:101
2061
  msgid "How much is 1 %_singular% worth in %currency%?"
2062
  msgstr ""
2063
 
2064
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:374
2065
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:106
2066
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:324
2067
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:427
2068
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:474
2069
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:558
2070
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:525
2071
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:594
2072
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:658
2073
  msgid "Exchange Rate"
2074
  msgstr ""
2075
 
2076
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:383
2077
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:134
2078
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:328
2079
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:439
2080
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:465
2081
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:549
2082
  msgid "Profit Sharing"
2083
  msgstr ""
2084
 
2085
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:386
2086
  msgid "Percentage"
2087
  msgstr ""
2088
 
2089
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:388
2090
  msgid "Option to share sales with the product owner. User zero to disable"
2091
  msgstr ""
2092
 
2093
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:395
2094
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:336
2095
  msgid ""
2096
  "Log entry template for profit sharing. Available template tags: General and "
2097
  "Post related"
2098
  msgstr ""
2099
 
2100
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:400
2101
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:339
2102
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:534
2103
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:606
2104
  msgid "Messages"
2105
  msgstr ""
2106
 
2107
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:403
2108
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:350
2109
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:544
2110
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:616
2111
  msgid "Insufficient Funds"
2112
  msgstr ""
2113
 
2114
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:405
2115
  msgid "Message to show when the user can not use this gateway."
2116
  msgstr ""
2117
 
2118
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:407
2119
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:415
2120
  msgid "Available template tags are: General."
2121
  msgstr ""
2122
 
2123
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:411
2124
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:346
2125
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:467
2126
  msgid "Visitors"
2127
  msgstr ""
2128
 
2129
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:413
2130
  msgid "Message to show to buyers that are not logged in."
2131
  msgstr ""
2132
 
2133
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:419
2134
  msgid "User Instructions"
2135
  msgstr ""
2136
 
2137
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:421
2138
  msgid "Information to show users before payment."
2139
  msgstr ""
2140
 
2141
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:423
2142
  msgid ""
2143
  "Available template tags are: %balance% and %balance_f% for users current "
2144
  "balance."
2145
  msgstr ""
2146
 
2147
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:427
2148
  msgid "Confirmation Information"
2149
  msgstr ""
2150
 
2151
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:429
2152
  msgid "Information to display on the order confirmation page. - HTML allowed"
2153
  msgstr ""
2154
 
2155
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:431
2156
  msgid ""
2157
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2158
  "- users current balance."
2159
  msgstr ""
2160
 
2161
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:435
2162
  msgid "Order Confirmation Email"
2163
  msgstr ""
2164
 
2165
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:437
2166
  #, php-format
2167
  msgid ""
2168
  "This is the email text to send to those who have made %s checkouts. It "
2171
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2172
  msgstr ""
2173
 
2174
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-marketpress.php:439
2175
  #, php-format
2176
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2177
  msgstr ""
2178
 
2179
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:35
2180
  msgid "Let users pay using their myCRED balance."
2181
  msgstr ""
2182
 
2183
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:74
2184
  msgid "Enable/Disable"
2185
  msgstr ""
2186
 
2187
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:76
2188
  msgid "Enable myCRED Payment"
2189
  msgstr ""
2190
 
2191
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:78
2192
  msgid ""
2193
  "Users who are not logged in or excluded from using myCRED will not have "
2194
  "access to this gateway!"
2195
  msgstr ""
2196
 
2197
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:83
2198
  msgid "Title to show for this payment option."
2199
  msgstr ""
2200
 
2201
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:84
2202
  msgid "Pay with myCRED"
2203
  msgstr ""
2204
 
2205
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:88
2206
  msgid "Customer Message"
2207
  msgstr ""
2208
 
2209
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:90
2210
  msgid "Deduct the amount from your %_plural% balance."
2211
  msgstr ""
2212
 
2213
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:113
2214
  msgid "Show Total"
2215
  msgstr ""
2216
 
2217
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:115
2218
  msgid "Show the final price in %_plural% ."
2219
  msgstr ""
2220
 
2221
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:117
2222
  msgid "Do not show"
2223
  msgstr ""
2224
 
2225
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:118
2226
  msgid "Show in Cart"
2227
  msgstr ""
2228
 
2229
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:119
2230
  msgid "Show on Checkout Page"
2231
  msgstr ""
2232
 
2233
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:120
2234
  msgid "Show in Cart and on Checkout Page"
2235
  msgstr ""
2236
 
2237
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:125
2238
  msgid "Label"
2239
  msgstr ""
2240
 
2241
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:127
2242
  msgid "Order Total in %_plural%"
2243
  msgstr ""
2244
 
2245
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:136
2246
  msgid "Option to share a percentage of the sale with the product owner."
2247
  msgstr ""
2248
 
2249
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:143
2250
  msgid ""
2251
  "Log entry template for profit sharing. Available template tags: General and "
2252
  "Post related."
2253
  msgstr ""
2254
 
2255
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:144
2256
  msgid "Sale of %post_title%"
2257
  msgstr ""
2258
 
2259
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:169
2260
  msgid "myCRED Payment"
2261
  msgstr ""
2262
 
2263
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:170
2264
  msgid ""
2265
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2266
  "users with insufficient funds and users who are not logged in will not see "
2267
  "this payment gateway on the checkout page."
2268
  msgstr ""
2269
 
2270
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:191
2271
  msgid "You must be logged in to pay with %_plural%"
2272
  msgstr ""
2273
 
2274
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:197
2275
  msgid "You can not use this gateway. Please try a different payment option."
2276
  msgstr ""
2277
 
2278
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:209
2279
  msgid "Insufficient funds. Please try a different payment option."
2280
  msgstr ""
2281
 
2282
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:273
2283
  msgid "Your account has successfully been charged."
2284
  msgstr ""
2285
 
2286
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-woocommerce.php:483
2287
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:120
2288
  msgid "Your current balance"
2289
  msgstr ""
2290
 
2291
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:27
2292
  msgid "Store sale"
2293
  msgstr ""
2294
 
2295
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:29
2296
  msgid "You must be logged in to use this gateway"
2297
  msgstr ""
2298
 
2299
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:30
2300
  msgid "Insufficient Funds."
2301
  msgstr ""
2302
 
2303
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:31
2304
  msgid "Deduct the amount from your balance."
2305
  msgstr ""
2306
 
2307
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:101
2308
  msgid "Item"
2309
  msgstr ""
2310
 
2311
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:186
2312
  msgid "You can not use this gateway."
2313
  msgstr ""
2314
 
2315
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:320
2316
  msgid "Log Template for Payments"
2317
  msgstr ""
2318
 
2319
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:321
2320
  msgid ""
2321
  "Log entry template for successful payments. Available template tags: "
2322
  "General, %order_id%"
2323
  msgstr ""
2324
 
2325
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:325
2326
  #, php-format
2327
  msgid "How much is 1 %s worth in %s"
2328
  msgstr ""
2329
 
2330
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:331
2331
  msgid "Payout"
2332
  msgstr ""
2333
 
2334
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:332
2335
  msgid ""
2336
  "Option to share a percentage of the sale with the product owner (post "
2337
  "author). User zero to disable."
2338
  msgstr ""
2339
 
2340
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:342
2341
  msgid "Instructions"
2342
  msgstr ""
2343
 
2344
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:343
2345
  msgid ""
2346
  "Optional instructions to show users when selecting this gateway. Leave empty "
2347
  "to hide."
2348
  msgstr ""
2349
 
2350
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:347
2351
  msgid "Message to show visitors who are not logged in."
2352
  msgstr ""
2353
 
2354
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/carts/mycred-wpecommerce.php:351
2355
  msgid ""
2356
  "Message to show when users does not have enough %plural% to pay using this "
2357
  "gateway."
2358
  msgstr ""
2359
 
2360
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:24
2361
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:450
2362
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:534
2363
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:312
2364
  msgid "Payments"
2365
  msgstr ""
2366
 
2367
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:25
2368
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:36
2369
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:33
2370
  msgid "Pay Now"
2371
  msgstr ""
2372
 
2373
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:29
2374
  msgid "Payment for Event Registration"
2375
  msgstr ""
2376
 
2377
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:336
2378
  #, php-format
2379
  msgid "Activate %s"
2380
  msgstr ""
2381
 
2382
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:344
2383
  #, php-format
2384
  msgid "Deactivate %s"
2385
  msgstr ""
2386
 
2387
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:360
2388
  msgid "Gateway Settings"
2389
  msgstr ""
2390
 
2391
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:392
2392
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:440
2393
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:520
2394
  #, php-format
2395
  msgid "How many %s is 1 %s worth?"
2396
  msgstr ""
2397
 
2398
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:398
2399
  msgid "Gateways Settings Successfully Updated"
2400
  msgstr ""
2401
 
2402
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:406
2403
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:510
2404
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:582
2405
  msgid "Labels"
2406
  msgstr ""
2407
 
2408
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:409
2409
  msgid "Gateway Title"
2410
  msgstr ""
2411
 
2412
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:411
2413
  msgid "Title to show on Payment page"
2414
  msgstr ""
2415
 
2416
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:414
2417
  msgid "Payment Type"
2418
  msgstr ""
2419
 
2420
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:416
2421
  msgid "Title to show on receipts and logs"
2422
  msgstr ""
2423
 
2424
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:419
2425
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2426
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:599
2427
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:348
2428
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:540
2429
  msgid "Button Label"
2430
  msgstr ""
2431
 
2432
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:421
2433
  msgid "Pay Button"
2434
  msgstr ""
2435
 
2436
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:424
2437
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:132
2438
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:135
2439
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:332
2440
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:335
2441
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:339
2442
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:536
2443
  msgid "Price"
2444
  msgstr ""
2445
 
2446
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:434
2447
  msgid ""
2448
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2449
  "<code>mycred_no_sale</code>"
2450
  msgstr ""
2451
 
2452
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:435
2453
  msgid "Users must be logged in to use this gateway!"
2454
  msgstr ""
2455
 
2456
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:441
2457
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:468
2458
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:552
2459
  msgid ""
2460
  "Option to share sales with the event owner (post author). Use zero to "
2461
  "disable."
2462
  msgstr ""
2463
 
2464
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:444
2465
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:22
2466
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:23
2467
  msgid "Log"
2468
  msgstr ""
2469
 
2470
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:447
2471
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:549
2472
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:623
2473
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:681
2474
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:356
2475
  msgid "Log Entry"
2476
  msgstr ""
2477
 
2478
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:454
2479
  msgid "Templates"
2480
  msgstr ""
2481
 
2482
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:457
2483
  msgid "Solvent users"
2484
  msgstr ""
2485
 
2486
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:459
2487
  msgid ""
2488
  "Message to show users on the payment page before they are charged. Leave "
2489
  "empty to hide.<br />Available template tags: General"
2490
  msgstr ""
2491
 
2492
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:462
2493
  msgid "Insolvent users"
2494
  msgstr ""
2495
 
2496
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:464
2497
  msgid ""
2498
  "Message to show users who do not have enough points to pay.<br />Available "
2499
  "template tags: General"
2500
  msgstr ""
2501
 
2502
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:469
2503
  msgid ""
2504
  "Message to show visitors (users not logged in) on the payment page.<br /"
2505
  ">Available template tags: General"
2506
  msgstr ""
2507
 
2508
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventespresso3.php:479
2509
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:382
2510
  msgid "Update Settings"
2511
  msgstr ""
2512
 
2513
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:30
2514
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:27
2515
  msgid "Payment for tickets to %link_with_title%"
2516
  msgstr ""
2517
 
2518
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:31
2519
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:28
2520
  msgid "Ticket refund for %link_with_title%"
2521
  msgstr ""
2522
 
2523
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:35
2524
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:32
2525
  msgid "Pay using your %_plural% balance"
2526
  msgstr ""
2527
 
2528
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:37
2529
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:34
2530
  msgid "Pay"
2531
  msgstr ""
2532
 
2533
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2534
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:37
2535
  msgid "Thank you for your payment!"
2536
  msgstr ""
2537
 
2538
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2539
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:38
2540
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2541
  msgstr ""
2542
 
2543
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:129
2544
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:329
2545
  msgid "Ticket Type"
2546
  msgstr ""
2547
 
2548
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:138
2549
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:338
2550
  msgid "Spaces"
2551
  msgstr ""
2552
 
2553
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:223
2554
  msgid "You can not pay using this gateway."
2555
  msgstr ""
2556
 
2557
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:362
2558
  msgid "Reject"
2559
  msgstr ""
2560
 
2561
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:366
2562
  msgid "Delete"
2563
  msgstr ""
2564
 
2565
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:371
2566
  msgid "Edit/View"
2567
  msgstr ""
2568
 
2569
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:452
2570
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:536
2571
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2572
  msgstr ""
2573
 
2574
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:453
2575
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:537
2576
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2577
  msgstr ""
2578
 
2579
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:454
2580
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:538
2581
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2582
  msgstr ""
2583
 
2584
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:458
2585
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:491
2586
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:542
2587
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:575
2588
  msgid "Refunds"
2589
  msgstr ""
2590
 
2591
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:461
2592
  msgid ""
2593
  "The percentage of the paid amount to refund if a user cancells their "
2594
  "booking. Use zero for no refunds. No refunds are given to \"Rejected\" "
2595
  "bookings!"
2596
  msgstr ""
2597
 
2598
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:481
2599
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:565
2600
  msgid "Log Templates"
2601
  msgstr ""
2602
 
2603
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:484
2604
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:568
2605
  msgid "Purchases"
2606
  msgstr ""
2607
 
2608
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:487
2609
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:494
2610
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:571
2611
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:578
2612
  msgid "Available template tags: General and Post related."
2613
  msgstr ""
2614
 
2615
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:513
2616
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:585
2617
  msgid "Payment Link Label"
2618
  msgstr ""
2619
 
2620
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:516
2621
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:588
2622
  msgid ""
2623
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2624
  "HTML allowed."
2625
  msgstr ""
2626
 
2627
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
2628
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:592
2629
  msgid "Payment Header"
2630
  msgstr ""
2631
 
2632
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:523
2633
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:595
2634
  msgid "Shown on top of the payment form. No HTML allowed."
2635
  msgstr ""
2636
 
2637
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:530
2638
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:602
2639
  msgid "The button label for payments. No HTML allowed!"
2640
  msgstr ""
2641
 
2642
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:537
2643
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:609
2644
  msgid "Successful Payments"
2645
  msgstr ""
2646
 
2647
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:540
2648
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
2649
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:612
2650
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:619
2651
  msgid "No HTML allowed! Available template tags: General"
2652
  msgstr ""
2653
 
2654
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:416
2655
  msgid "Balance After Payment"
2656
  msgstr ""
2657
 
2658
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:526
2659
  msgid "Click to toggle"
2660
  msgstr ""
2661
 
2662
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:527
2663
  #, php-format
2664
  msgid "%s Payments"
2665
  msgstr ""
2666
 
2667
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/gateway/event-booking/mycred-eventsmanager.php:545
2668
  msgid ""
2669
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2670
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2671
  msgstr ""
2672
 
2673
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:12
2674
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:40
2675
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:41
2676
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:42
2677
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:743
2678
  msgid "Import"
2679
  msgstr ""
2680
 
2681
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:13
2682
  msgid ""
2683
  "With the Import add-on you can import CSV files, CubePoints or existing "
2684
  "points under any custom user meta values."
2685
  msgstr ""
2686
 
2687
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:91
2688
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:749
2689
  msgid "CSV File"
2690
  msgstr ""
2691
 
2692
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:92
2693
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2694
  msgstr ""
2695
 
2696
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:95
2697
  msgid "CubePoints"
2698
  msgstr ""
2699
 
2700
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:96
2701
  msgid "Import CubePoints"
2702
  msgstr ""
2703
 
2704
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:99
2705
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:769
2706
  msgid "Custom User Meta"
2707
  msgstr ""
2708
 
2709
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:100
2710
  msgid "Import %_plural% from pre-existing custom user meta."
2711
  msgstr ""
2712
 
2713
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:217
2714
  msgid "No file selected. Please select your CSV file and try again."
2715
  msgstr ""
2716
 
2717
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:232
2718
  msgid "Failed to load file."
2719
  msgstr ""
2720
 
2721
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:253
2722
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:423
2723
  #, php-format
2724
  msgid ""
2725
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2726
  msgstr ""
2727
 
2728
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:262
2729
  msgid ""
2730
  "No valid records found in file. Make sure you have selected the correct way "
2731
  "to identify users in the mycred_user column!"
2732
  msgstr ""
2733
 
2734
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:268
2735
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:351
2736
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:438
2737
  #, php-format
2738
  msgid ""
2739
  "Import successfully completed. A total of %d users were effected and %d "
2740
  "entires were skipped. Import completed in %.2f seconds."
2741
  msgstr ""
2742
 
2743
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:302
2744
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:587
2745
  msgid "No CubePoints found."
2746
  msgstr ""
2747
 
2748
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:336
2749
  #, php-format
2750
  msgid ""
2751
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2752
  "seconds."
2753
  msgstr ""
2754
 
2755
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:345
2756
  msgid "No valid CubePoints founds."
2757
  msgstr ""
2758
 
2759
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:371
2760
  msgid "Missing meta key. Not sure what I should be looking for."
2761
  msgstr ""
2762
 
2763
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:390
2764
  #, php-format
2765
  msgid "No rows found for the <strong>%s</strong> meta key."
2766
  msgstr ""
2767
 
2768
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:432
2769
  msgid "No valid records founds."
2770
  msgstr ""
2771
 
2772
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:466
2773
  #, php-format
2774
  msgid "%s Import"
2775
  msgstr ""
2776
 
2777
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:478
2778
  msgid "Remember to de-activate this add-on once you are done importing!"
2779
  msgstr ""
2780
 
2781
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:510
2782
  msgid "File"
2783
  msgstr ""
2784
 
2785
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:514
2786
  msgid "Maximum allowed upload size is "
2787
  msgstr ""
2788
 
2789
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:514
2790
  msgid ""
2791
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2792
  "Optional columns: <code>mycred_log</code>."
2793
  msgstr ""
2794
 
2795
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:517
2796
  msgid "Identify Users By"
2797
  msgstr ""
2798
 
2799
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:520
2800
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:350
2801
  msgid "ID"
2802
  msgstr ""
2803
 
2804
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:521
2805
  msgid "Username"
2806
  msgstr ""
2807
 
2808
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:522
2809
  msgid "Email"
2810
  msgstr ""
2811
 
2812
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:529
2813
  msgid "How much is 1 imported value worth?"
2814
  msgstr ""
2815
 
2816
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:534
2817
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:602
2818
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:666
2819
  msgid "Round"
2820
  msgstr ""
2821
 
2822
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:535
2823
  msgid "None"
2824
  msgstr ""
2825
 
2826
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:536
2827
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:604
2828
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:668
2829
  msgid "Round Up"
2830
  msgstr ""
2831
 
2832
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:537
2833
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:605
2834
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:669
2835
  msgid "Round Down"
2836
  msgstr ""
2837
 
2838
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:542
2839
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:610
2840
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:674
2841
  msgid "Precision"
2842
  msgstr ""
2843
 
2844
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:544
2845
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:612
2846
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:676
2847
  msgid ""
2848
  "The optional number of decimal digits to round to. Use zero to round the "
2849
  "nearest whole number."
2850
  msgstr ""
2851
 
2852
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:553
2853
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:627
2854
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:685
2855
  msgid "See the help tab for available template tags. Leave blank to disable."
2856
  msgstr ""
2857
 
2858
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:558
2859
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:632
2860
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:696
2861
  msgid "Run Import"
2862
  msgstr ""
2863
 
2864
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:585
2865
  #, php-format
2866
  msgid "Found %d users with CubePoints."
2867
  msgstr ""
2868
 
2869
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:588
2870
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:652
2871
  msgid "Meta Key"
2872
  msgstr ""
2873
 
2874
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:603
2875
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:667
2876
  msgid "Do not round"
2877
  msgstr ""
2878
 
2879
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:617
2880
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:688
2881
  msgid "After Import"
2882
  msgstr ""
2883
 
2884
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:620
2885
  msgid "Delete users CubePoints balance."
2886
  msgstr ""
2887
 
2888
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:691
2889
  msgid "Delete the old value."
2890
  msgstr ""
2891
 
2892
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:720
2893
  msgid "Failed to get file contents."
2894
  msgstr ""
2895
 
2896
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:725
2897
  msgid "Failed to put file contents."
2898
  msgstr ""
2899
 
2900
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:745
2901
  msgid ""
2902
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2903
  "database. Remember that the import can take time depending on your file size "
2904
  "or the number of users being imported."
2905
  msgstr ""
2906
 
2907
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:751
2908
  msgid "CSV Import"
2909
  msgstr ""
2910
 
2911
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:752
2912
  msgid ""
2913
  "Imports using a comma-separated values file requires the following columns:"
2914
  msgstr ""
2915
 
2916
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:753
2917
  msgid ""
2918
  "Column identifing the user. All rows must identify the user the same way, "
2919
  "either using an ID, Username (user_login) or email. Users that can not be "
2920
  "found will be ignored."
2921
  msgstr ""
2922
 
2923
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:754
2924
  msgid ""
2925
  "Column with the amount to be imported. If set, an exchange rate is applied "
2926
  "to this value before import."
2927
  msgstr ""
2928
 
2929
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:755
2930
  msgid ""
2931
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2932
  "the log entry for each import."
2933
  msgstr ""
2934
 
2935
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:759
2936
  msgid "Cubepoints"
2937
  msgstr ""
2938
 
2939
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:761
2940
  msgid "Cubepoints Import"
2941
  msgstr ""
2942
 
2943
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:762
2944
  msgid ""
2945
  "When this page loads, the importer will automatically check if you have been "
2946
  "using Cubepoints. If you have, you can import these with the option to "
2948
  "clean."
2949
  msgstr ""
2950
 
2951
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:763
2952
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:773
2953
  msgid ""
2954
  "Before a value is imported, you can apply an exchange rate. To import "
2955
  "without changing the value, use 1 as the exchange rate."
2956
  msgstr ""
2957
 
2958
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:764
2959
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:774
2960
  msgid ""
2961
  "You can select to add a log entry for each import or leave the template "
2962
  "empty to skip."
2963
  msgstr ""
2964
 
2965
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:765
2966
  msgid ""
2967
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
2968
  "installation exists."
2969
  msgstr ""
2970
 
2971
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:771
2972
  msgid "Custom User Meta Import"
2973
  msgstr ""
2974
 
2975
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:772
2976
  msgid ""
2977
  "You can import any type of points that have previously been saved in your "
2978
  "database. All you need is the meta key under which it has been saved."
2979
  msgstr ""
2980
 
2981
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/import/myCRED-addon-import.php:775
2982
  msgid ""
2983
  "Please note that the meta key is case sensitive and can not contain "
2984
  "whitespaces!"
2985
  msgstr ""
2986
 
2987
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:12
2988
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:167
2989
  msgid "Notifications"
2990
  msgstr ""
2991
 
2992
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:13
2993
  msgid "Notify your users when their balances changes."
2994
  msgstr ""
2995
 
2996
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:169
2997
  msgid "Styling"
2998
  msgstr ""
2999
 
3000
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:173
3001
  msgid "Use the included CSS Styling for notifications."
3002
  msgstr ""
3003
 
3004
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:180
3005
  msgid ""
3006
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
3007
  msgstr ""
3008
 
3009
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:183
3010
  msgid "Transient Lifespan"
3011
  msgstr ""
3012
 
3013
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:187
3014
  msgid ""
3015
  "The number of days a users notification is saved before being automatically "
3016
  "deleted."
3017
  msgstr ""
3018
 
3019
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:190
3020
  msgid "Duration"
3021
  msgstr ""
3022
 
3023
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/notifications/myCRED-addon-notifications.php:194
3024
  msgid ""
3025
  "The number of milliseconds a notice should be visible.<br />Use zero to "
3026
  "require that the user closes the notice manually. 1000 milliseconds = 1 "
3027
  "second."
3028
  msgstr ""
3029
 
3030
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:12
3031
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:258
3032
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:264
3033
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:270
3034
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:777
3035
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:972
3036
  msgid "Ranks"
3037
  msgstr ""
3038
 
3039
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:13
3040
  msgid ""
3041
  "Create ranks for users reaching a certain number of points with the option "
3042
  "to add logos for each rank."
3043
  msgstr ""
3044
 
3045
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:236
3046
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3047
  msgstr ""
3048
 
3049
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:237
3050
  msgid "Are you sure you want to re-assign user ranks?"
3051
  msgstr ""
3052
 
3053
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:259
3054
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:471
3055
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:488
3056
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:583
3057
  msgid "Rank"
3058
  msgstr ""
3059
 
3060
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:261
3061
  msgid "Add New Rank"
3062
  msgstr ""
3063
 
3064
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:262
3065
  msgid "Edit Rank"
3066
  msgstr ""
3067
 
3068
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:263
3069
  msgid "New Rank"
3070
  msgstr ""
3071
 
3072
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:265
3073
  msgid "View Rank"
3074
  msgstr ""
3075
 
3076
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:266
3077
  msgid "Search Ranks"
3078
  msgstr ""
3079
 
3080
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:267
3081
  msgid "No ranks found"
3082
  msgstr ""
3083
 
3084
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:268
3085
  msgid "No ranks found in Trash"
3086
  msgstr ""
3087
 
3088
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:333
3089
  #, php-format
3090
  msgid "Completed - Total of %d users effected"
3091
  msgstr ""
3092
 
3093
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:335
3094
  msgid "Log is Empty"
3095
  msgstr ""
3096
 
3097
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:517
3098
  msgid "Newbie"
3099
  msgstr ""
3100
 
3101
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:543
3102
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:546
3103
  #, php-format
3104
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
3105
  msgstr ""
3106
 
3107
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:548
3108
  msgid "Rank Activated"
3109
  msgstr ""
3110
 
3111
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:549
3112
  msgid "Rank Saved"
3113
  msgstr ""
3114
 
3115
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:550
3116
  #, php-format
3117
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
3118
  msgstr ""
3119
 
3120
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:552
3121
  #, php-format
3122
  msgid "Rank scheduled for: <strong>%1$s</strong>."
3123
  msgstr ""
3124
 
3125
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:609
3126
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:664
3127
  msgid "Rank Title"
3128
  msgstr ""
3129
 
3130
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:610
3131
  msgid "Logo"
3132
  msgstr ""
3133
 
3134
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:611
3135
  msgid "Requirement"
3136
  msgstr ""
3137
 
3138
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:612
3139
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:367
3140
  msgid "Users"
3141
  msgstr ""
3142
 
3143
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:628
3144
  msgid "No Logo Set"
3145
  msgstr ""
3146
 
3147
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:637
3148
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:642
3149
  msgid "Any Value"
3150
  msgstr ""
3151
 
3152
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:644
3153
  msgid "Maximum %plural%"
3154
  msgstr ""
3155
 
3156
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:677
3157
  msgid "Rank Settings"
3158
  msgstr ""
3159
 
3160
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:699
3161
  msgid "Minimum %plural% to reach this rank"
3162
  msgstr ""
3163
 
3164
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:703
3165
  msgid "Maximum %plural% to be included in this rank"
3166
  msgstr ""
3167
 
3168
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:710
3169
  msgid "All Published Ranks"
3170
  msgstr ""
3171
 
3172
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:717
3173
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:719
3174
  msgid "Not Set"
3175
  msgstr ""
3176
 
3177
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:724
3178
  msgid "No Ranks found"
3179
  msgstr ""
3180
 
3181
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:779
3182
  msgid "Rank Features"
3183
  msgstr ""
3184
 
3185
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:783
3186
  msgid "%plural% requirement"
3187
  msgstr ""
3188
 
3189
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:784
3190
  msgid "Featured Image (Logo)"
3191
  msgstr ""
3192
 
3193
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:785
3194
  msgid "Content"
3195
  msgstr ""
3196
 
3197
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:786
3198
  msgid "Excerpt"
3199
  msgstr ""
3200
 
3201
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:787
3202
  msgid "Comments"
3203
  msgstr ""
3204
 
3205
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:788
3206
  msgid "Page Attributes"
3207
  msgstr ""
3208
 
3209
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:789
3210
  msgid "Custom Fields"
3211
  msgstr ""
3212
 
3213
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:792
3214
  msgid "Public"
3215
  msgstr ""
3216
 
3217
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:796
3218
  msgid ""
3219
  "If you want to create a template archive for each rank, you must select to "
3220
  "have ranks public. Defaults to disabled."
3221
  msgstr ""
3222
 
3223
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:799
3224
  msgid "Rank Basis"
3225
  msgstr ""
3226
 
3227
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:802
3228
  msgid "Users are ranked according to their current balance."
3229
  msgstr ""
3230
 
3231
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:805
3232
  msgid ""
3233
  "Users are ranked according to the total amount of %_plural% they have "
3234
  "accumulated."
3235
  msgstr ""
3236
 
3237
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:809
3238
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:814
3239
  msgid "Calculate Totals"
3240
  msgstr ""
3241
 
3242
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:812
3243
  msgid ""
3244
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3245
  "the users current balance will be used as a starting point."
3246
  msgstr ""
3247
 
3248
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:812
3249
  msgid ""
3250
  "Once a users total has been calculated, they will be assigned to their "
3251
  "appropriate roles. For this reason, it is highly recommended that you first "
3252
  "setup your ranks!"
3253
  msgstr ""
3254
 
3255
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:813
3256
  msgid ""
3257
  "Depending on your log size and number of users this process may take a "
3258
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3259
  "until this is completed!"
3260
  msgstr ""
3261
 
3262
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:818
3263
  msgid "Archive URL"
3264
  msgstr ""
3265
 
3266
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:822
3267
  msgid "Ignored if Ranks are not public"
3268
  msgstr ""
3269
 
3270
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:825
3271
  msgid "Display Order"
3272
  msgstr ""
3273
 
3274
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:832
3275
  msgid "Ascending - Lowest rank to highest"
3276
  msgstr ""
3277
 
3278
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:833
3279
  msgid "Descending - Highest rank to lowest"
3280
  msgstr ""
3281
 
3282
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:842
3283
  msgid ""
3284
  "Select in what order ranks should be displayed in your admin area and/or "
3285
  "front if ranks are \"Public\""
3286
  msgstr ""
3287
 
3288
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:858
3289
  msgid "Rank in BuddyPress"
3290
  msgstr ""
3291
 
3292
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:926
3293
  msgid "Script Communication Error"
3294
  msgstr ""
3295
 
3296
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:975
3297
  msgid "Rank Post Type"
3298
  msgstr ""
3299
 
3300
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:979
3301
  msgid "No. of ranks"
3302
  msgstr ""
3303
 
3304
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:983
3305
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:356
3306
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:371
3307
  msgid "Actions"
3308
  msgstr ""
3309
 
3310
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:984
3311
  msgid "Remove All Ranks"
3312
  msgstr ""
3313
 
3314
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/myCRED-addon-ranks.php:984
3315
  msgid "Assign Ranks to Users"
3316
  msgstr ""
3317
 
3318
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-functions.php:181
3319
  msgid "mycred_get_users_rank() : Missing required user id"
3320
  msgstr ""
3321
 
3322
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-functions.php:192
3323
  msgid "no rank"
3324
  msgstr ""
3325
 
3326
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-functions.php:271
3327
  msgid "No rank"
3328
  msgstr ""
3329
 
3330
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-shortcodes.php:57
3331
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-shortcodes.php:132
3332
  msgid "No users found with this rank"
3333
  msgstr ""
3334
 
3335
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-shortcodes.php:62
3336
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:226
3337
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:229
3338
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:290
3339
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:351
3340
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:355
3341
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:359
3342
  msgid "error"
3343
  msgstr ""
3344
 
3345
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/ranks/includes/mycred-rank-shortcodes.php:62
3346
  msgid "Rank ID is required!"
3347
  msgstr ""
3348
 
3349
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:12
3350
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:303
3351
  msgid "Sell Content"
3352
  msgstr ""
3353
 
3354
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:13
3355
  msgid ""
3356
  "This add-on allows you to sell posts, pages or any public post types on your "
3357
  "website. You can either sell the entire content or using our shortcode, sell "
3358
  "parts of your content allowing you to offer \"teasers\"."
3359
  msgstr ""
3360
 
3361
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:42
3362
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3363
  msgstr ""
3364
 
3365
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:43
3366
  msgid ""
3367
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3368
  "</p>"
3369
  msgstr ""
3370
 
3371
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:44
3372
  msgid ""
3373
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3374
  "<p><strong>Price</strong>: %price%</p>"
3375
  msgstr ""
3376
 
3377
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:54
3378
  msgid "Purchase of %link_with_title%"
3379
  msgstr ""
3380
 
3381
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:55
3382
  msgid "Sale of %link_with_title%"
3383
  msgstr ""
3384
 
3385
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:71
3386
  msgid "Hours"
3387
  msgstr ""
3388
 
3389
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:213
3390
  msgid "You can not buy this content."
3391
  msgstr ""
3392
 
3393
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:276
3394
  msgid "Error. Try Again"
3395
  msgstr ""
3396
 
3397
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:298
3398
  msgid "No Payout. Just charge."
3399
  msgstr ""
3400
 
3401
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:299
3402
  msgid "Pay Content Author."
3403
  msgstr ""
3404
 
3405
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:305
3406
  msgid "Post Types"
3407
  msgstr ""
3408
 
3409
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:309
3410
  msgid "Comma separated list of post types that can be sold."
3411
  msgstr ""
3412
 
3413
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:326
3414
  msgid "Percentage to pay Author"
3415
  msgstr ""
3416
 
3417
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:328
3418
  msgid ""
3419
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3420
  "authors are not paid."
3421
  msgstr ""
3422
 
3423
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:336
3424
  msgid "Defaults"
3425
  msgstr ""
3426
 
3427
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:344
3428
  msgid "Allow authors to change price."
3429
  msgstr ""
3430
 
3431
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:353
3432
  msgid "Allow authors to change button label."
3433
  msgstr ""
3434
 
3435
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:357
3436
  msgid "Purchases expire after"
3437
  msgstr ""
3438
 
3439
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:359
3440
  msgid "Use zero for permanent sales."
3441
  msgstr ""
3442
 
3443
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:362
3444
  msgid "Sale Template for non members"
3445
  msgstr ""
3446
 
3447
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:366
3448
  msgid ""
3449
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3450
  "be logged in to buy content!"
3451
  msgstr ""
3452
 
3453
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:367
3454
  msgid ""
3455
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3456
  "%link_with_title%, %price%"
3457
  msgstr ""
3458
 
3459
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:370
3460
  msgid "Sale Template for members"
3461
  msgstr ""
3462
 
3463
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:374
3464
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:382
3465
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3466
  msgstr ""
3467
 
3468
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:375
3469
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:383
3470
  msgid ""
3471
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3472
  "%link_with_title%, %buy_button%, %price%"
3473
  msgstr ""
3474
 
3475
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:378
3476
  msgid "Insufficient funds template"
3477
  msgstr ""
3478
 
3479
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:386
3480
  msgid "Log template for Purchases"
3481
  msgstr ""
3482
 
3483
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:390
3484
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:397
3485
  msgid ""
3486
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3487
  "or %link_with_title%"
3488
  msgstr ""
3489
 
3490
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:393
3491
  msgid "Log template for Sales"
3492
  msgstr ""
3493
 
3494
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:444
3495
  #, php-format
3496
  msgid "%s Sell This"
3497
  msgstr ""
3498
 
3499
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:498
3500
  #, php-format
3501
  msgid "%s Sell Content needs to be setup before you can use this feature."
3502
  msgstr ""
3503
 
3504
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:501
3505
  msgid "Setup add-on"
3506
  msgstr ""
3507
 
3508
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:501
3509
  msgid "Lets do it"
3510
  msgstr ""
3511
 
3512
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:530
3513
  msgid "Enable sale of this "
3514
  msgstr ""
3515
 
3516
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:544
3517
  msgid "Purchase expires after"
3518
  msgstr ""
3519
 
3520
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:793
3521
  msgid "Thank you for your purchase!"
3522
  msgstr ""
3523
 
3524
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:877
3525
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:960
3526
  msgid "The following content is set for sale:"
3527
  msgstr ""
3528
 
3529
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:978
3530
  msgid "No purchases found"
3531
  msgstr ""
3532
 
3533
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/sell-content/myCRED-addon-sell-content.php:1015
3534
  msgid "Purchased"
3535
  msgstr ""
3536
 
3537
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:12
3538
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:51
3539
  msgid "Transfer"
3540
  msgstr ""
3541
 
3542
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:13
3543
  msgid ""
3544
  "Allow your users to send or \"donate\" points to other members by either "
3545
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3546
  msgstr ""
3547
 
3548
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:44
3549
  msgid "You do not have enough %plural% to send."
3550
  msgstr ""
3551
 
3552
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:45
3553
  msgid "You have exceeded your %limit% transfer limit."
3554
  msgstr ""
3555
 
3556
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:146
3557
  msgid "Transaction completed."
3558
  msgstr ""
3559
 
3560
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:147
3561
  msgid ""
3562
  "Security token could not be verified. Please contact your site administrator!"
3563
  msgstr ""
3564
 
3565
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:148
3566
  msgid "Communications error. Please try again later."
3567
  msgstr ""
3568
 
3569
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:149
3570
  msgid "Recipient not found. Please try again."
3571
  msgstr ""
3572
 
3573
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:150
3574
  msgid "Transaction declined by recipient."
3575
  msgstr ""
3576
 
3577
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:151
3578
  msgid "Incorrect amount. Please try again."
3579
  msgstr ""
3580
 
3581
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:152
3582
  msgid ""
3583
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3584
  "this has been done!"
3585
  msgstr ""
3586
 
3587
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:153
3588
  msgid "Insufficient funds. Please enter a lower amount."
3589
  msgstr ""
3590
 
3591
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:154
3592
  msgid "Transfer Limit exceeded."
3593
  msgstr ""
3594
 
3595
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:179
3596
  msgid "No limits."
3597
  msgstr ""
3598
 
3599
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:180
3600
  msgid "Impose daily limit."
3601
  msgstr ""
3602
 
3603
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:181
3604
  msgid "Impose weekly limit."
3605
  msgstr ""
3606
 
3607
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:188
3608
  msgid "User Login (user_login)"
3609
  msgstr ""
3610
 
3611
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:189
3612
  msgid "User Email (user_email)"
3613
  msgstr ""
3614
 
3615
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:193
3616
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:590
3617
  msgid "Transfer %plural%"
3618
  msgstr ""
3619
 
3620
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:195
3621
  msgid "Log template for sending"
3622
  msgstr ""
3623
 
3624
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:202
3625
  msgid "Log template for receiving"
3626
  msgstr ""
3627
 
3628
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:209
3629
  msgid "Autofill Recipient"
3630
  msgstr ""
3631
 
3632
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:218
3633
  msgid "Select what user details recipients should be autofilled by."
3634
  msgstr ""
3635
 
3636
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:221
3637
  msgid "Reload"
3638
  msgstr ""
3639
 
3640
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:224
3641
  msgid "Reload page on successful transfers."
3642
  msgstr ""
3643
 
3644
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:227
3645
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:972
3646
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1258
3647
  msgid "Limits"
3648
  msgstr ""
3649
 
3650
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:244
3651
  msgid "Maximum Amount"
3652
  msgstr ""
3653
 
3654
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:246
3655
  msgid "This amount is ignored if no limits are imposed."
3656
  msgstr ""
3657
 
3658
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:249
3659
  msgid "Form Templates"
3660
  msgstr ""
3661
 
3662
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:252
3663
  msgid "Not logged in Template"
3664
  msgstr ""
3665
 
3666
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:254
3667
  msgid ""
3668
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3669
  "elements allowed!"
3670
  msgstr ""
3671
 
3672
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:258
3673
  msgid "Balance Template"
3674
  msgstr ""
3675
 
3676
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:260
3677
  msgid ""
3678
  "Template to use when displaying the users balance (if included). No HTML "
3679
  "elements allowed!"
3680
  msgstr ""
3681
 
3682
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:264
3683
  msgid "Limit Template"
3684
  msgstr ""
3685
 
3686
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:266
3687
  msgid ""
3688
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3689
  msgstr ""
3690
 
3691
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:270
3692
  msgid "Button Template"
3693
  msgstr ""
3694
 
3695
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:272
3696
  msgid "Send Transfer button template. No HTML elements allowed!"
3697
  msgstr ""
3698
 
3699
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:275
3700
  msgid "Error Messages"
3701
  msgstr ""
3702
 
3703
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:278
3704
  msgid "Balance to low to send."
3705
  msgstr ""
3706
 
3707
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:280
3708
  msgid ""
3709
  "Text to show when a users balance is to low for transfers. Leave empty to "
3710
  "hide. No HTML elements allowed!"
3711
  msgstr ""
3712
 
3713
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:284
3714
  msgid "Transfer Limit Reached."
3715
  msgstr ""
3716
 
3717
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:286
3718
  msgid ""
3719
  "Text to show when a user has reached their transfer limit (if used). Leave "
3720
  "empty to hide. No HTML elements allowed!"
3721
  msgstr ""
3722
 
3723
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:519
3724
  msgid "Allow transfers between users."
3725
  msgstr ""
3726
 
3727
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:521
3728
  #, php-format
3729
  msgid "(%s) Transfer"
3730
  msgstr ""
3731
 
3732
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:535
3733
  msgid "The myCRED Transfer add-on has not yet been setup!"
3734
  msgstr ""
3735
 
3736
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:601
3737
  msgid "Show users balance"
3738
  msgstr ""
3739
 
3740
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:605
3741
  msgid "Show users limit"
3742
  msgstr ""
3743
 
3744
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:701
3745
  msgid "username"
3746
  msgstr ""
3747
 
3748
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:703
3749
  msgid "email"
3750
  msgstr ""
3751
 
3752
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:705
3753
  #, php-format
3754
  msgid "recipients %s"
3755
  msgstr ""
3756
 
3757
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:755
3758
  msgid "To:"
3759
  msgstr ""
3760
 
3761
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/addons/transfer/myCRED-addon-transfer.php:761
3762
  msgid "Amount:"
3763
  msgstr ""
3764
 
3765
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:26
3766
  #, php-format
3767
  msgid ""
3768
  "Thank you for choosing %s as your points management tool!<br />I hope you "
3769
  "have as much fun using it as I had developing it."
3770
  msgstr ""
3771
 
3772
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:37
3773
  msgid "What&#8217;s New"
3774
  msgstr ""
3775
 
3776
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:39
3777
  msgid "Credits"
3778
  msgstr ""
3779
 
3780
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:79
3781
  #, php-format
3782
  msgid "Welcome to %s %s"
3783
  msgstr ""
3784
 
3785
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:83
3786
  msgid "New Features"
3787
  msgstr ""
3788
 
3789
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:86
3790
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:27
3791
  #, php-format
3792
  msgid "%s Right Now"
3793
  msgstr ""
3794
 
3795
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:87
3796
  msgid ""
3797
  "This new Dashboard widget gives you an overview of %_plural% gained or lost "
3798
  "by your users along with a few other summaries based on your logs content."
3799
  msgstr ""
3800
 
3801
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:90
3802
  msgid "YouTube Iframe API"
3803
  msgstr ""
3804
 
3805
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:91
3806
  msgid ""
3807
  "The \"%plural% for watching videos\" hook has been updated to use the "
3808
  "YouTube Iframe API which allows you to embed videos that can also be viewed "
3809
  "on mobile devices."
3810
  msgstr ""
3811
 
3812
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:94
3813
  msgid "Added Support"
3814
  msgstr ""
3815
 
3816
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:97
3817
  msgid "SimplePress"
3818
  msgstr ""
3819
 
3820
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:98
3821
  #, php-format
3822
  msgid "As of 1.3.3, %s has a built in support for SimplePress!"
3823
  msgstr ""
3824
 
3825
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:98
3826
  msgid ""
3827
  "Once you have installed SimplePress, you will find the \"SimplePress\" hook "
3828
  "on your Hooks page. You can award or deduct %_plural% for new topics and "
3829
  "topic posts."
3830
  msgstr ""
3831
 
3832
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:102
3833
  msgid ""
3834
  "With WordPress Social Invitations aka WSI you can enhance your site by "
3835
  "letting your users to invite their social network friends. This plugin works "
3836
  "perfectly with Buddypress and also hooks into Invite Anyone Plugin."
3837
  msgstr ""
3838
 
3839
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:103
3840
  msgid ""
3841
  "Please consult the plugins website for information on how to install and "
3842
  "setup this plugin."
3843
  msgstr ""
3844
 
3845
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:106
3846
  msgid "Improvements"
3847
  msgstr ""
3848
 
3849
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:110
3850
  msgid ""
3851
  "The transfer add-on has received several improvements which gives you must "
3852
  "better control of customizing your setup."
3853
  msgstr ""
3854
 
3855
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:114
3856
  msgid ""
3857
  "The ranks add-on has received several bug fixes, especially if you are "
3858
  "assigning ranks according to your users total accumilated points and not "
3859
  "their current balance."
3860
  msgstr ""
3861
 
3862
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:115
3863
  msgid ""
3864
  "If you have been experiencing issues with users not getting the correct "
3865
  "rank, please make sure you \"Calculate Totals\" to fix the issue!"
3866
  msgstr ""
3867
 
3868
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:118
3869
  msgid "Events Management"
3870
  msgstr ""
3871
 
3872
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:119
3873
  msgid ""
3874
  "Fixed the issue with users not being able to pay for events in the free "
3875
  "version, if attendance is pre-approved."
3876
  msgstr ""
3877
 
3878
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:142
3879
  #, php-format
3880
  msgid "%s Users"
3881
  msgstr ""
3882
 
3883
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:145
3884
  msgid "Bug Finders"
3885
  msgstr ""
3886
 
3887
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:146
3888
  msgid ""
3889
  "Users who have taken the time to report bugs helping me improve this plugin."
3890
  msgstr ""
3891
 
3892
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:153
3893
  msgid "Plugin Translators"
3894
  msgstr ""
3895
 
3896
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:154
3897
  msgid "Users who have helped with translating this plugin."
3898
  msgstr ""
3899
 
3900
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:160
3901
  msgid "Find out more"
3902
  msgstr ""
3903
 
3904
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-about.php:161
3905
  #, php-format
3906
  msgid ""
3907
  "You can always find more information about this plugin on the %s <a href=\"%s"
3908
  "\">website</a>."
3909
  msgstr ""
3910
 
3911
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:68
3912
  msgid "User is excluded"
3913
  msgstr ""
3914
 
3915
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:73
3916
  msgid "Log Entry can not be empty"
3917
  msgstr ""
3918
 
3919
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:77
3920
  msgid "Amount can not be zero"
3921
  msgstr ""
3922
 
3923
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:176
3924
  msgid "Excluded"
3925
  msgstr ""
3926
 
3927
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:183
3928
  msgid "History"
3929
  msgstr ""
3930
 
3931
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:184
3932
  msgid "Adjust"
3933
  msgstr ""
3934
 
3935
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:235
3936
  #, php-format
3937
  msgid "My current %singular% balance"
3938
  msgstr ""
3939
 
3940
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:258
3941
  msgid "Adjust Your Balance"
3942
  msgstr ""
3943
 
3944
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:260
3945
  msgid "Adjust Users Balance"
3946
  msgstr ""
3947
 
3948
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:267
3949
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:344
3950
  msgid "required"
3951
  msgstr ""
3952
 
3953
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:269
3954
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:346
3955
  msgid "optional"
3956
  msgstr ""
3957
 
3958
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:275
3959
  msgid "Log description for adjustment"
3960
  msgstr ""
3961
 
3962
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:276
3963
  msgid "Update"
3964
  msgstr ""
3965
 
3966
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:277
3967
  msgid "Description is required!"
3968
  msgstr ""
3969
 
3970
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:282
3971
  msgid "Users Current Balance"
3972
  msgstr ""
3973
 
3974
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:355
3975
  msgid "A positive or negative value"
3976
  msgstr ""
3977
 
3978
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-admin.php:357
3979
  msgid "Update Balance"
3980
  msgstr ""
3981
 
3982
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:77
3983
  msgid "Point"
3984
  msgstr ""
3985
 
3986
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:78
3987
  msgid "Points"
3988
  msgstr ""
3989
 
3990
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:401
3991
  msgid "Deleted"
3992
  msgstr ""
3993
 
3994
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:536
3995
  msgid "Deleted Item"
3996
  msgstr ""
3997
 
3998
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:1458
3999
  msgid "ref empty"
4000
  msgstr ""
4001
 
4002
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:1466
4003
  msgid "incorrect user id format"
4004
  msgstr ""
4005
 
4006
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:1479
4007
  msgid "incorrect unix timestamp (from):"
4008
  msgstr ""
4009
 
4010
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-functions.php:1488
4011
  msgid "incorrect unix timestamp (to):"
4012
  msgstr ""
4013
 
4014
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:38
4015
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
4016
  msgstr ""
4017
 
4018
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:43
4019
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4020
  msgstr ""
4021
 
4022
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:48
4023
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4024
  msgstr ""
4025
 
4026
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:53
4027
  msgid ""
4028
  "Sorry but your WordPress installation does not reach the minimum "
4029
  "requirements for running myCRED. The following errors were given:"
4030
  msgstr ""
4031
 
4032
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:265
4033
  msgid "myCRED needs your attention."
4034
  msgstr ""
4035
 
4036
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:265
4037
  msgid "Run Setup"
4038
  msgstr ""
4039
 
4040
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:277
4041
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:278
4042
  msgid "myCRED Setup"
4043
  msgstr ""
4044
 
4045
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:423
4046
  msgid "Step"
4047
  msgstr ""
4048
 
4049
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:446
4050
  msgid ""
4051
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4052
  "points format, layout and security settings."
4053
  msgstr ""
4054
 
4055
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:447
4056
  msgid "Begin Setup"
4057
  msgstr ""
4058
 
4059
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:504
4060
  msgid "Select the format you want to use for your points."
4061
  msgstr ""
4062
 
4063
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:505
4064
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:202
4065
  msgid "Format"
4066
  msgstr ""
4067
 
4068
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:508
4069
  msgid "Separators"
4070
  msgstr ""
4071
 
4072
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:518
4073
  msgid "Decimals"
4074
  msgstr ""
4075
 
4076
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:520
4077
  msgid "Use zero for no decimals."
4078
  msgstr ""
4079
 
4080
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:523
4081
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:252
4082
  msgid "Presentation"
4083
  msgstr ""
4084
 
4085
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:526
4086
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:239
4087
  msgid "Name (Singular)"
4088
  msgstr ""
4089
 
4090
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:530
4091
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:244
4092
  msgid "Name (Plural)"
4093
  msgstr ""
4094
 
4095
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:536
4096
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:255
4097
  msgid "Prefix"
4098
  msgstr ""
4099
 
4100
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:544
4101
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:263
4102
  msgid "Suffix"
4103
  msgstr ""
4104
 
4105
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:549
4106
  msgid "Cancel Setup"
4107
  msgstr ""
4108
 
4109
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:549
4110
  msgid "Cancel"
4111
  msgstr ""
4112
 
4113
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:549
4114
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:637
4115
  msgid "Next"
4116
  msgstr ""
4117
 
4118
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:581
4119
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:271
4120
  msgid "Security"
4121
  msgstr ""
4122
 
4123
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:584
4124
  msgid "Edit Settings Capability"
4125
  msgstr ""
4126
 
4127
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:588
4128
  msgid "Edit Users %plural% Capability"
4129
  msgstr ""
4130
 
4131
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:592
4132
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:284
4133
  msgid "Maximum %plural% payouts"
4134
  msgstr ""
4135
 
4136
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:594
4137
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:286
4138
  msgid ""
4139
  "As an added security, you can set the maximum amount a user can gain or "
4140
  "loose in a single instance. If used, make sure this is the maximum amount a "
4142
  "disable."
4143
  msgstr ""
4144
 
4145
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:601
4146
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:293
4147
  msgid "Exclude those who can \"Edit Settings\"."
4148
  msgstr ""
4149
 
4150
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:605
4151
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:297
4152
  msgid "Exclude those who can \"Edit Users %plural%\"."
4153
  msgstr ""
4154
 
4155
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:608
4156
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:301
4157
  msgid "Exclude the following user IDs:"
4158
  msgstr ""
4159
 
4160
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:612
4161
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:306
4162
  msgid "Rankings"
4163
  msgstr ""
4164
 
4165
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:616
4166
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:310
4167
  msgid "Update rankings each time a users balance changes."
4168
  msgstr ""
4169
 
4170
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:620
4171
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:314
4172
  msgid "Update rankings once a day."
4173
  msgstr ""
4174
 
4175
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:624
4176
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:318
4177
  msgid "Update rankings once a week."
4178
  msgstr ""
4179
 
4180
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:628
4181
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:322
4182
  msgid "Update rankings on a specific date."
4183
  msgstr ""
4184
 
4185
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:632
4186
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:277
4187
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:326
4188
  msgid "Date"
4189
  msgstr ""
4190
 
4191
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:656
4192
  msgid "Ready"
4193
  msgstr ""
4194
 
4195
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:657
4196
  msgid "Almost done! Click the button below to finish this setup."
4197
  msgstr ""
4198
 
4199
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-install.php:658
4200
  msgid "Install & Run"
4201
  msgstr ""
4202
 
4203
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:279
4204
  msgid "Entry"
4205
  msgstr ""
4206
 
4207
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:379
4208
  msgid "User Missing"
4209
  msgstr ""
4210
 
4211
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:418
4212
  msgid "No log entries found"
4213
  msgstr ""
4214
 
4215
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:433
4216
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:435
4217
  msgid "Search Log"
4218
  msgstr ""
4219
 
4220
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-log.php:434
4221
  msgid "search log entries"
4222
  msgstr ""
4223
 
4224
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:60
4225
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:61
4226
  msgid "Network Settings"
4227
  msgstr ""
4228
 
4229
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:158
4230
  #, php-format
4231
  msgid "%s Network"
4232
  msgstr ""
4233
 
4234
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:164
4235
  #, php-format
4236
  msgid "Note! %s has not yet been setup."
4237
  msgstr ""
4238
 
4239
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:168
4240
  msgid "Network Settings Updated"
4241
  msgstr ""
4242
 
4243
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:170
4244
  #, php-format
4245
  msgid "Configure network settings for %s."
4246
  msgstr ""
4247
 
4248
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:177
4249
  msgid "Master Template"
4250
  msgstr ""
4251
 
4252
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:181
4253
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:195
4254
  msgid "Yes"
4255
  msgstr ""
4256
 
4257
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:185
4258
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:199
4259
  msgid "No"
4260
  msgstr ""
4261
 
4262
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:188
4263
  #, php-format
4264
  msgid ""
4265
  "If enabled, %s will use your main site's settings for all other sites in "
4266
  "your network."
4267
  msgstr ""
4268
 
4269
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:191
4270
  msgid "Central Logging"
4271
  msgstr ""
4272
 
4273
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:202
4274
  #, php-format
4275
  msgid "If enabled, %s will log all site actions in your main site's log."
4276
  msgstr ""
4277
 
4278
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:205
4279
  msgid "Site Block"
4280
  msgstr ""
4281
 
4282
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:209
4283
  #, php-format
4284
  msgid "Comma separated list of blog ids where %s is to be disabled."
4285
  msgstr ""
4286
 
4287
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-network.php:218
4288
  msgid "Save Network Settings"
4289
  msgstr ""
4290
 
4291
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:39
4292
  msgid "Reference Occurrences"
4293
  msgstr ""
4294
 
4295
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:47
4296
  msgid "%singular% Totals"
4297
  msgstr ""
4298
 
4299
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:78
4300
  msgid "no modules shown"
4301
  msgstr ""
4302
 
4303
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:148
4304
  msgid "Show"
4305
  msgstr ""
4306
 
4307
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:169
4308
  msgid "No modules found"
4309
  msgstr ""
4310
 
4311
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:296
4312
  msgid "Your log is empty"
4313
  msgstr ""
4314
 
4315
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:312
4316
  msgid "Number"
4317
  msgstr ""
4318
 
4319
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:346
4320
  msgid "Earned by users"
4321
  msgstr ""
4322
 
4323
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:350
4324
  msgid "Taken from users"
4325
  msgstr ""
4326
 
4327
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:359
4328
  msgid "Purchased by users"
4329
  msgstr ""
4330
 
4331
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:370
4332
  msgid "Transferred between users"
4333
  msgstr ""
4334
 
4335
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:381
4336
  msgid "Used as payment"
4337
  msgstr ""
4338
 
4339
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-overview.php:390
4340
  msgid ""
4341
  "Note that manual balance adjustments without a log entry are not counted."
4342
  msgstr ""
4343
 
4344
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:523
4345
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4346
  msgstr ""
4347
 
4348
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:526
4349
  msgid "Click Update Settings to load the Remote API settings."
4350
  msgstr ""
4351
 
4352
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:528
4353
  msgid "Allow Remote Access"
4354
  msgstr ""
4355
 
4356
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:549
4357
  msgid "Remote Access"
4358
  msgstr ""
4359
 
4360
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:551
4361
  msgid "API Key"
4362
  msgstr ""
4363
 
4364
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:554
4365
  msgid "Key"
4366
  msgstr ""
4367
 
4368
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:555
4369
  msgid "min. 12 characters"
4370
  msgstr ""
4371
 
4372
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:556
4373
  msgid "Required for this feature to work!<br />Minimum 12 characters."
4374
  msgstr ""
4375
 
4376
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:559
4377
  msgid "Key Length"
4378
  msgstr ""
4379
 
4380
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:564
4381
  msgid "Generate New Key"
4382
  msgstr ""
4383
 
4384
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:566
4385
  msgid "Warning!"
4386
  msgstr ""
4387
 
4388
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:566
4389
  msgid ""
4390
  "Keep this key safe! Those you share this key with will be able to remotely "
4391
  "deduct / add / transfer %plural%!"
4392
  msgstr ""
4393
 
4394
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:568
4395
  msgid "Incoming URI"
4396
  msgstr ""
4397
 
4398
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:572
4399
  msgid ""
4400
  "The incoming call address. Remote calls made to any other URL will be "
4401
  "ignored."
4402
  msgstr ""
4403
 
4404
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:575
4405
  msgid "Debug Mode"
4406
  msgstr ""
4407
 
4408
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-remote.php:578
4409
  msgid ""
4410
  "Remember to disable when not used to prevent mischievous calls from learning "
4411
  "about your setup!"
4412
  msgstr ""
4413
 
4414
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:147
4415
  msgid "Leaderboard is empty."
4416
  msgstr ""
4417
 
4418
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:226
4419
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:351
4420
  msgid "Amount missing!"
4421
  msgstr ""
4422
 
4423
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:229
4424
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:359
4425
  msgid "Log Template Missing!"
4426
  msgstr ""
4427
 
4428
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:290
4429
  msgid "Anchor missing URL!"
4430
  msgstr ""
4431
 
4432
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:355
4433
  msgid "User ID missing for recipient."
4434
  msgstr ""
4435
 
4436
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:409
4437
  msgid "Sent"
4438
  msgstr ""
4439
 
4440
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:410
4441
  msgid "Error - Try Again"
4442
  msgstr ""
4443
 
4444
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-shortcodes.php:508
4445
  msgid "A video ID is required for this shortcode"
4446
  msgstr ""
4447
 
4448
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:21
4449
  #, php-format
4450
  msgid "Show the current users %s balance"
4451
  msgstr ""
4452
 
4453
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:23
4454
  #, php-format
4455
  msgid "(%s) My Balance"
4456
  msgstr ""
4457
 
4458
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:158
4459
  msgid "My Balance"
4460
  msgstr ""
4461
 
4462
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:169
4463
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4464
  msgstr ""
4465
 
4466
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:193
4467
  msgid "Layout"
4468
  msgstr ""
4469
 
4470
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:195
4471
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:218
4472
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:228
4473
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:377
4474
  msgid "See the help tab for available template tags."
4475
  msgstr ""
4476
 
4477
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:200
4478
  msgid "Include users ranking"
4479
  msgstr ""
4480
 
4481
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:204
4482
  msgid ""
4483
  "This will be appended after the balance. See the help tab for available "
4484
  "template tags."
4485
  msgstr ""
4486
 
4487
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:210
4488
  msgid "Include history"
4489
  msgstr ""
4490
 
4491
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:212
4492
  msgid "History Title"
4493
  msgstr ""
4494
 
4495
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:214
4496
  msgid "Number of entires"
4497
  msgstr ""
4498
 
4499
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:216
4500
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:375
4501
  msgid "Row layout"
4502
  msgstr ""
4503
 
4504
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:224
4505
  msgid "Show message when not logged in"
4506
  msgstr ""
4507
 
4508
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:226
4509
  msgid "Message"
4510
  msgstr ""
4511
 
4512
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:300
4513
  #, php-format
4514
  msgid "Show a list of users sorted by their %s balance"
4515
  msgstr ""
4516
 
4517
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:302
4518
  #, php-format
4519
  msgid "(%s) Leaderboard"
4520
  msgstr ""
4521
 
4522
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:355
4523
  msgid "Leaderboard"
4524
  msgstr ""
4525
 
4526
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:368
4527
  msgid "Visible to non-members"
4528
  msgstr ""
4529
 
4530
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:371
4531
  msgid "Number of users"
4532
  msgstr ""
4533
 
4534
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:380
4535
  msgid "Offset"
4536
  msgstr ""
4537
 
4538
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:382
4539
  msgid "Optional offset of order. Use zero to return the first in the list."
4540
  msgstr ""
4541
 
4542
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:385
4543
  msgid "Order"
4544
  msgstr ""
4545
 
4546
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:389
4547
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:195
4548
  msgid "Ascending"
4549
  msgstr ""
4550
 
4551
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/includes/mycred-widgets.php:390
4552
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:195
4553
  msgid "Descending"
4554
  msgstr ""
4555
 
4556
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:24
4557
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:25
4558
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:26
4559
  msgid "Add-ons"
4560
  msgstr ""
4561
 
4562
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:261
4563
  #, php-format
4564
  msgid "%s Add-ons"
4565
  msgstr ""
4566
 
4567
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:266
4568
  msgid "Add-on Activated"
4569
  msgstr ""
4570
 
4571
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:268
4572
  msgid "Add-on Deactivated"
4573
  msgstr ""
4574
 
4575
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:271
4576
  msgid "Add-ons can expand your current installation with further features."
4577
  msgstr ""
4578
 
4579
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:290
4580
  #, php-format
4581
  msgid "You can find more add-ons in our %s."
4582
  msgstr ""
4583
 
4584
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:290
4585
  msgid "online store"
4586
  msgstr ""
4587
 
4588
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:310
4589
  msgid "Deactivate Add-on"
4590
  msgstr ""
4591
 
4592
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:311
4593
  msgid "Deactivate"
4594
  msgstr ""
4595
 
4596
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:316
4597
  msgid "Activate Add-on"
4598
  msgstr ""
4599
 
4600
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:317
4601
  msgid "Activate"
4602
  msgstr ""
4603
 
4604
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:334
4605
  msgid "Version"
4606
  msgstr ""
4607
 
4608
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:337
4609
  msgid "By"
4610
  msgstr ""
4611
 
4612
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-addons.php:340
4613
  msgid "Documentation"
4614
  msgstr ""
4615
 
4616
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:56
4617
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:76
4618
  msgid "Access denied for this action"
4619
  msgstr ""
4620
 
4621
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:93
4622
  msgid "Accounts successfully reset"
4623
  msgstr ""
4624
 
4625
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:124
4626
  msgid "No users found to export"
4627
  msgstr ""
4628
 
4629
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:222
4630
  #, php-format
4631
  msgid "%s Settings"
4632
  msgstr ""
4633
 
4634
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:229
4635
  msgid "Adjust your core or add-on settings. Follow us on:"
4636
  msgstr ""
4637
 
4638
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:229
4639
  msgid "Facebook"
4640
  msgstr ""
4641
 
4642
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:229
4643
  msgid "Google Plus"
4644
  msgstr ""
4645
 
4646
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:234
4647
  msgid "Core Settings"
4648
  msgstr ""
4649
 
4650
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:236
4651
  msgid "Name"
4652
  msgstr ""
4653
 
4654
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:241
4655
  msgid "Accessible though the %singular% template tag."
4656
  msgstr ""
4657
 
4658
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:246
4659
  msgid "Accessible though the %plural% template tag."
4660
  msgstr ""
4661
 
4662
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:249
4663
  msgid "Tip"
4664
  msgstr ""
4665
 
4666
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:249
4667
  msgid ""
4668
  "Adding an underscore at the beginning of template tag for names will return "
4669
  "them in lowercase. i.e. %_singular%"
4670
  msgstr ""
4671
 
4672
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:267
4673
  msgid "Separator"
4674
  msgstr ""
4675
 
4676
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:274
4677
  msgid "Edit Settings"
4678
  msgstr ""
4679
 
4680
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:276
4681
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:281
4682
  msgid "Capability to check for."
4683
  msgstr ""
4684
 
4685
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:279
4686
  msgid "Edit Users %plural%"
4687
  msgstr ""
4688
 
4689
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:303
4690
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4691
  msgstr ""
4692
 
4693
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:343
4694
  msgid "Management"
4695
  msgstr ""
4696
 
4697
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:345
4698
  msgid "The Log"
4699
  msgstr ""
4700
 
4701
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:348
4702
  msgid "Table Name"
4703
  msgstr ""
4704
 
4705
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:352
4706
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:92
4707
  msgid "Entries"
4708
  msgstr ""
4709
 
4710
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:357
4711
  msgid "Empty Log"
4712
  msgstr ""
4713
 
4714
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:363
4715
  msgid "User Meta Key"
4716
  msgstr ""
4717
 
4718
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:372
4719
  msgid "Set all to zero"
4720
  msgstr ""
4721
 
4722
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:372
4723
  msgid "CSV Export"
4724
  msgstr ""
4725
 
4726
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:390
4727
  msgid "Identify users by"
4728
  msgstr ""
4729
 
4730
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:395
4731
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:188
4732
  msgid "User ID"
4733
  msgstr ""
4734
 
4735
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:396
4736
  msgid "User Email"
4737
  msgstr ""
4738
 
4739
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:397
4740
  msgid "User Login"
4741
  msgstr ""
4742
 
4743
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:404
4744
  msgid ""
4745
  "Use ID if you intend to use this export as a backup of your current site "
4746
  "while Email is recommended if you want to export to a different site."
4747
  msgstr ""
4748
 
4749
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:407
4750
  msgid "Import Log Entry"
4751
  msgstr ""
4752
 
4753
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:409
4754
  #, php-format
4755
  msgid ""
4756
  "Optional log entry to use if you intend to import this file in a different "
4757
  "%s installation."
4758
  msgstr ""
4759
 
4760
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-general.php:412
4761
  msgid "Export"
4762
  msgstr ""
4763
 
4764
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:23
4765
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:24
4766
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:25
4767
  msgid "Hooks"
4768
  msgstr ""
4769
 
4770
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:85
4771
  msgid "%plural% for registrations"
4772
  msgstr ""
4773
 
4774
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:86
4775
  msgid "Award %_plural% for users joining your website."
4776
  msgstr ""
4777
 
4778
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:92
4779
  msgid "%plural% for logins"
4780
  msgstr ""
4781
 
4782
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:93
4783
  msgid ""
4784
  "Award %_plural% for logging in to your website. You can also set an optional "
4785
  "limit."
4786
  msgstr ""
4787
 
4788
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:99
4789
  msgid "%plural% for publishing content"
4790
  msgstr ""
4791
 
4792
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:100
4793
  msgid ""
4794
  "Award %_plural% for publishing content on your website. If your custom post "
4795
  "type is not shown bellow, make sure it is set to \"Public\"."
4796
  msgstr ""
4797
 
4798
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:106
4799
  msgid "%plural% for comments"
4800
  msgstr ""
4801
 
4802
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:107
4803
  msgid "Award %_plural% for making comments."
4804
  msgstr ""
4805
 
4806
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:113
4807
  msgid "%plural% for clicking on links"
4808
  msgstr ""
4809
 
4810
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:114
4811
  msgid ""
4812
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4813
  "shortcode."
4814
  msgstr ""
4815
 
4816
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:120
4817
  msgid "%plural% for viewing Videos"
4818
  msgstr ""
4819
 
4820
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:121
4821
  msgid ""
4822
  "Award %_plural% to users who watches videos embedded using the "
4823
  "[mycred_video] shortcode."
4824
  msgstr ""
4825
 
4826
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:156
4827
  #, php-format
4828
  msgid "%s Hooks"
4829
  msgstr ""
4830
 
4831
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:160
4832
  msgid ""
4833
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4834
  "depending on their actions around your website."
4835
  msgstr ""
4836
 
4837
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:450
4838
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:147
4839
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:168
4840
  msgid "Limit"
4841
  msgstr ""
4842
 
4843
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:557
4844
  msgid "%plural% for Posts"
4845
  msgstr ""
4846
 
4847
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:567
4848
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:580
4849
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:615
4850
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:268
4851
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:278
4852
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:442
4853
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:455
4854
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:468
4855
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:486
4856
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:499
4857
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:518
4858
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:546
4859
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-contact-form7.php:138
4860
  msgid "Available template tags: General, Post"
4861
  msgstr ""
4862
 
4863
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:570
4864
  msgid "%plural% for Pages"
4865
  msgstr ""
4866
 
4867
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:605
4868
  msgid "%plural% for %s"
4869
  msgstr ""
4870
 
4871
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:921
4872
  msgid "Approved Comment"
4873
  msgstr ""
4874
 
4875
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:924
4876
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:941
4877
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:958
4878
  msgid "Comment Author"
4879
  msgstr ""
4880
 
4881
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:928
4882
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:945
4883
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:962
4884
  msgid "Content Author"
4885
  msgstr ""
4886
 
4887
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:935
4888
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:952
4889
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:969
4890
  msgid "Available template tags: General, Comment"
4891
  msgstr ""
4892
 
4893
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:938
4894
  msgid "Comment Marked SPAM"
4895
  msgstr ""
4896
 
4897
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:955
4898
  msgid "Trashed / Unapproved Comments"
4899
  msgstr ""
4900
 
4901
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:975
4902
  msgid "Limit per post"
4903
  msgstr ""
4904
 
4905
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:977
4906
  msgid ""
4907
  "The number of comments per post that grants %_plural% to the comment author. "
4908
  "Use zero for unlimited."
4909
  msgstr ""
4910
 
4911
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:981
4912
  msgid "Limit per day"
4913
  msgstr ""
4914
 
4915
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:983
4916
  msgid ""
4917
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4918
  msgstr ""
4919
 
4920
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:988
4921
  msgid ""
4922
  "%plural% is to be awarded even when comment authors reply to their own "
4923
  "comment."
4924
  msgstr ""
4925
 
4926
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1055
4927
  msgid "Once for each unique URL"
4928
  msgstr ""
4929
 
4930
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1056
4931
  msgid "Once for each unique link id"
4932
  msgstr ""
4933
 
4934
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1248
4935
  msgid ""
4936
  "The default amount to award for clicking on links. You can override this in "
4937
  "the shortcode."
4938
  msgstr ""
4939
 
4940
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1255
4941
  msgid ""
4942
  "Available template tags: General and custom tags: %url%, %title% or %id%."
4943
  msgstr ""
4944
 
4945
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1266
4946
  msgid "Note!"
4947
  msgstr ""
4948
 
4949
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1266
4950
  msgid ""
4951
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4952
  "generate one automatically based on the value set under href. If you are "
4954
  "by ID."
4955
  msgstr ""
4956
 
4957
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1579
4958
  msgid "Amount to award for viewing videos."
4959
  msgstr ""
4960
 
4961
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1589
4962
  msgid "Award Logic"
4963
  msgstr ""
4964
 
4965
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1591
4966
  msgid "Select when %_plural% should be awarded or deducted."
4967
  msgstr ""
4968
 
4969
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1592
4970
  msgid "Play - As soon as video starts playing."
4971
  msgstr ""
4972
 
4973
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1593
4974
  msgid "Full - First when the entire video has played."
4975
  msgstr ""
4976
 
4977
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1594
4978
  msgid "Interval - For each x number of seconds watched."
4979
  msgstr ""
4980
 
4981
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1599
4982
  msgid "Number of seconds"
4983
  msgstr ""
4984
 
4985
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1606
4986
  msgid "Leniency"
4987
  msgstr ""
4988
 
4989
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1608
4990
  msgid ""
4991
  "The maximum percentage a users view of a movie can differ from the actual "
4992
  "length."
4993
  msgstr ""
4994
 
4995
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-hooks.php:1611
4996
  msgid ""
4997
  "Do not set this value to zero! A lot of thing can happen while a user "
4998
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4999
  "buffering or play back errors."
5000
  msgstr ""
5001
 
5002
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:24
5003
  msgid "Activity Log"
5004
  msgstr ""
5005
 
5006
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:175
5007
  msgid "Show all references"
5008
  msgstr ""
5009
 
5010
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:194
5011
  msgid "Show in order"
5012
  msgstr ""
5013
 
5014
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:207
5015
  msgid "Filter"
5016
  msgstr ""
5017
 
5018
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:233
5019
  #, php-format
5020
  msgid "Showing %d %s"
5021
  msgstr ""
5022
 
5023
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:233
5024
  msgid "entry"
5025
  msgstr ""
5026
 
5027
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/modules/mycred-module-log.php:252
5028
  msgid "Search results for"
5029
  msgstr ""
5030
 
5031
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:16
5032
  msgid "BadgeOS"
5033
  msgstr ""
5034
 
5035
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:17
5036
  msgid ""
5037
  "Default settings for each BadgeOS Achievement type. These settings may be "
5038
  "overridden for individual achievement type."
5039
  msgstr ""
5040
 
5041
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:93
5042
  #, php-format
5043
  msgid ""
5044
  "Please setup your <a href=\"%s\">default settings</a> before using this "
5045
  "feature."
5046
  msgstr ""
5047
 
5048
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:104
5049
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:106
5050
  msgid "%plural% to Award"
5051
  msgstr ""
5052
 
5053
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:108
5054
  msgid "Use zero to disable"
5055
  msgstr ""
5056
 
5057
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:119
5058
  msgid "Deduction Log Template"
5059
  msgstr ""
5060
 
5061
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:255
5062
  #, php-format
5063
  msgid "Default %s for %s"
5064
  msgstr ""
5065
 
5066
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:262
5067
  msgid "Use zero to disable users gaining %_plural%"
5068
  msgstr ""
5069
 
5070
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:266
5071
  msgid "Default Log template"
5072
  msgstr ""
5073
 
5074
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-badgeOS.php:272
5075
  msgid "Deduct %_plural% if user looses "
5076
  msgstr ""
5077
 
5078
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:16
5079
  msgid "bbPress"
5080
  msgstr ""
5081
 
5082
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:17
5083
  msgid "Awards %_plural% for bbPress actions."
5084
  msgstr ""
5085
 
5086
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:433
5087
  msgid "%plural% for New Forum"
5088
  msgstr ""
5089
 
5090
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:446
5091
  msgid "%plural% for Forum Deletion"
5092
  msgstr ""
5093
 
5094
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:459
5095
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:306
5096
  msgid "%plural% for New Topic"
5097
  msgstr ""
5098
 
5099
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:473
5100
  msgid "Forum authors can receive %_plural% for creating new topics."
5101
  msgstr ""
5102
 
5103
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:477
5104
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:537
5105
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:319
5106
  msgid "%plural% for Topic Deletion"
5107
  msgstr ""
5108
 
5109
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:490
5110
  msgid "%plural% for Favorited Topic"
5111
  msgstr ""
5112
 
5113
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:505
5114
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:529
5115
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:352
5116
  msgid "Use zero for unlimited"
5117
  msgstr ""
5118
 
5119
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:509
5120
  msgid "%plural% for New Reply"
5121
  msgstr ""
5122
 
5123
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:523
5124
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5125
  msgstr ""
5126
 
5127
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-bbPress.php:533
5128
  msgid "Show users %_plural% balance in replies"
5129
  msgstr ""
5130
 
5131
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-contact-form7.php:16
5132
  msgid "Contact Form 7 Form Submissions"
5133
  msgstr ""
5134
 
5135
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-contact-form7.php:17
5136
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5137
  msgstr ""
5138
 
5139
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-contact-form7.php:108
5140
  msgid "No forms found."
5141
  msgstr ""
5142
 
5143
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:16
5144
  msgid "Events Manager"
5145
  msgstr ""
5146
 
5147
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:17
5148
  msgid "Awards %_plural% for users attending events."
5149
  msgstr ""
5150
 
5151
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:140
5152
  msgid "Attending Event"
5153
  msgstr ""
5154
 
5155
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:150
5156
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:163
5157
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:134
5158
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:147
5159
  msgid "Available template tags: General and Post Related"
5160
  msgstr ""
5161
 
5162
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-events-manager-light.php:153
5163
  msgid "Cancelling Attendance"
5164
  msgstr ""
5165
 
5166
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:16
5167
  msgid "GD Star Rating"
5168
  msgstr ""
5169
 
5170
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:17
5171
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5172
  msgstr ""
5173
 
5174
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:99
5175
  msgid "Rating"
5176
  msgstr ""
5177
 
5178
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-gd-star-rating.php:112
5179
  msgid "Up / Down Vote"
5180
  msgstr ""
5181
 
5182
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:16
5183
  msgid "Invite Anyone Plugin"
5184
  msgstr ""
5185
 
5186
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:17
5187
  msgid ""
5188
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5189
  "accepted."
5190
  msgstr ""
5191
 
5192
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:135
5193
  msgid "%plural% for Sending An Invite"
5194
  msgstr ""
5195
 
5196
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:151
5197
  msgid ""
5198
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5199
  msgstr ""
5200
 
5201
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:155
5202
  msgid "%plural% for Accepting An Invite"
5203
  msgstr ""
5204
 
5205
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:159
5206
  msgid "%plural% for each invited user that accepts an invitation."
5207
  msgstr ""
5208
 
5209
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-invite-anyone.php:172
5210
  msgid ""
5211
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5212
  "unlimited."
5213
  msgstr ""
5214
 
5215
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:16
5216
  msgid "Jetpack Subscriptions"
5217
  msgstr ""
5218
 
5219
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:17
5220
  msgid ""
5221
  "Awards %_plural% for users signing up for site or comment updates using "
5222
  "Jetpack."
5223
  msgstr ""
5224
 
5225
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:490
5226
  msgid "Site Subscriptions"
5227
  msgstr ""
5228
 
5229
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-jetpack.php:503
5230
  msgid "Comment Subscriptions"
5231
  msgstr ""
5232
 
5233
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:16
5234
  msgid "Simple:Press"
5235
  msgstr ""
5236
 
5237
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:17
5238
  msgid "Awards %_plural% for Simple:Press actions."
5239
  msgstr ""
5240
 
5241
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:315
5242
  msgid "Available template tag: General and %topic_name%"
5243
  msgstr ""
5244
 
5245
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:332
5246
  msgid "%plural% for New Topic Post"
5247
  msgstr ""
5248
 
5249
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:346
5250
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5251
  msgstr ""
5252
 
5253
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-simplepress.php:356
5254
  msgid "%plural% for Topic Post Deletion"
5255
  msgstr ""
5256
 
5257
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:16
5258
  msgid "WP Favorite Posts"
5259
  msgstr ""
5260
 
5261
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:17
5262
  msgid "Awards %_plural% for users adding posts to their favorites."
5263
  msgstr ""
5264
 
5265
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:124
5266
  msgid "Adding Content to Favorites"
5267
  msgstr ""
5268
 
5269
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-favorite-posts.php:137
5270
  msgid "Removing Content from Favorites"
5271
  msgstr ""
5272
 
5273
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-polls.php:16
5274
  msgid "WP-Polls"
5275
  msgstr ""
5276
 
5277
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-polls.php:17
5278
  msgid "Awards %_plural% for users voting in polls."
5279
  msgstr ""
5280
 
5281
+ #: /Users/gabriel/Sites/multisite/wp-content/plugins/mycred/plugins/mycred-hook-wp-polls.php:136
5282
  msgid ""
5283
  "Available template tags: General. You can also use %poll_id% and "
5284
  "%poll_question%."
modules/mycred-module-hooks.php CHANGED
@@ -275,6 +275,9 @@ if ( !class_exists( 'myCRED_Hook_Registration' ) ) {
275
  // Make sure user is not excluded
276
  if ( $this->core->exclude_user( $user_id ) === true ) return;
277
 
 
 
 
278
  // Execute
279
  $this->core->add_creds(
280
  'registration',
275
  // Make sure user is not excluded
276
  if ( $this->core->exclude_user( $user_id ) === true ) return;
277
 
278
+ // Make sure this is unique
279
+ if ( $this->core->has_entry( 'registration', $user_id, $user_id ) ) return;
280
+
281
  // Execute
282
  $this->core->add_creds(
283
  'registration',
mycred.php CHANGED
@@ -3,13 +3,13 @@
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.3.3.1
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 3.1
12
- * Tested up to: WP 3.8
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
@@ -20,7 +20,7 @@
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.3.3.1' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -86,7 +86,7 @@ function mycred_load() {
86
 
87
  do_action( 'mycred_ready' );
88
 
89
- add_action( 'init', 'mycred_init' );
90
  add_action( 'widgets_init', 'mycred_widgets_init' );
91
  add_action( 'admin_init', 'mycred_admin_init' );
92
  }
@@ -375,6 +375,10 @@ function mycred_admin_menu()
375
  $mycred = mycred_get_settings();
376
  $name = mycred_label( true );
377
 
 
 
 
 
378
  $pages = array();
379
  $pages[] = add_menu_page(
380
  $name,
@@ -382,7 +386,7 @@ function mycred_admin_menu()
382
  $mycred->edit_creds_cap(),
383
  'myCRED',
384
  '',
385
- ''
386
  );
387
 
388
  $about_label = sprintf( __( 'About %s', 'mycred' ), $name );
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.3.3.2
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 3.1
12
+ * Tested up to: WP 3.8.1
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
+ define( 'myCRED_VERSION', '1.3.3.2' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
86
 
87
  do_action( 'mycred_ready' );
88
 
89
+ add_action( 'init', 'mycred_init', 5 );
90
  add_action( 'widgets_init', 'mycred_widgets_init' );
91
  add_action( 'admin_init', 'mycred_admin_init' );
92
  }
375
  $mycred = mycred_get_settings();
376
  $name = mycred_label( true );
377
 
378
+ $icon = 'dashicons-star-filled';
379
+ if ( isset( $GLOBALS['wp_version'] ) && version_compare( $GLOBALS['wp_version'], '3.8', '<' ) )
380
+ $icon = '';
381
+
382
  $pages = array();
383
  $pages[] = add_menu_page(
384
  $name,
386
  $mycred->edit_creds_cap(),
387
  'myCRED',
388
  '',
389
+ apply_filters( 'mycred_icon_menu', $icon )
390
  );
391
 
392
  $about_label = sprintf( __( 'About %s', 'mycred' ), $name );
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce
4
  Requires at least: 3.1
5
- Tested up to: 3.8
6
- Stable tag: 1.3.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -118,8 +118,8 @@ Yes but if one of them is bought, all is shown. The mycred_sell_this shortcode w
118
 
119
  == Upgrade Notice ==
120
 
121
- = 1.3.3.1 =
122
- Compatibility issue with PHP 5.2.17 fix & bug fixes.
123
 
124
  == Other Notes ==
125
 
@@ -130,10 +130,20 @@ Compatibility issue with PHP 5.2.17 fix & bug fixes.
130
 
131
  = Language Contributors =
132
  * French - Chouf1 [Dan - BuddyPress France](http://bp-fr.net/)
 
 
133
 
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
 
137
  = 1.3.3.1 =
138
  * FIX - Dashboard widget is not compatible with PHP 5.2.17
139
  * FIX - Incorrect variable passed for mycred_get_published_ranks filter.
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress, woocommerce
4
  Requires at least: 3.1
5
+ Tested up to: 3.8.1
6
+ Stable tag: 1.3.3.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
118
 
119
  == Upgrade Notice ==
120
 
121
+ = 1.3.3.2 =
122
+ Security Update.
123
 
124
  == Other Notes ==
125
 
130
 
131
  = Language Contributors =
132
  * French - Chouf1 [Dan - BuddyPress France](http://bp-fr.net/)
133
+ * Vietnamese - Thu Hoai [Biz.O](http://bizover.net/)
134
+ * Persian - Mani (maniV-A)
135
 
136
 
137
  == Changelog ==
138
 
139
+ = 1.3.3.2 =
140
+ * FIX - Security issue with the buyCRED add-on. (Thank you Johnathan)
141
+ * FIX - Multiple points for registrations bug.
142
+ * FIX - Multisite issue with incorrect points are shown on sub sites.
143
+ * FIX - When using the Banking add-on and Ranks, the banking add-on will reset users ranks. (Thank you Bryan)
144
+ * FIX - When using the mycred_sell_this shortcode in a bbPress topic, the shortcode sells access to the forum the topic belongs to. (Thanks Gabriel Galvão)
145
+ * FIX - Issue with user related template tags when the user has been deleted.
146
+
147
  = 1.3.3.1 =
148
  * FIX - Dashboard widget is not compatible with PHP 5.2.17
149
  * FIX - Incorrect variable passed for mycred_get_published_ranks filter.