myCRED - Version 1.3.3.1

Version Description

Compatibility issue with PHP 5.2.17 fix & bug fixes.

=

Download this release

Release Info

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

Code changes from version 1.3.3 to 1.3.3.1

addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -164,7 +164,7 @@ if ( !class_exists( 'myCRED_Payment_Gateway' ) ) {
164
  /**
165
  * Purchase Page Header
166
  * @since 0.1
167
- * @version 1.0
168
  */
169
  public function purchase_header( $title = '', $reload = false ) { ?>
170
 
@@ -177,8 +177,8 @@ if ( !class_exists( 'myCRED_Payment_Gateway' ) ) {
177
  <?php if ( $reload ) echo '<meta http-equiv="refresh" content="2;url=' . $reload . '" />'; ?>
178
 
179
  <style type="text/css">
180
- html { text-align: center; background-color: #FCFCFC; }
181
- body { text-align: center; width: 50%; margin: 100px auto 48px auto; border-radius: 5px; border: 1px solid #dedede; padding: 32px 24px 24px 24px; background-color: white; font-family: Arial; }
182
  .tl { text-align: left; }
183
  .tc { text-align: center; }
184
  .tr { text-align: right; }
@@ -203,6 +203,8 @@ if ( !class_exists( 'myCRED_Payment_Gateway' ) ) {
203
  span { display: block; padding-top: 24px; }
204
  }
205
  </style>
 
 
206
  </head>
207
  <body>
208
  <?php
@@ -211,9 +213,10 @@ if ( !class_exists( 'myCRED_Payment_Gateway' ) ) {
211
  /**
212
  * Purchase Page Footer
213
  * @since 0.1
214
- * @version 1.0
215
  */
216
- public function purchase_footer() { ?>
 
217
 
218
  </body>
219
  </html>
164
  /**
165
  * Purchase Page Header
166
  * @since 0.1
167
+ * @version 1.1
168
  */
169
  public function purchase_header( $title = '', $reload = false ) { ?>
170
 
177
  <?php if ( $reload ) echo '<meta http-equiv="refresh" content="2;url=' . $reload . '" />'; ?>
178
 
179
  <style type="text/css">
180
+ html { text-align: center; background-color: #eee; }
181
+ body { text-align: center; width: 50%; margin: 100px auto 48px auto; -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13); box-shadow: 0 1px 3px rgba(0,0,0,0.13);border: 1px solid #dedede; padding: 32px 24px 24px 24px; background-color: white; font-family: "Open Sans", sans-serif; }
182
  .tl { text-align: left; }
183
  .tc { text-align: center; }
184
  .tr { text-align: right; }
203
  span { display: block; padding-top: 24px; }
204
  }
205
  </style>
206
+ <?php do_action( 'mycred_buy_cred_page_header', $title, $reload, $this->id ); ?>
207
+
208
  </head>
209
  <body>
210
  <?php
213
  /**
214
  * Purchase Page Footer
215
  * @since 0.1
216
+ * @version 1.1
217
  */
218
+ public function purchase_footer() {
219
+ do_action( 'mycred_buy_cred_page_footer', $this->id ); ?>
220
 
221
  </body>
222
  </html>
addons/buy-creds/gateways/paypal-standard.php CHANGED
@@ -29,12 +29,12 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
29
  /**
30
  * Process Handler
31
  * @since 0.1
32
- * @version 1.2
33
  */
34
  public function process() {
35
  // Prep
36
  $id = $this->id;
37
- $error = false;
38
  $log_entry = array();
39
 
40
  // PayPal Host
@@ -65,7 +65,6 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
65
  $attempt = 1;
66
  $result = '';
67
  // We will make a x number of curl attempts before finishing with a fsock.
68
- // Success ends loop.
69
  do {
70
 
71
  $call = curl_init( "https://$host/cgi-bin/webscr" );
@@ -112,6 +111,7 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
112
 
113
  } while ( $attempt <= $curl_attempts );
114
 
 
115
  $sales_data = $this->decode_sales_data( $data['custom'] );
116
  $s_data = explode( '|', $sales_data );
117
  // to|from|amount|cost|currency|token|extra
@@ -145,11 +145,8 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
145
  }
146
 
147
  // Verify Cost
148
- $amount = $this->core->number( $amount );
149
- $_cost = $amount*$this->prefs['exchange'];
150
- $_cost = number_format( $cost, 2, '.', '' );
151
- if ( $cost != $_cost ) {
152
- $log_entry[] = 'Amount mismatch: [' . $cost . '] [' . $_cost . ']';
153
  $error = true;
154
  }
155
 
@@ -179,6 +176,7 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
179
  $data
180
  );
181
 
 
182
  $log_entry[] = 'CREDs Added.';
183
  do_action( "mycred_buy_cred_{$id}_approved", $data );
184
  }
@@ -209,7 +207,7 @@ if ( !class_exists( 'myCRED_PayPal_Standard' ) ) {
209
  do_action( "mycred_buy_cred_{$id}_end", $log_entry, $data );
210
  unset( $data );
211
 
212
- die();
213
  }
214
 
215
  /**
29
  /**
30
  * Process Handler
31
  * @since 0.1
32
+ * @version 1.2.1
33
  */
34
  public function process() {
35
  // Prep
36
  $id = $this->id;
37
+ $error = $set = false;
38
  $log_entry = array();
39
 
40
  // PayPal Host
65
  $attempt = 1;
66
  $result = '';
67
  // We will make a x number of curl attempts before finishing with a fsock.
 
68
  do {
69
 
70
  $call = curl_init( "https://$host/cgi-bin/webscr" );
111
 
112
  } while ( $attempt <= $curl_attempts );
113
 
114
+ if ( ! isset( $data['custom'] ) || empty( $data['custom'] ) ) return;
115
  $sales_data = $this->decode_sales_data( $data['custom'] );
116
  $s_data = explode( '|', $sales_data );
117
  // to|from|amount|cost|currency|token|extra
145
  }
146
 
147
  // Verify Cost
148
+ if ( $cost != $data['mc_gross'] ) {
149
+ $log_entry[] = 'Amount mismatch: [' . $cost . '] [' . $data['mc_gross'] . ']';
 
 
 
150
  $error = true;
151
  }
152
 
176
  $data
177
  );
178
 
179
+ $set = true;
180
  $log_entry[] = 'CREDs Added.';
181
  do_action( "mycred_buy_cred_{$id}_approved", $data );
182
  }
207
  do_action( "mycred_buy_cred_{$id}_end", $log_entry, $data );
208
  unset( $data );
209
 
210
+ if ( $set ) die;
211
  }
212
 
213
  /**
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -13,7 +13,7 @@ $mycred_addon_header_translate = array(
13
  __( '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.', 'mycred' )
14
  );
15
 
16
- if ( !defined( 'myCRED_VERSION' ) ) exit;
17
 
18
  define( 'myCRED_PURCHASE', __FILE__ );
19
  define( 'myCRED_PURCHASE_VERSION', myCRED_VERSION . '.1' );
@@ -36,7 +36,7 @@ require_once( myCRED_PURCHASE_DIR . 'gateways/zombaio.php' );
36
  * @since 0.1
37
  * @version 1.0
38
  */
39
- if ( !class_exists( 'myCRED_Buy_CREDs' ) ) {
40
  class myCRED_Buy_CREDs extends myCRED_Module {
41
 
42
  /**
@@ -61,17 +61,21 @@ if ( !class_exists( 'myCRED_Buy_CREDs' ) ) {
61
  'add_to_core' => true,
62
  'menu_pos' => 85
63
  ) );
64
-
65
- add_action( 'mycred_help', array( $this, 'help' ), 10, 2 );
66
  }
67
 
68
  /**
69
  * Process
70
  * Processes Gateway returns and IPN calls
71
  * @since 0.1
72
- * @version 1.0
73
  */
74
  public function module_init() {
 
 
 
 
 
 
75
  // Make sure we have installed gateways.
76
  $installed = $this->get();
77
  if ( empty( $installed ) ) return;
@@ -83,74 +87,84 @@ if ( !class_exists( 'myCRED_Buy_CREDs' ) ) {
83
  * for to determen if they are responsible for handling the return.
84
  */
85
  foreach ( $installed as $id => $data ) {
86
- if ( !$this->is_active( $id ) ) continue;
87
- $this->call( 'returning', $installed[$id]['callback'] );
88
  }
89
 
90
  /**
91
- * Init Gateway
 
92
  */
93
- if ( isset( $_REQUEST['mycred_call'] ) || ( isset( $_REQUEST['mycred_buy'] ) && is_user_logged_in() ) || ( isset( $_GET['wp_zombaio_ips'] ) || isset( $_GET['ZombaioGWPass'] ) ) ) {
94
- if ( isset( $_GET['wp_zombaio_ips'] ) || isset( $_GET['ZombaioGWPass'] ) ) {
95
- $gateway = new myCRED_Zombaio( $this->gateway_prefs );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  }
97
- else {
98
- $gateway_id = ( isset( $_REQUEST['mycred_call'] ) ) ? $_REQUEST['mycred_call'] : $_REQUEST['mycred_buy'];
99
- if ( array_key_exists( $gateway_id, $installed ) && $this->is_active( $gateway_id ) ) {
100
- $class = $installed[$gateway_id]['callback'][0];
101
- $gateway = new $class( $this->gateway_prefs );
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  }
103
  }
104
  }
105
-
106
- /**
107
- * Step 2 - Process
108
- * Next we check to see if there is a purchase request, either made locally though
109
- * a form submission or by gateways calling remotly (see PayPal).
110
- */
111
- if ( isset( $_REQUEST['mycred_call'] ) || ( isset( $_GET['wp_zombaio_ips'] ) || isset( $_GET['ZombaioGWPass'] ) ) ) {
112
- $gateway->process();
113
- }
114
-
115
- /**
116
- * Step 3 - Buy Requests
117
- * Finally we check if there is a request to buy creds. A request must be made by nominating
118
- * the payment gateway that we want to use. Locally managed purchases can use this to show
119
- * the form again if i.e. an error was detected. $this->core->buy_creds
120
- */
121
- if ( isset( $_REQUEST['mycred_buy'] ) && is_user_logged_in() ) {
122
- if ( !isset( $_REQUEST['token'] ) || !wp_verify_nonce( $_REQUEST['token'], 'mycred-buy-creds' ) ) return;
123
- if ( !isset( $_REQUEST['amount'] ) || $_REQUEST['amount'] == 0 || $_REQUEST['amount'] < $this->core->buy_creds['minimum'] ) return;
124
- $gateway->buy();
125
- }
126
-
127
- // Finish by adding our shortcodes
128
- add_shortcode( 'mycred_buy', array( $this, 'render_shortcode_basic' ) );
129
- add_shortcode( 'mycred_buy_form', array( $this, 'render_shortcode_form' ) );
130
  }
131
 
132
  /**
133
  * Get Payment Gateways
134
  * Retreivs all available payment gateways that can be used to buy CREDs.
135
  * @since 0.1
136
- * @version 1.0
137
  */
138
  public function get() {
139
  // Defaults
140
  $installed['paypal-standard'] = array(
141
- 'title' => __( 'PayPal Payments Standard' ),
142
  'callback' => array( 'myCRED_PayPal_Standard' )
143
  );
144
  $installed['netbilling'] = array(
145
- 'title' => __( 'NETbilling' ),
146
  'callback' => array( 'myCRED_NETbilling' )
147
  );
148
  $installed['skrill'] = array(
149
- 'title' => __( 'Skrill (Moneybookers)' ),
150
  'callback' => array( 'myCRED_Skrill' )
151
  );
152
  $installed['zombaio'] = array(
153
- 'title' => __( 'Zombaio' ),
154
  'callback' => array( 'myCRED_Zombaio' )
155
  );
156
  $installed = apply_filters( 'mycred_setup_gateways', $installed );
@@ -191,7 +205,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
191
  public function after_general_settings() {
192
  // Since we are both registering our own settings and want to hook into
193
  // the core settings, we need to define our "defaults" here.
194
- if ( !isset( $this->core->buy_creds ) ) {
195
  $buy_creds = array(
196
  'minimum' => 1,
197
  'exchange' => 1,
@@ -321,8 +335,8 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
321
  $new_data['buy_creds']['cancelled']['custom'] = sanitize_text_field( $settings['cancelled']['custom'] );
322
  $new_data['buy_creds']['cancelled']['page'] = abs( $settings['cancelled']['page'] );
323
 
324
- $new_data['buy_creds']['gifting']['members'] = ( !isset( $settings['gifting']['members'] ) ) ? 0 : 1;
325
- $new_data['buy_creds']['gifting']['authors'] = ( !isset( $settings['gifting']['authors'] ) ) ? 0 : 1;
326
  $new_data['buy_creds']['gifting']['log'] = sanitize_text_field( $settings['gifting']['log'] );
327
 
328
  return $new_data;
@@ -352,7 +366,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
352
 
353
  <div class="list-items expandable-li" id="accordion">
354
  <?php
355
- if ( !empty( $installed ) ) {
356
  foreach ( $installed as $key => $data ) { ?>
357
 
358
  <h4><div class="gate-icon <?php
@@ -414,15 +428,6 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
414
  return $data;
415
  }
416
 
417
- /**
418
- * Register Widgets
419
- * @since 0.1
420
- * @version 1.0
421
- */
422
- public function module_widgets_init() {
423
- //register_widget( 'myCRED_Buy_CREDs' );
424
- }
425
-
426
  /**
427
  * Render Shortcode Basic
428
  * This shortcode returns a link element to a specified payment gateway.
@@ -431,7 +436,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
431
  */
432
  public function render_shortcode_basic( $atts, $title = '' ) {
433
  // Make sure the add-on has been setup
434
- if ( !isset( $this->core->buy_creds ) ) {
435
  if ( mycred_is_admin() )
436
  return '<p style="color:red;"><a href="' . admin_url( 'admin.php?page=myCRED_page_settings' ) . '">' . __( 'This Add-on needs to setup before you can use this shortcode.', 'mycred' ) . '</a></p>';
437
  else
@@ -447,12 +452,12 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
447
  ), $atts ) );
448
 
449
  // If we are not logged in
450
- if ( !is_user_logged_in() ) return '<div class="mycred-buy login">' . $this->core->template_tags_general( $login ) . '</div>';
451
 
452
  // Gateways
453
  $installed = $this->get();
454
  if ( empty( $installed ) ) return __( 'No gateways installed.', 'mycred' );
455
- if ( !empty( $gateway ) && !array_key_exists( $gateway, $installed ) ) return __( 'Gateway does not exist.', 'mycred' );
456
  if ( empty( $gateway ) || !array_key_exists( $gateway, $installed ) ) {
457
  reset( $installed );
458
  $gateway = key( $installed );
@@ -528,7 +533,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
528
  */
529
  public function render_shortcode_form( $atts, $content = '' ) {
530
  // Make sure the add-on has been setup
531
- if ( !isset( $this->core->buy_creds ) ) {
532
  if ( mycred_is_admin() )
533
  return '<p style="color:red;"><a href="' . admin_url( 'admin.php?page=myCRED_page_settings' ) . '">' . __( 'This Add-on needs to setup before you can use this shortcode.', 'mycred' ) . '</a></p>';
534
  else
@@ -543,14 +548,14 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
543
  ), $atts ) );
544
 
545
  // If we are not logged in
546
- if ( !is_user_logged_in() ) return '<p class="mycred-buy login">' . $login . '</p>';
547
 
548
  // Catch errors
549
  $installed = $this->get();
550
  if ( empty( $installed ) ) return __( 'No gateways installed.', 'mycred' );
551
- if ( !empty( $gateway ) && !array_key_exists( $gateway, $installed ) ) return __( 'Gateway does not exist.', 'mycred' );
552
  if ( empty( $this->active ) ) return __( 'No active gateways found.', 'mycred' );
553
- if ( !empty( $gateway ) && !$this->is_active( $gateway ) ) return __( 'The selected gateway is not active.', 'mycred' );
554
 
555
  // Prep
556
  $buy_author = false;
@@ -585,7 +590,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
585
  }
586
 
587
  // Button
588
- if ( !empty( $gateway ) ) {
589
  $gateway_title = $installed[$gateway]['title'];
590
 
591
  $button = explode( ' ', $gateway_title );
@@ -619,7 +624,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
619
  if ( $gift_to == 'select' ) {
620
  $select = '<select name="gift_to">';
621
  $blog_users = get_users();
622
- if ( !empty( $blog_users ) ) {
623
  foreach ( $blog_users as $blog_user ) {
624
  if ( $this->core->exclude_user( $blog_user->ID ) || $blog_user->ID === get_current_user_id() ) continue;
625
  $select .= '<option value="' . $blog_user->ID . '">' . $blog_user->display_name . '</option>';
@@ -645,7 +650,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
645
  // Amount
646
  $no_of_amounts = 0;
647
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
648
- if ( !empty( $amount ) )
649
  $no_of_amounts = sizeof( array_filter( explode( ',', $amount ), create_function( '$a', 'return !empty($a);' ) ) );
650
 
651
  // Multiple amounts set
@@ -690,8 +695,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
690
  <select name="mycred_buy">';
691
 
692
  foreach ( $installed as $gateway_id => $data ) {
693
- if ( !$this->is_active( $gateway_id ) ) continue;
694
- //if ( !$this->is_active( $gateway_id ) ) continue;
695
  $form .= '<option value="' . $gateway_id . '">' . $data['title'] . '</option>';
696
  }
697
 
@@ -756,51 +760,6 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
756
 
757
  return false;
758
  }
759
-
760
- /**
761
- * Contextual Help
762
- * @since 0.1
763
- * @version 1.0
764
- */
765
- public function help( $screen_id, $screen ) {
766
- if ( $screen_id == 'mycred_page_myCRED_page_settings' ) {
767
- $screen->add_help_tab( array(
768
- 'id' => 'mycred-buy-creds',
769
- 'title' => $this->core->template_tags_general( __( 'Buy %plural%', 'mycred' ) ),
770
- 'content' => '
771
- <p>' . $this->core->template_tags_general( __( 'This add-on lets your users buy %_plural% using a payment gateway.', 'mycred' ) ) . '</p>
772
- <p><strong>' . __( 'Supported Gateways', 'mycred' ) . '</strong></p>
773
- <p>' . __( 'myCRED supports purchases through: PayPal Payments Standard, Skrill (Moneybookers) and NETbilling. Let us know if you want to add other payment gateways.', 'mycred' ) . '</p>
774
- <p><strong>' . __( 'Usage', 'mycred' ) . '</strong></p>
775
- <p>' . __( 'Purchases can be made using one of the following shortcodes:', 'mycred' ) . '</p>
776
- <ul>
777
- <li><code>mycred_buy</code> ' . __( 'When you want to sell a pre-set amount, sell to a specific user or use a specific gateway.<br />For more information on how to use the shortcode, please visit the', 'mycred' ) . ' <a href="http://mycred.me/shortcodes/mycred_buy/" target="_blank">myCRED Codex</a>.</li>
778
- <li><code>mycred_buy_form</code> ' . __( 'When you want to give your users the option to select an amount, gateway or recipient.<br />For more information on how to use the shortcode, please visit the', 'mycred' ) . ' <a href="http://mycred.me/shortcodes/mycred_buy_form/" target="_blank">myCRED Codex</a>.</li>
779
- </ul>'
780
- ) );
781
- }
782
- elseif ( $screen_id == 'mycred_page_myCRED_page_gateways' ) {
783
- $screen->add_help_tab( array(
784
- 'id' => 'mycred-paypal',
785
- 'title' => __( 'PayPal Payments Standard', 'mycred' ),
786
- 'content' => '
787
- <p><strong>' . __( 'Currency', 'mycred' ) . '</strong></p>
788
- <p>' . __( 'Make sure you select a currency that your PayPal account supports. Otherwise transactions will not be approved until you login to your PayPal account and Accept each transaction! Purchases made in a currency that is not supported will not be applied to the buyer until you have resolved the issue.', 'mycred' ) . '</p>
789
- <p><strong>' . __( 'Instant Payment Notifications', 'mycred' ) . '</strong></p>
790
- <p>' . __( 'For this gateway to work, you must login to your PayPal account and under "Profile" > "Selling Tools" enable "Instant Payment Notifications". Make sure the "Notification URL" is set to the above address and that you have selected "Receive IPN messages (Enabled)".', 'mycred' ) . '</p>'
791
- ) );
792
- $screen->add_help_tab( array(
793
- 'id' => 'mycred-skrill',
794
- 'title' => __( 'Skrill', 'mycred' ),
795
- 'content' => '
796
- <p><strong>' . __( 'Sandbox Mode', 'mycred' ) . '</strong></p>
797
- <p>' . __( 'Transactions made while Sandbox mode is active are real transactions! Remember to use your "Test Merchant Account" when Sandbox mode is active!', 'mycred' ) . '</p>
798
- <p><strong>' . __( 'Checkout Page', 'mycred' ) . '</strong></p>
799
- <p>' . __( 'By default all Skrill Merchant account accept payments via Bank Transfers. When a user selects this option, no points are awarded! You will need to manually award these once the bank transfer is completed.', 'mycred' ) . '</p>
800
- <p>' . __( 'By default purchases made using Skrill will result in users having to signup for a Skrill account (if they do not have one already). You can contact Skrill Merchant Services and request to disable this feature.', 'mycred' ) . '</p>'
801
- ) );
802
- }
803
- }
804
  }
805
  $buy_creds = new myCRED_Buy_CREDs();
806
  $buy_creds->load();
13
  __( '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.', 'mycred' )
14
  );
15
 
16
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
17
 
18
  define( 'myCRED_PURCHASE', __FILE__ );
19
  define( 'myCRED_PURCHASE_VERSION', myCRED_VERSION . '.1' );
36
  * @since 0.1
37
  * @version 1.0
38
  */
39
+ if ( ! class_exists( 'myCRED_Buy_CREDs' ) ) {
40
  class myCRED_Buy_CREDs extends myCRED_Module {
41
 
42
  /**
61
  'add_to_core' => true,
62
  'menu_pos' => 85
63
  ) );
 
 
64
  }
65
 
66
  /**
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
74
+ add_shortcode( 'mycred_buy', array( $this, 'render_shortcode_basic' ) );
75
+ add_shortcode( 'mycred_buy_form', array( $this, 'render_shortcode_form' ) );
76
+
77
+ $gateway = NULL;
78
+
79
  // Make sure we have installed gateways.
80
  $installed = $this->get();
81
  if ( empty( $installed ) ) return;
87
  * for to determen if they are responsible for handling the return.
88
  */
89
  foreach ( $installed as $id => $data ) {
90
+ if ( ! $this->is_active( $id ) ) continue;
91
+ $this->call( 'returning', $installed[ $id ]['callback'] );
92
  }
93
 
94
  /**
95
+ * Step 2 - Check for gateway calls
96
+ * Checks to see if a gateway should be loaded.
97
  */
98
+ $gateway_id = '';
99
+ if ( isset( $_REQUEST['mycred_call'] ) )
100
+ $gateway_id = trim( $_REQUEST['mycred_call'] );
101
+ elseif ( isset( $_REQUEST['mycred_buy'] ) && is_user_logged_in() )
102
+ $gateway_id = trim( $_REQUEST['mycred_buy'] );
103
+ elseif ( isset( $_GET['wp_zombaio_ips'] ) || isset( $_GET['ZombaioGWPass'] ) )
104
+ $gateway_id = 'zombaio';
105
+
106
+ $gateway_id = apply_filters( 'mycred_gateway_id', $gateway_id );
107
+
108
+ // If we have a valid gateway ID and the gateway is active, lets run that gateway.
109
+ if ( ! empty( $gateway_id ) && array_key_exists( $gateway_id, $installed ) && $this->is_active( $gateway_id ) ) {
110
+ // Gateway Class
111
+ $class = $installed[ $gateway_id ]['callback'][0];
112
+
113
+ // Construct Gateway
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 );
121
+ do_action( 'mycred_buy_cred_process_' . $gateway_id, $this->gateway_prefs, $this->core->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' ) )
129
+ $token = true;
130
+
131
+ // Validate amount
132
+ $amount = false;
133
+ if ( isset( $_REQUEST['amount'] ) && $_REQUEST['amount'] != 0 && $_REQUEST['amount'] >= $this->core->buy_creds['minimum'] )
134
+ $amount = true;
135
+
136
+ if ( $token && $amount ) {
137
+ $gateway->buy();
138
+
139
+ do_action( 'mycred_buy_cred_buy', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
140
+ do_action( 'mycred_buy_cred_buy_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
141
  }
142
  }
143
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  }
145
 
146
  /**
147
  * Get Payment Gateways
148
  * Retreivs all available payment gateways that can be used to buy CREDs.
149
  * @since 0.1
150
+ * @version 1.0.1
151
  */
152
  public function get() {
153
  // Defaults
154
  $installed['paypal-standard'] = array(
155
+ 'title' => 'PayPal Payments Standard',
156
  'callback' => array( 'myCRED_PayPal_Standard' )
157
  );
158
  $installed['netbilling'] = array(
159
+ 'title' => 'NETbilling',
160
  'callback' => array( 'myCRED_NETbilling' )
161
  );
162
  $installed['skrill'] = array(
163
+ 'title' => 'Skrill (Moneybookers)',
164
  'callback' => array( 'myCRED_Skrill' )
165
  );
166
  $installed['zombaio'] = array(
167
+ 'title' => 'Zombaio',
168
  'callback' => array( 'myCRED_Zombaio' )
169
  );
170
  $installed = apply_filters( 'mycred_setup_gateways', $installed );
205
  public function after_general_settings() {
206
  // Since we are both registering our own settings and want to hook into
207
  // the core settings, we need to define our "defaults" here.
208
+ if ( ! isset( $this->core->buy_creds ) ) {
209
  $buy_creds = array(
210
  'minimum' => 1,
211
  'exchange' => 1,
335
  $new_data['buy_creds']['cancelled']['custom'] = sanitize_text_field( $settings['cancelled']['custom'] );
336
  $new_data['buy_creds']['cancelled']['page'] = abs( $settings['cancelled']['page'] );
337
 
338
+ $new_data['buy_creds']['gifting']['members'] = ( ! isset( $settings['gifting']['members'] ) ) ? 0 : 1;
339
+ $new_data['buy_creds']['gifting']['authors'] = ( ! isset( $settings['gifting']['authors'] ) ) ? 0 : 1;
340
  $new_data['buy_creds']['gifting']['log'] = sanitize_text_field( $settings['gifting']['log'] );
341
 
342
  return $new_data;
366
 
367
  <div class="list-items expandable-li" id="accordion">
368
  <?php
369
+ if ( ! empty( $installed ) ) {
370
  foreach ( $installed as $key => $data ) { ?>
371
 
372
  <h4><div class="gate-icon <?php
428
  return $data;
429
  }
430
 
 
 
 
 
 
 
 
 
 
431
  /**
432
  * Render Shortcode Basic
433
  * This shortcode returns a link element to a specified payment gateway.
436
  */
437
  public function render_shortcode_basic( $atts, $title = '' ) {
438
  // Make sure the add-on has been setup
439
+ if ( ! isset( $this->core->buy_creds ) ) {
440
  if ( mycred_is_admin() )
441
  return '<p style="color:red;"><a href="' . admin_url( 'admin.php?page=myCRED_page_settings' ) . '">' . __( 'This Add-on needs to setup before you can use this shortcode.', 'mycred' ) . '</a></p>';
442
  else
452
  ), $atts ) );
453
 
454
  // If we are not logged in
455
+ if ( ! is_user_logged_in() ) return '<div class="mycred-buy login">' . $this->core->template_tags_general( $login ) . '</div>';
456
 
457
  // Gateways
458
  $installed = $this->get();
459
  if ( empty( $installed ) ) return __( 'No gateways installed.', 'mycred' );
460
+ if ( ! empty( $gateway ) && !array_key_exists( $gateway, $installed ) ) return __( 'Gateway does not exist.', 'mycred' );
461
  if ( empty( $gateway ) || !array_key_exists( $gateway, $installed ) ) {
462
  reset( $installed );
463
  $gateway = key( $installed );
533
  */
534
  public function render_shortcode_form( $atts, $content = '' ) {
535
  // Make sure the add-on has been setup
536
+ if ( ! isset( $this->core->buy_creds ) ) {
537
  if ( mycred_is_admin() )
538
  return '<p style="color:red;"><a href="' . admin_url( 'admin.php?page=myCRED_page_settings' ) . '">' . __( 'This Add-on needs to setup before you can use this shortcode.', 'mycred' ) . '</a></p>';
539
  else
548
  ), $atts ) );
549
 
550
  // If we are not logged in
551
+ if ( ! is_user_logged_in() ) return '<p class="mycred-buy login">' . $login . '</p>';
552
 
553
  // Catch errors
554
  $installed = $this->get();
555
  if ( empty( $installed ) ) return __( 'No gateways installed.', 'mycred' );
556
+ if ( ! empty( $gateway ) && ! array_key_exists( $gateway, $installed ) ) return __( 'Gateway does not exist.', 'mycred' );
557
  if ( empty( $this->active ) ) return __( 'No active gateways found.', 'mycred' );
558
+ if ( ! empty( $gateway ) && ! $this->is_active( $gateway ) ) return __( 'The selected gateway is not active.', 'mycred' );
559
 
560
  // Prep
561
  $buy_author = false;
590
  }
591
 
592
  // Button
593
+ if ( ! empty( $gateway ) ) {
594
  $gateway_title = $installed[$gateway]['title'];
595
 
596
  $button = explode( ' ', $gateway_title );
624
  if ( $gift_to == 'select' ) {
625
  $select = '<select name="gift_to">';
626
  $blog_users = get_users();
627
+ if ( ! empty( $blog_users ) ) {
628
  foreach ( $blog_users as $blog_user ) {
629
  if ( $this->core->exclude_user( $blog_user->ID ) || $blog_user->ID === get_current_user_id() ) continue;
630
  $select .= '<option value="' . $blog_user->ID . '">' . $blog_user->display_name . '</option>';
650
  // Amount
651
  $no_of_amounts = 0;
652
  $minimum = $this->core->number( $this->core->buy_creds['minimum'] );
653
+ if ( ! empty( $amount ) )
654
  $no_of_amounts = sizeof( array_filter( explode( ',', $amount ), create_function( '$a', 'return !empty($a);' ) ) );
655
 
656
  // Multiple amounts set
695
  <select name="mycred_buy">';
696
 
697
  foreach ( $installed as $gateway_id => $data ) {
698
+ if ( ! $this->is_active( $gateway_id ) ) continue;
 
699
  $form .= '<option value="' . $gateway_id . '">' . $data['title'] . '</option>';
700
  }
701
 
760
 
761
  return false;
762
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
763
  }
764
  $buy_creds = new myCRED_Buy_CREDs();
765
  $buy_creds->load();
addons/gateway/event-booking/mycred-eventespresso3.php CHANGED
@@ -217,7 +217,7 @@ if ( !class_exists( 'myCRED_Espresso_Gateway' ) ) {
217
  /**
218
  * Payment Page
219
  * @since 1.2
220
- * @version 1.0
221
  */
222
  public function payment_page( $payment_data ) {
223
  extract( $payment_data );
@@ -264,7 +264,6 @@ if ( !class_exists( 'myCRED_Espresso_Gateway' ) ) {
264
  <?php endif; ?>
265
 
266
  <div class="event-display-boxes">
267
- <pre><?php print_r( get_option( 'mycred_espresso_test' ) ); ?></pre>
268
  <h4 id="mycred_title" class="payment_type_title section-heading"><?php echo $this->prefs['labels']['payment']; ?></h4>
269
  <table style="width:100%;">
270
  <tr>
217
  /**
218
  * Payment Page
219
  * @since 1.2
220
+ * @version 1.0.1
221
  */
222
  public function payment_page( $payment_data ) {
223
  extract( $payment_data );
264
  <?php endif; ?>
265
 
266
  <div class="event-display-boxes">
 
267
  <h4 id="mycred_title" class="payment_type_title section-heading"><?php echo $this->prefs['labels']['payment']; ?></h4>
268
  <table style="width:100%;">
269
  <tr>
addons/gateway/event-booking/mycred-eventsmanager.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * Events Manager
6
  * @since 1.2
7
- * @version 1.1
8
  */
9
  if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' ) ) {
10
  class myCRED_Events_Manager_Gateway {
@@ -87,18 +87,24 @@ if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION'
87
  * Add Currency
88
  * Adds "Points" as a form of currency
89
  * @since 1.2
90
- * @version 1.0
91
  */
92
  public function add_currency( $currencies ) {
93
  $currencies->names['XMY'] = $this->core->plural();
94
- if ( empty( $this->core->before ) && ! empty( $this->core->after ) ) {
95
- $currencies->symbols['XMY'] = $this->core->after;
 
 
96
  $currencies->symbols['XMY'] = $this->core->after;
97
- }
98
- elseif ( ! empty( $this->core->before ) && empty( $this->core->after ) ) {
 
 
99
  $currencies->true_symbols['XMY'] = $this->core->before;
 
100
  $currencies->true_symbols['XMY'] = $this->core->after;
101
- }
 
102
 
103
  return $currencies;
104
  }
@@ -355,14 +361,19 @@ if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION'
355
  * Add Pay Action
356
  * @used by em_my_bookings_booking_actions
357
  * @since 1.2
358
- * @version 1.0
359
  */
360
  public function add_pay_button( $cancel_link = '', $EM_Booking ) {
 
 
 
361
  if ( $this->can_pay( $EM_Booking ) && ! $this->has_paid( $EM_Booking ) ) {
362
  if ( ! empty( $cancel_link ) )
363
  $cancel_link .= ' &bull; ';
364
 
365
  $cancel_link .= '<a href="javascript:void(0)" class="mycred-show-pay" data-booking="' . $EM_Booking->booking_id . '">' . $this->prefs['labels']['link'] . '</a>';
 
 
366
  }
367
  return $cancel_link;
368
  }
@@ -370,10 +381,12 @@ if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION'
370
  /**
371
  * Payment Box
372
  * @since 1.2
373
- * @version 1.1
374
  */
375
  public function payment_box( $EM_Booking ) {
376
- if ( $EM_Event->get_bookings()->has_open_time() && ! $EM_Event->is_free() ) {
 
 
377
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
378
  if ( $balance <= 0 ) return;
379
 
@@ -383,40 +396,39 @@ if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION'
383
  $exchange_rate = $this->prefs['rate'];
384
  $price = $this->core->number( $exchange_rate*$price );
385
  }
386
- if ( $balance-$price < 0 ) return;
387
- ?>
388
-
389
- <tr id="mycred-payment-<?php echo $EM_Booking->booking_id; ?>" style="display: none;">
390
- <td colspan="5">
391
- <h5><?php echo $this->core->template_tags_general( $this->prefs['labels']['header'] ); ?></h5>
392
- <?php do_action( 'mycred_em_before_payment_box', $this ); ?>
393
-
394
- <table style="width:100%;margin-bottom: 0;">
395
- <tr>
396
- <td class="info"><?php _e( 'Current Balance', 'mycred' ); ?></td>
397
- <td class="amount"><?php echo $this->core->format_creds( $balance ); ?></td>
398
- </tr>
399
- <tr>
400
- <td class="info"><?php _e( 'Total Cost', 'mycred' ); ?></td>
401
- <td class="amount"><?php echo $this->core->format_creds( $price ); ?></td>
402
- </tr>
403
- <tr>
404
- <td class="info"><?php _e( 'Balance After Payment', 'mycred' ); ?></td>
405
- <td class="amount"><?php echo $this->core->format_creds( $balance-$price ); ?></td>
406
- </tr>
407
- <tr>
408
- <td colspan="2" class="action" style="text-align: right;">
409
- <input type="hidden" name="mycred-booking-<?php echo $EM_Booking->booking_id; ?>" value="<?php echo $EM_Booking->booking_id; ?>" />
410
- <input type="hidden" name="mycred-booking-<?php echo $EM_Booking->booking_id; ?>-token" value="<?php echo wp_create_nonce( 'mycred-pay-booking' ); ?>" />
411
- <input type="button" class="button button-primary button-medium mycred-pay" value="<?php echo $this->prefs['labels']['button']; ?>" />
412
- </td>
413
- </tr>
414
- </table>
415
- <p id="mycred-message-<?php echo $EM_Booking->booking_id; ?>"></p>
416
- <?php do_action( 'mycred_em_after_payment_box', $this ); ?>
417
-
418
- </td>
419
- </tr>
420
  <?php
421
  }
422
  }
@@ -424,9 +436,12 @@ if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION'
424
  /**
425
  * Payment Box Scripting
426
  * @since 1.2
427
- * @version 1.0
428
  */
429
  public function insert_scripting() {
 
 
 
430
  $ajax_url = admin_url( 'admin-ajax.php' ); ?>
431
 
432
  <script type="text/javascript">
@@ -493,7 +508,7 @@ jQuery(function($) {
493
  /**
494
  * Gateway Settings
495
  * @since 1.2
496
- * @version 1.1
497
  */
498
  public function settings_page() {
499
  if ( $this->prefs['setup'] == 'multi' )
@@ -508,61 +523,105 @@ jQuery(function($) {
508
  ); ?>
509
 
510
  <div class="postbox" id="em-opt-mycred">
511
- <div class="handlediv" title="<?php _e( 'Click to toggle', 'mycred' ); ?>"><br /></div><h3><span><?php echo sprintf( __( '%s Payments', 'mycred' ), $this->label ); ?></span></h3>
512
- <div class="inside">
513
- <?php do_action( 'mycred_em_before_settings', $this ); ?>
514
-
515
- <h4><?php _e( 'Setup', 'mycred' ); ?></h4>
516
- <table class="form-table">
517
- <tr>
518
- <th scope="row"><?php _e( 'Payments', 'mycred' ); ?></th>
519
- <td>
520
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-off" value="off"<?php checked( $this->prefs['setup'], 'off' ); ?> /> <label for="mycred-gateway-setup-off"><?php echo $this->core->template_tags_general( __( 'Disabled - Users CAN NOT pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
521
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-single" value="single"<?php checked( $this->prefs['setup'], 'single' ); ?> /> <label for="mycred-gateway-setup-single"><?php echo $this->core->template_tags_general( __( 'Single - Users can ONLY pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
522
- <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-multi" value="multi"<?php checked( $this->prefs['setup'], 'multi' ); ?> /> <label for="mycred-gateway-setup-multi"><?php echo $this->core->template_tags_general( __( 'Multi - Users can pay for tickets using other gateways or %plural%.', 'mycred' ) ); ?></label>
523
- </td>
524
- </tr>
525
- <tr>
526
- <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
527
- <td>
528
- <input name="mycred_gateway[refund]" type="text" id="mycred-gateway-log-refund" value="<?php echo $this->prefs['refund']; ?>" size="5" /> %<br />
529
- <span class="description"><?php _e( 'The percentage of the paid amount to refund if a booking gets cancelled. Use zero for no refunds. No refunds are given to "Rejected" bookings.', 'mycred' ); ?></span>
530
- </td>
531
- </tr>
532
- <tr>
533
- <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
534
- <td>
535
- <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
536
- <span class="description"><?php _e( 'Option to share sales with the event owner (post author). Use zero to disable.', 'mycred' ); ?></span>
537
- </td>
538
- </tr>
539
- </table>
540
- <table class="form-table" id="mycred-exchange-rate" style="<?php echo $box; ?>">
541
- <tr>
542
- <th scope="row"><?php _e( 'Exchange Rate', 'mycred' ); ?></th>
543
- <td>
544
- <input name="mycred_gateway[rate]" type="text" id="mycred-gateway-rate" size="6" value="<?php echo $this->prefs['rate']; ?>" /><br />
545
- <span class="description"><?php echo $exchange_message; ?></span>
546
- </td>
547
- </tr>
548
- </table>
549
- <h4><?php _e( 'Log Templates', 'mycred' ); ?></h4>
550
- <table class="form-table">
551
- <tr>
552
- <th scope="row"><?php _e( 'Purchases', 'mycred' ); ?></th>
553
- <td>
554
- <input name="mycred_gateway[log][purchase]" type="text" id="mycred-gateway-log-purchase" style="width: 95%;" value="<?php echo $this->prefs['log']['purchase']; ?>" size="45" /><br />
555
- <span class="description"><?php _e( 'Available template tags: General and Post related.', 'mycred' ); ?></span>
556
- </td>
557
- </tr>
558
- <tr>
559
- <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
560
- <td>
561
- <input name="mycred_gateway[log][refund]" type="text" id="mycred-gateway-log-refund" style="width: 95%;" value="<?php echo $this->prefs['log']['refund']; ?>" size="45" /><br />
562
- <span class="description"><?php _e( 'Available template tags: General and Post related.', 'mycred' ); ?></span>
563
- </td>
564
- </tr>
565
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  <script type="text/javascript">
567
  jQuery(function($){
568
  $('input[name="mycred_gateway[setup]"]').change(function(){
@@ -575,51 +634,8 @@ jQuery(function($){
575
  });
576
  });
577
  </script>
578
- <h4><?php _e( 'Labels', 'mycred' ); ?></h4>
579
- <table class="form-table">
580
- <tr valign="top">
581
- <th scope="row"><?php _e( 'Payment Link Label', 'mycred' ); ?></th>
582
- <td>
583
- <input name="mycred_gateway[labels][link]" type="text" id="mycred-gateway-labels-link" style="width: 95%" value="<?php echo $this->prefs['labels']['link']; ?>" size="45" /><br />
584
- <span class="description"><?php _e( 'The payment link shows / hides the payment form under "My Bookings". No HTML allowed.', 'mycred' ); ?></span>
585
- </td>
586
- </tr>
587
- <tr valign="top">
588
- <th scope="row"><?php _e( 'Payment Header', 'mycred' ); ?></th>
589
- <td>
590
- <input name="mycred_gateway[labels][header]" type="text" id="mycred-gateway-labels-header" style="width: 95%" value="<?php echo $this->prefs['labels']['header']; ?>" size="45" /><br />
591
- <span class="description"><?php _e( 'Shown on top of the payment form. No HTML allowed.', 'mycred' ); ?></span>
592
- </td>
593
- </tr>
594
- <tr valign="top">
595
- <th scope="row"><?php _e( 'Button Label', 'mycred' ); ?></th>
596
- <td>
597
- <input name="mycred_gateway[labels][button]" type="text" id="mycred-gateway-labels-button" style="width: 95%" value="<?php echo $this->prefs['labels']['button']; ?>" size="45" /><br />
598
- <span class="description"><?php _e( 'The button label for payments. No HTML allowed!', 'mycred' ); ?></span>
599
- </td>
600
- </tr>
601
- </table>
602
- <h4><?php _e( 'Messages', 'mycred' ); ?></h4>
603
- <table class='form-table'>
604
- <tr valign="top">
605
- <th scope="row"><?php _e( 'Successful Payments', 'mycred' ); ?></th>
606
- <td>
607
- <input type="text" name="mycred_gateway[messages][success]" id="mycred-gateway-messages-success" style="width: 95%;" value="<?php echo stripslashes( $this->prefs['messages']['success'] ); ?>" /><br />
608
- <span class="description"><?php _e( 'No HTML allowed! Available template tags: General', 'mycred' ); ?></span>
609
- </td>
610
- </tr>
611
- <tr valign="top">
612
- <th scope="row"><?php _e( 'Insufficient Funds', 'mycred' ); ?></th>
613
- <td>
614
- <input type="text" name="mycred_gateway[messages][error]" id="mycred-gateway-messages-error" style="width: 95%;" value="<?php echo stripslashes( $this->prefs['messages']['error'] ); ?>" /><br />
615
- <span class="description"><?php _e( 'No HTML allowed! Available template tags: General', 'mycred' ); ?></span>
616
- </td>
617
- </tr>
618
- </table>
619
- <?php do_action( 'mycred_em_after_settings', $this ); ?>
620
-
621
- </div> <!-- . inside -->
622
- </div> <!-- .postbox -->
623
  <?php
624
  }
625
 
4
  /**
5
  * Events Manager
6
  * @since 1.2
7
+ * @version 1.2
8
  */
9
  if ( ! class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' ) ) {
10
  class myCRED_Events_Manager_Gateway {
87
  * Add Currency
88
  * Adds "Points" as a form of currency
89
  * @since 1.2
90
+ * @version 1.1
91
  */
92
  public function add_currency( $currencies ) {
93
  $currencies->names['XMY'] = $this->core->plural();
94
+
95
+ if ( ! empty( $this->core->before ) )
96
+ $currencies->symbols['XMY'] = $this->core->before;
97
+ elseif ( ! empty( $this->core->after ) )
98
  $currencies->symbols['XMY'] = $this->core->after;
99
+ else
100
+ $currencies->symbols['XMY'] = '';
101
+
102
+ if ( ! empty( $this->core->before ) )
103
  $currencies->true_symbols['XMY'] = $this->core->before;
104
+ elseif ( ! empty( $this->core->after ) )
105
  $currencies->true_symbols['XMY'] = $this->core->after;
106
+ else
107
+ $currencies->true_symbols['XMY'] = '';
108
 
109
  return $currencies;
110
  }
361
  * Add Pay Action
362
  * @used by em_my_bookings_booking_actions
363
  * @since 1.2
364
+ * @version 1.0.1
365
  */
366
  public function add_pay_button( $cancel_link = '', $EM_Booking ) {
367
+ global $mycred_em_pay;
368
+
369
+ $mycred_em_pay = false;
370
  if ( $this->can_pay( $EM_Booking ) && ! $this->has_paid( $EM_Booking ) ) {
371
  if ( ! empty( $cancel_link ) )
372
  $cancel_link .= ' &bull; ';
373
 
374
  $cancel_link .= '<a href="javascript:void(0)" class="mycred-show-pay" data-booking="' . $EM_Booking->booking_id . '">' . $this->prefs['labels']['link'] . '</a>';
375
+
376
+ $mycred_em_pay = true;
377
  }
378
  return $cancel_link;
379
  }
381
  /**
382
  * Payment Box
383
  * @since 1.2
384
+ * @version 1.1.1
385
  */
386
  public function payment_box( $EM_Booking ) {
387
+ global $mycred_em_pay;
388
+
389
+ if ( $mycred_em_pay && is_object( $EM_Booking ) ) {
390
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
391
  if ( $balance <= 0 ) return;
392
 
396
  $exchange_rate = $this->prefs['rate'];
397
  $price = $this->core->number( $exchange_rate*$price );
398
  }
399
+ if ( $balance-$price < 0 ) return; ?>
400
+
401
+ <tr id="mycred-payment-<?php echo $EM_Booking->booking_id; ?>" style="display: none;">
402
+ <td colspan="5">
403
+ <h5><?php echo $this->core->template_tags_general( $this->prefs['labels']['header'] ); ?></h5>
404
+ <?php do_action( 'mycred_em_before_payment_box', $this ); ?>
405
+
406
+ <table style="width:100%;margin-bottom: 0;">
407
+ <tr>
408
+ <td class="info"><?php _e( 'Current Balance', 'mycred' ); ?></td>
409
+ <td class="amount"><?php echo $this->core->format_creds( $balance ); ?></td>
410
+ </tr>
411
+ <tr>
412
+ <td class="info"><?php _e( 'Total Cost', 'mycred' ); ?></td>
413
+ <td class="amount"><?php echo $this->core->format_creds( $price ); ?></td>
414
+ </tr>
415
+ <tr>
416
+ <td class="info"><?php _e( 'Balance After Payment', 'mycred' ); ?></td>
417
+ <td class="amount"><?php echo $this->core->format_creds( $balance-$price ); ?></td>
418
+ </tr>
419
+ <tr>
420
+ <td colspan="2" class="action" style="text-align: right;">
421
+ <input type="hidden" name="mycred-booking-<?php echo $EM_Booking->booking_id; ?>" value="<?php echo $EM_Booking->booking_id; ?>" />
422
+ <input type="hidden" name="mycred-booking-<?php echo $EM_Booking->booking_id; ?>-token" value="<?php echo wp_create_nonce( 'mycred-pay-booking' ); ?>" />
423
+ <input type="button" class="button button-primary button-medium mycred-pay" value="<?php echo $this->prefs['labels']['button']; ?>" />
424
+ </td>
425
+ </tr>
426
+ </table>
427
+ <p id="mycred-message-<?php echo $EM_Booking->booking_id; ?>"></p>
428
+ <?php do_action( 'mycred_em_after_payment_box', $this ); ?>
429
+
430
+ </td>
431
+ </tr>
 
432
  <?php
433
  }
434
  }
436
  /**
437
  * Payment Box Scripting
438
  * @since 1.2
439
+ * @version 1.0.1
440
  */
441
  public function insert_scripting() {
442
+ global $mycred_em_pay;
443
+
444
+ if ( ! $mycred_em_pay ) return;
445
  $ajax_url = admin_url( 'admin-ajax.php' ); ?>
446
 
447
  <script type="text/javascript">
508
  /**
509
  * Gateway Settings
510
  * @since 1.2
511
+ * @version 1.2
512
  */
513
  public function settings_page() {
514
  if ( $this->prefs['setup'] == 'multi' )
523
  ); ?>
524
 
525
  <div class="postbox" id="em-opt-mycred">
526
+ <div class="handlediv" title="<?php _e( 'Click to toggle', 'mycred' ); ?>"><br /></div>
527
+ <h3><span><?php echo sprintf( __( '%s Payments', 'mycred' ), $this->label ); ?></span></h3>
528
+ <div class="inside">
529
+ <?php do_action( 'mycred_em_before_settings', $this ); ?>
530
+
531
+ <h4><?php _e( 'Setup', 'mycred' ); ?></h4>
532
+ <table class="form-table">
533
+ <tr>
534
+ <th scope="row"><?php _e( 'Payments', 'mycred' ); ?></th>
535
+ <td>
536
+ <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-off" value="off"<?php checked( $this->prefs['setup'], 'off' ); ?> /> <label for="mycred-gateway-setup-off"><?php echo $this->core->template_tags_general( __( 'Disabled - Users CAN NOT pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
537
+ <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-single" value="single"<?php checked( $this->prefs['setup'], 'single' ); ?> /> <label for="mycred-gateway-setup-single"><?php echo $this->core->template_tags_general( __( 'Single - Users can ONLY pay for tickets using %plural%.', 'mycred' ) ); ?></label><br />
538
+ <input type="radio" name="mycred_gateway[setup]" id="mycred-gateway-setup-multi" value="multi"<?php checked( $this->prefs['setup'], 'multi' ); ?> /> <label for="mycred-gateway-setup-multi"><?php echo $this->core->template_tags_general( __( 'Multi - Users can pay for tickets using other gateways or %plural%.', 'mycred' ) ); ?></label>
539
+ </td>
540
+ </tr>
541
+ <tr>
542
+ <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
543
+ <td>
544
+ <input name="mycred_gateway[refund]" type="text" id="mycred-gateway-log-refund" value="<?php echo $this->prefs['refund']; ?>" size="5" /> %<br />
545
+ <span class="description"><?php _e( 'The percentage of the paid amount to refund if a booking gets cancelled. Use zero for no refunds. No refunds are given to "Rejected" bookings.', 'mycred' ); ?></span>
546
+ </td>
547
+ </tr>
548
+ <tr>
549
+ <th scope="row"><?php _e( 'Profit Sharing', 'mycred' ); ?></th>
550
+ <td>
551
+ <input name="mycred_gateway[share]" type="text" id="mycred-gateway-profit-sharing" value="<?php echo $this->prefs['share']; ?>" size="5" /> %<br />
552
+ <span class="description"><?php _e( 'Option to share sales with the event owner (post author). Use zero to disable.', 'mycred' ); ?></span>
553
+ </td>
554
+ </tr>
555
+ </table>
556
+ <table class="form-table" id="mycred-exchange-rate" style="<?php echo $box; ?>">
557
+ <tr>
558
+ <th scope="row"><?php _e( 'Exchange Rate', 'mycred' ); ?></th>
559
+ <td>
560
+ <input name="mycred_gateway[rate]" type="text" id="mycred-gateway-rate" size="6" value="<?php echo $this->prefs['rate']; ?>" /><br />
561
+ <span class="description"><?php echo $exchange_message; ?></span>
562
+ </td>
563
+ </tr>
564
+ </table>
565
+ <h4><?php _e( 'Log Templates', 'mycred' ); ?></h4>
566
+ <table class="form-table">
567
+ <tr>
568
+ <th scope="row"><?php _e( 'Purchases', 'mycred' ); ?></th>
569
+ <td>
570
+ <input name="mycred_gateway[log][purchase]" type="text" id="mycred-gateway-log-purchase" style="width: 95%;" value="<?php echo $this->prefs['log']['purchase']; ?>" size="45" /><br />
571
+ <span class="description"><?php _e( 'Available template tags: General and Post related.', 'mycred' ); ?></span>
572
+ </td>
573
+ </tr>
574
+ <tr>
575
+ <th scope="row"><?php _e( 'Refunds', 'mycred' ); ?></th>
576
+ <td>
577
+ <input name="mycred_gateway[log][refund]" type="text" id="mycred-gateway-log-refund" style="width: 95%;" value="<?php echo $this->prefs['log']['refund']; ?>" size="45" /><br />
578
+ <span class="description"><?php _e( 'Available template tags: General and Post related.', 'mycred' ); ?></span>
579
+ </td>
580
+ </tr>
581
+ </table>
582
+ <h4><?php _e( 'Labels', 'mycred' ); ?></h4>
583
+ <table class="form-table">
584
+ <tr valign="top">
585
+ <th scope="row"><?php _e( 'Payment Link Label', 'mycred' ); ?></th>
586
+ <td>
587
+ <input name="mycred_gateway[labels][link]" type="text" id="mycred-gateway-labels-link" style="width: 95%" value="<?php echo $this->prefs['labels']['link']; ?>" size="45" /><br />
588
+ <span class="description"><?php _e( 'The payment link shows / hides the payment form under "My Bookings". No HTML allowed.', 'mycred' ); ?></span>
589
+ </td>
590
+ </tr>
591
+ <tr valign="top">
592
+ <th scope="row"><?php _e( 'Payment Header', 'mycred' ); ?></th>
593
+ <td>
594
+ <input name="mycred_gateway[labels][header]" type="text" id="mycred-gateway-labels-header" style="width: 95%" value="<?php echo $this->prefs['labels']['header']; ?>" size="45" /><br />
595
+ <span class="description"><?php _e( 'Shown on top of the payment form. No HTML allowed.', 'mycred' ); ?></span>
596
+ </td>
597
+ </tr>
598
+ <tr valign="top">
599
+ <th scope="row"><?php _e( 'Button Label', 'mycred' ); ?></th>
600
+ <td>
601
+ <input name="mycred_gateway[labels][button]" type="text" id="mycred-gateway-labels-button" style="width: 95%" value="<?php echo $this->prefs['labels']['button']; ?>" size="45" /><br />
602
+ <span class="description"><?php _e( 'The button label for payments. No HTML allowed!', 'mycred' ); ?></span>
603
+ </td>
604
+ </tr>
605
+ </table>
606
+ <h4><?php _e( 'Messages', 'mycred' ); ?></h4>
607
+ <table class='form-table'>
608
+ <tr valign="top">
609
+ <th scope="row"><?php _e( 'Successful Payments', 'mycred' ); ?></th>
610
+ <td>
611
+ <input type="text" name="mycred_gateway[messages][success]" id="mycred-gateway-messages-success" style="width: 95%;" value="<?php echo stripslashes( $this->prefs['messages']['success'] ); ?>" /><br />
612
+ <span class="description"><?php _e( 'No HTML allowed! Available template tags: General', 'mycred' ); ?></span>
613
+ </td>
614
+ </tr>
615
+ <tr valign="top">
616
+ <th scope="row"><?php _e( 'Insufficient Funds', 'mycred' ); ?></th>
617
+ <td>
618
+ <input type="text" name="mycred_gateway[messages][error]" id="mycred-gateway-messages-error" style="width: 95%;" value="<?php echo stripslashes( $this->prefs['messages']['error'] ); ?>" /><br />
619
+ <span class="description"><?php _e( 'No HTML allowed! Available template tags: General', 'mycred' ); ?></span>
620
+ </td>
621
+ </tr>
622
+ </table>
623
+ <?php do_action( 'mycred_em_after_settings', $this ); ?>
624
+
625
  <script type="text/javascript">
626
  jQuery(function($){
627
  $('input[name="mycred_gateway[setup]"]').change(function(){
634
  });
635
  });
636
  </script>
637
+ </div>
638
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
639
  <?php
640
  }
641
 
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -312,7 +312,7 @@ ORDER BY ID;", 'ARRAY_A' );
312
  // Loop though each rank
313
  foreach ( $ranks as $rank ) {
314
  // If balance fits break with this ranks details
315
- if ( $balance >= $mycred->number( $rank['min'] ) ) {
316
  $rank_id = $rank['ID'];
317
  $rank_title = $rank['title'];
318
  break;
@@ -381,7 +381,6 @@ if ( ! function_exists( 'mycred_get_my_rank' ) ) {
381
  * @param $status (string) post status, defaults to 'publish'
382
  * @param $number (int|string) number of ranks to return, defaults to all
383
  * @param $order (string) option to return ranks ordered Ascending or Descending
384
- * @uses WP_Query()
385
  * @returns (array) empty if no ranks are found or associative array with post ID as key and title as value
386
  * @since 1.1
387
  * @version 1.2
312
  // Loop though each rank
313
  foreach ( $ranks as $rank ) {
314
  // If balance fits break with this ranks details
315
+ if ( $balance >= $mycred->number( $rank['min'] ) && $balance <= $mycred->number( $rank['max'] ) ) {
316
  $rank_id = $rank['ID'];
317
  $rank_title = $rank['title'];
318
  break;
381
  * @param $status (string) post status, defaults to 'publish'
382
  * @param $number (int|string) number of ranks to return, defaults to all
383
  * @param $order (string) option to return ranks ordered Ascending or Descending
 
384
  * @returns (array) empty if no ranks are found or associative array with post ID as key and title as value
385
  * @since 1.1
386
  * @version 1.2
assets/css/admin.css CHANGED
@@ -25,7 +25,7 @@
25
  body.mp6 #myCRED-wrap .h2 { line-height: 15px; font-size: 18px; }
26
  body.mp6 #myCRED-wrap .h2.description { line-height: 22px; }
27
  body.mp6 #myCRED-wrap .h2 input[type="text"] { font-size: 14px; }
28
- #myCRED-wrap .h2 input[type="text"] { line-height: inherit; }
29
 
30
  /* Accordion */
31
  #myCRED-wrap #accordion { margin: 24px 0; padding: 0; float: none; clear: both; }
25
  body.mp6 #myCRED-wrap .h2 { line-height: 15px; font-size: 18px; }
26
  body.mp6 #myCRED-wrap .h2.description { line-height: 22px; }
27
  body.mp6 #myCRED-wrap .h2 input[type="text"] { font-size: 14px; }
28
+ #myCRED-wrap .h2 input[type="text"], #myCRED-wrap .h2 input[type="password"] { line-height: inherit; }
29
 
30
  /* Accordion */
31
  #myCRED-wrap #accordion { margin: 24px 0; padding: 0; float: none; clear: both; }
assets/css/overview.css CHANGED
@@ -29,4 +29,6 @@ div.columns-3 #mycred_overview .table_content.push,
29
  div.columns-4 #mycred_overview .table_content.push { margin-right: 0; }
30
  div.columns-4 #mycred_overview td.b a,
31
  div.columns-4 #mycred_overview .t { font-size: 12px; }
32
- div.columns-4 #mycred_overview td { line-height: 1em; }
 
 
29
  div.columns-4 #mycred_overview .table_content.push { margin-right: 0; }
30
  div.columns-4 #mycred_overview td.b a,
31
  div.columns-4 #mycred_overview .t { font-size: 12px; }
32
+ div.columns-4 #mycred_overview td { line-height: 1em; }
33
+
34
+ #mycred_overview form.dashboard-widget-control-form { overflow: visible; }
assets/js/links.js CHANGED
@@ -1,7 +1,8 @@
1
  /**
2
  * myCRED Points for Link Clicks jQuery Scripts
 
3
  * @since 0.1
4
- * @version 1.3.2
5
  */
6
  jQuery(function($) {
7
  var mycred_click = function( href, title, target, skey ) {
@@ -18,7 +19,7 @@ jQuery(function($) {
18
  url : myCREDgive.ajaxurl,
19
  success : function( data ) {
20
  //console.log( data );
21
- if ( target == 'self' )
22
  window.location.href = href;
23
  },
24
  error : function( jqXHR, textStatus, errorThrown ) {
@@ -38,6 +39,6 @@ jQuery(function($) {
38
 
39
  mycred_click( $(this).attr( 'href' ), $(this).text(), target, $(this).attr( 'data-key' ) );
40
 
41
- if ( target == 'self' ) return false;
42
  });
43
  });
1
  /**
2
  * myCRED Points for Link Clicks jQuery Scripts
3
+ * @contributors Kevin Reeves
4
  * @since 0.1
5
+ * @version 1.3.3
6
  */
7
  jQuery(function($) {
8
  var mycred_click = function( href, title, target, skey ) {
19
  url : myCREDgive.ajaxurl,
20
  success : function( data ) {
21
  //console.log( data );
22
+ if ( target == 'self' || target == '_self' )
23
  window.location.href = href;
24
  },
25
  error : function( jqXHR, textStatus, errorThrown ) {
39
 
40
  mycred_click( $(this).attr( 'href' ), $(this).text(), target, $(this).attr( 'data-key' ) );
41
 
42
+ if ( target == 'self' || target == '_self' ) return false;
43
  });
44
  });
includes/mycred-admin.php CHANGED
@@ -103,7 +103,7 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
103
  */
104
  public function admin_header() {
105
  $screen = get_current_screen();
106
- if ( $screen->id == 'users' && mycred_is_admin() ) {
107
  wp_enqueue_script( 'mycred-inline-edit' );
108
  wp_enqueue_style( 'mycred-inline-edit' );
109
  }
@@ -121,12 +121,9 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
121
  /**
122
  * Customize Users Column Headers
123
  * @since 0.1
124
- * @version 1.0
125
  */
126
  public function custom_user_column( $columns ) {
127
- $user_id = get_current_user_id();
128
- if ( !$this->core->can_edit_creds( $user_id ) || !$this->core->can_edit_plugin( $user_id ) ) return $columns;
129
-
130
  $columns['mycred-balance'] = $this->core->plural();
131
  return $columns;
132
  }
@@ -165,7 +162,7 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
165
  * Customize User Columns Content
166
  * @filter 'mycred_user_row_actions'
167
  * @since 0.1
168
- * @version 1.1
169
  */
170
  public function custom_user_column_content( $value, $column_name, $user_id ) {
171
  if ( 'mycred-balance' != $column_name ) return $value;
@@ -179,8 +176,7 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
179
  // Row actions
180
  $row = array();
181
  $row['history'] = '<a href="' . admin_url( 'admin.php?page=myCRED&user_id=' . $user_id ) . '">' . __( 'History', 'mycred' ) . '</a>';
182
- if ( $this->core->can_edit_creds( get_current_user_id() ) )
183
- $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '">' . __( 'Adjust', 'mycred' ) . '</a>';
184
 
185
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $this->core );
186
  $balance .= $this->row_actions( $rows );
@@ -333,10 +329,13 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
333
  * Admin Footer
334
  * Inserts the Inline Edit Form modal.
335
  * @since 1.2
336
- * @version 1.0
337
  */
338
  public function admin_footer() {
339
- if ( $this->core->can_edit_creds() && !$this->core->can_edit_plugin() )
 
 
 
340
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
341
  else
342
  $req = '(' . __( 'optional', 'mycred' ) . ')'; ?>
103
  */
104
  public function admin_header() {
105
  $screen = get_current_screen();
106
+ if ( $screen->id == 'users' ) {
107
  wp_enqueue_script( 'mycred-inline-edit' );
108
  wp_enqueue_style( 'mycred-inline-edit' );
109
  }
121
  /**
122
  * Customize Users Column Headers
123
  * @since 0.1
124
+ * @version 1.1
125
  */
126
  public function custom_user_column( $columns ) {
 
 
 
127
  $columns['mycred-balance'] = $this->core->plural();
128
  return $columns;
129
  }
162
  * Customize User Columns Content
163
  * @filter 'mycred_user_row_actions'
164
  * @since 0.1
165
+ * @version 1.2
166
  */
167
  public function custom_user_column_content( $value, $column_name, $user_id ) {
168
  if ( 'mycred-balance' != $column_name ) return $value;
176
  // Row actions
177
  $row = array();
178
  $row['history'] = '<a href="' . admin_url( 'admin.php?page=myCRED&user_id=' . $user_id ) . '">' . __( 'History', 'mycred' ) . '</a>';
179
+ $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '">' . __( 'Adjust', 'mycred' ) . '</a>';
 
180
 
181
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $this->core );
182
  $balance .= $this->row_actions( $rows );
329
  * Admin Footer
330
  * Inserts the Inline Edit Form modal.
331
  * @since 1.2
332
+ * @version 1.1
333
  */
334
  public function admin_footer() {
335
+ $screen = get_current_screen();
336
+ if ( $screen->id != 'users' ) return;
337
+
338
+ if ( $this->core->can_edit_creds() && ! $this->core->can_edit_plugin() )
339
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
340
  else
341
  $req = '(' . __( 'optional', 'mycred' ) . ')'; ?>
includes/mycred-functions.php CHANGED
@@ -3,7 +3,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * myCRED_Settings class
6
- * @see http://mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
  * @version 1.3
9
  */
@@ -1181,7 +1181,7 @@ if ( ! function_exists( 'mycred_is_admin' ) ) {
1181
  /**
1182
  * Exclude User
1183
  * Checks if a given user is excluded from using myCRED.
1184
- * @see http://mycred.me/functions/mycred_exclude_user/
1185
  * @param $user_id (int), optional user to check, defaults to current user
1186
  * @since 0.1
1187
  * @version 1.0
@@ -1284,7 +1284,7 @@ if ( ! function_exists( 'mycred_format_creds' ) ) {
1284
  * Important! This function will not check if the user should be excluded from gaining points, this must
1285
  * be done before calling this function!
1286
  *
1287
- * @see http://mycred.me/functions/mycred_add/
1288
  * @param $ref (string), required reference id
1289
  * @param $user_id (int), required id of the user who will get these points
1290
  * @param $amount (int|float), required number of creds to give or deduct from the given user.
@@ -1311,7 +1311,7 @@ if ( ! function_exists( 'mycred_add' ) ) {
1311
  /**
1312
  * Subtract Creds
1313
  * Subtracts creds from a given user. Works just as mycred_add() but the creds are converted into a negative value.
1314
- * @see http://mycred.me/functions/mycred_subtract/
1315
  * @uses mycred_add()
1316
  * @since 0.1
1317
  * @version 1.0
@@ -1328,7 +1328,7 @@ if ( ! function_exists( 'mycred_subtract' ) ) {
1328
  /**
1329
  * Count Reference Instances
1330
  * Counts the total number of occurrences of a specific reference for a user.
1331
- * @see http://mycred.me/functions/mycred_count_ref_instances/
1332
  * @param $reference (string) required reference to check
1333
  * @param $user_id (int) option to check references for a specific user
1334
  * @uses get_var()
@@ -1360,7 +1360,7 @@ if ( ! function_exists( 'mycred_count_ref_instances' ) ) {
1360
  * Count All Reference Instances
1361
  * Counts all the reference instances in the log returning the result
1362
  * in an assosiative array.
1363
- * @see http://mycred.me/functions/mycred_count_all_ref_instances/
1364
  * @param $number (int) number of references to return. Defaults to 5. Use '-1' for all.
1365
  * @param $order (string) order to return ASC or DESC
1366
  * @filter mycred_count_all_refs
3
 
4
  /**
5
  * myCRED_Settings class
6
+ * @see http://codex.mycred.me/classes/mycred_settings/
7
  * @since 0.1
8
  * @version 1.3
9
  */
1181
  /**
1182
  * Exclude User
1183
  * Checks if a given user is excluded from using myCRED.
1184
+ * @see http://codex.mycred.me/functions/mycred_exclude_user/
1185
  * @param $user_id (int), optional user to check, defaults to current user
1186
  * @since 0.1
1187
  * @version 1.0
1284
  * Important! This function will not check if the user should be excluded from gaining points, this must
1285
  * be done before calling this function!
1286
  *
1287
+ * @see http://codex.mycred.me/functions/mycred_add/
1288
  * @param $ref (string), required reference id
1289
  * @param $user_id (int), required id of the user who will get these points
1290
  * @param $amount (int|float), required number of creds to give or deduct from the given user.
1311
  /**
1312
  * Subtract Creds
1313
  * Subtracts creds from a given user. Works just as mycred_add() but the creds are converted into a negative value.
1314
+ * @see http://codex.mycred.me/functions/mycred_subtract/
1315
  * @uses mycred_add()
1316
  * @since 0.1
1317
  * @version 1.0
1328
  /**
1329
  * Count Reference Instances
1330
  * Counts the total number of occurrences of a specific reference for a user.
1331
+ * @see http://codex.mycred.me/functions/mycred_count_ref_instances/
1332
  * @param $reference (string) required reference to check
1333
  * @param $user_id (int) option to check references for a specific user
1334
  * @uses get_var()
1360
  * Count All Reference Instances
1361
  * Counts all the reference instances in the log returning the result
1362
  * in an assosiative array.
1363
+ * @see http://codex.mycred.me/functions/mycred_count_all_ref_instances/
1364
  * @param $number (int) number of references to return. Defaults to 5. Use '-1' for all.
1365
  * @param $order (string) order to return ASC or DESC
1366
  * @filter mycred_count_all_refs
includes/mycred-log.php CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * Query Log
6
- * @see http://mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
  * @version 1.3
9
  */
3
 
4
  /**
5
  * Query Log
6
+ * @see http://codex.mycred.me/classes/mycred_query_log/
7
  * @since 0.1
8
  * @version 1.3
9
  */
includes/mycred-overview.php CHANGED
@@ -68,7 +68,8 @@ if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
68
  public static function widget() {
69
  $mycred = mycred_get_settings();
70
  $modules = self::get_modules();
71
- $prefs = self::get_dashboard_widget_options( self::wid ); ?>
 
72
 
73
  <div class="overview-module-wrap">
74
  <?php
@@ -121,7 +122,8 @@ if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
121
  public static function config() {
122
  $mycred = mycred_get_settings();
123
  $modules = self::get_modules();
124
- $prefs = self::get_dashboard_widget_options( self::wid ); ?>
 
125
 
126
  <div class="overview-module-wrap">
127
  <?php
@@ -263,6 +265,7 @@ if ( ! class_exists( 'myCRED_Overview_Widget_Module_Refs' ) ) {
263
  * Display Module
264
  */
265
  public function display( $prefs ) {
 
266
  $reference_count = mycred_count_all_ref_instances( $prefs['number'] );
267
  $ref_count = count( $reference_count ); ?>
268
 
68
  public static function widget() {
69
  $mycred = mycred_get_settings();
70
  $modules = self::get_modules();
71
+ $prefs = self::get_dashboard_widget_options( self::wid );
72
+ if ( ! isset( $prefs['active'] ) ) $prefs['active'] = array(); ?>
73
 
74
  <div class="overview-module-wrap">
75
  <?php
122
  public static function config() {
123
  $mycred = mycred_get_settings();
124
  $modules = self::get_modules();
125
+ $prefs = self::get_dashboard_widget_options( self::wid );
126
+ if ( ! isset( $prefs['active'] ) ) $prefs['active'] = array(); ?>
127
 
128
  <div class="overview-module-wrap">
129
  <?php
265
  * Display Module
266
  */
267
  public function display( $prefs ) {
268
+ if ( ! isset( $prefs['number'] ) ) $prefs['number'] = 5;
269
  $reference_count = mycred_count_all_ref_instances( $prefs['number'] );
270
  $ref_count = count( $reference_count ); ?>
271
 
includes/mycred-rankings.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
- if ( !defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * myCRED Query Rankings Class
6
- * @see http://mycred.me/features/mycred_query_rankings/
7
  * @since 1.1.2
8
  * @version 1.1
9
  */
10
- if ( !class_exists( 'myCRED_Query_Rankings' ) ) {
11
  class myCRED_Query_Rankings {
12
 
13
  public $args;
@@ -167,7 +167,7 @@ ORDER BY {$wpdb->usermeta}.meta_value+1 {$order} {$limit};", $this->args, $wpdb
167
 
168
  /**
169
  * myCRED_Rankings class
170
- * @see http://mycred.me/features/mycred_rankings/
171
  * @since 0.1
172
  * @version 2.0
173
  */
1
  <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * myCRED Query Rankings Class
6
+ * @see http://codex.mycred.me/classes/mycred_query_rankings/
7
  * @since 1.1.2
8
  * @version 1.1
9
  */
10
+ if ( ! class_exists( 'myCRED_Query_Rankings' ) ) {
11
  class myCRED_Query_Rankings {
12
 
13
  public $args;
167
 
168
  /**
169
  * myCRED_Rankings class
170
+ * @see http://codex.mycred.me/classes/mycred_rankings/
171
  * @since 0.1
172
  * @version 2.0
173
  */
includes/mycred-remote.php CHANGED
@@ -5,7 +5,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED Remote API
6
  * Allows execution of remote actions such as adding points, removing points,
7
  * transfering points between two users and balance checks.
8
- * @see http://mycred.me/classes/mycred_remote/
9
  * @since 1.3
10
  * @version 1.0
11
  */
5
  * myCRED Remote API
6
  * Allows execution of remote actions such as adding points, removing points,
7
  * transfering points between two users and balance checks.
8
+ * @see http://codex.mycred.me/classes/mycred_remote/
9
  * @since 1.3
10
  * @version 1.0
11
  */
includes/mycred-shortcodes.php CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
3
  /**
4
  * myCRED Shortcode: my_balance
5
  * Returns the current users balance.
6
- * @see http://mycred.me/shortcodes/mycred_my_balance/
7
  * @contributor Ian Tasker
8
  * @since 1.0.9
9
  * @version 1.1
@@ -80,12 +80,12 @@ if ( ! function_exists( 'mycred_render_shortcode_my_balance' ) ) {
80
  /**
81
  * myCRED Shortcode: mycred_history
82
  * Returns the points history.
83
- * @see http://mycred.me/shortcodes/mycred_history/
84
  * @since 1.0.9
85
  * @version 1.0
86
  */
87
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) {
88
- function mycred_render_shortcode_history( $atts ) {
89
  extract( shortcode_atts( array(
90
  'user_id' => NULL,
91
  'number' => NULL,
@@ -130,6 +130,7 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) {
130
 
131
  /**
132
  * myCRED Shortcode: mycred_leaderboard
 
133
  * @since 0.1
134
  * @version 1.2
135
  */
@@ -174,11 +175,12 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
174
 
175
  /**
176
  * myCRED Shortcode: mycred_my_ranking
 
177
  * @since 0.1
178
  * @version 1.1
179
  */
180
  if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
181
- function mycred_render_my_ranking( $atts, $content )
182
  {
183
  extract( shortcode_atts( array(
184
  'user_id' => NULL
@@ -202,12 +204,12 @@ if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
202
  * when this shortcode is executed. You can insert this in page/post content
203
  * or in a template file. Note that users are awarded/deducted points each time
204
  * this shortcode exectutes!
205
- * @see
206
  * @since 1.1
207
  * @version 1.1
208
  */
209
  if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
210
- function mycred_render_shortcode_give( $atts, $content )
211
  {
212
  if ( ! is_user_logged_in() ) return;
213
 
@@ -260,12 +262,12 @@ if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
260
  * Note! Only HTML5 anchor attributes are supported and this shortcode is only
261
  * available if the hook is enabled!
262
  *
263
- * @see http://mycred.me/shortcodes/mycred_link/
264
  * @since 1.1
265
  * @version 1.1
266
  */
267
  if ( ! function_exists( 'mycred_render_shortcode_link' ) ) {
268
- function mycred_render_shortcode_link( $atts, $content )
269
  {
270
  global $mycred_link_points;
271
 
@@ -327,12 +329,12 @@ if ( ! function_exists( 'mycred_render_shortcode_link' ) ) {
327
  * myCRED Shortcode: mycred_send
328
  * This shortcode allows the current user to send a pre-set amount of points
329
  * to a pre-set user. A simpler version of the mycred_transfer shortcode.
330
- * @see
331
  * @since 1.1
332
  * @version 1.0
333
  */
334
  if ( ! function_exists( 'mycred_render_shortcode_send' ) ) {
335
- function mycred_render_shortcode_send( $atts, $content )
336
  {
337
  if ( ! is_user_logged_in() ) return;
338
 
@@ -481,12 +483,12 @@ if ( ! function_exists( 'mycred_shortcode_send_points_ajax' ) ) {
481
  * myCRED Shortcode: mycred_video
482
  * This shortcode allows points to be given to the current user
483
  * for watchinga YouTube video.
484
- * @see http://mycred.me/shortcodes/mycred_video/
485
  * @since 1.2
486
  * @version 1.0
487
  */
488
  if ( ! function_exists( 'mycred_render_shortcode_video' ) ) {
489
- function mycred_render_shortcode_video( $atts, $content )
490
  {
491
  global $mycred_video_points;
492
 
3
  /**
4
  * myCRED Shortcode: my_balance
5
  * Returns the current users balance.
6
+ * @see http://codex.mycred.me/shortcodes/mycred_my_balance/
7
  * @contributor Ian Tasker
8
  * @since 1.0.9
9
  * @version 1.1
80
  /**
81
  * myCRED Shortcode: mycred_history
82
  * Returns the points history.
83
+ * @see http://codex.mycred.me/shortcodes/mycred_history/
84
  * @since 1.0.9
85
  * @version 1.0
86
  */
87
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) {
88
+ function mycred_render_shortcode_history( $atts, $content = NULL ) {
89
  extract( shortcode_atts( array(
90
  'user_id' => NULL,
91
  'number' => NULL,
130
 
131
  /**
132
  * myCRED Shortcode: mycred_leaderboard
133
+ * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
134
  * @since 0.1
135
  * @version 1.2
136
  */
175
 
176
  /**
177
  * myCRED Shortcode: mycred_my_ranking
178
+ * @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
179
  * @since 0.1
180
  * @version 1.1
181
  */
182
  if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
183
+ function mycred_render_my_ranking( $atts, $content = NULL )
184
  {
185
  extract( shortcode_atts( array(
186
  'user_id' => NULL
204
  * when this shortcode is executed. You can insert this in page/post content
205
  * or in a template file. Note that users are awarded/deducted points each time
206
  * this shortcode exectutes!
207
+ * @see http://codex.mycred.me/shortcodes/mycred_give/
208
  * @since 1.1
209
  * @version 1.1
210
  */
211
  if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
212
+ function mycred_render_shortcode_give( $atts, $content = NULL )
213
  {
214
  if ( ! is_user_logged_in() ) return;
215
 
262
  * Note! Only HTML5 anchor attributes are supported and this shortcode is only
263
  * available if the hook is enabled!
264
  *
265
+ * @see http://codex.mycred.me/shortcodes/mycred_link/
266
  * @since 1.1
267
  * @version 1.1
268
  */
269
  if ( ! function_exists( 'mycred_render_shortcode_link' ) ) {
270
+ function mycred_render_shortcode_link( $atts, $content = NULL )
271
  {
272
  global $mycred_link_points;
273
 
329
  * myCRED Shortcode: mycred_send
330
  * This shortcode allows the current user to send a pre-set amount of points
331
  * to a pre-set user. A simpler version of the mycred_transfer shortcode.
332
+ * @see http://codex.mycred.me/shortcodes/mycred_send/
333
  * @since 1.1
334
  * @version 1.0
335
  */
336
  if ( ! function_exists( 'mycred_render_shortcode_send' ) ) {
337
+ function mycred_render_shortcode_send( $atts, $content = NULL )
338
  {
339
  if ( ! is_user_logged_in() ) return;
340
 
483
  * myCRED Shortcode: mycred_video
484
  * This shortcode allows points to be given to the current user
485
  * for watchinga YouTube video.
486
+ * @see http://codex.mycred.me/shortcodes/mycred_video/
487
  * @since 1.2
488
  * @version 1.0
489
  */
490
  if ( ! function_exists( 'mycred_render_shortcode_video' ) ) {
491
+ function mycred_render_shortcode_video( $atts, $content = NULL )
492
  {
493
  global $mycred_video_points;
494
 
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred.pot CHANGED
@@ -4,182 +4,193 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
- "POT-Creation-Date: 2013-12-10 10:20+0100\n"
8
- "PO-Revision-Date: 2013-12-10 10:21+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.1\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\n"
20
  "X-Poedit-SearchPath-1: .\n"
21
 
22
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:354
23
  msgid "My Balance: %cred_f%"
24
  msgstr ""
25
 
26
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:387
27
  #, php-format
28
  msgid "About %s"
29
  msgstr ""
30
 
31
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:396
32
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:138
33
  msgid "Awesome People"
34
  msgstr ""
35
 
36
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:477
37
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:500
38
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:235
39
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:913
40
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:275
41
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:138
42
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:406
43
  msgid "Processing..."
44
  msgstr ""
45
 
46
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:478
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/mycred.php:479
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/mycred.php:480
57
  msgid "Done!"
58
  msgstr ""
59
 
60
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:481
61
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:499
62
  msgid "Close"
63
  msgstr ""
64
 
65
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:482
66
  msgid "Export users %plural%"
67
  msgstr ""
68
 
69
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:498
70
  #, php-format
71
  msgid "Edit Users %s balance"
72
  msgstr ""
73
 
74
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:562
75
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:622
76
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:447
77
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:515
78
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:421
 
79
  msgid "Setup"
80
  msgstr ""
81
 
82
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:566
 
 
 
 
 
 
 
 
 
 
83
  msgid "About"
84
  msgstr ""
85
 
86
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:567
87
  msgid "Tutorials"
88
  msgstr ""
89
 
90
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:568
91
  msgid "Codex"
92
  msgstr ""
93
 
94
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/mycred.php:569
95
  msgid "Store"
96
  msgstr ""
97
 
98
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:57
99
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
100
  msgstr ""
101
 
102
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:66
103
  msgid "This Hook has no settings"
104
  msgstr ""
105
 
106
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:133
107
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1051
108
  msgid "No limit"
109
  msgstr ""
110
 
111
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:134
112
  msgid "Once every 24 hours"
113
  msgstr ""
114
 
115
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:135
116
  msgid "Once every 12 hours"
117
  msgstr ""
118
 
119
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:136
120
  msgid "Once every 7 days"
121
  msgstr ""
122
 
123
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:137
124
  msgid "Once per day (reset at midnight)"
125
  msgstr ""
126
 
127
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-hook.php:144
128
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:342
129
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:262
130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:283
131
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
132
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:560
133
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:516
134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:373
135
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:184
136
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:771
137
  msgid "Select"
138
  msgstr ""
139
 
140
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-module.php:42
141
  msgid "myCRED_Module() Error. A Module ID is required!"
142
  msgstr ""
143
 
144
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-module.php:313
145
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-module.php:321
146
  msgid "Surprise"
147
  msgstr ""
148
 
149
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-module.php:378
150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:154
151
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:180
152
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:103
153
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:202
154
  msgid "click to close"
155
  msgstr ""
156
 
157
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/abstracts/mycred-abstract-module.php:379
158
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:155
159
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:181
160
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:104
161
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:203
162
  msgid "click to open"
163
  msgstr ""
164
 
165
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:12
166
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:49
167
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:50
168
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:51
169
  msgid "Banking"
170
  msgstr ""
171
 
172
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:13
173
  msgid ""
174
  "This add-on allows you to offer interest on your users points balances or "
175
  "setup recurring payouts."
176
  msgstr ""
177
 
178
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:110
179
  msgid "Compound Interest"
180
  msgstr ""
181
 
182
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:111
183
  msgid ""
184
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
185
  "annual and is compounded daily as long as this service is enabled. Positive "
@@ -187,210 +198,210 @@ msgid ""
187
  "rate will to users loosing %_plural%."
188
  msgstr ""
189
 
190
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:117
191
  msgid "Recurring Payouts"
192
  msgstr ""
193
 
194
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:118
195
  msgid ""
196
  "Give your users %_plural% on a regular basis with the option to set the "
197
  "number of times you want this payout to run (cycles)."
198
  msgstr ""
199
 
200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:167
201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:458
202
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:149
203
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:254
204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:215
205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:149
206
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:266
207
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:355
208
  msgid "Access Denied"
209
  msgstr ""
210
 
211
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:174
212
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:341
213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:226
214
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:158
215
  msgid "Settings Updated"
216
  msgstr ""
217
 
218
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:179
219
  #, php-format
220
  msgid "%s Banking"
221
  msgstr ""
222
 
223
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:180
224
  msgid ""
225
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
226
  "purchases or payments using the Gateway add-on, along with offering interest "
227
  "on %_plural% balances."
228
  msgstr ""
229
 
230
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:183
231
  msgid "WP-Cron deactivation detected!"
232
  msgstr ""
233
 
234
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:184
235
  msgid "Warning! This add-on requires WP - Cron to work."
236
  msgstr ""
237
 
238
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:197
239
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:370
240
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:172
241
  msgid "Enable"
242
  msgstr ""
243
 
244
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/myCRED-addon-banking.php:210
245
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:185
246
  msgid "Update Changes"
247
  msgstr ""
248
 
249
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:57
250
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
251
  msgstr ""
252
 
253
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:66
254
  msgid "This Service has no settings"
255
  msgstr ""
256
 
257
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:143
258
  msgid "Hourly"
259
  msgstr ""
260
 
261
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:147
262
  msgid "Daily"
263
  msgstr ""
264
 
265
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:151
266
  msgid "Weekly"
267
  msgstr ""
268
 
269
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:155
270
  msgid "Monthly"
271
  msgstr ""
272
 
273
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:159
274
  msgid "Quarterly"
275
  msgstr ""
276
 
277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:163
278
  msgid "Semiannually"
279
  msgstr ""
280
 
281
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/abstracts/mycred-abstract-service.php:167
282
  msgid "Annually"
283
  msgstr ""
284
 
285
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:25
286
  msgid "%plural% interest rate payment"
287
  msgstr ""
288
 
289
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:275
290
  msgid "Interest Rate"
291
  msgstr ""
292
 
293
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:282
294
  msgid "Payed / Charged"
295
  msgstr ""
296
 
297
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:288
298
  msgid ""
299
  "The interest rate can be either positive or negative and is compounded daily."
300
  msgstr ""
301
 
302
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:291
303
  msgid "Minimum Balance"
304
  msgstr ""
305
 
306
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:295
307
  msgid "The minimum requires balance for interest to apply."
308
  msgstr ""
309
 
310
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:298
311
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:263
312
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:240
313
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:295
314
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:360
315
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:393
316
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:93
317
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:141
318
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:335
319
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:440
320
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1217
321
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1548
322
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:110
323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:112
324
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:121
325
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:146
326
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:159
327
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:105
328
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:118
329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:130
330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:143
331
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-polls.php:132
332
  msgid "Log Template"
333
  msgstr ""
334
 
335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:302
336
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
337
  msgstr ""
338
 
339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:305
340
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:270
341
  msgid "Run Time"
342
  msgstr ""
343
 
344
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-interest.php:309
345
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:274
346
  msgid ""
347
  "For large websites, if you are running into time out issues during payouts, "
348
  "you can set the number of seconds a process can run. Use zero for unlimited, "
349
  "but be careful especially if you are on a shared server."
350
  msgstr ""
351
 
352
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:21
353
  msgid "Daily %_plural%"
354
  msgstr ""
355
 
356
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:225
357
  msgid "Not yet run"
358
  msgstr ""
359
 
360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:230
361
  msgid "Pay Users"
362
  msgstr ""
363
 
364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:233
365
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:679
366
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:351
367
  msgid "Amount"
368
  msgstr ""
369
 
370
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:235
371
  msgid "Can not be zero."
372
  msgstr ""
373
 
374
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:239
375
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:252
376
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1563
377
  msgid "Interval"
378
  msgstr ""
379
 
380
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:244
381
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:253
382
  msgid "Cycles"
383
  msgstr ""
384
 
385
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:246
386
  msgid "Set to -1 for unlimited"
387
  msgstr ""
388
 
389
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:249
390
  msgid "Last Run / Activated"
391
  msgstr ""
392
 
393
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:252
394
  msgid ""
395
  "Select how often you want to award %_plural%. Note that when this service is "
396
  "enabled, the first payout will be in the beginning of the next period. So "
@@ -398,1722 +409,1624 @@ msgid ""
398
  "morning."
399
  msgstr ""
400
 
401
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:253
402
  msgid ""
403
  "Cycles let you choose how many intervals this service should run. Each time "
404
  "a cycle runs, the value will decrease until it hits zero, in which case this "
405
  "service will deactivate itself. Use -1 to run unlimited times."
406
  msgstr ""
407
 
408
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:254
409
  msgid "Important"
410
  msgstr ""
411
 
412
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:254
413
  msgid ""
414
  "You can always stop payouts by deactivating this service. Just remember that "
415
  "if you deactivate while there are cycles left, this service will continue on "
416
  "when it gets re-activated. Set cycles to zero to reset."
417
  msgstr ""
418
 
419
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:256
420
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:597
421
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:289
422
  msgid "Excludes"
423
  msgstr ""
424
 
425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:260
426
  msgid ""
427
  "Comma separated list of user IDs to exclude from this service. No spaces "
428
  "allowed!"
429
  msgstr ""
430
 
431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/banking/services/mycred-bank-service-payouts.php:267
432
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-galleries.php:81
433
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:435
434
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:448
435
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:461
436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:474
437
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:487
438
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:500
439
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:514
440
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:527
441
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:540
442
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:553
443
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:175
444
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:188
445
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:201
446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:214
447
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:338
448
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:351
449
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:390
450
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:403
451
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:416
452
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:429
453
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:450
454
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:444
455
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1552
456
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:109
457
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:122
458
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:144
459
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:165
460
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:499
461
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:512
462
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:328
463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:341
464
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:365
465
  msgid "Available template tags: General"
466
  msgstr ""
467
 
468
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:13
469
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:407
470
  msgid "BuddyPress"
471
  msgstr ""
472
 
473
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:14
474
  msgid ""
475
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
476
  "BuddyPress allowing you to hook into most BuddyPress related actions."
477
  msgstr ""
478
 
479
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:58
480
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:69
481
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:379
482
  msgid "My History"
483
  msgstr ""
484
 
485
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:59
486
  #, php-format
487
  msgid "%s's History"
488
  msgstr ""
489
 
490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:239
491
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:248
492
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:447
493
  msgid "All"
494
  msgstr ""
495
 
496
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:240
497
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:448
498
  msgid "Today"
499
  msgstr ""
500
 
501
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:241
502
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:449
503
  msgid "Yesterday"
504
  msgstr ""
505
 
506
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:242
507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:450
508
  msgid "This Week"
509
  msgstr ""
510
 
511
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:243
512
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:451
513
  msgid "This Month"
514
  msgstr ""
515
 
516
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:343
517
  msgid "BuddyPress: Groups"
518
  msgstr ""
519
 
520
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:344
521
  msgid ""
522
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
523
  "zero to disable a specific hook."
524
  msgstr ""
525
 
526
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:351
527
  msgid "BuddyPress: Members"
528
  msgstr ""
529
 
530
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:352
531
  msgid "Awards %_plural% for profile related actions."
532
  msgstr ""
533
 
534
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:359
535
  msgid "BuddyPress: Links"
536
  msgstr ""
537
 
538
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:360
539
  msgid "Awards %_plural% for link related actions."
540
  msgstr ""
541
 
542
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:367
543
  msgid "BuddyPress: Gallery Actions"
544
  msgstr ""
545
 
546
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:368
547
  msgid ""
548
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
549
  "Gallery."
550
  msgstr ""
551
 
552
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:388
553
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:395
554
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:852
555
  msgid "Do not show."
556
  msgstr ""
557
 
558
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:389
559
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:853
560
  msgid "Include in Profile Header."
561
  msgstr ""
562
 
563
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:390
564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:854
565
  msgid "Include under the \"Profile\" tab"
566
  msgstr ""
567
 
568
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:391
569
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:855
570
  msgid "Include under the \"Profile\" tab and Profile Header."
571
  msgstr ""
572
 
573
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:396
574
  msgid "Show in Profile"
575
  msgstr ""
576
 
577
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:409
578
  msgid "%singular% Balance"
579
  msgstr ""
580
 
581
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:425
582
  msgid "Members can view each others %_singular% balance."
583
  msgstr ""
584
 
585
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:430
586
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:176
587
  msgid "Template"
588
  msgstr ""
589
 
590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:432
591
  msgid "Available template tags are: %creds%, %number%, %rank%"
592
  msgstr ""
593
 
594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:433
595
  msgid ""
596
  "Note that you can also use %rank_logo% to show the feature image of the rank."
597
  msgstr ""
598
 
599
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:437
600
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:162
601
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:70
602
  msgid "%plural% History"
603
  msgstr ""
604
 
605
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:453
606
  msgid "Members can view each others %_plural% history."
607
  msgstr ""
608
 
609
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:458
610
  msgid "Menu Title"
611
  msgstr ""
612
 
613
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:460
614
  msgid "Title shown to me"
615
  msgstr ""
616
 
617
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:465
618
  #, php-format
619
  msgid "Title shown to others. Use %s to show the first name."
620
  msgstr ""
621
 
622
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:470
623
  msgid "Menu Position"
624
  msgstr ""
625
 
626
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:472
627
  msgid "Current menu positions:"
628
  msgstr ""
629
 
630
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:477
631
  msgid "History URL slug"
632
  msgstr ""
633
 
634
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:479
635
  msgid "Do not use empty spaces!"
636
  msgstr ""
637
 
638
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/myCRED-addon-buddypress.php:484
639
  msgid "Number of history entries to show"
640
  msgstr ""
641
 
642
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-galleries.php:72
643
  msgid "%plural% for New Gallery"
644
  msgstr ""
645
 
646
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-galleries.php:79
647
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:433
648
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:446
649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:459
650
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:472
651
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:485
652
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:498
653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:512
654
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:525
655
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:538
656
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:551
657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:173
658
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:186
659
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:199
660
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:212
661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:336
662
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:349
663
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:362
664
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:375
665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:388
666
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:401
667
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:414
668
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:427
669
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:303
670
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:560
671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:573
672
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:608
673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:930
674
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:947
675
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:964
676
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:276
677
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:440
678
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:453
679
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:466
680
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:484
681
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:497
682
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:516
683
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:544
684
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-contact-form7.php:136
685
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:142
686
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:163
687
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:497
688
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:510
689
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:313
690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:326
691
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:339
692
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:363
693
  msgid "Log template"
694
  msgstr ""
695
 
696
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:419
697
  msgid "%plural% for Creating Groups"
698
  msgstr ""
699
 
700
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:423
701
  msgid ""
702
  "If you use a negative value and the user does not have enough %_plural% the "
703
  "\"Create Group\" button will be disabled."
704
  msgstr ""
705
 
706
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:427
707
  msgid "Number of members before awarding %_plural%"
708
  msgstr ""
709
 
710
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:429
711
  msgid "Use zero to award %_plural% when group is created."
712
  msgstr ""
713
 
714
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:439
715
  msgid "%plural% for Deleting Groups"
716
  msgstr ""
717
 
718
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:452
719
  msgid "%plural% for New Forum Topic"
720
  msgstr ""
721
 
722
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:465
723
  msgid "%plural% for Editing Forum Topic"
724
  msgstr ""
725
 
726
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:478
727
  msgid "%plural% for New Forum Post"
728
  msgstr ""
729
 
730
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:491
731
  msgid "%plural% for Editing Forum Post"
732
  msgstr ""
733
 
734
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:504
735
  msgid "%plural% for Joining Groups"
736
  msgstr ""
737
 
738
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:508
739
  msgid ""
740
  "If you use a negative value and the user does not have enough %_plural% the "
741
  "\"Join Group\" button will be disabled."
742
  msgstr ""
743
 
744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:518
745
  msgid "%plural% for Leaving Groups"
746
  msgstr ""
747
 
748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:531
749
  msgid "%plural% for New Group Avatar"
750
  msgstr ""
751
 
752
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-groups.php:544
753
  msgid "%plural% for New Group Comment"
754
  msgstr ""
755
 
756
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:166
757
  msgid "%plural% for New Links"
758
  msgstr ""
759
 
760
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:179
761
  msgid "%plural% for Vote on Link"
762
  msgstr ""
763
 
764
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:192
765
  msgid "%plural% for Updating Links"
766
  msgstr ""
767
 
768
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-links.php:205
769
  msgid "%plural% for Deleting Links"
770
  msgstr ""
771
 
772
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:324
773
  msgid "%plural% for Profile Updates"
774
  msgstr ""
775
 
776
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:330
777
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:503
778
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:527
779
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:350
780
  msgid "Daily Limit"
781
  msgstr ""
782
 
783
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:332
784
  msgid "Daily limit. User zero for unlimited."
785
  msgstr ""
786
 
787
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:342
788
  msgid "%plural% for New Avatar"
789
  msgstr ""
790
 
791
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:355
792
  msgid "%plural% for New Friendships"
793
  msgstr ""
794
 
795
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:364
796
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:377
797
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:199
798
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:206
799
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:307
800
  msgid "Available template tags: General, User"
801
  msgstr ""
802
 
803
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:368
804
  msgid "%plural% for Leaving Friendship"
805
  msgstr ""
806
 
807
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:381
808
  msgid "%plural% for New Comment"
809
  msgstr ""
810
 
811
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:394
812
  msgid "%plural% for Deleting Comment"
813
  msgstr ""
814
 
815
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:407
816
  msgid "%plural% for New Messages"
817
  msgstr ""
818
 
819
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buddypress/hooks/bp-profile.php:420
820
  msgid "%plural% for Sending Gift"
821
  msgstr ""
822
 
823
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:12
824
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:224
825
  msgid "buyCRED"
826
  msgstr ""
827
 
828
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:13
829
  msgid ""
830
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
831
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
832
  "also let your users buy points for other members."
833
  msgstr ""
834
 
835
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:55
836
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:56
837
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:57
838
  msgid "Payment Gateways"
839
  msgstr ""
840
 
841
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:141
842
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:785
843
- msgid "PayPal Payments Standard"
844
- msgstr ""
845
-
846
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:145
847
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:425
848
- msgid "NETbilling"
849
- msgstr ""
850
-
851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:149
852
- msgid "Skrill (Moneybookers)"
853
- msgstr ""
854
-
855
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:153
856
- msgid "Zombaio"
857
- msgstr ""
858
-
859
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:199
860
  msgid "Please login to purchase %_plural%"
861
  msgstr ""
862
 
863
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:213
864
  msgid "Gift purchase from %display_name%."
865
  msgstr ""
866
 
867
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:226
868
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:639
869
  msgid "Minimum %plural%"
870
  msgstr ""
871
 
872
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:230
873
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
874
  msgstr ""
875
 
876
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:233
877
  msgid "Login Template"
878
  msgstr ""
879
 
880
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:237
881
  msgid "Content to show when a user is not logged in."
882
  msgstr ""
883
 
884
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:244
885
  msgid ""
886
  "Available template tags: General and %gateway% for the payment gateway used."
887
  msgstr ""
888
 
889
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:247
890
  msgid "Thank You Page"
891
  msgstr ""
892
 
893
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:250
894
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:271
895
  msgid "Custom URL"
896
  msgstr ""
897
 
898
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:255
899
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:276
900
  msgid "Page"
901
  msgstr ""
902
 
903
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:268
904
  msgid "Cancellation Page"
905
  msgstr ""
906
 
907
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:289
908
  msgid "Gifting"
909
  msgstr ""
910
 
911
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:291
912
  msgid "Allow users to buy %_plural% for other users."
913
  msgstr ""
914
 
915
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:292
916
  msgid "Allow users to buy %_plural% for content authors."
917
  msgstr ""
918
 
919
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:297
920
  msgid "Available template tags: %singular%, %plural% and %display_name%"
921
  msgstr ""
922
 
923
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:346
924
  #, php-format
925
  msgid "%s Payment Gateways"
926
  msgstr ""
927
 
928
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:347
929
  msgid ""
930
  "Select the payment gateways you want to offer your users to buy %plural%."
931
  msgstr ""
932
 
933
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:363
934
  msgid "Test Mode"
935
  msgstr ""
936
 
937
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:365
938
  msgid "Enabled"
939
  msgstr ""
940
 
941
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:368
942
  msgid "Disabled"
943
  msgstr ""
944
 
945
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:388
946
  msgid "Update Gateway Settings"
947
  msgstr ""
948
 
949
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:436
950
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:533
951
  msgid "This Add-on needs to setup before you can use this shortcode."
952
  msgstr ""
953
 
954
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:454
955
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:550
956
  msgid "No gateways installed."
957
  msgstr ""
958
 
959
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:455
960
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:551
961
  msgid "Gateway does not exist."
962
  msgstr ""
963
 
964
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:491
965
  msgid "Yourself"
966
  msgstr ""
967
 
968
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:552
969
  msgid "No active gateways found."
970
  msgstr ""
971
 
972
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:553
973
  msgid "The selected gateway is not active."
974
  msgstr ""
975
 
976
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:593
977
  msgid "Buy with"
978
  msgstr ""
979
 
980
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:597
981
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:49
982
  msgid "Buy Now"
983
  msgstr ""
984
 
985
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:630
986
  msgid "No users found"
987
  msgstr ""
988
 
989
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:640
990
  msgid "To"
991
  msgstr ""
992
 
993
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:657
994
  msgid "Select Amount"
995
  msgstr ""
996
 
997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:681
998
  msgid "min."
999
  msgstr ""
1000
 
1001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:689
1002
  msgid "Select Gateway"
1003
  msgstr ""
1004
 
1005
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:769
1006
- msgid "Buy %plural%"
1007
- msgstr ""
1008
-
1009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:771
1010
- msgid "This add-on lets your users buy %_plural% using a payment gateway."
1011
- msgstr ""
1012
-
1013
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:772
1014
- msgid "Supported Gateways"
1015
- msgstr ""
1016
-
1017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:773
1018
- msgid ""
1019
- "myCRED supports purchases through: PayPal Payments Standard, Skrill "
1020
- "(Moneybookers) and NETbilling. Let us know if you want to add other payment "
1021
- "gateways."
1022
- msgstr ""
1023
-
1024
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:774
1025
- msgid "Usage"
1026
- msgstr ""
1027
-
1028
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:775
1029
- msgid "Purchases can be made using one of the following shortcodes:"
1030
- msgstr ""
1031
-
1032
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:777
1033
- msgid ""
1034
- "When you want to sell a pre-set amount, sell to a specific user or use a "
1035
- "specific gateway.<br />For more information on how to use the shortcode, "
1036
- "please visit the"
1037
- msgstr ""
1038
-
1039
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:778
1040
- msgid ""
1041
- "When you want to give your users the option to select an amount, gateway or "
1042
- "recipient.<br />For more information on how to use the shortcode, please "
1043
- "visit the"
1044
- msgstr ""
1045
-
1046
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:787
1047
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:322
1048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:344
1049
- msgid "Currency"
1050
- msgstr ""
1051
-
1052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:788
1053
- msgid ""
1054
- "Make sure you select a currency that your PayPal account supports. Otherwise "
1055
- "transactions will not be approved until you login to your PayPal account and "
1056
- "Accept each transaction! Purchases made in a currency that is not supported "
1057
- "will not be applied to the buyer until you have resolved the issue."
1058
- msgstr ""
1059
-
1060
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:789
1061
- msgid "Instant Payment Notifications"
1062
- msgstr ""
1063
-
1064
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:790
1065
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:353
1066
- msgid ""
1067
- "For this gateway to work, you must login to your PayPal account and under "
1068
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
1069
- "Make sure the \"Notification URL\" is set to the above address and that you "
1070
- "have selected \"Receive IPN messages (Enabled)\"."
1071
- msgstr ""
1072
-
1073
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:794
1074
- msgid "Skrill"
1075
- msgstr ""
1076
-
1077
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:796
1078
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:609
1079
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:316
1080
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:338
1081
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:281
1082
- msgid "Sandbox Mode"
1083
- msgstr ""
1084
-
1085
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:797
1086
- msgid ""
1087
- "Transactions made while Sandbox mode is active are real transactions! "
1088
- "Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
1089
- msgstr ""
1090
-
1091
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:798
1092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:383
1093
- msgid "Checkout Page"
1094
- msgstr ""
1095
-
1096
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:799
1097
- msgid ""
1098
- "By default all Skrill Merchant account accept payments via Bank Transfers. "
1099
- "When a user selects this option, no points are awarded! You will need to "
1100
- "manually award these once the bank transfer is completed."
1101
- msgstr ""
1102
-
1103
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/myCRED-addon-buy-creds.php:800
1104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:403
1105
- msgid ""
1106
- "By default purchases made using Skrill will result in users having to signup "
1107
- "for a Skrill account (if they do not have one already). You can contact "
1108
- "Skrill Merchant Services and request to disable this feature."
1109
- msgstr ""
1110
-
1111
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:60
1112
  msgid ""
1113
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1114
  "class."
1115
  msgstr ""
1116
 
1117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:69
1118
  msgid ""
1119
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1120
  msgstr ""
1121
 
1122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:85
1123
  msgid "This Payment Gateway has no settings"
1124
  msgstr ""
1125
 
1126
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:234
1127
  msgid "Go to "
1128
  msgstr ""
1129
 
1130
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:255
1131
  msgid "Payment Gateway Logo"
1132
  msgstr ""
1133
 
1134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:268
1135
  msgid "Click here if you are not automatically redirected"
1136
  msgstr ""
1137
 
1138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:888
1139
  msgid "Outside US"
1140
  msgstr ""
1141
 
1142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:26
1143
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:23
1144
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:28
1145
  msgid "Purchase of myCRED %plural%"
1146
  msgstr ""
1147
 
1148
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:55
1149
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:318
1150
  msgid "You have tried too many times. Please contact support."
1151
  msgstr ""
1152
 
1153
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:62
1154
  msgid "This payment gateway has not yet been setup! Exiting."
1155
  msgstr ""
1156
 
1157
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:81
1158
  msgid "First name can not be empty"
1159
  msgstr ""
1160
 
1161
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:87
1162
  msgid "Last name can not be empty"
1163
  msgstr ""
1164
 
1165
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:93
1166
  msgid "Street can not be empty"
1167
  msgstr ""
1168
 
1169
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:99
1170
  msgid "City can not be empty"
1171
  msgstr ""
1172
 
1173
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:105
1174
  msgid "Country can not be empty"
1175
  msgstr ""
1176
 
1177
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:113
1178
  msgid "State can not be empty"
1179
  msgstr ""
1180
 
1181
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:121
1182
  msgid "Zip / Post Code can not be empty"
1183
  msgstr ""
1184
 
1185
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:127
1186
  msgid "Email can not be empty"
1187
  msgstr ""
1188
 
1189
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:143
1190
  msgid "Please enter your credit card number"
1191
  msgstr ""
1192
 
1193
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:149
1194
  msgid "Card Expiration Month must be selected"
1195
  msgstr ""
1196
 
1197
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:155
1198
  msgid "Card Expiration Year must be set"
1199
  msgstr ""
1200
 
1201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:161
1202
  msgid "Please enter the CVV2 code from the back of your card"
1203
  msgstr ""
1204
 
1205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:170
1206
  msgid "Account Routing number missing"
1207
  msgstr ""
1208
 
1209
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:176
1210
  msgid "Account Number missing"
1211
  msgstr ""
1212
 
1213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:184
1214
  msgid "Incorrect Credit Card number"
1215
  msgstr ""
1216
 
1217
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:190
1218
  msgid "The credit card entered is past its expiration date."
1219
  msgstr ""
1220
 
1221
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:196
1222
  msgid "The CVV2 number entered is not valid."
1223
  msgstr ""
1224
 
1225
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:202
1226
  msgid "The bank routing number entered is not valid."
1227
  msgstr ""
1228
 
1229
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:205
1230
  msgid "The bank account number entered is not valid."
1231
  msgstr ""
1232
 
1233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:312
1234
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:333
1235
  msgid "Invalid Address"
1236
  msgstr ""
1237
 
1238
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:315
1239
  msgid "Invalid CVV2"
1240
  msgstr ""
1241
 
1242
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:321
1243
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:324
1244
  msgid "Please contact support."
1245
  msgstr ""
1246
 
1247
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:327
1248
  msgid "Your email address is invalid."
1249
  msgstr ""
1250
 
1251
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:330
1252
  msgid "Your information is invalid. Please correct"
1253
  msgstr ""
1254
 
1255
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:336
1256
  msgid "Your card was declined. Please try again."
1257
  msgstr ""
1258
 
1259
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:340
1260
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:358
1261
  msgid "Duplicate transaction. Please contact support"
1262
  msgstr ""
1263
 
1264
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:343
1265
  msgid "Your transaction was approved"
1266
  msgstr ""
1267
 
1268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:350
1269
  msgid " error: "
1270
  msgstr ""
1271
 
1272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:432
 
 
 
 
1273
  msgid "Debug"
1274
  msgstr ""
1275
 
1276
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:441
1277
  msgid "Error"
1278
  msgstr ""
1279
 
1280
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:442
1281
  msgid "The following error/s were found: "
1282
  msgstr ""
1283
 
1284
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:450
1285
  msgid "Please update and try again."
1286
  msgstr ""
1287
 
1288
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:456
1289
  msgid "Transaction Approved"
1290
  msgstr ""
1291
 
1292
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:457
1293
  msgid "Your have successfully purchased "
1294
  msgstr ""
1295
 
1296
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:458
1297
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:468
1298
  msgid "Click here to continue"
1299
  msgstr ""
1300
 
1301
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:466
1302
  msgid "Transaction Declined"
1303
  msgstr ""
1304
 
1305
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:467
1306
  msgid ""
1307
  "I am sorry but your transaction could not be completed due to the following "
1308
  msgstr ""
1309
 
1310
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:476
1311
  msgid "Transaction Error"
1312
  msgstr ""
1313
 
1314
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:477
1315
  msgid "NETbilling returned the following error: "
1316
  msgstr ""
1317
 
1318
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:478
1319
  msgid "Please try again."
1320
  msgstr ""
1321
 
1322
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:482
1323
  msgid "Purchase of"
1324
  msgstr ""
1325
 
1326
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:482
1327
  msgid "for"
1328
  msgstr ""
1329
 
1330
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:483
1331
  msgid "Fields marked * are required!"
1332
  msgstr ""
1333
 
1334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:493
1335
  msgid "Billing Details"
1336
  msgstr ""
1337
 
1338
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:562
1339
  msgid "Month"
1340
  msgstr ""
1341
 
1342
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:568
1343
  msgid "Year"
1344
  msgstr ""
1345
 
1346
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:615
 
 
 
 
 
 
 
1347
  msgid "Account ID"
1348
  msgstr ""
1349
 
1350
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:621
1351
  msgid "Site Tag"
1352
  msgstr ""
1353
 
1354
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:627
1355
  msgid "Dynamic IP Security Code"
1356
  msgstr ""
1357
 
1358
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:633
1359
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:336
1360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:364
1361
  msgid "Item Name"
1362
  msgstr ""
1363
 
1364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:639
1365
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:343
1366
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:371
1367
  msgid "%plural% Exchange Rate"
1368
  msgstr ""
1369
 
1370
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:645
1371
  msgid "Allowed Attempts"
1372
  msgstr ""
1373
 
1374
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:649
1375
  msgid "Maximum number of attempts allowed for purchases."
1376
  msgstr ""
1377
 
1378
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:652
1379
  msgid "Advanced"
1380
  msgstr ""
1381
 
1382
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:656
1383
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1384
  msgstr ""
1385
 
1386
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:660
1387
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1388
  msgstr ""
1389
 
1390
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:664
1391
  msgid ""
1392
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1393
  "disable_negative_db)"
1394
  msgstr ""
1395
 
1396
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:668
1397
  msgid ""
1398
  "Disable only the negative database component of the fraud protection system."
1399
  msgstr ""
1400
 
1401
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:672
1402
  msgid "Disable automatic sending of both merchant and customer email receipts."
1403
  msgstr ""
1404
 
1405
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/netbilling.php:676
1406
  msgid "Disable immediate rejection of expired cards."
1407
  msgstr ""
1408
 
1409
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:225
1410
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:211
1411
  msgid "Success"
1412
  msgstr ""
1413
 
1414
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:226
1415
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:212
1416
  msgid "Thank you for your purchase"
1417
  msgstr ""
1418
 
1419
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:239
1420
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:225
1421
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:231
1422
  msgid "Please setup this gateway before attempting to make a purchase!"
1423
  msgstr ""
1424
 
1425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:294
1426
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:266
1427
  msgid "Return to "
1428
  msgstr ""
1429
 
1430
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:299
1431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:320
1432
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:262
1433
  msgid "Processing payment &hellip;"
1434
  msgstr ""
1435
 
1436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:327
1437
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:401
1438
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:433
 
 
 
 
 
1439
  msgid "Important!"
1440
  msgstr ""
1441
 
1442
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:327
1443
  msgid ""
1444
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1445
  "transactions will not be approved until you login to your PayPal account and "
1446
  "Accept each transaction!"
1447
  msgstr ""
1448
 
1449
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:330
1450
  msgid "Account Email"
1451
  msgstr ""
1452
 
1453
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:340
1454
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:368
1455
  msgid "Description of the item being purchased by the user."
1456
  msgstr ""
1457
 
1458
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:346
1459
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:374
1460
  msgid "Your selected currency"
1461
  msgstr ""
1462
 
1463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/paypal-standard.php:349
1464
  msgid "IPN Address"
1465
  msgstr ""
1466
 
1467
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:303
 
 
 
 
 
 
 
 
1468
  msgid "Product:"
1469
  msgstr ""
1470
 
1471
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:312
1472
  msgid "Gift to:"
1473
  msgstr ""
1474
 
1475
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:313
1476
  msgid "(author)"
1477
  msgstr ""
1478
 
1479
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:341
1480
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1481
  msgstr ""
1482
 
1483
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:351
1484
  msgid "Merchant Account Email"
1485
  msgstr ""
1486
 
1487
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:357
1488
  msgid "Secret Word"
1489
  msgstr ""
1490
 
1491
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:361
1492
  msgid ""
1493
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1494
  msgstr ""
1495
 
1496
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:377
1497
  msgid "Confirmation Email"
1498
  msgstr ""
1499
 
1500
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:380
1501
  msgid ""
1502
  "Ask Skrill to send me a confirmation email for each successful purchase."
1503
  msgstr ""
1504
 
1505
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:386
1506
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:81
1507
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:782
1508
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:596
1509
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:188
1510
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:363
 
 
 
 
1511
  msgid "Title"
1512
  msgstr ""
1513
 
1514
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:388
1515
  msgid ""
1516
  "If left empty, your account email is used as title on the Skill Payment Page."
1517
  msgstr ""
1518
 
1519
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:391
1520
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:305
1521
  msgid "Logo URL"
1522
  msgstr ""
1523
 
1524
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:393
1525
  msgid ""
1526
  "The URL to the image you want to use on the top of the gateway. For best "
1527
  "integration results we recommend you use logos with dimensions up to 200px "
1528
  "in width and 50px in height."
1529
  msgstr ""
1530
 
1531
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:396
1532
  msgid "Confirmation Note"
1533
  msgstr ""
1534
 
1535
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:398
1536
  msgid ""
1537
  "Optional text to show user once a transaction has been successfully "
1538
  "completed. This text is shown by Skrill."
1539
  msgstr ""
1540
 
1541
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/skrill.php:402
1542
  msgid ""
1543
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1544
  "When a user selects this option, no %_plural% are awarded! You will need to "
1545
  "manually award these once the bank transfer is completed."
1546
  msgstr ""
1547
 
1548
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:287
 
 
 
 
 
 
 
1549
  msgid "Site ID"
1550
  msgstr ""
1551
 
1552
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:293
1553
  msgid "GW Password"
1554
  msgstr ""
1555
 
1556
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:299
1557
  msgid "Pricing ID"
1558
  msgstr ""
1559
 
1560
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:311
1561
  msgid "IP Verification"
1562
  msgstr ""
1563
 
1564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:314
1565
  msgid "Do not verify that callbacks are coming from Zombaio."
1566
  msgstr ""
1567
 
1568
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:317
1569
  msgid "Language"
1570
  msgstr ""
1571
 
1572
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:324
1573
  msgid "Postback URL (ZScript)"
1574
  msgstr ""
1575
 
1576
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/buy-creds/gateways/zombaio.php:328
1577
  msgid ""
1578
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1579
  "address and click validate."
1580
  msgstr ""
1581
 
1582
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:12
1583
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:153
1584
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:159
1585
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:165
1586
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:263
1587
  msgid "Email Notices"
1588
  msgstr ""
1589
 
1590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:13
1591
  msgid "Create email notices for any type of myCRED instance."
1592
  msgstr ""
1593
 
1594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:154
1595
  msgid "Email Notice"
1596
  msgstr ""
1597
 
1598
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:155
1599
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:260
1600
  msgid "Add New"
1601
  msgstr ""
1602
 
1603
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:156
1604
  msgid "Add New Notice"
1605
  msgstr ""
1606
 
1607
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:157
1608
  msgid "Edit Notice"
1609
  msgstr ""
1610
 
1611
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:158
1612
  msgid "New Notice"
1613
  msgstr ""
1614
 
1615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:160
1616
  msgid "View Notice"
1617
  msgstr ""
1618
 
1619
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:161
1620
  msgid "Search Email Notices"
1621
  msgstr ""
1622
 
1623
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:162
1624
  msgid "No email notices found"
1625
  msgstr ""
1626
 
1627
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:163
1628
  msgid "No email notices found in Trash"
1629
  msgstr ""
1630
 
1631
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:186
1632
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:846
1633
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:317
1634
  msgid "General"
1635
  msgstr ""
1636
 
1637
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:187
1638
  msgid "users balance changes"
1639
  msgstr ""
1640
 
1641
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:188
1642
  msgid "user gains %_plural%"
1643
  msgstr ""
1644
 
1645
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:189
1646
  msgid "user lose %_plural%"
1647
  msgstr ""
1648
 
1649
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:190
1650
  msgid "users balance reaches zero"
1651
  msgstr ""
1652
 
1653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:191
1654
  msgid "users balance goes minus"
1655
  msgstr ""
1656
 
1657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:197
1658
  msgid "Sell Content Add-on"
1659
  msgstr ""
1660
 
1661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:198
1662
  msgid "user buys content"
1663
  msgstr ""
1664
 
1665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:199
1666
  msgid "authors content gets sold"
1667
  msgstr ""
1668
 
1669
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:206
1670
  msgid "buyCREDs Add-on"
1671
  msgstr ""
1672
 
1673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:207
1674
  msgid "user buys %_plural%"
1675
  msgstr ""
1676
 
1677
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:214
1678
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:109
1679
  msgid "Transfer Add-on"
1680
  msgstr ""
1681
 
1682
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:215
1683
  msgid "user sends %_plural%"
1684
  msgstr ""
1685
 
1686
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:216
1687
  msgid "user receives %_plural%"
1688
  msgstr ""
1689
 
1690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:223
1691
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:113
1692
  msgid "Ranks Add-on"
1693
  msgstr ""
1694
 
1695
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:224
1696
  msgid "user is demoted"
1697
  msgstr ""
1698
 
1699
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:225
1700
  msgid "user is promoted"
1701
  msgstr ""
1702
 
1703
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:265
1704
  msgid ""
1705
  "Settings that apply to all email notices and can not be overridden for "
1706
  "individual emails."
1707
  msgstr ""
1708
 
1709
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:266
1710
  msgid "Email Format"
1711
  msgstr ""
1712
 
1713
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:270
1714
  msgid "Plain text emails only."
1715
  msgstr ""
1716
 
1717
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:274
1718
  msgid "HTML or Plain text emails."
1719
  msgstr ""
1720
 
1721
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:277
1722
  msgid "Filters"
1723
  msgstr ""
1724
 
1725
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:281
1726
  msgid ""
1727
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1728
  "an email is sent."
1729
  msgstr ""
1730
 
1731
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:285
1732
  msgid ""
1733
  "Allow WordPress and Third Party Plugins to filter the email content before "
1734
  "an email is sent."
1735
  msgstr ""
1736
 
1737
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:288
1738
  msgid ""
1739
  "Default email settings. These settings can be individually overridden when "
1740
  "editing emails."
1741
  msgstr ""
1742
 
1743
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:289
1744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:685
1745
  msgid "Email Settings"
1746
  msgstr ""
1747
 
1748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:292
1749
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:802
1750
  msgid "Senders Name:"
1751
  msgstr ""
1752
 
1753
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:296
1754
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:804
1755
  msgid "Senders Email:"
1756
  msgstr ""
1757
 
1758
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:300
1759
  msgid "Reply-To:"
1760
  msgstr ""
1761
 
1762
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:304
1763
  msgid "Default Email Content"
1764
  msgstr ""
1765
 
1766
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:308
1767
  msgid "Default email content."
1768
  msgstr ""
1769
 
1770
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:311
1771
  msgid "Default Email Styling"
1772
  msgstr ""
1773
 
1774
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:315
1775
  msgid "Ignored if HTML is not allowed in emails."
1776
  msgstr ""
1777
 
1778
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:620
1779
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:734
1780
  msgid "Email Subject"
1781
  msgstr ""
1782
 
1783
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:621
1784
  msgid "Status"
1785
  msgstr ""
1786
 
1787
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:641
1788
  msgid "Not Active"
1789
  msgstr ""
1790
 
1791
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:643
1792
  #, php-format
1793
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1794
  msgstr ""
1795
 
1796
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:647
1797
  msgid "Active"
1798
  msgstr ""
1799
 
1800
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:649
1801
  #, php-format
1802
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1803
  msgstr ""
1804
 
1805
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:658
1806
  msgid "Email is sent when"
1807
  msgstr ""
1808
 
1809
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:660
1810
  msgid "Missing instance for this notice!"
1811
  msgstr ""
1812
 
1813
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:669
1814
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:671
1815
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:673
1816
  msgid "Sent To"
1817
  msgstr ""
1818
 
1819
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:669
1820
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:796
1821
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:347
1822
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:276
1823
  msgid "User"
1824
  msgstr ""
1825
 
1826
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:671
1827
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:797
1828
  msgid "Administrator"
1829
  msgstr ""
1830
 
1831
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:673
1832
  msgid "Both Administrator and User"
1833
  msgstr ""
1834
 
1835
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:694
1836
  msgid "Available Template Tags"
1837
  msgstr ""
1838
 
1839
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:705
1840
  msgid "Email Header"
1841
  msgstr ""
1842
 
1843
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:765
1844
  msgid "Send this email notice when..."
1845
  msgstr ""
1846
 
1847
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:794
1848
  msgid "Recipient:"
1849
  msgstr ""
1850
 
1851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:798
1852
  msgid "Both"
1853
  msgstr ""
1854
 
1855
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:806
1856
  msgid "Reply-To Email:"
1857
  msgstr ""
1858
 
1859
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:812
1860
  msgid "Save"
1861
  msgstr ""
1862
 
1863
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:824
1864
  msgid "CSS Styling"
1865
  msgstr ""
1866
 
1867
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:839
1868
  msgid "Site Related"
1869
  msgstr ""
1870
 
1871
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:840
1872
  msgid "Your websites title"
1873
  msgstr ""
1874
 
1875
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:841
1876
  msgid "Your websites address"
1877
  msgstr ""
1878
 
1879
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:842
1880
  msgid "Your websites tagline (description)"
1881
  msgstr ""
1882
 
1883
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:843
1884
  msgid "Your websites admin email"
1885
  msgstr ""
1886
 
1887
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:844
1888
  msgid "Total number of blog members"
1889
  msgstr ""
1890
 
1891
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:847
1892
  msgid "Points name in singular format"
1893
  msgstr ""
1894
 
1895
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:848
1896
  msgid "Points name in plural"
1897
  msgstr ""
1898
 
1899
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:849
1900
  msgid "Login URL"
1901
  msgstr ""
1902
 
1903
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:852
1904
  msgid "User Related"
1905
  msgstr ""
1906
 
1907
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:853
1908
  msgid "The users ID"
1909
  msgstr ""
1910
 
1911
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:854
1912
  msgid "The users login name (username)"
1913
  msgstr ""
1914
 
1915
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:855
1916
  msgid "The users display name"
1917
  msgstr ""
1918
 
1919
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:856
1920
  msgid "The users profile address"
1921
  msgstr ""
1922
 
1923
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:857
1924
  msgid "Link to the users profile address with their display name as title"
1925
  msgstr ""
1926
 
1927
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:858
1928
  msgid "The users current balance unformated"
1929
  msgstr ""
1930
 
1931
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:859
1932
  msgid "The users current balance formated"
1933
  msgstr ""
1934
 
1935
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:861
1936
  msgid "Post Related"
1937
  msgstr ""
1938
 
1939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:862
1940
  msgid "Post Title"
1941
  msgstr ""
1942
 
1943
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:863
1944
  msgid "Post URL address"
1945
  msgstr ""
1946
 
1947
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:864
1948
  msgid "Link to post Post title"
1949
  msgstr ""
1950
 
1951
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:865
1952
  msgid "The post type"
1953
  msgstr ""
1954
 
1955
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:941
1956
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:944
1957
  #, php-format
1958
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1959
  msgstr ""
1960
 
1961
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:942
1962
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:544
1963
  msgid "Custom field updated"
1964
  msgstr ""
1965
 
1966
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:943
1967
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:545
1968
  msgid "Custom filed updated"
1969
  msgstr ""
1970
 
1971
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:946
1972
  msgid "Email Notice Activated"
1973
  msgstr ""
1974
 
1975
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:947
1976
  msgid "Email Notice Saved"
1977
  msgstr ""
1978
 
1979
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:948
1980
  #, php-format
1981
  msgid ""
1982
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1983
  msgstr ""
1984
 
1985
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:950
1986
  #, php-format
1987
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1988
  msgstr ""
1989
 
1990
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:969
1991
  msgid ""
1992
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1993
  "you are not yet ready to use this email notice!"
1994
  msgstr ""
1995
 
1996
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:971
1997
  #, php-format
1998
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1999
  msgstr ""
2000
 
2001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/email-notices/myCRED-addon-email-notices.php:973
2002
  msgid "This email notice is active."
2003
  msgstr ""
2004
 
2005
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/myCRED-addon-gateway.php:12
2006
  msgid "Gateway"
2007
  msgstr ""
2008
 
2009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/myCRED-addon-gateway.php:13
2010
  msgid ""
2011
  "Let your users pay using their <strong>my</strong>CRED points balance. "
2012
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
2013
  "Espresso, Events Manager."
2014
  msgstr ""
2015
 
2016
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:132
2017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:271
2018
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:295
2019
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:396
2020
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:348
2021
  msgid "Current Balance"
2022
  msgstr ""
2023
 
2024
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:136
2025
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:112
2026
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:275
2027
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:299
2028
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:400
2029
  msgid "Total Cost"
2030
  msgstr ""
2031
 
2032
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:140
2033
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:279
2034
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:303
2035
  msgid "Balance After Purchase"
2036
  msgstr ""
2037
 
2038
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:164
2039
  msgid "Payment"
2040
  msgstr ""
2041
 
2042
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:167
2043
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:216
2044
  #, php-format
2045
  msgid "<a href=\"%s\">Go Back</a>"
2046
  msgstr ""
2047
 
2048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:170
2049
  msgid "will be deducted from your account."
2050
  msgstr ""
2051
 
2052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:206
2053
  #, php-format
2054
  msgid ""
2055
  "Sorry, but you can not use this gateway as your account is excluded. Please "
2056
  "<a href=\"%s\">select a different payment method</a>."
2057
  msgstr ""
2058
 
2059
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:225
2060
  msgid "Paid"
2061
  msgstr ""
2062
 
2063
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:228
2064
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:34
2065
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:51
2066
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:52
2067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:76
2068
  msgid "myCRED"
2069
  msgstr ""
2070
 
2071
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:328
2072
  msgid "%_singular% Balance"
2073
  msgstr ""
2074
 
2075
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:330
2076
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:96
2077
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:25
2078
  msgid "Payment for Order: #%order_id%"
2079
  msgstr ""
2080
 
2081
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:333
2082
  msgid "Product Sale: %post_title%"
2083
  msgstr ""
2084
 
2085
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:334
2086
  msgid "Pay using your account balance."
2087
  msgstr ""
2088
 
2089
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:335
2090
  msgid ""
2091
  "TOTAL amount has been deducted from your account. Your current balance is: "
2092
  "%balance_f%"
2093
  msgstr ""
2094
 
2095
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:336
2096
  msgid ""
2097
  "Insufficient funds. Please select another form of payment. Your current "
2098
  "balance is: %balance_f%"
2099
  msgstr ""
2100
 
2101
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:337
2102
  msgid ""
2103
  "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2104
  "%\">login</a>."
2105
  msgstr ""
2106
 
2107
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:342
2108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:175
2109
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:19
2110
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:20
2111
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:21
2112
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:246
2113
- msgid "Settings"
2114
- msgstr ""
2115
-
2116
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:344
2117
  #, php-format
2118
  msgid ""
2119
  "Let your users pay for items in their shopping cart using their %s Account. "
@@ -2121,134 +2034,134 @@ msgid ""
2121
  "purchase!"
2122
  msgstr ""
2123
 
2124
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:347
2125
  msgid "Method Name"
2126
  msgstr ""
2127
 
2128
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:349
2129
  msgid ""
2130
  "Enter a public name for this payment method that is displayed to users - No "
2131
  "HTML"
2132
  msgstr ""
2133
 
2134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:354
2135
  msgid "Gateway Logo URL"
2136
  msgstr ""
2137
 
2138
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:362
2139
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:95
2140
  msgid ""
2141
  "Log entry template for successful payments. Available template tags: "
2142
  "%order_id%, %order_link%"
2143
  msgstr ""
2144
 
2145
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:369
2146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:101
2147
  msgid "How much is 1 %_singular% worth in %currency%?"
2148
  msgstr ""
2149
 
2150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:374
2151
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:106
2152
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:324
2153
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:428
2154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:474
2155
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:542
2156
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:525
2157
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:594
2158
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:658
2159
  msgid "Exchange Rate"
2160
  msgstr ""
2161
 
2162
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:383
2163
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:134
2164
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:328
2165
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:440
2166
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:465
2167
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:533
2168
  msgid "Profit Sharing"
2169
  msgstr ""
2170
 
2171
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:386
2172
  msgid "Percentage"
2173
  msgstr ""
2174
 
2175
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:388
2176
  msgid "Option to share sales with the product owner. User zero to disable"
2177
  msgstr ""
2178
 
2179
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:395
2180
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:336
2181
  msgid ""
2182
  "Log entry template for profit sharing. Available template tags: General and "
2183
  "Post related"
2184
  msgstr ""
2185
 
2186
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:400
2187
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:339
2188
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:534
2189
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:602
2190
  msgid "Messages"
2191
  msgstr ""
2192
 
2193
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:403
2194
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:350
2195
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:544
2196
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:612
2197
  msgid "Insufficient Funds"
2198
  msgstr ""
2199
 
2200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:405
2201
  msgid "Message to show when the user can not use this gateway."
2202
  msgstr ""
2203
 
2204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:407
2205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:415
2206
  msgid "Available template tags are: General."
2207
  msgstr ""
2208
 
2209
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:411
2210
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:346
2211
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:468
2212
  msgid "Visitors"
2213
  msgstr ""
2214
 
2215
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:413
2216
  msgid "Message to show to buyers that are not logged in."
2217
  msgstr ""
2218
 
2219
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:419
2220
  msgid "User Instructions"
2221
  msgstr ""
2222
 
2223
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:421
2224
  msgid "Information to show users before payment."
2225
  msgstr ""
2226
 
2227
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:423
2228
  msgid ""
2229
  "Available template tags are: %balance% and %balance_f% for users current "
2230
  "balance."
2231
  msgstr ""
2232
 
2233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:427
2234
  msgid "Confirmation Information"
2235
  msgstr ""
2236
 
2237
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:429
2238
  msgid "Information to display on the order confirmation page. - HTML allowed"
2239
  msgstr ""
2240
 
2241
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:431
2242
  msgid ""
2243
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2244
  "- users current balance."
2245
  msgstr ""
2246
 
2247
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:435
2248
  msgid "Order Confirmation Email"
2249
  msgstr ""
2250
 
2251
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:437
2252
  #, php-format
2253
  msgid ""
2254
  "This is the email text to send to those who have made %s checkouts. It "
@@ -2257,776 +2170,776 @@ msgid ""
2257
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2258
  msgstr ""
2259
 
2260
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-marketpress.php:439
2261
  #, php-format
2262
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2263
  msgstr ""
2264
 
2265
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:35
2266
  msgid "Let users pay using their myCRED balance."
2267
  msgstr ""
2268
 
2269
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:74
2270
  msgid "Enable/Disable"
2271
  msgstr ""
2272
 
2273
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:76
2274
  msgid "Enable myCRED Payment"
2275
  msgstr ""
2276
 
2277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:78
2278
  msgid ""
2279
  "Users who are not logged in or excluded from using myCRED will not have "
2280
  "access to this gateway!"
2281
  msgstr ""
2282
 
2283
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:83
2284
  msgid "Title to show for this payment option."
2285
  msgstr ""
2286
 
2287
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:84
2288
  msgid "Pay with myCRED"
2289
  msgstr ""
2290
 
2291
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:88
2292
  msgid "Customer Message"
2293
  msgstr ""
2294
 
2295
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:90
2296
  msgid "Deduct the amount from your %_plural% balance."
2297
  msgstr ""
2298
 
2299
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:113
2300
  msgid "Show Total"
2301
  msgstr ""
2302
 
2303
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:115
2304
  msgid "Show the final price in %_plural% ."
2305
  msgstr ""
2306
 
2307
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:117
2308
  msgid "Do not show"
2309
  msgstr ""
2310
 
2311
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:118
2312
  msgid "Show in Cart"
2313
  msgstr ""
2314
 
2315
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:119
2316
  msgid "Show on Checkout Page"
2317
  msgstr ""
2318
 
2319
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:120
2320
  msgid "Show in Cart and on Checkout Page"
2321
  msgstr ""
2322
 
2323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:125
2324
  msgid "Label"
2325
  msgstr ""
2326
 
2327
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:127
2328
  msgid "Order Total in %_plural%"
2329
  msgstr ""
2330
 
2331
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:136
2332
  msgid "Option to share a percentage of the sale with the product owner."
2333
  msgstr ""
2334
 
2335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:143
2336
  msgid ""
2337
  "Log entry template for profit sharing. Available template tags: General and "
2338
  "Post related."
2339
  msgstr ""
2340
 
2341
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:144
2342
  msgid "Sale of %post_title%"
2343
  msgstr ""
2344
 
2345
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:169
2346
  msgid "myCRED Payment"
2347
  msgstr ""
2348
 
2349
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:170
2350
  msgid ""
2351
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2352
  "users with insufficient funds and users who are not logged in will not see "
2353
  "this payment gateway on the checkout page."
2354
  msgstr ""
2355
 
2356
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:191
2357
  msgid "You must be logged in to pay with %_plural%"
2358
  msgstr ""
2359
 
2360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:197
2361
  msgid "You can not use this gateway. Please try a different payment option."
2362
  msgstr ""
2363
 
2364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:209
2365
  msgid "Insufficient funds. Please try a different payment option."
2366
  msgstr ""
2367
 
2368
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:273
2369
  msgid "Your account has successfully been charged."
2370
  msgstr ""
2371
 
2372
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-woocommerce.php:483
2373
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:120
2374
  msgid "Your current balance"
2375
  msgstr ""
2376
 
2377
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:27
2378
  msgid "Store sale"
2379
  msgstr ""
2380
 
2381
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:29
2382
  msgid "You must be logged in to use this gateway"
2383
  msgstr ""
2384
 
2385
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:30
2386
  msgid "Insufficient Funds."
2387
  msgstr ""
2388
 
2389
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:31
2390
  msgid "Deduct the amount from your balance."
2391
  msgstr ""
2392
 
2393
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:101
2394
  msgid "Item"
2395
  msgstr ""
2396
 
2397
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:186
2398
  msgid "You can not use this gateway."
2399
  msgstr ""
2400
 
2401
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:320
2402
  msgid "Log Template for Payments"
2403
  msgstr ""
2404
 
2405
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:321
2406
  msgid ""
2407
  "Log entry template for successful payments. Available template tags: "
2408
  "General, %order_id%"
2409
  msgstr ""
2410
 
2411
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:325
2412
  #, php-format
2413
  msgid "How much is 1 %s worth in %s"
2414
  msgstr ""
2415
 
2416
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:331
2417
  msgid "Payout"
2418
  msgstr ""
2419
 
2420
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:332
2421
  msgid ""
2422
  "Option to share a percentage of the sale with the product owner (post "
2423
  "author). User zero to disable."
2424
  msgstr ""
2425
 
2426
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:342
2427
  msgid "Instructions"
2428
  msgstr ""
2429
 
2430
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:343
2431
  msgid ""
2432
  "Optional instructions to show users when selecting this gateway. Leave empty "
2433
  "to hide."
2434
  msgstr ""
2435
 
2436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:347
2437
  msgid "Message to show visitors who are not logged in."
2438
  msgstr ""
2439
 
2440
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/carts/mycred-wpecommerce.php:351
2441
  msgid ""
2442
  "Message to show when users does not have enough %plural% to pay using this "
2443
  "gateway."
2444
  msgstr ""
2445
 
2446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:24
2447
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:450
2448
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:518
2449
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:312
2450
  msgid "Payments"
2451
  msgstr ""
2452
 
2453
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:25
2454
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:36
2455
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:33
2456
  msgid "Pay Now"
2457
  msgstr ""
2458
 
2459
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:29
2460
  msgid "Payment for Event Registration"
2461
  msgstr ""
2462
 
2463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:337
2464
  #, php-format
2465
  msgid "Activate %s"
2466
  msgstr ""
2467
 
2468
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:345
2469
  #, php-format
2470
  msgid "Deactivate %s"
2471
  msgstr ""
2472
 
2473
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:361
2474
  msgid "Gateway Settings"
2475
  msgstr ""
2476
 
2477
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:393
2478
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:440
2479
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:505
2480
  #, php-format
2481
  msgid "How many %s is 1 %s worth?"
2482
  msgstr ""
2483
 
2484
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:399
2485
  msgid "Gateways Settings Successfully Updated"
2486
  msgstr ""
2487
 
2488
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:407
2489
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:510
2490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:578
2491
  msgid "Labels"
2492
  msgstr ""
2493
 
2494
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:410
2495
  msgid "Gateway Title"
2496
  msgstr ""
2497
 
2498
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:412
2499
  msgid "Title to show on Payment page"
2500
  msgstr ""
2501
 
2502
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:415
2503
  msgid "Payment Type"
2504
  msgstr ""
2505
 
2506
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:417
2507
  msgid "Title to show on receipts and logs"
2508
  msgstr ""
2509
 
2510
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:420
2511
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2512
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:595
2513
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:348
2514
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:540
2515
  msgid "Button Label"
2516
  msgstr ""
2517
 
2518
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:422
2519
  msgid "Pay Button"
2520
  msgstr ""
2521
 
2522
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:425
2523
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:132
2524
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:135
2525
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:326
2526
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:329
2527
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:339
2528
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:536
2529
  msgid "Price"
2530
  msgstr ""
2531
 
2532
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:435
2533
  msgid ""
2534
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2535
  "<code>mycred_no_sale</code>"
2536
  msgstr ""
2537
 
2538
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:436
2539
  msgid "Users must be logged in to use this gateway!"
2540
  msgstr ""
2541
 
2542
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:442
2543
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:468
2544
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:536
2545
  msgid ""
2546
  "Option to share sales with the event owner (post author). Use zero to "
2547
  "disable."
2548
  msgstr ""
2549
 
2550
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:445
2551
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:22
2552
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:23
2553
  msgid "Log"
2554
  msgstr ""
2555
 
2556
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:448
2557
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:549
2558
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:623
2559
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:681
2560
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:352
2561
  msgid "Log Entry"
2562
  msgstr ""
2563
 
2564
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:455
2565
  msgid "Templates"
2566
  msgstr ""
2567
 
2568
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:458
2569
  msgid "Solvent users"
2570
  msgstr ""
2571
 
2572
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:460
2573
  msgid ""
2574
  "Message to show users on the payment page before they are charged. Leave "
2575
  "empty to hide.<br />Available template tags: General"
2576
  msgstr ""
2577
 
2578
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:463
2579
  msgid "Insolvent users"
2580
  msgstr ""
2581
 
2582
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:465
2583
  msgid ""
2584
  "Message to show users who do not have enough points to pay.<br />Available "
2585
  "template tags: General"
2586
  msgstr ""
2587
 
2588
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:470
2589
  msgid ""
2590
  "Message to show visitors (users not logged in) on the payment page.<br /"
2591
  ">Available template tags: General"
2592
  msgstr ""
2593
 
2594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventespresso3.php:480
2595
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:382
2596
  msgid "Update Settings"
2597
  msgstr ""
2598
 
2599
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:30
2600
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:27
2601
  msgid "Payment for tickets to %link_with_title%"
2602
  msgstr ""
2603
 
2604
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:31
2605
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:28
2606
  msgid "Ticket refund for %link_with_title%"
2607
  msgstr ""
2608
 
2609
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:35
2610
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:32
2611
  msgid "Pay using your %_plural% balance"
2612
  msgstr ""
2613
 
2614
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:37
2615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:34
2616
  msgid "Pay"
2617
  msgstr ""
2618
 
2619
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2620
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:37
2621
  msgid "Thank you for your payment!"
2622
  msgstr ""
2623
 
2624
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2625
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:38
2626
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2627
  msgstr ""
2628
 
2629
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:129
2630
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:323
2631
  msgid "Ticket Type"
2632
  msgstr ""
2633
 
2634
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:138
2635
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:332
2636
  msgid "Spaces"
2637
  msgstr ""
2638
 
2639
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:223
2640
  msgid "You can not pay using this gateway."
2641
  msgstr ""
2642
 
2643
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:362
2644
  msgid "Reject"
2645
  msgstr ""
2646
 
2647
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:366
2648
  msgid "Delete"
2649
  msgstr ""
2650
 
2651
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:371
2652
  msgid "Edit/View"
2653
  msgstr ""
2654
 
2655
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:452
2656
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:520
2657
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2658
  msgstr ""
2659
 
2660
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:453
2661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:521
2662
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2663
  msgstr ""
2664
 
2665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:454
2666
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:522
2667
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2668
  msgstr ""
2669
 
2670
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:458
2671
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:491
2672
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:526
2673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:559
2674
  msgid "Refunds"
2675
  msgstr ""
2676
 
2677
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:461
2678
  msgid ""
2679
  "The percentage of the paid amount to refund if a user cancells their "
2680
  "booking. Use zero for no refunds. No refunds are given to \"Rejected\" "
2681
  "bookings!"
2682
  msgstr ""
2683
 
2684
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:481
2685
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:549
2686
  msgid "Log Templates"
2687
  msgstr ""
2688
 
2689
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:484
2690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:552
2691
  msgid "Purchases"
2692
  msgstr ""
2693
 
2694
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:487
2695
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:494
2696
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:555
2697
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:562
2698
  msgid "Available template tags: General and Post related."
2699
  msgstr ""
2700
 
2701
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:513
2702
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:581
2703
  msgid "Payment Link Label"
2704
  msgstr ""
2705
 
2706
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:516
2707
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:584
2708
  msgid ""
2709
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2710
  "HTML allowed."
2711
  msgstr ""
2712
 
2713
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
2714
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:588
2715
  msgid "Payment Header"
2716
  msgstr ""
2717
 
2718
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:523
2719
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:591
2720
  msgid "Shown on top of the payment form. No HTML allowed."
2721
  msgstr ""
2722
 
2723
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:530
2724
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:598
2725
  msgid "The button label for payments. No HTML allowed!"
2726
  msgstr ""
2727
 
2728
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:537
2729
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:605
2730
  msgid "Successful Payments"
2731
  msgstr ""
2732
 
2733
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:540
2734
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
2735
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:608
2736
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:615
2737
  msgid "No HTML allowed! Available template tags: General"
2738
  msgstr ""
2739
 
2740
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:404
2741
  msgid "Balance After Payment"
2742
  msgstr ""
2743
 
2744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:511
2745
  msgid "Click to toggle"
2746
  msgstr ""
2747
 
2748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:511
2749
  #, php-format
2750
  msgid "%s Payments"
2751
  msgstr ""
2752
 
2753
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/gateway/event-booking/mycred-eventsmanager.php:529
2754
  msgid ""
2755
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2756
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2757
  msgstr ""
2758
 
2759
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:12
2760
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:40
2761
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:41
2762
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:42
2763
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:743
2764
  msgid "Import"
2765
  msgstr ""
2766
 
2767
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:13
2768
  msgid ""
2769
  "With the Import add-on you can import CSV files, CubePoints or existing "
2770
  "points under any custom user meta values."
2771
  msgstr ""
2772
 
2773
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:91
2774
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:749
2775
  msgid "CSV File"
2776
  msgstr ""
2777
 
2778
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:92
2779
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2780
  msgstr ""
2781
 
2782
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:95
2783
  msgid "CubePoints"
2784
  msgstr ""
2785
 
2786
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:96
2787
  msgid "Import CubePoints"
2788
  msgstr ""
2789
 
2790
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:99
2791
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:769
2792
  msgid "Custom User Meta"
2793
  msgstr ""
2794
 
2795
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:100
2796
  msgid "Import %_plural% from pre-existing custom user meta."
2797
  msgstr ""
2798
 
2799
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:217
2800
  msgid "No file selected. Please select your CSV file and try again."
2801
  msgstr ""
2802
 
2803
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:232
2804
  msgid "Failed to load file."
2805
  msgstr ""
2806
 
2807
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:253
2808
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:423
2809
  #, php-format
2810
  msgid ""
2811
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2812
  msgstr ""
2813
 
2814
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:262
2815
  msgid ""
2816
  "No valid records found in file. Make sure you have selected the correct way "
2817
  "to identify users in the mycred_user column!"
2818
  msgstr ""
2819
 
2820
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:268
2821
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:351
2822
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:438
2823
  #, php-format
2824
  msgid ""
2825
  "Import successfully completed. A total of %d users were effected and %d "
2826
  "entires were skipped. Import completed in %.2f seconds."
2827
  msgstr ""
2828
 
2829
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:302
2830
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:587
2831
  msgid "No CubePoints found."
2832
  msgstr ""
2833
 
2834
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:336
2835
  #, php-format
2836
  msgid ""
2837
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2838
  "seconds."
2839
  msgstr ""
2840
 
2841
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:345
2842
  msgid "No valid CubePoints founds."
2843
  msgstr ""
2844
 
2845
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:371
2846
  msgid "Missing meta key. Not sure what I should be looking for."
2847
  msgstr ""
2848
 
2849
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:390
2850
  #, php-format
2851
  msgid "No rows found for the <strong>%s</strong> meta key."
2852
  msgstr ""
2853
 
2854
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:432
2855
  msgid "No valid records founds."
2856
  msgstr ""
2857
 
2858
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:466
2859
  #, php-format
2860
  msgid "%s Import"
2861
  msgstr ""
2862
 
2863
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:478
2864
  msgid "Remember to de-activate this add-on once you are done importing!"
2865
  msgstr ""
2866
 
2867
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:510
2868
  msgid "File"
2869
  msgstr ""
2870
 
2871
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:514
2872
  msgid "Maximum allowed upload size is "
2873
  msgstr ""
2874
 
2875
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:514
2876
  msgid ""
2877
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2878
  "Optional columns: <code>mycred_log</code>."
2879
  msgstr ""
2880
 
2881
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:517
2882
  msgid "Identify Users By"
2883
  msgstr ""
2884
 
2885
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:520
2886
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:346
2887
  msgid "ID"
2888
  msgstr ""
2889
 
2890
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:521
2891
  msgid "Username"
2892
  msgstr ""
2893
 
2894
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:522
2895
  msgid "Email"
2896
  msgstr ""
2897
 
2898
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:529
2899
  msgid "How much is 1 imported value worth?"
2900
  msgstr ""
2901
 
2902
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:534
2903
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:602
2904
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:666
2905
  msgid "Round"
2906
  msgstr ""
2907
 
2908
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:535
2909
  msgid "None"
2910
  msgstr ""
2911
 
2912
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:536
2913
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:604
2914
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:668
2915
  msgid "Round Up"
2916
  msgstr ""
2917
 
2918
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:537
2919
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:605
2920
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:669
2921
  msgid "Round Down"
2922
  msgstr ""
2923
 
2924
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:542
2925
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:610
2926
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:674
2927
  msgid "Precision"
2928
  msgstr ""
2929
 
2930
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:544
2931
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:612
2932
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:676
2933
  msgid ""
2934
  "The optional number of decimal digits to round to. Use zero to round the "
2935
  "nearest whole number."
2936
  msgstr ""
2937
 
2938
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:553
2939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:627
2940
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:685
2941
  msgid "See the help tab for available template tags. Leave blank to disable."
2942
  msgstr ""
2943
 
2944
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:558
2945
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:632
2946
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:696
2947
  msgid "Run Import"
2948
  msgstr ""
2949
 
2950
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:585
2951
  #, php-format
2952
  msgid "Found %d users with CubePoints."
2953
  msgstr ""
2954
 
2955
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:588
2956
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:652
2957
  msgid "Meta Key"
2958
  msgstr ""
2959
 
2960
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:603
2961
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:667
2962
  msgid "Do not round"
2963
  msgstr ""
2964
 
2965
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:617
2966
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:688
2967
  msgid "After Import"
2968
  msgstr ""
2969
 
2970
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:620
2971
  msgid "Delete users CubePoints balance."
2972
  msgstr ""
2973
 
2974
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:691
2975
  msgid "Delete the old value."
2976
  msgstr ""
2977
 
2978
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:720
2979
  msgid "Failed to get file contents."
2980
  msgstr ""
2981
 
2982
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:725
2983
  msgid "Failed to put file contents."
2984
  msgstr ""
2985
 
2986
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:745
2987
  msgid ""
2988
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2989
  "database. Remember that the import can take time depending on your file size "
2990
  "or the number of users being imported."
2991
  msgstr ""
2992
 
2993
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:751
2994
  msgid "CSV Import"
2995
  msgstr ""
2996
 
2997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:752
2998
  msgid ""
2999
  "Imports using a comma-separated values file requires the following columns:"
3000
  msgstr ""
3001
 
3002
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:753
3003
  msgid ""
3004
  "Column identifing the user. All rows must identify the user the same way, "
3005
  "either using an ID, Username (user_login) or email. Users that can not be "
3006
  "found will be ignored."
3007
  msgstr ""
3008
 
3009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:754
3010
  msgid ""
3011
  "Column with the amount to be imported. If set, an exchange rate is applied "
3012
  "to this value before import."
3013
  msgstr ""
3014
 
3015
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:755
3016
  msgid ""
3017
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
3018
  "the log entry for each import."
3019
  msgstr ""
3020
 
3021
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:759
3022
  msgid "Cubepoints"
3023
  msgstr ""
3024
 
3025
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:761
3026
  msgid "Cubepoints Import"
3027
  msgstr ""
3028
 
3029
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:762
3030
  msgid ""
3031
  "When this page loads, the importer will automatically check if you have been "
3032
  "using Cubepoints. If you have, you can import these with the option to "
@@ -3034,1193 +2947,1193 @@ msgid ""
3034
  "clean."
3035
  msgstr ""
3036
 
3037
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:763
3038
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:773
3039
  msgid ""
3040
  "Before a value is imported, you can apply an exchange rate. To import "
3041
  "without changing the value, use 1 as the exchange rate."
3042
  msgstr ""
3043
 
3044
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:764
3045
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:774
3046
  msgid ""
3047
  "You can select to add a log entry for each import or leave the template "
3048
  "empty to skip."
3049
  msgstr ""
3050
 
3051
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:765
3052
  msgid ""
3053
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
3054
  "installation exists."
3055
  msgstr ""
3056
 
3057
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:771
3058
  msgid "Custom User Meta Import"
3059
  msgstr ""
3060
 
3061
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:772
3062
  msgid ""
3063
  "You can import any type of points that have previously been saved in your "
3064
  "database. All you need is the meta key under which it has been saved."
3065
  msgstr ""
3066
 
3067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/import/myCRED-addon-import.php:775
3068
  msgid ""
3069
  "Please note that the meta key is case sensitive and can not contain "
3070
  "whitespaces!"
3071
  msgstr ""
3072
 
3073
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:12
3074
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:167
3075
  msgid "Notifications"
3076
  msgstr ""
3077
 
3078
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:13
3079
  msgid "Notify your users when their balances changes."
3080
  msgstr ""
3081
 
3082
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:169
3083
  msgid "Styling"
3084
  msgstr ""
3085
 
3086
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:173
3087
  msgid "Use the included CSS Styling for notifications."
3088
  msgstr ""
3089
 
3090
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:180
3091
  msgid ""
3092
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
3093
  msgstr ""
3094
 
3095
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:183
3096
  msgid "Transient Lifespan"
3097
  msgstr ""
3098
 
3099
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:187
3100
  msgid ""
3101
  "The number of days a users notification is saved before being automatically "
3102
  "deleted."
3103
  msgstr ""
3104
 
3105
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:190
3106
  msgid "Duration"
3107
  msgstr ""
3108
 
3109
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/notifications/myCRED-addon-notifications.php:194
3110
  msgid ""
3111
  "The number of milliseconds a notice should be visible.<br />Use zero to "
3112
  "require that the user closes the notice manually. 1000 milliseconds = 1 "
3113
  "second."
3114
  msgstr ""
3115
 
3116
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:12
3117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:258
3118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:264
3119
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:270
3120
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:777
3121
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:972
3122
  msgid "Ranks"
3123
  msgstr ""
3124
 
3125
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:13
3126
  msgid ""
3127
  "Create ranks for users reaching a certain number of points with the option "
3128
  "to add logos for each rank."
3129
  msgstr ""
3130
 
3131
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:236
3132
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3133
  msgstr ""
3134
 
3135
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:237
3136
  msgid "Are you sure you want to re-assign user ranks?"
3137
  msgstr ""
3138
 
3139
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:259
3140
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:471
3141
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:488
3142
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:583
3143
  msgid "Rank"
3144
  msgstr ""
3145
 
3146
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:261
3147
  msgid "Add New Rank"
3148
  msgstr ""
3149
 
3150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:262
3151
  msgid "Edit Rank"
3152
  msgstr ""
3153
 
3154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:263
3155
  msgid "New Rank"
3156
  msgstr ""
3157
 
3158
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:265
3159
  msgid "View Rank"
3160
  msgstr ""
3161
 
3162
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:266
3163
  msgid "Search Ranks"
3164
  msgstr ""
3165
 
3166
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:267
3167
  msgid "No ranks found"
3168
  msgstr ""
3169
 
3170
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:268
3171
  msgid "No ranks found in Trash"
3172
  msgstr ""
3173
 
3174
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:333
3175
  #, php-format
3176
  msgid "Completed - Total of %d users effected"
3177
  msgstr ""
3178
 
3179
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:335
3180
  msgid "Log is Empty"
3181
  msgstr ""
3182
 
3183
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:517
3184
  msgid "Newbie"
3185
  msgstr ""
3186
 
3187
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:543
3188
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:546
3189
  #, php-format
3190
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
3191
  msgstr ""
3192
 
3193
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:548
3194
  msgid "Rank Activated"
3195
  msgstr ""
3196
 
3197
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:549
3198
  msgid "Rank Saved"
3199
  msgstr ""
3200
 
3201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:550
3202
  #, php-format
3203
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
3204
  msgstr ""
3205
 
3206
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:552
3207
  #, php-format
3208
  msgid "Rank scheduled for: <strong>%1$s</strong>."
3209
  msgstr ""
3210
 
3211
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:609
3212
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:664
3213
  msgid "Rank Title"
3214
  msgstr ""
3215
 
3216
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:610
3217
  msgid "Logo"
3218
  msgstr ""
3219
 
3220
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:611
3221
  msgid "Requirement"
3222
  msgstr ""
3223
 
3224
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:612
3225
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:367
3226
  msgid "Users"
3227
  msgstr ""
3228
 
3229
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:628
3230
  msgid "No Logo Set"
3231
  msgstr ""
3232
 
3233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:637
3234
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:642
3235
  msgid "Any Value"
3236
  msgstr ""
3237
 
3238
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:644
3239
  msgid "Maximum %plural%"
3240
  msgstr ""
3241
 
3242
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:677
3243
  msgid "Rank Settings"
3244
  msgstr ""
3245
 
3246
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:699
3247
  msgid "Minimum %plural% to reach this rank"
3248
  msgstr ""
3249
 
3250
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:703
3251
  msgid "Maximum %plural% to be included in this rank"
3252
  msgstr ""
3253
 
3254
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:710
3255
  msgid "All Published Ranks"
3256
  msgstr ""
3257
 
3258
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:717
3259
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:719
3260
  msgid "Not Set"
3261
  msgstr ""
3262
 
3263
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:724
3264
  msgid "No Ranks found"
3265
  msgstr ""
3266
 
3267
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:779
3268
  msgid "Rank Features"
3269
  msgstr ""
3270
 
3271
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:783
3272
  msgid "%plural% requirement"
3273
  msgstr ""
3274
 
3275
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:784
3276
  msgid "Featured Image (Logo)"
3277
  msgstr ""
3278
 
3279
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:785
3280
  msgid "Content"
3281
  msgstr ""
3282
 
3283
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:786
3284
  msgid "Excerpt"
3285
  msgstr ""
3286
 
3287
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:787
3288
  msgid "Comments"
3289
  msgstr ""
3290
 
3291
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:788
3292
  msgid "Page Attributes"
3293
  msgstr ""
3294
 
3295
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:789
3296
  msgid "Custom Fields"
3297
  msgstr ""
3298
 
3299
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:792
3300
  msgid "Public"
3301
  msgstr ""
3302
 
3303
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:796
3304
  msgid ""
3305
  "If you want to create a template archive for each rank, you must select to "
3306
  "have ranks public. Defaults to disabled."
3307
  msgstr ""
3308
 
3309
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:799
3310
  msgid "Rank Basis"
3311
  msgstr ""
3312
 
3313
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:802
3314
  msgid "Users are ranked according to their current balance."
3315
  msgstr ""
3316
 
3317
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:805
3318
  msgid ""
3319
  "Users are ranked according to the total amount of %_plural% they have "
3320
  "accumulated."
3321
  msgstr ""
3322
 
3323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:809
3324
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:814
3325
  msgid "Calculate Totals"
3326
  msgstr ""
3327
 
3328
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:812
3329
  msgid ""
3330
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3331
  "the users current balance will be used as a starting point."
3332
  msgstr ""
3333
 
3334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:812
3335
  msgid ""
3336
  "Once a users total has been calculated, they will be assigned to their "
3337
  "appropriate roles. For this reason, it is highly recommended that you first "
3338
  "setup your ranks!"
3339
  msgstr ""
3340
 
3341
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:813
3342
  msgid ""
3343
  "Depending on your log size and number of users this process may take a "
3344
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3345
  "until this is completed!"
3346
  msgstr ""
3347
 
3348
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:818
3349
  msgid "Archive URL"
3350
  msgstr ""
3351
 
3352
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:822
3353
  msgid "Ignored if Ranks are not public"
3354
  msgstr ""
3355
 
3356
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:825
3357
  msgid "Display Order"
3358
  msgstr ""
3359
 
3360
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:832
3361
  msgid "Ascending - Lowest rank to highest"
3362
  msgstr ""
3363
 
3364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:833
3365
  msgid "Descending - Highest rank to lowest"
3366
  msgstr ""
3367
 
3368
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:842
3369
  msgid ""
3370
  "Select in what order ranks should be displayed in your admin area and/or "
3371
  "front if ranks are \"Public\""
3372
  msgstr ""
3373
 
3374
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:858
3375
  msgid "Rank in BuddyPress"
3376
  msgstr ""
3377
 
3378
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:926
3379
  msgid "Script Communication Error"
3380
  msgstr ""
3381
 
3382
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:975
3383
  msgid "Rank Post Type"
3384
  msgstr ""
3385
 
3386
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:979
3387
  msgid "No. of ranks"
3388
  msgstr ""
3389
 
3390
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:983
3391
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:356
3392
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:371
3393
  msgid "Actions"
3394
  msgstr ""
3395
 
3396
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:984
3397
  msgid "Remove All Ranks"
3398
  msgstr ""
3399
 
3400
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/myCRED-addon-ranks.php:984
3401
  msgid "Assign Ranks to Users"
3402
  msgstr ""
3403
 
3404
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-functions.php:181
3405
  msgid "mycred_get_users_rank() : Missing required user id"
3406
  msgstr ""
3407
 
3408
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-functions.php:192
3409
  msgid "no rank"
3410
  msgstr ""
3411
 
3412
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-functions.php:271
3413
  msgid "No rank"
3414
  msgstr ""
3415
 
3416
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-shortcodes.php:57
3417
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-shortcodes.php:132
3418
  msgid "No users found with this rank"
3419
  msgstr ""
3420
 
3421
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-shortcodes.php:62
3422
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:224
3423
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:227
3424
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:288
3425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:349
3426
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:353
3427
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:357
3428
  msgid "error"
3429
  msgstr ""
3430
 
3431
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/ranks/includes/mycred-rank-shortcodes.php:62
3432
  msgid "Rank ID is required!"
3433
  msgstr ""
3434
 
3435
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:12
3436
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:303
3437
  msgid "Sell Content"
3438
  msgstr ""
3439
 
3440
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:13
3441
  msgid ""
3442
  "This add-on allows you to sell posts, pages or any public post types on your "
3443
  "website. You can either sell the entire content or using our shortcode, sell "
3444
  "parts of your content allowing you to offer \"teasers\"."
3445
  msgstr ""
3446
 
3447
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:42
3448
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3449
  msgstr ""
3450
 
3451
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:43
3452
  msgid ""
3453
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3454
  "</p>"
3455
  msgstr ""
3456
 
3457
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:44
3458
  msgid ""
3459
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3460
  "<p><strong>Price</strong>: %price%</p>"
3461
  msgstr ""
3462
 
3463
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:54
3464
  msgid "Purchase of %link_with_title%"
3465
  msgstr ""
3466
 
3467
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:55
3468
  msgid "Sale of %link_with_title%"
3469
  msgstr ""
3470
 
3471
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:71
3472
  msgid "Hours"
3473
  msgstr ""
3474
 
3475
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:213
3476
  msgid "You can not buy this content."
3477
  msgstr ""
3478
 
3479
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:276
3480
  msgid "Error. Try Again"
3481
  msgstr ""
3482
 
3483
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:298
3484
  msgid "No Payout. Just charge."
3485
  msgstr ""
3486
 
3487
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:299
3488
  msgid "Pay Content Author."
3489
  msgstr ""
3490
 
3491
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:305
3492
  msgid "Post Types"
3493
  msgstr ""
3494
 
3495
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:309
3496
  msgid "Comma separated list of post types that can be sold."
3497
  msgstr ""
3498
 
3499
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:326
3500
  msgid "Percentage to pay Author"
3501
  msgstr ""
3502
 
3503
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:328
3504
  msgid ""
3505
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3506
  "authors are not paid."
3507
  msgstr ""
3508
 
3509
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:336
3510
  msgid "Defaults"
3511
  msgstr ""
3512
 
3513
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:344
3514
  msgid "Allow authors to change price."
3515
  msgstr ""
3516
 
3517
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:353
3518
  msgid "Allow authors to change button label."
3519
  msgstr ""
3520
 
3521
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:357
3522
  msgid "Purchases expire after"
3523
  msgstr ""
3524
 
3525
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:359
3526
  msgid "Use zero for permanent sales."
3527
  msgstr ""
3528
 
3529
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:362
3530
  msgid "Sale Template for non members"
3531
  msgstr ""
3532
 
3533
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:366
3534
  msgid ""
3535
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3536
  "be logged in to buy content!"
3537
  msgstr ""
3538
 
3539
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:367
3540
  msgid ""
3541
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3542
  "%link_with_title%, %price%"
3543
  msgstr ""
3544
 
3545
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:370
3546
  msgid "Sale Template for members"
3547
  msgstr ""
3548
 
3549
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:374
3550
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:382
3551
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3552
  msgstr ""
3553
 
3554
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:375
3555
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:383
3556
  msgid ""
3557
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3558
  "%link_with_title%, %buy_button%, %price%"
3559
  msgstr ""
3560
 
3561
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:378
3562
  msgid "Insufficient funds template"
3563
  msgstr ""
3564
 
3565
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:386
3566
  msgid "Log template for Purchases"
3567
  msgstr ""
3568
 
3569
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:390
3570
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:397
3571
  msgid ""
3572
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3573
  "or %link_with_title%"
3574
  msgstr ""
3575
 
3576
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:393
3577
  msgid "Log template for Sales"
3578
  msgstr ""
3579
 
3580
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:444
3581
  #, php-format
3582
  msgid "%s Sell This"
3583
  msgstr ""
3584
 
3585
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:498
3586
  #, php-format
3587
  msgid "%s Sell Content needs to be setup before you can use this feature."
3588
  msgstr ""
3589
 
3590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:501
3591
  msgid "Setup add-on"
3592
  msgstr ""
3593
 
3594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:501
3595
  msgid "Lets do it"
3596
  msgstr ""
3597
 
3598
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:530
3599
  msgid "Enable sale of this "
3600
  msgstr ""
3601
 
3602
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:544
3603
  msgid "Purchase expires after"
3604
  msgstr ""
3605
 
3606
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:793
3607
  msgid "Thank you for your purchase!"
3608
  msgstr ""
3609
 
3610
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:877
3611
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:960
3612
  msgid "The following content is set for sale:"
3613
  msgstr ""
3614
 
3615
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:978
3616
  msgid "No purchases found"
3617
  msgstr ""
3618
 
3619
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/sell-content/myCRED-addon-sell-content.php:1015
3620
  msgid "Purchased"
3621
  msgstr ""
3622
 
3623
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:12
3624
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:51
3625
  msgid "Transfer"
3626
  msgstr ""
3627
 
3628
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:13
3629
  msgid ""
3630
  "Allow your users to send or \"donate\" points to other members by either "
3631
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3632
  msgstr ""
3633
 
3634
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:44
3635
  msgid "You do not have enough %plural% to send."
3636
  msgstr ""
3637
 
3638
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:45
3639
  msgid "You have exceeded your %limit% transfer limit."
3640
  msgstr ""
3641
 
3642
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:146
3643
  msgid "Transaction completed."
3644
  msgstr ""
3645
 
3646
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:147
3647
  msgid ""
3648
  "Security token could not be verified. Please contact your site administrator!"
3649
  msgstr ""
3650
 
3651
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:148
3652
  msgid "Communications error. Please try again later."
3653
  msgstr ""
3654
 
3655
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:149
3656
  msgid "Recipient not found. Please try again."
3657
  msgstr ""
3658
 
3659
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:150
3660
  msgid "Transaction declined by recipient."
3661
  msgstr ""
3662
 
3663
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:151
3664
  msgid "Incorrect amount. Please try again."
3665
  msgstr ""
3666
 
3667
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:152
3668
  msgid ""
3669
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3670
  "this has been done!"
3671
  msgstr ""
3672
 
3673
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:153
3674
  msgid "Insufficient funds. Please enter a lower amount."
3675
  msgstr ""
3676
 
3677
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:154
3678
  msgid "Transfer Limit exceeded."
3679
  msgstr ""
3680
 
3681
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:179
3682
  msgid "No limits."
3683
  msgstr ""
3684
 
3685
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:180
3686
  msgid "Impose daily limit."
3687
  msgstr ""
3688
 
3689
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:181
3690
  msgid "Impose weekly limit."
3691
  msgstr ""
3692
 
3693
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:188
3694
  msgid "User Login (user_login)"
3695
  msgstr ""
3696
 
3697
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:189
3698
  msgid "User Email (user_email)"
3699
  msgstr ""
3700
 
3701
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:193
3702
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:590
3703
  msgid "Transfer %plural%"
3704
  msgstr ""
3705
 
3706
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:195
3707
  msgid "Log template for sending"
3708
  msgstr ""
3709
 
3710
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:202
3711
  msgid "Log template for receiving"
3712
  msgstr ""
3713
 
3714
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:209
3715
  msgid "Autofill Recipient"
3716
  msgstr ""
3717
 
3718
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:218
3719
  msgid "Select what user details recipients should be autofilled by."
3720
  msgstr ""
3721
 
3722
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:221
3723
  msgid "Reload"
3724
  msgstr ""
3725
 
3726
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:224
3727
  msgid "Reload page on successful transfers."
3728
  msgstr ""
3729
 
3730
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:227
3731
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:969
3732
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1224
3733
  msgid "Limits"
3734
  msgstr ""
3735
 
3736
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:244
3737
  msgid "Maximum Amount"
3738
  msgstr ""
3739
 
3740
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:246
3741
  msgid "This amount is ignored if no limits are imposed."
3742
  msgstr ""
3743
 
3744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:249
3745
  msgid "Form Templates"
3746
  msgstr ""
3747
 
3748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:252
3749
  msgid "Not logged in Template"
3750
  msgstr ""
3751
 
3752
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:254
3753
  msgid ""
3754
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3755
  "elements allowed!"
3756
  msgstr ""
3757
 
3758
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:258
3759
  msgid "Balance Template"
3760
  msgstr ""
3761
 
3762
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:260
3763
  msgid ""
3764
  "Template to use when displaying the users balance (if included). No HTML "
3765
  "elements allowed!"
3766
  msgstr ""
3767
 
3768
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:264
3769
  msgid "Limit Template"
3770
  msgstr ""
3771
 
3772
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:266
3773
  msgid ""
3774
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3775
  msgstr ""
3776
 
3777
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:270
3778
  msgid "Button Template"
3779
  msgstr ""
3780
 
3781
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:272
3782
  msgid "Send Transfer button template. No HTML elements allowed!"
3783
  msgstr ""
3784
 
3785
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:275
3786
  msgid "Error Messages"
3787
  msgstr ""
3788
 
3789
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:278
3790
  msgid "Balance to low to send."
3791
  msgstr ""
3792
 
3793
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:280
3794
  msgid ""
3795
  "Text to show when a users balance is to low for transfers. Leave empty to "
3796
  "hide. No HTML elements allowed!"
3797
  msgstr ""
3798
 
3799
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:284
3800
  msgid "Transfer Limit Reached."
3801
  msgstr ""
3802
 
3803
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:286
3804
  msgid ""
3805
  "Text to show when a user has reached their transfer limit (if used). Leave "
3806
  "empty to hide. No HTML elements allowed!"
3807
  msgstr ""
3808
 
3809
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:519
3810
  msgid "Allow transfers between users."
3811
  msgstr ""
3812
 
3813
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:521
3814
  #, php-format
3815
  msgid "(%s) Transfer"
3816
  msgstr ""
3817
 
3818
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:535
3819
  msgid "The myCRED Transfer add-on has not yet been setup!"
3820
  msgstr ""
3821
 
3822
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:601
3823
  msgid "Show users balance"
3824
  msgstr ""
3825
 
3826
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:605
3827
  msgid "Show users limit"
3828
  msgstr ""
3829
 
3830
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:701
3831
  msgid "username"
3832
  msgstr ""
3833
 
3834
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:703
3835
  msgid "email"
3836
  msgstr ""
3837
 
3838
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:705
3839
  #, php-format
3840
  msgid "recipients %s"
3841
  msgstr ""
3842
 
3843
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:755
3844
  msgid "To:"
3845
  msgstr ""
3846
 
3847
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/addons/transfer/myCRED-addon-transfer.php:761
3848
  msgid "Amount:"
3849
  msgstr ""
3850
 
3851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:26
3852
  #, php-format
3853
  msgid ""
3854
  "Thank you for choosing %s as your points management tool!<br />I hope you "
3855
  "have as much fun using it as I had developing it."
3856
  msgstr ""
3857
 
3858
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:37
3859
  msgid "What&#8217;s New"
3860
  msgstr ""
3861
 
3862
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:39
3863
  msgid "Credits"
3864
  msgstr ""
3865
 
3866
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:79
3867
  #, php-format
3868
  msgid "Welcome to %s %s"
3869
  msgstr ""
3870
 
3871
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:83
3872
  msgid "New Features"
3873
  msgstr ""
3874
 
3875
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:86
3876
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:27
3877
  #, php-format
3878
  msgid "%s Right Now"
3879
  msgstr ""
3880
 
3881
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:87
3882
  msgid ""
3883
  "This new Dashboard widget gives you an overview of %_plural% gained or lost "
3884
  "by your users along with a few other summaries based on your logs content."
3885
  msgstr ""
3886
 
3887
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:90
3888
  msgid "YouTube Iframe API"
3889
  msgstr ""
3890
 
3891
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:91
3892
  msgid ""
3893
  "The \"%plural% for watching videos\" hook has been updated to use the "
3894
  "YouTube Iframe API which allows you to embed videos that can also be viewed "
3895
  "on mobile devices."
3896
  msgstr ""
3897
 
3898
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:94
3899
  msgid "Added Support"
3900
  msgstr ""
3901
 
3902
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:97
3903
  msgid "SimplePress"
3904
  msgstr ""
3905
 
3906
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:98
3907
  #, php-format
3908
  msgid "As of 1.3.3, %s has a built in support for SimplePress!"
3909
  msgstr ""
3910
 
3911
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:98
3912
  msgid ""
3913
  "Once you have installed SimplePress, you will find the \"SimplePress\" hook "
3914
  "on your Hooks page. You can award or deduct %_plural% for new topics and "
3915
  "topic posts."
3916
  msgstr ""
3917
 
3918
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:102
3919
  msgid ""
3920
  "With WordPress Social Invitations aka WSI you can enhance your site by "
3921
  "letting your users to invite their social network friends. This plugin works "
3922
  "perfectly with Buddypress and also hooks into Invite Anyone Plugin."
3923
  msgstr ""
3924
 
3925
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:103
3926
  msgid ""
3927
  "Please consult the plugins website for information on how to install and "
3928
  "setup this plugin."
3929
  msgstr ""
3930
 
3931
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:106
3932
  msgid "Improvements"
3933
  msgstr ""
3934
 
3935
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:110
3936
  msgid ""
3937
  "The transfer add-on has received several improvements which gives you must "
3938
  "better control of customizing your setup."
3939
  msgstr ""
3940
 
3941
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:114
3942
  msgid ""
3943
  "The ranks add-on has received several bug fixes, especially if you are "
3944
  "assigning ranks according to your users total accumilated points and not "
3945
  "their current balance."
3946
  msgstr ""
3947
 
3948
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:115
3949
  msgid ""
3950
  "If you have been experiencing issues with users not getting the correct "
3951
  "rank, please make sure you \"Calculate Totals\" to fix the issue!"
3952
  msgstr ""
3953
 
3954
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:118
3955
  msgid "Events Management"
3956
  msgstr ""
3957
 
3958
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:119
3959
  msgid ""
3960
  "Fixed the issue with users not being able to pay for events in the free "
3961
  "version, if attendance is pre-approved."
3962
  msgstr ""
3963
 
3964
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:142
3965
  #, php-format
3966
  msgid "%s Users"
3967
  msgstr ""
3968
 
3969
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:145
3970
  msgid "Bug Finders"
3971
  msgstr ""
3972
 
3973
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:146
3974
  msgid ""
3975
  "Users who have taken the time to report bugs helping me improve this plugin."
3976
  msgstr ""
3977
 
3978
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:153
3979
  msgid "Plugin Translators"
3980
  msgstr ""
3981
 
3982
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:154
3983
  msgid "Users who have helped with translating this plugin."
3984
  msgstr ""
3985
 
3986
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:160
3987
  msgid "Find out more"
3988
  msgstr ""
3989
 
3990
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-about.php:161
3991
  #, php-format
3992
  msgid ""
3993
  "You can always find more information about this plugin on the %s <a href=\"%s"
3994
  "\">website</a>."
3995
  msgstr ""
3996
 
3997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:68
3998
  msgid "User is excluded"
3999
  msgstr ""
4000
 
4001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:73
4002
  msgid "Log Entry can not be empty"
4003
  msgstr ""
4004
 
4005
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:77
4006
  msgid "Amount can not be zero"
4007
  msgstr ""
4008
 
4009
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:174
4010
  msgid "Excluded"
4011
  msgstr ""
4012
 
4013
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:181
4014
  msgid "History"
4015
  msgstr ""
4016
 
4017
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:183
4018
  msgid "Adjust"
4019
  msgstr ""
4020
 
4021
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:234
4022
  #, php-format
4023
  msgid "My current %singular% balance"
4024
  msgstr ""
4025
 
4026
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:257
4027
  msgid "Adjust Your Balance"
4028
  msgstr ""
4029
 
4030
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:259
4031
  msgid "Adjust Users Balance"
4032
  msgstr ""
4033
 
4034
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:266
4035
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:340
4036
  msgid "required"
4037
  msgstr ""
4038
 
4039
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:268
4040
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:342
4041
  msgid "optional"
4042
  msgstr ""
4043
 
4044
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:274
4045
  msgid "Log description for adjustment"
4046
  msgstr ""
4047
 
4048
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:275
4049
  msgid "Update"
4050
  msgstr ""
4051
 
4052
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:276
4053
  msgid "Description is required!"
4054
  msgstr ""
4055
 
4056
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:281
4057
  msgid "Users Current Balance"
4058
  msgstr ""
4059
 
4060
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:351
4061
  msgid "A positive or negative value"
4062
  msgstr ""
4063
 
4064
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-admin.php:353
4065
  msgid "Update Balance"
4066
  msgstr ""
4067
 
4068
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:67
4069
  msgid "Point"
4070
  msgstr ""
4071
 
4072
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:68
4073
  msgid "Points"
4074
  msgstr ""
4075
 
4076
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:391
4077
  msgid "Deleted"
4078
  msgstr ""
4079
 
4080
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:526
4081
  msgid "Deleted Item"
4082
  msgstr ""
4083
 
4084
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:1435
4085
  msgid "ref empty"
4086
  msgstr ""
4087
 
4088
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:1443
4089
  msgid "incorrect user id format"
4090
  msgstr ""
4091
 
4092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:1456
4093
  msgid "incorrect unix timestamp (from):"
4094
  msgstr ""
4095
 
4096
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-functions.php:1465
4097
  msgid "incorrect unix timestamp (to):"
4098
  msgstr ""
4099
 
4100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:38
4101
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
4102
  msgstr ""
4103
 
4104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:43
4105
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4106
  msgstr ""
4107
 
4108
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:48
4109
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4110
  msgstr ""
4111
 
4112
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:53
4113
  msgid ""
4114
  "Sorry but your WordPress installation does not reach the minimum "
4115
  "requirements for running myCRED. The following errors were given:"
4116
  msgstr ""
4117
 
4118
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:265
4119
  msgid "myCRED needs your attention."
4120
  msgstr ""
4121
 
4122
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:265
4123
  msgid "Run Setup"
4124
  msgstr ""
4125
 
4126
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:277
4127
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:278
4128
  msgid "myCRED Setup"
4129
  msgstr ""
4130
 
4131
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:423
4132
  msgid "Step"
4133
  msgstr ""
4134
 
4135
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:446
4136
  msgid ""
4137
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4138
  "points format, layout and security settings."
4139
  msgstr ""
4140
 
4141
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:447
4142
  msgid "Begin Setup"
4143
  msgstr ""
4144
 
4145
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:504
4146
  msgid "Select the format you want to use for your points."
4147
  msgstr ""
4148
 
4149
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:505
4150
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:202
4151
  msgid "Format"
4152
  msgstr ""
4153
 
4154
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:508
4155
  msgid "Separators"
4156
  msgstr ""
4157
 
4158
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:518
4159
  msgid "Decimals"
4160
  msgstr ""
4161
 
4162
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:520
4163
  msgid "Use zero for no decimals."
4164
  msgstr ""
4165
 
4166
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:523
4167
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:252
4168
  msgid "Presentation"
4169
  msgstr ""
4170
 
4171
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:526
4172
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:239
4173
  msgid "Name (Singular)"
4174
  msgstr ""
4175
 
4176
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:530
4177
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:244
4178
  msgid "Name (Plural)"
4179
  msgstr ""
4180
 
4181
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:536
4182
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:255
4183
  msgid "Prefix"
4184
  msgstr ""
4185
 
4186
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:544
4187
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:263
4188
  msgid "Suffix"
4189
  msgstr ""
4190
 
4191
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:549
4192
  msgid "Cancel Setup"
4193
  msgstr ""
4194
 
4195
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:549
4196
  msgid "Cancel"
4197
  msgstr ""
4198
 
4199
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:549
4200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:637
4201
  msgid "Next"
4202
  msgstr ""
4203
 
4204
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:581
4205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:271
4206
  msgid "Security"
4207
  msgstr ""
4208
 
4209
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:584
4210
  msgid "Edit Settings Capability"
4211
  msgstr ""
4212
 
4213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:588
4214
  msgid "Edit Users %plural% Capability"
4215
  msgstr ""
4216
 
4217
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:592
4218
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:284
4219
  msgid "Maximum %plural% payouts"
4220
  msgstr ""
4221
 
4222
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:594
4223
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:286
4224
  msgid ""
4225
  "As an added security, you can set the maximum amount a user can gain or "
4226
  "loose in a single instance. If used, make sure this is the maximum amount a "
@@ -4228,811 +4141,811 @@ msgid ""
4228
  "disable."
4229
  msgstr ""
4230
 
4231
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:601
4232
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:293
4233
  msgid "Exclude those who can \"Edit Settings\"."
4234
  msgstr ""
4235
 
4236
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:605
4237
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:297
4238
  msgid "Exclude those who can \"Edit Users %plural%\"."
4239
  msgstr ""
4240
 
4241
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:608
4242
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:301
4243
  msgid "Exclude the following user IDs:"
4244
  msgstr ""
4245
 
4246
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:612
4247
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:306
4248
  msgid "Rankings"
4249
  msgstr ""
4250
 
4251
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:616
4252
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:310
4253
  msgid "Update rankings each time a users balance changes."
4254
  msgstr ""
4255
 
4256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:620
4257
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:314
4258
  msgid "Update rankings once a day."
4259
  msgstr ""
4260
 
4261
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:624
4262
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:318
4263
  msgid "Update rankings once a week."
4264
  msgstr ""
4265
 
4266
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:628
4267
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:322
4268
  msgid "Update rankings on a specific date."
4269
  msgstr ""
4270
 
4271
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:632
4272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:277
4273
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:326
4274
  msgid "Date"
4275
  msgstr ""
4276
 
4277
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:656
4278
  msgid "Ready"
4279
  msgstr ""
4280
 
4281
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:657
4282
  msgid "Almost done! Click the button below to finish this setup."
4283
  msgstr ""
4284
 
4285
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-install.php:658
4286
  msgid "Install & Run"
4287
  msgstr ""
4288
 
4289
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:279
4290
  msgid "Entry"
4291
  msgstr ""
4292
 
4293
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:379
4294
  msgid "User Missing"
4295
  msgstr ""
4296
 
4297
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:418
4298
  msgid "No log entries found"
4299
  msgstr ""
4300
 
4301
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:433
4302
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:435
4303
  msgid "Search Log"
4304
  msgstr ""
4305
 
4306
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-log.php:434
4307
  msgid "search log entries"
4308
  msgstr ""
4309
 
4310
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:60
4311
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:61
4312
  msgid "Network Settings"
4313
  msgstr ""
4314
 
4315
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:158
4316
  #, php-format
4317
  msgid "%s Network"
4318
  msgstr ""
4319
 
4320
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:164
4321
  #, php-format
4322
  msgid "Note! %s has not yet been setup."
4323
  msgstr ""
4324
 
4325
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:168
4326
  msgid "Network Settings Updated"
4327
  msgstr ""
4328
 
4329
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:170
4330
  #, php-format
4331
  msgid "Configure network settings for %s."
4332
  msgstr ""
4333
 
4334
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:177
4335
  msgid "Master Template"
4336
  msgstr ""
4337
 
4338
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:181
4339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:195
4340
  msgid "Yes"
4341
  msgstr ""
4342
 
4343
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:185
4344
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:199
4345
  msgid "No"
4346
  msgstr ""
4347
 
4348
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:188
4349
  #, php-format
4350
  msgid ""
4351
  "If enabled, %s will use your main site's settings for all other sites in "
4352
  "your network."
4353
  msgstr ""
4354
 
4355
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:191
4356
  msgid "Central Logging"
4357
  msgstr ""
4358
 
4359
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:202
4360
  #, php-format
4361
  msgid "If enabled, %s will log all site actions in your main site's log."
4362
  msgstr ""
4363
 
4364
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:205
4365
  msgid "Site Block"
4366
  msgstr ""
4367
 
4368
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:209
4369
  #, php-format
4370
  msgid "Comma separated list of blog ids where %s is to be disabled."
4371
  msgstr ""
4372
 
4373
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-network.php:218
4374
  msgid "Save Network Settings"
4375
  msgstr ""
4376
 
4377
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:39
4378
  msgid "Reference Occurrences"
4379
  msgstr ""
4380
 
4381
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:47
4382
  msgid "%singular% Totals"
4383
  msgstr ""
4384
 
4385
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:77
4386
  msgid "no modules shown"
4387
  msgstr ""
4388
 
4389
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:146
4390
  msgid "Show"
4391
  msgstr ""
4392
 
4393
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:167
4394
  msgid "No modules found"
4395
  msgstr ""
4396
 
4397
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:293
4398
  msgid "Your log is empty"
4399
  msgstr ""
4400
 
4401
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:309
4402
  msgid "Number"
4403
  msgstr ""
4404
 
4405
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:343
4406
  msgid "Earned by users"
4407
  msgstr ""
4408
 
4409
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:347
4410
  msgid "Taken from users"
4411
  msgstr ""
4412
 
4413
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:356
4414
  msgid "Purchased by users"
4415
  msgstr ""
4416
 
4417
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:367
4418
  msgid "Transferred between users"
4419
  msgstr ""
4420
 
4421
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:378
4422
  msgid "Used as payment"
4423
  msgstr ""
4424
 
4425
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-overview.php:387
4426
  msgid ""
4427
  "Note that manual balance adjustments without a log entry are not counted."
4428
  msgstr ""
4429
 
4430
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:523
4431
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4432
  msgstr ""
4433
 
4434
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:526
4435
  msgid "Click Update Settings to load the Remote API settings."
4436
  msgstr ""
4437
 
4438
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:528
4439
  msgid "Allow Remote Access"
4440
  msgstr ""
4441
 
4442
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:549
4443
  msgid "Remote Access"
4444
  msgstr ""
4445
 
4446
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:551
4447
  msgid "API Key"
4448
  msgstr ""
4449
 
4450
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:554
4451
  msgid "Key"
4452
  msgstr ""
4453
 
4454
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:555
4455
  msgid "min. 12 characters"
4456
  msgstr ""
4457
 
4458
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:556
4459
  msgid "Required for this feature to work!<br />Minimum 12 characters."
4460
  msgstr ""
4461
 
4462
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:559
4463
  msgid "Key Length"
4464
  msgstr ""
4465
 
4466
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:564
4467
  msgid "Generate New Key"
4468
  msgstr ""
4469
 
4470
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:566
4471
  msgid "Warning!"
4472
  msgstr ""
4473
 
4474
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:566
4475
  msgid ""
4476
  "Keep this key safe! Those you share this key with will be able to remotely "
4477
  "deduct / add / transfer %plural%!"
4478
  msgstr ""
4479
 
4480
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:568
4481
  msgid "Incoming URI"
4482
  msgstr ""
4483
 
4484
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:572
4485
  msgid ""
4486
  "The incoming call address. Remote calls made to any other URL will be "
4487
  "ignored."
4488
  msgstr ""
4489
 
4490
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:575
4491
  msgid "Debug Mode"
4492
  msgstr ""
4493
 
4494
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-remote.php:578
4495
  msgid ""
4496
  "Remember to disable when not used to prevent mischievous calls from learning "
4497
  "about your setup!"
4498
  msgstr ""
4499
 
4500
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:146
4501
  msgid "Leaderboard is empty."
4502
  msgstr ""
4503
 
4504
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:224
4505
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:349
4506
  msgid "Amount missing!"
4507
  msgstr ""
4508
 
4509
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:227
4510
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:357
4511
  msgid "Log Template Missing!"
4512
  msgstr ""
4513
 
4514
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:288
4515
  msgid "Anchor missing URL!"
4516
  msgstr ""
4517
 
4518
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:353
4519
  msgid "User ID missing for recipient."
4520
  msgstr ""
4521
 
4522
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:407
4523
  msgid "Sent"
4524
  msgstr ""
4525
 
4526
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:408
4527
  msgid "Error - Try Again"
4528
  msgstr ""
4529
 
4530
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-shortcodes.php:506
4531
  msgid "A video ID is required for this shortcode"
4532
  msgstr ""
4533
 
4534
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:21
4535
  #, php-format
4536
  msgid "Show the current users %s balance"
4537
  msgstr ""
4538
 
4539
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:23
4540
  #, php-format
4541
  msgid "(%s) My Balance"
4542
  msgstr ""
4543
 
4544
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:158
4545
  msgid "My Balance"
4546
  msgstr ""
4547
 
4548
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:169
4549
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4550
  msgstr ""
4551
 
4552
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:193
4553
  msgid "Layout"
4554
  msgstr ""
4555
 
4556
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:195
4557
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:218
4558
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:228
4559
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:377
4560
  msgid "See the help tab for available template tags."
4561
  msgstr ""
4562
 
4563
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:200
4564
  msgid "Include users ranking"
4565
  msgstr ""
4566
 
4567
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:204
4568
  msgid ""
4569
  "This will be appended after the balance. See the help tab for available "
4570
  "template tags."
4571
  msgstr ""
4572
 
4573
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:210
4574
  msgid "Include history"
4575
  msgstr ""
4576
 
4577
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:212
4578
  msgid "History Title"
4579
  msgstr ""
4580
 
4581
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:214
4582
  msgid "Number of entires"
4583
  msgstr ""
4584
 
4585
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:216
4586
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:375
4587
  msgid "Row layout"
4588
  msgstr ""
4589
 
4590
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:224
4591
  msgid "Show message when not logged in"
4592
  msgstr ""
4593
 
4594
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:226
4595
  msgid "Message"
4596
  msgstr ""
4597
 
4598
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:300
4599
  #, php-format
4600
  msgid "Show a list of users sorted by their %s balance"
4601
  msgstr ""
4602
 
4603
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:302
4604
  #, php-format
4605
  msgid "(%s) Leaderboard"
4606
  msgstr ""
4607
 
4608
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:355
4609
  msgid "Leaderboard"
4610
  msgstr ""
4611
 
4612
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:368
4613
  msgid "Visible to non-members"
4614
  msgstr ""
4615
 
4616
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:371
4617
  msgid "Number of users"
4618
  msgstr ""
4619
 
4620
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:380
4621
  msgid "Offset"
4622
  msgstr ""
4623
 
4624
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:382
4625
  msgid "Optional offset of order. Use zero to return the first in the list."
4626
  msgstr ""
4627
 
4628
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:385
4629
  msgid "Order"
4630
  msgstr ""
4631
 
4632
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:389
4633
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:195
4634
  msgid "Ascending"
4635
  msgstr ""
4636
 
4637
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/includes/mycred-widgets.php:390
4638
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:195
4639
  msgid "Descending"
4640
  msgstr ""
4641
 
4642
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:24
4643
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:25
4644
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:26
4645
  msgid "Add-ons"
4646
  msgstr ""
4647
 
4648
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:261
4649
  #, php-format
4650
  msgid "%s Add-ons"
4651
  msgstr ""
4652
 
4653
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:266
4654
  msgid "Add-on Activated"
4655
  msgstr ""
4656
 
4657
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:268
4658
  msgid "Add-on Deactivated"
4659
  msgstr ""
4660
 
4661
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:271
4662
  msgid "Add-ons can expand your current installation with further features."
4663
  msgstr ""
4664
 
4665
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:290
4666
  #, php-format
4667
  msgid "You can find more add-ons in our %s."
4668
  msgstr ""
4669
 
4670
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:290
4671
  msgid "online store"
4672
  msgstr ""
4673
 
4674
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:310
4675
  msgid "Deactivate Add-on"
4676
  msgstr ""
4677
 
4678
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:311
4679
  msgid "Deactivate"
4680
  msgstr ""
4681
 
4682
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:316
4683
  msgid "Activate Add-on"
4684
  msgstr ""
4685
 
4686
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:317
4687
  msgid "Activate"
4688
  msgstr ""
4689
 
4690
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:334
4691
  msgid "Version"
4692
  msgstr ""
4693
 
4694
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:337
4695
  msgid "By"
4696
  msgstr ""
4697
 
4698
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-addons.php:340
4699
  msgid "Documentation"
4700
  msgstr ""
4701
 
4702
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:56
4703
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:76
4704
  msgid "Access denied for this action"
4705
  msgstr ""
4706
 
4707
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:93
4708
  msgid "Accounts successfully reset"
4709
  msgstr ""
4710
 
4711
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:124
4712
  msgid "No users found to export"
4713
  msgstr ""
4714
 
4715
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:222
4716
  #, php-format
4717
  msgid "%s Settings"
4718
  msgstr ""
4719
 
4720
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:229
4721
  msgid "Adjust your core or add-on settings. Follow us on:"
4722
  msgstr ""
4723
 
4724
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:229
4725
  msgid "Facebook"
4726
  msgstr ""
4727
 
4728
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:229
4729
  msgid "Google Plus"
4730
  msgstr ""
4731
 
4732
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:234
4733
  msgid "Core Settings"
4734
  msgstr ""
4735
 
4736
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:236
4737
  msgid "Name"
4738
  msgstr ""
4739
 
4740
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:241
4741
  msgid "Accessible though the %singular% template tag."
4742
  msgstr ""
4743
 
4744
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:246
4745
  msgid "Accessible though the %plural% template tag."
4746
  msgstr ""
4747
 
4748
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:249
4749
  msgid "Tip"
4750
  msgstr ""
4751
 
4752
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:249
4753
  msgid ""
4754
  "Adding an underscore at the beginning of template tag for names will return "
4755
  "them in lowercase. i.e. %_singular%"
4756
  msgstr ""
4757
 
4758
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:267
4759
  msgid "Separator"
4760
  msgstr ""
4761
 
4762
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:274
4763
  msgid "Edit Settings"
4764
  msgstr ""
4765
 
4766
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:276
4767
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:281
4768
  msgid "Capability to check for."
4769
  msgstr ""
4770
 
4771
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:279
4772
  msgid "Edit Users %plural%"
4773
  msgstr ""
4774
 
4775
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:303
4776
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4777
  msgstr ""
4778
 
4779
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:343
4780
  msgid "Management"
4781
  msgstr ""
4782
 
4783
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:345
4784
  msgid "The Log"
4785
  msgstr ""
4786
 
4787
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:348
4788
  msgid "Table Name"
4789
  msgstr ""
4790
 
4791
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:352
4792
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:92
4793
  msgid "Entries"
4794
  msgstr ""
4795
 
4796
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:357
4797
  msgid "Empty Log"
4798
  msgstr ""
4799
 
4800
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:363
4801
  msgid "User Meta Key"
4802
  msgstr ""
4803
 
4804
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:372
4805
  msgid "Set all to zero"
4806
  msgstr ""
4807
 
4808
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:372
4809
  msgid "CSV Export"
4810
  msgstr ""
4811
 
4812
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:390
4813
  msgid "Identify users by"
4814
  msgstr ""
4815
 
4816
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:395
4817
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:188
4818
  msgid "User ID"
4819
  msgstr ""
4820
 
4821
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:396
4822
  msgid "User Email"
4823
  msgstr ""
4824
 
4825
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:397
4826
  msgid "User Login"
4827
  msgstr ""
4828
 
4829
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:404
4830
  msgid ""
4831
  "Use ID if you intend to use this export as a backup of your current site "
4832
  "while Email is recommended if you want to export to a different site."
4833
  msgstr ""
4834
 
4835
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:407
4836
  msgid "Import Log Entry"
4837
  msgstr ""
4838
 
4839
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:409
4840
  #, php-format
4841
  msgid ""
4842
  "Optional log entry to use if you intend to import this file in a different "
4843
  "%s installation."
4844
  msgstr ""
4845
 
4846
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-general.php:412
4847
  msgid "Export"
4848
  msgstr ""
4849
 
4850
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:23
4851
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:24
4852
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:25
4853
  msgid "Hooks"
4854
  msgstr ""
4855
 
4856
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:85
4857
  msgid "%plural% for registrations"
4858
  msgstr ""
4859
 
4860
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:86
4861
  msgid "Award %_plural% for users joining your website."
4862
  msgstr ""
4863
 
4864
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:92
4865
  msgid "%plural% for logins"
4866
  msgstr ""
4867
 
4868
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:93
4869
  msgid ""
4870
  "Award %_plural% for logging in to your website. You can also set an optional "
4871
  "limit."
4872
  msgstr ""
4873
 
4874
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:99
4875
  msgid "%plural% for publishing content"
4876
  msgstr ""
4877
 
4878
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:100
4879
  msgid ""
4880
  "Award %_plural% for publishing content on your website. If your custom post "
4881
  "type is not shown bellow, make sure it is set to \"Public\"."
4882
  msgstr ""
4883
 
4884
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:106
4885
  msgid "%plural% for comments"
4886
  msgstr ""
4887
 
4888
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:107
4889
  msgid "Award %_plural% for making comments."
4890
  msgstr ""
4891
 
4892
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:113
4893
  msgid "%plural% for clicking on links"
4894
  msgstr ""
4895
 
4896
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:114
4897
  msgid ""
4898
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4899
  "shortcode."
4900
  msgstr ""
4901
 
4902
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:120
4903
  msgid "%plural% for viewing Videos"
4904
  msgstr ""
4905
 
4906
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:121
4907
  msgid ""
4908
  "Award %_plural% to users who watches videos embedded using the "
4909
  "[mycred_video] shortcode."
4910
  msgstr ""
4911
 
4912
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:156
4913
  #, php-format
4914
  msgid "%s Hooks"
4915
  msgstr ""
4916
 
4917
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:160
4918
  msgid ""
4919
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4920
  "depending on their actions around your website."
4921
  msgstr ""
4922
 
4923
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:447
4924
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:147
4925
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:168
4926
  msgid "Limit"
4927
  msgstr ""
4928
 
4929
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:554
4930
  msgid "%plural% for Posts"
4931
  msgstr ""
4932
 
4933
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:564
4934
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:577
4935
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:612
4936
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:268
4937
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:278
4938
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:442
4939
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:455
4940
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:468
4941
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:486
4942
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:499
4943
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:518
4944
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:546
4945
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-contact-form7.php:138
4946
  msgid "Available template tags: General, Post"
4947
  msgstr ""
4948
 
4949
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:567
4950
  msgid "%plural% for Pages"
4951
  msgstr ""
4952
 
4953
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:602
4954
  msgid "%plural% for %s"
4955
  msgstr ""
4956
 
4957
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:918
4958
  msgid "Approved Comment"
4959
  msgstr ""
4960
 
4961
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:921
4962
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:938
4963
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:955
4964
  msgid "Comment Author"
4965
  msgstr ""
4966
 
4967
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:925
4968
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:942
4969
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:959
4970
  msgid "Content Author"
4971
  msgstr ""
4972
 
4973
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:932
4974
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:949
4975
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:966
4976
  msgid "Available template tags: General, Comment"
4977
  msgstr ""
4978
 
4979
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:935
4980
  msgid "Comment Marked SPAM"
4981
  msgstr ""
4982
 
4983
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:952
4984
  msgid "Trashed / Unapproved Comments"
4985
  msgstr ""
4986
 
4987
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:972
4988
  msgid "Limit per post"
4989
  msgstr ""
4990
 
4991
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:974
4992
  msgid ""
4993
  "The number of comments per post that grants %_plural% to the comment author. "
4994
  "Use zero for unlimited."
4995
  msgstr ""
4996
 
4997
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:978
4998
  msgid "Limit per day"
4999
  msgstr ""
5000
 
5001
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:980
5002
  msgid ""
5003
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
5004
  msgstr ""
5005
 
5006
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:985
5007
  msgid ""
5008
  "%plural% is to be awarded even when comment authors reply to their own "
5009
  "comment."
5010
  msgstr ""
5011
 
5012
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1052
5013
  msgid "Once for each unique URL"
5014
  msgstr ""
5015
 
5016
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1053
5017
  msgid "Once for each unique link id"
5018
  msgstr ""
5019
 
5020
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1214
5021
  msgid ""
5022
  "The default amount to award for clicking on links. You can override this in "
5023
  "the shortcode."
5024
  msgstr ""
5025
 
5026
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1221
5027
  msgid ""
5028
  "Available template tags: General and custom tags: %url%, %title% or %id%."
5029
  msgstr ""
5030
 
5031
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1232
5032
  msgid "Note!"
5033
  msgstr ""
5034
 
5035
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1232
5036
  msgid ""
5037
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
5038
  "generate one automatically based on the value set under href. If you are "
@@ -5040,331 +4953,331 @@ msgid ""
5040
  "by ID."
5041
  msgstr ""
5042
 
5043
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1545
5044
  msgid "Amount to award for viewing videos."
5045
  msgstr ""
5046
 
5047
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1555
5048
  msgid "Award Logic"
5049
  msgstr ""
5050
 
5051
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1557
5052
  msgid "Select when %_plural% should be awarded or deducted."
5053
  msgstr ""
5054
 
5055
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1558
5056
  msgid "Play - As soon as video starts playing."
5057
  msgstr ""
5058
 
5059
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1559
5060
  msgid "Full - First when the entire video has played."
5061
  msgstr ""
5062
 
5063
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1560
5064
  msgid "Interval - For each x number of seconds watched."
5065
  msgstr ""
5066
 
5067
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1565
5068
  msgid "Number of seconds"
5069
  msgstr ""
5070
 
5071
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1572
5072
  msgid "Leniency"
5073
  msgstr ""
5074
 
5075
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1574
5076
  msgid ""
5077
  "The maximum percentage a users view of a movie can differ from the actual "
5078
  "length."
5079
  msgstr ""
5080
 
5081
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-hooks.php:1577
5082
  msgid ""
5083
  "Do not set this value to zero! A lot of thing can happen while a user "
5084
  "watches a movie and sometimes a few seconds can drop of the counter due to "
5085
  "buffering or play back errors."
5086
  msgstr ""
5087
 
5088
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:24
5089
  msgid "Activity Log"
5090
  msgstr ""
5091
 
5092
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:175
5093
  msgid "Show all references"
5094
  msgstr ""
5095
 
5096
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:194
5097
  msgid "Show in order"
5098
  msgstr ""
5099
 
5100
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:207
5101
  msgid "Filter"
5102
  msgstr ""
5103
 
5104
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:233
5105
  #, php-format
5106
  msgid "Showing %d %s"
5107
  msgstr ""
5108
 
5109
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:233
5110
  msgid "entry"
5111
  msgstr ""
5112
 
5113
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/modules/mycred-module-log.php:252
5114
  msgid "Search results for"
5115
  msgstr ""
5116
 
5117
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:16
5118
  msgid "BadgeOS"
5119
  msgstr ""
5120
 
5121
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:17
5122
  msgid ""
5123
  "Default settings for each BadgeOS Achievement type. These settings may be "
5124
  "overridden for individual achievement type."
5125
  msgstr ""
5126
 
5127
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:93
5128
  #, php-format
5129
  msgid ""
5130
  "Please setup your <a href=\"%s\">default settings</a> before using this "
5131
  "feature."
5132
  msgstr ""
5133
 
5134
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:104
5135
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:106
5136
  msgid "%plural% to Award"
5137
  msgstr ""
5138
 
5139
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:108
5140
  msgid "Use zero to disable"
5141
  msgstr ""
5142
 
5143
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:119
5144
  msgid "Deduction Log Template"
5145
  msgstr ""
5146
 
5147
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:255
5148
  #, php-format
5149
  msgid "Default %s for %s"
5150
  msgstr ""
5151
 
5152
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:262
5153
  msgid "Use zero to disable users gaining %_plural%"
5154
  msgstr ""
5155
 
5156
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:266
5157
  msgid "Default Log template"
5158
  msgstr ""
5159
 
5160
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-badgeOS.php:272
5161
  msgid "Deduct %_plural% if user looses "
5162
  msgstr ""
5163
 
5164
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:16
5165
  msgid "bbPress"
5166
  msgstr ""
5167
 
5168
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:17
5169
  msgid "Awards %_plural% for bbPress actions."
5170
  msgstr ""
5171
 
5172
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:433
5173
  msgid "%plural% for New Forum"
5174
  msgstr ""
5175
 
5176
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:446
5177
  msgid "%plural% for Forum Deletion"
5178
  msgstr ""
5179
 
5180
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:459
5181
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:306
5182
  msgid "%plural% for New Topic"
5183
  msgstr ""
5184
 
5185
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:473
5186
  msgid "Forum authors can receive %_plural% for creating new topics."
5187
  msgstr ""
5188
 
5189
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:477
5190
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:537
5191
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:319
5192
  msgid "%plural% for Topic Deletion"
5193
  msgstr ""
5194
 
5195
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:490
5196
  msgid "%plural% for Favorited Topic"
5197
  msgstr ""
5198
 
5199
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:505
5200
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:529
5201
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:352
5202
  msgid "Use zero for unlimited"
5203
  msgstr ""
5204
 
5205
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:509
5206
  msgid "%plural% for New Reply"
5207
  msgstr ""
5208
 
5209
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:523
5210
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5211
  msgstr ""
5212
 
5213
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-bbPress.php:533
5214
  msgid "Show users %_plural% balance in replies"
5215
  msgstr ""
5216
 
5217
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-contact-form7.php:16
5218
  msgid "Contact Form 7 Form Submissions"
5219
  msgstr ""
5220
 
5221
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-contact-form7.php:17
5222
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5223
  msgstr ""
5224
 
5225
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-contact-form7.php:108
5226
  msgid "No forms found."
5227
  msgstr ""
5228
 
5229
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:16
5230
  msgid "Events Manager"
5231
  msgstr ""
5232
 
5233
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:17
5234
  msgid "Awards %_plural% for users attending events."
5235
  msgstr ""
5236
 
5237
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:140
5238
  msgid "Attending Event"
5239
  msgstr ""
5240
 
5241
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:150
5242
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:163
5243
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:134
5244
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:147
5245
  msgid "Available template tags: General and Post Related"
5246
  msgstr ""
5247
 
5248
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-events-manager-light.php:153
5249
  msgid "Cancelling Attendance"
5250
  msgstr ""
5251
 
5252
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:16
5253
  msgid "GD Star Rating"
5254
  msgstr ""
5255
 
5256
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:17
5257
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5258
  msgstr ""
5259
 
5260
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:99
5261
  msgid "Rating"
5262
  msgstr ""
5263
 
5264
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-gd-star-rating.php:112
5265
  msgid "Up / Down Vote"
5266
  msgstr ""
5267
 
5268
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:16
5269
  msgid "Invite Anyone Plugin"
5270
  msgstr ""
5271
 
5272
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:17
5273
  msgid ""
5274
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5275
  "accepted."
5276
  msgstr ""
5277
 
5278
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:135
5279
  msgid "%plural% for Sending An Invite"
5280
  msgstr ""
5281
 
5282
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:151
5283
  msgid ""
5284
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5285
  msgstr ""
5286
 
5287
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:155
5288
  msgid "%plural% for Accepting An Invite"
5289
  msgstr ""
5290
 
5291
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:159
5292
  msgid "%plural% for each invited user that accepts an invitation."
5293
  msgstr ""
5294
 
5295
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-invite-anyone.php:172
5296
  msgid ""
5297
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5298
  "unlimited."
5299
  msgstr ""
5300
 
5301
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:16
5302
  msgid "Jetpack Subscriptions"
5303
  msgstr ""
5304
 
5305
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:17
5306
  msgid ""
5307
  "Awards %_plural% for users signing up for site or comment updates using "
5308
  "Jetpack."
5309
  msgstr ""
5310
 
5311
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:490
5312
  msgid "Site Subscriptions"
5313
  msgstr ""
5314
 
5315
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-jetpack.php:503
5316
  msgid "Comment Subscriptions"
5317
  msgstr ""
5318
 
5319
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:16
5320
  msgid "Simple:Press"
5321
  msgstr ""
5322
 
5323
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:17
5324
  msgid "Awards %_plural% for Simple:Press actions."
5325
  msgstr ""
5326
 
5327
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:315
5328
  msgid "Available template tag: General and %topic_name%"
5329
  msgstr ""
5330
 
5331
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:332
5332
  msgid "%plural% for New Topic Post"
5333
  msgstr ""
5334
 
5335
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:346
5336
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5337
  msgstr ""
5338
 
5339
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-simplepress.php:356
5340
  msgid "%plural% for Topic Post Deletion"
5341
  msgstr ""
5342
 
5343
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:16
5344
  msgid "WP Favorite Posts"
5345
  msgstr ""
5346
 
5347
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:17
5348
  msgid "Awards %_plural% for users adding posts to their favorites."
5349
  msgstr ""
5350
 
5351
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:124
5352
  msgid "Adding Content to Favorites"
5353
  msgstr ""
5354
 
5355
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-favorite-posts.php:137
5356
  msgid "Removing Content from Favorites"
5357
  msgstr ""
5358
 
5359
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-polls.php:16
5360
  msgid "WP-Polls"
5361
  msgstr ""
5362
 
5363
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-polls.php:17
5364
  msgid "Awards %_plural% for users voting in polls."
5365
  msgstr ""
5366
 
5367
- #: /Users/gabriel/Repositories/mycred/tags/1.3.3/plugins/mycred-hook-wp-polls.php:136
5368
  msgid ""
5369
  "Available template tags: General. You can also use %poll_id% and "
5370
  "%poll_question%."
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
  "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
  "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\". "
1374
+ "Make sure the \"Notification URL\" is set to the above address and that you "
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
  "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
  "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
  "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
  "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
  "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%."
modules/mycred-module-hooks.php CHANGED
@@ -1156,7 +1156,7 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1156
  require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
1157
  $protect = new myCRED_Protect();
1158
  list ( $amount, $id ) = array_pad( explode( ':', $protect->do_decode( $_POST['key'] ) ), 2, '' );
1159
- if ( $amount == '' || $id == '' ) die( json_encode( $_POST['key'] ) );
1160
 
1161
  // Amount
1162
  if ( $amount == 0 )
@@ -1166,18 +1166,20 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1166
 
1167
  if ( $amount == 0 || $amount == $this->core->zero() ) die( json_encode( 400 ) );
1168
 
 
 
 
 
 
 
 
1169
  // Limits
1170
  if ( $this->prefs['limit_by'] == 'url' ) {
1171
- if ( !isset( $_POST['url'] ) || empty( $_POST['url'] ) ) die( json_encode( 500 ) );
1172
- if ( $this->has_entry( 'link_click', $_POST['url'], $user_id ) ) die( json_encode( 600 ) );
1173
- $ref = $_POST['url'];
1174
  }
1175
  elseif ( $this->prefs['limit_by'] == 'id' ) {
1176
- if ( $this->has_entry( 'link_click', $id, $user_id ) ) die( json_encode( 700 ) );
1177
- $ref = $id;
1178
- }
1179
- else {
1180
- $ref = $id;
1181
  }
1182
 
1183
  // Execute
@@ -1187,18 +1189,47 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1187
  $amount,
1188
  $this->prefs['log'],
1189
  '',
1190
- array(
1191
- 'ref_type' => 'link',
1192
- 'link_url' => $_POST['url'],
1193
- 'link_id' => $id,
1194
- 'link_title' => ( isset( $_POST['etitle'] ) ) ? $_POST['etitle'] : ''
1195
- )
1196
  );
1197
 
1198
  // Report the good news
1199
  die( json_encode( 'done' ) );
1200
  }
1201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1202
  /**
1203
  * Preference for Link Click Hook
1204
  * @since 1.1
1156
  require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
1157
  $protect = new myCRED_Protect();
1158
  list ( $amount, $id ) = array_pad( explode( ':', $protect->do_decode( $_POST['key'] ) ), 2, '' );
1159
+ if ( $amount == '' || $id == '' ) die( json_encode( 300 ) );
1160
 
1161
  // Amount
1162
  if ( $amount == 0 )
1166
 
1167
  if ( $amount == 0 || $amount == $this->core->zero() ) die( json_encode( 400 ) );
1168
 
1169
+ $data = array(
1170
+ 'ref_type' => 'link',
1171
+ 'link_url' => $_POST['url'],
1172
+ 'link_id' => $id,
1173
+ 'link_title' => ( isset( $_POST['etitle'] ) ) ? $_POST['etitle'] : ''
1174
+ );
1175
+
1176
  // Limits
1177
  if ( $this->prefs['limit_by'] == 'url' ) {
1178
+ if ( ! isset( $_POST['url'] ) || empty( $_POST['url'] ) ) die( json_encode( 500 ) );
1179
+ if ( $this->has_clicked( $user_id, 'link_url', $data['link_url'] ) ) die( json_encode( 600 ) );
 
1180
  }
1181
  elseif ( $this->prefs['limit_by'] == 'id' ) {
1182
+ if ( $this->has_clicked( $user_id, 'link_id', $data['link_id'] ) ) die( json_encode( 700 ) );
 
 
 
 
1183
  }
1184
 
1185
  // Execute
1189
  $amount,
1190
  $this->prefs['log'],
1191
  '',
1192
+ $data
 
 
 
 
 
1193
  );
1194
 
1195
  // Report the good news
1196
  die( json_encode( 'done' ) );
1197
  }
1198
 
1199
+ /**
1200
+ * Has Clicked
1201
+ * Checks if a user has received points for a link based on either
1202
+ * an ID or URL.
1203
+ * @since 1.3.3.1
1204
+ * @version 1.0
1205
+ */
1206
+ public function has_clicked( $user_id = NULL, $by = '', $check = '' ) {
1207
+ global $wpdb;
1208
+
1209
+ $rows = $wpdb->get_results( $wpdb->prepare( "
1210
+ SELECT *
1211
+ FROM {$this->core->log_table}
1212
+ WHERE ref = %s
1213
+ AND user_id = %d", 'link_click', $user_id ) );
1214
+
1215
+ if ( $wpdb->num_rows == 0 ) return false;
1216
+
1217
+ $reply = false;
1218
+ foreach ( $rows as $row ) {
1219
+ $data = maybe_unserialize( $row->data );
1220
+ if ( ! is_array( $data ) || ! isset( $data[ $by ] ) ) continue;
1221
+
1222
+ if ( $data[ $by ] == $check ) {
1223
+ $reply = true;
1224
+ break;
1225
+ }
1226
+ }
1227
+
1228
+ $wpdb->flush();
1229
+
1230
+ return $reply;
1231
+ }
1232
+
1233
  /**
1234
  * Preference for Link Click Hook
1235
  * @since 1.1
mycred.php CHANGED
@@ -3,24 +3,24 @@
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
7
- * Tags: points, tokens, credit, management, reward, charge
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
10
- * Author Email: info@merovingi.com
11
  * Requires at least: WP 3.1
12
- * Tested up to: WP 3.7.1
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
17
  * SSL Compatible: yes
18
- * bbPress® Compatible: yes
19
- * WordPress® Compatible: yes
20
- * BuddyPress® Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.3.3' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -179,6 +179,7 @@ function mycred_plugin_start_up()
179
 
180
  // Adjust the plugin links
181
  add_filter( 'plugin_action_links_mycred/mycred.php', 'mycred_plugin_links', 10, 4 );
 
182
 
183
  // Lets start with Multisite
184
  if ( is_multisite() ) {
@@ -553,21 +554,41 @@ function mycred_reset_key()
553
  /**
554
  * myCRED Plugin Links
555
  * @since 1.3
556
- * @version 1.0.2
557
  */
558
  function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
559
  {
560
  // Link to Setup
561
- if ( !is_mycred_ready() ) {
562
- $actions['setup'] = '<a href="' . admin_url( 'plugins.php?page=myCRED-setup' ) . '">' . __( 'Setup', 'mycred' ) . '</a>';
563
- return $actions;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  }
565
 
566
- $actions['about'] = '<a href="' . admin_url( 'index.php?page=mycred' ) . '" >' . __( 'About', 'mycred' ) . '</a>';
567
- $actions['tutorials'] = '<a href="http://mycred.me/support/tutorials/" target="_blank">' . __( 'Tutorials', 'mycred' ) . '</a>';
568
- $actions['docs'] = '<a href="http://codex.mycred.me/" target="_blank">' . __( 'Codex', 'mycred' ) . '</a>';
569
- $actions['store'] = '<a href="http://mycred.me/store/" target="_blank">' . __( 'Store', 'mycred' ) . '</a>';
570
 
571
- return $actions;
572
  }
573
  ?>
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
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
17
  * SSL Compatible: yes
18
+ * bbPress Compatible: yes
19
+ * WordPress Compatible: yes
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
 
179
 
180
  // Adjust the plugin links
181
  add_filter( 'plugin_action_links_mycred/mycred.php', 'mycred_plugin_links', 10, 4 );
182
+ add_filter( 'plugin_row_meta', 'mycred_plugin_description_links', 10, 2 );
183
 
184
  // Lets start with Multisite
185
  if ( is_multisite() ) {
554
  /**
555
  * myCRED Plugin Links
556
  * @since 1.3
557
+ * @version 1.1
558
  */
559
  function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
560
  {
561
  // Link to Setup
562
+ if ( ! is_mycred_ready() )
563
+ $actions['_setup'] = '<a href="' . admin_url( 'plugins.php?page=myCRED-setup' ) . '">' . __( 'Setup', 'mycred' ) . '</a>';
564
+ else
565
+ $actions['_settings'] = '<a href="' . admin_url( 'admin.php?page=myCRED' ) . '" >' . __( 'Settings', 'mycred' ) . '</a>';
566
+
567
+ ksort( $actions );
568
+ return $actions;
569
+ }
570
+
571
+ /**
572
+ * myCRED Plugin Description Links
573
+ * @since 1.3.3.1
574
+ * @version 1.0
575
+ */
576
+ function mycred_plugin_description_links( $links, $file )
577
+ {
578
+ $plugin = plugin_basename( myCRED_THIS );
579
+ if ( $file != $plugin ) return $links;
580
+
581
+ // Link to Setup
582
+ if ( ! is_mycred_ready() ) {
583
+ $links[] = '<a href="' . admin_url( 'plugins.php?page=myCRED-setup' ) . '">' . __( 'Setup', 'mycred' ) . '</a>';
584
+ return $links;
585
  }
586
 
587
+ $links[] = '<a href="' . admin_url( 'index.php?page=mycred' ) . '">' . __( 'About', 'mycred' ) . '</a>';
588
+ $links[] = '<a href="http://mycred.me/support/tutorials/" target="_blank">' . __( 'Tutorials', 'mycred' ) . '</a>';
589
+ $links[] = '<a href="http://codex.mycred.me/" target="_blank">' . __( 'Codex', 'mycred' ) . '</a>';
590
+ $links[] = '<a href="http://mycred.me/store/" target="_blank">' . __( 'Store', 'mycred' ) . '</a>';
591
 
592
+ return $links;
593
  }
594
  ?>
plugins/mycred-hook-bbPress.php CHANGED
@@ -354,7 +354,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
354
  $reply_author = bbp_get_reply_author_id( $reply_id );
355
 
356
  // Check for exclusions and guests
357
- if ( $this->core->exclude( $reply_author ) || $reply_id == 0 ) return;
358
 
359
  // Get balance
360
  $balance = $this->core->get_users_cred( $reply_author );
@@ -369,13 +369,13 @@ if ( defined( 'myCRED_VERSION' ) ) {
369
  * Reched Daily Limit
370
  * Checks if a user has reached their daily limit.
371
  * @since 1.2
372
- * @version 1.1
373
  */
374
  public function reached_daily_limit( $user_id, $limit ) {
375
  // No limit used
376
  if ( $this->prefs[ $limit ]['limit'] == 0 ) return false;
377
 
378
- $today = date( 'Y-m-d' );
379
  $current = (array) get_user_meta( $user_id, 'mycred_bbp_limits_' . $limit, true );
380
  if ( empty( $current ) || ! array_key_exists( $today, $current ) )
381
  $current[ $today ] = 0;
@@ -388,13 +388,13 @@ if ( defined( 'myCRED_VERSION' ) ) {
388
  * Update Daily Limit
389
  * Updates a given users daily limit.
390
  * @since 1.2
391
- * @version 1.1
392
  */
393
  public function update_daily_limit( $user_id, $limit, $remove = false ) {
394
  // No limit used
395
  if ( $this->prefs[ $limit ]['limit'] == 0 ) return;
396
 
397
- $today = date( 'Y-m-d' );
398
  $current = (array) get_user_meta( $user_id, 'mycred_bbp_limits_' . $limit, true );
399
  if ( empty( $current ) || ! array_key_exists( $today, $current ) )
400
  $current[ $today ] = 0;
354
  $reply_author = bbp_get_reply_author_id( $reply_id );
355
 
356
  // Check for exclusions and guests
357
+ if ( $this->core->exclude_user( $reply_author ) || $reply_id == 0 ) return;
358
 
359
  // Get balance
360
  $balance = $this->core->get_users_cred( $reply_author );
369
  * Reched Daily Limit
370
  * Checks if a user has reached their daily limit.
371
  * @since 1.2
372
+ * @version 1.1.1
373
  */
374
  public function reached_daily_limit( $user_id, $limit ) {
375
  // No limit used
376
  if ( $this->prefs[ $limit ]['limit'] == 0 ) return false;
377
 
378
+ $today = date_i18n( 'Y-m-d' );
379
  $current = (array) get_user_meta( $user_id, 'mycred_bbp_limits_' . $limit, true );
380
  if ( empty( $current ) || ! array_key_exists( $today, $current ) )
381
  $current[ $today ] = 0;
388
  * Update Daily Limit
389
  * Updates a given users daily limit.
390
  * @since 1.2
391
+ * @version 1.1.1
392
  */
393
  public function update_daily_limit( $user_id, $limit, $remove = false ) {
394
  // No limit used
395
  if ( $this->prefs[ $limit ]['limit'] == 0 ) return;
396
 
397
+ $today = date_i18n( 'Y-m-d' );
398
  $current = (array) get_user_meta( $user_id, 'mycred_bbp_limits_' . $limit, true );
399
  if ( empty( $current ) || ! array_key_exists( $today, $current ) )
400
  $current[ $today ] = 0;
plugins/mycred-hook-simplepress.php CHANGED
@@ -247,12 +247,12 @@ WHERE user_id = %d
247
  * Reched Daily Limit
248
  * Checks if a user has reached their daily limit.
249
  * @since 1.3.3
250
- * @version 1.0
251
  */
252
  public function reached_daily_limit( $user_id, $id ) {
253
  // No limit used
254
  if ( $this->prefs[ $id ]['limit'] == 0 ) return false;
255
- $today = date( 'Y-m-d' );
256
  $current = get_user_meta( $user_id, 'mycred_simplepress_limits_' . $id, true );
257
  if ( empty( $current ) || ! array_key_exists( $today, (array) $current ) ) $current[$today] = 0;
258
  if ( $current[ $today ] < $this->prefs[ $id ]['limit'] ) return false;
@@ -263,13 +263,13 @@ WHERE user_id = %d
263
  * Update Daily Limit
264
  * Updates a given users daily limit.
265
  * @since 1.3.3
266
- * @version 1.0
267
  */
268
  public function update_daily_limit( $user_id, $id ) {
269
  // No limit used
270
  if ( $this->prefs[ $id ]['limit'] == 0 ) return;
271
 
272
- $today = date( 'Y-m-d' );
273
  $current = get_user_meta( $user_id, 'mycred_simplepress_limits_' . $id, true );
274
  if ( empty( $current ) || ! array_key_exists( $today, (array) $current ) )
275
  $current[ $today ] = 0;
247
  * Reched Daily Limit
248
  * Checks if a user has reached their daily limit.
249
  * @since 1.3.3
250
+ * @version 1.0.1
251
  */
252
  public function reached_daily_limit( $user_id, $id ) {
253
  // No limit used
254
  if ( $this->prefs[ $id ]['limit'] == 0 ) return false;
255
+ $today = date_i18n( 'Y-m-d' );
256
  $current = get_user_meta( $user_id, 'mycred_simplepress_limits_' . $id, true );
257
  if ( empty( $current ) || ! array_key_exists( $today, (array) $current ) ) $current[$today] = 0;
258
  if ( $current[ $today ] < $this->prefs[ $id ]['limit'] ) return false;
263
  * Update Daily Limit
264
  * Updates a given users daily limit.
265
  * @since 1.3.3
266
+ * @version 1.0.1
267
  */
268
  public function update_daily_limit( $user_id, $id ) {
269
  // No limit used
270
  if ( $this->prefs[ $id ]['limit'] == 0 ) return;
271
 
272
+ $today = date_i18n( 'Y-m-d' );
273
  $current = get_user_meta( $user_id, 'mycred_simplepress_limits_' . $id, true );
274
  if ( empty( $current ) || ! array_key_exists( $today, (array) $current ) )
275
  $current[ $today ] = 0;
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === myCRED ===
2
  Contributors: designbymerovingi
3
- Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress
4
  Requires at least: 3.1
5
- Tested up to: 3.7.1
6
- Stable tag: 1.3.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -15,7 +15,7 @@ I felt that todays WordPress community lacks a flexible points management system
15
 
16
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
17
 
18
- **my**CRED comes packed with features along with built-in support for some of the most popular [WordPress plugins](http://mycred.me/about/supported-plugins/) out there. But of course **my**CRED does not support everything out of the box so I have documented as much as possible in the **my**CRED [codex](http://codex.mycred.me) and you can find several tutorials that can help you better acquaint yourself with **my**CRED.
19
 
20
  I am here to help where ever I can but please remember that right now this is a one man show and I do need an occasional coffee break.
21
 
@@ -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 =
122
- Simple:Press, myCRED Right Now, YouTube + Mobiles and bug fixes.
123
 
124
  == Other Notes ==
125
 
@@ -134,6 +134,16 @@ Simple:Press, myCRED Right Now, YouTube + Mobiles and bug fixes.
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
 
 
 
137
  = 1.3.3 =
138
  * Improved Transfer Add-on allowing for more customizations and better logic.
139
  * Added new functions: mycred_get_users_transfer_history and mycred_update_users_transfer_history.
1
  === myCRED ===
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
 
15
 
16
  So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
17
 
18
+ **my**CRED comes packed with features along with built-in support for some of the most popular [WordPress plugins](http://mycred.me/about/supported-plugins/) out there. But of course **my**CRED does not support everything out of the box so I have documented as much as possible in the **my**CRED [codex](http://codex.mycred.me) and you can find several [tutorials](http://mycred.me/support/tutorials/) that can help you better acquaint yourself with **my**CRED.
19
 
20
  I am here to help where ever I can but please remember that right now this is a one man show and I do need an occasional coffee break.
21
 
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
 
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.
140
+ * FIX - Missing mycred label in general module.
141
+ * FIX - bbPress daily limit is not enforced for replies only "fav"ed topics.
142
+ * FIX - Events Manager (free) payment box.
143
+ * Improved how screen ids are checked when loading scripts to better work with third-party plugins and themes that adjust the screen ids.
144
+ * Replaced date() with date_i18n() in bbPress and SimplePress hooks.
145
+ * Updated admin styling for WordPress 3.8
146
+
147
  = 1.3.3 =
148
  * Improved Transfer Add-on allowing for more customizations and better logic.
149
  * Added new functions: mycred_get_users_transfer_history and mycred_update_users_transfer_history.