myCRED - Version 1.3.1

Version Description

Important bug fixes for 1.3 users

=

Download this release

Release Info

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

Code changes from version 1.3 to 1.3.1

addons/buddypress/myCRED-addon-buddypress.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: BuddyPress
4
  * Addon URI: http://mycred.me/add-ons/buddypress/
5
- * Version: 1.0
6
  * Description: The BuddyPress add-on extends <strong>my</strong>CRED to work with BuddyPress allowing you to hook into most BuddyPress related actions.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -73,8 +73,9 @@ if ( !class_exists( 'myCRED_BuddyPress' ) ) {
73
  * @version 1.1
74
  */
75
  public function module_init() {
76
- add_filter( 'mycred_setup_hooks', array( $this, 'register_hooks' ) );
77
- add_action( 'admin_bar_menu', array( $this, 'adjust_admin_bar' ), 110 );
 
78
 
79
  if ( $this->buddypress['balance_location'] == 'top' || $this->buddypress['balance_location'] == 'both' )
80
  add_action( 'bp_before_member_header_meta', array( $this, 'show_balance' ) );
@@ -86,7 +87,7 @@ if ( !class_exists( 'myCRED_BuddyPress' ) ) {
86
  /**
87
  * Adjust Admin Bar
88
  * @since 0.1
89
- * @version 1.1
90
  */
91
  public function adjust_admin_bar() {
92
  // Bail if this is an ajax request
@@ -94,7 +95,7 @@ if ( !class_exists( 'myCRED_BuddyPress' ) ) {
94
  return;
95
 
96
  // Only add menu for logged in user
97
- if ( is_user_logged_in() ) {
98
  global $bp, $wp_admin_bar;
99
 
100
  // Add secondary parent item for all BuddyPress components
@@ -106,7 +107,25 @@ if ( !class_exists( 'myCRED_BuddyPress' ) ) {
106
  ) );
107
  }
108
  }
109
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  /**
111
  * Show Balance in Profile
112
  * @since 0.1
2
  /**
3
  * Addon: BuddyPress
4
  * Addon URI: http://mycred.me/add-ons/buddypress/
5
+ * Version: 1.1
6
  * Description: The BuddyPress add-on extends <strong>my</strong>CRED to work with BuddyPress allowing you to hook into most BuddyPress related actions.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
73
  * @version 1.1
74
  */
75
  public function module_init() {
76
+ add_filter( 'mycred_setup_hooks', array( $this, 'register_hooks' ) );
77
+ add_action( 'admin_bar_menu', array( $this, 'adjust_admin_bar' ), 110 );
78
+ add_filter( 'logout_url', array( $this, 'adjust_logout' ), 99, 2 );
79
 
80
  if ( $this->buddypress['balance_location'] == 'top' || $this->buddypress['balance_location'] == 'both' )
81
  add_action( 'bp_before_member_header_meta', array( $this, 'show_balance' ) );
87
  /**
88
  * Adjust Admin Bar
89
  * @since 0.1
90
+ * @version 1.1.1
91
  */
92
  public function adjust_admin_bar() {
93
  // Bail if this is an ajax request
95
  return;
96
 
97
  // Only add menu for logged in user
98
+ if ( is_user_logged_in() && $this->buddypress['visibility']['history'] ) {
99
  global $bp, $wp_admin_bar;
100
 
101
  // Add secondary parent item for all BuddyPress components
107
  ) );
108
  }
109
  }
110
+
111
+ /**
112
+ * Adjust Logout Link
113
+ * If we are logging out from the points history page, we want to make
114
+ * sure we are redirected away from this page when we log out. All else
115
+ * the default logout link is used.
116
+ * @since 1.3.1
117
+ * @version 1.0
118
+ */
119
+ public function adjust_logout( $logouturl, $redirect ) {
120
+ if ( preg_match( '/(' . $this->buddypress['history_url'] . ')/', $redirect, $match ) ) {
121
+ global $bp;
122
+
123
+ $url = remove_query_arg( 'redirect_to', $logouturl );
124
+ return add_query_arg( array( 'redirect_to' => urlencode( $bp->displayed_user->domain ) ), $url );
125
+ }
126
+ return $logouturl;
127
+ }
128
+
129
  /**
130
  * Show Balance in Profile
131
  * @since 0.1
addons/gateway/carts/mycred-marketpress.php CHANGED
@@ -195,7 +195,7 @@ if ( !function_exists( 'mycred_init_marketpress_gateway' ) ) {
195
  * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
196
  * @param array $shipping_info. Contains shipping info and email in case you need it
197
  * @since 1.1
198
- * @version 1.2
199
  */
200
  function process_payment( $cart, $shipping_info ) {
201
  global $mp;
@@ -222,7 +222,7 @@ if ( !function_exists( 'mycred_init_marketpress_gateway' ) ) {
222
  $total = $this->get_cart_total( $cart );
223
 
224
  // Low balance or Insolvent
225
- if ( $balance <= 0 || $balance-$total < 0 ) {
226
  $mp->cart_checkout_error(
227
  $insolvent . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
228
  );
195
  * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
196
  * @param array $shipping_info. Contains shipping info and email in case you need it
197
  * @since 1.1
198
+ * @version 1.2.1
199
  */
200
  function process_payment( $cart, $shipping_info ) {
201
  global $mp;
222
  $total = $this->get_cart_total( $cart );
223
 
224
  // Low balance or Insolvent
225
+ if ( $balance <= $this->mycred->zero() || $balance-$total < $this->mycred->zero() ) {
226
  $mp->cart_checkout_error(
227
  $insolvent . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
228
  );
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -174,7 +174,7 @@ if ( !function_exists( 'mycred_init_woo_gateway' ) ) {
174
  /**
175
  * Process Payment
176
  * @since 0.1
177
- * @version 1.1
178
  */
179
  function process_payment( $order_id ) {
180
  global $woocommerce;
@@ -240,7 +240,7 @@ if ( !function_exists( 'mycred_init_woo_gateway' ) ) {
240
  $this->mycred->add_creds(
241
  'store_sale',
242
  $product->post_author,
243
- $this->mycred->format_number( $share ),
244
  $this->profit_sharing_log,
245
  $product->ID,
246
  array( 'ref_type' => 'post' )
174
  /**
175
  * Process Payment
176
  * @since 0.1
177
+ * @version 1.1.1
178
  */
179
  function process_payment( $order_id ) {
180
  global $woocommerce;
240
  $this->mycred->add_creds(
241
  'store_sale',
242
  $product->post_author,
243
+ $this->mycred->number( $share ),
244
  $this->profit_sharing_log,
245
  $product->ID,
246
  array( 'ref_type' => 'post' )
addons/gateway/carts/mycred-wpecommerce.php CHANGED
@@ -217,7 +217,7 @@ if ( !function_exists( 'mycred_init_wpecom_construct_gateway' ) ) {
217
  * Charges the user for the purchase and if profit sharing is enabled
218
  * each product owner.
219
  * @since 1.3
220
- * @version 1.0
221
  */
222
  function submit() {
223
  // Since the wpsc_pre_submit_gateway action could change these values, we need to check
@@ -261,7 +261,7 @@ if ( !function_exists( 'mycred_init_wpecom_construct_gateway' ) ) {
261
  $this->core->add_creds(
262
  'store_sale',
263
  $product->post_author,
264
- $this->core->format_number( $share ),
265
  $this->prefs['share_log'],
266
  $product->ID,
267
  array( 'ref_type' => 'post' )
217
  * Charges the user for the purchase and if profit sharing is enabled
218
  * each product owner.
219
  * @since 1.3
220
+ * @version 1.0.1
221
  */
222
  function submit() {
223
  // Since the wpsc_pre_submit_gateway action could change these values, we need to check
261
  $this->core->add_creds(
262
  'store_sale',
263
  $product->post_author,
264
+ $this->core->number( $share ),
265
  $this->prefs['share_log'],
266
  $product->ID,
267
  array( 'ref_type' => 'post' )
addons/gateway/event-booking/mycred-eventsmanager-pro.php CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
3
  /**
4
  * Events Manager Pro Gateway
5
  * @since 1.3
6
- * @version 1.0.1
7
  */
8
  if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
9
  class EM_Gateway_myCRED extends EM_Gateway {
@@ -241,7 +241,7 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
241
  0-$price,
242
  $this->prefs['log']['purchase'],
243
  $EM_Booking->event->post_id,
244
- array( 'ref_type' => 'post', 'bid' => $EM_Booking->booking_id )
245
  );
246
 
247
  // Log transaction with EM
@@ -260,7 +260,7 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
260
  $share,
261
  $this->prefs['log']['purchase'],
262
  $event_post->ID,
263
- array( 'ref_type' => 'post', 'bid' => $EM_Booking->booking_id )
264
  );
265
  }
266
  }
@@ -310,13 +310,15 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
310
  /**
311
  * Refunds
312
  * @since 1.3
313
- * @version 1.0
314
  */
315
  public function refunds( $result, $EM_Booking ) {
316
  // Cancellation = refund
317
  if ( $EM_Booking->booking_status == 3 && $EM_Booking->previous_status == 1 && $this->prefs['refund'] > 0 ) {
 
318
  // Make sure user has paid for this to refund
319
  if ( $this->has_paid( $EM_Booking ) ) {
 
320
  // Price
321
  if ( $this->single_currency() )
322
  $price = $this->core->number( $EM_Booking->booking_price );
@@ -325,7 +327,7 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
325
 
326
  // Refund
327
  if ( $this->prefs['refund'] != 100 )
328
- $refund = $price * ( $this->prefs['refund'] / 100 );
329
  else
330
  $refund = $price;
331
 
@@ -336,7 +338,7 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
336
  $refund,
337
  $this->prefs['log']['refund'],
338
  $EM_Booking->event->post_id,
339
- array( 'ref_type' => 'post', 'bid' => $booking_id )
340
  );
341
  }
342
  }
@@ -352,8 +354,8 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
352
  if ( $EM_Booking->booking_status == 1 && $this->uses_gateway( $EM_Booking ) ) {
353
  return array(
354
  'reject' => '<a class="em-bookings-reject" href="' . em_add_get_params( $url, array(
355
- 'action' => 'bookings_reject',
356
- 'booking_id' => $EM_Booking->booking_id
357
  ) ) . '">' . __( 'Reject', 'mycred' ) . '</a>',
358
  'delete' => '<span class="trash"><a class="em-bookings-delete" href="' . em_add_get_params( $url, array(
359
  'action' => 'bookings_delete',
@@ -374,7 +376,7 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
374
  * Can Pay Check
375
  * Checks if the user can pay for their booking.
376
  * @since 1.2
377
- * @version 1.0
378
  */
379
  public function can_pay( $EM_Booking ) {
380
  $EM_Event = $EM_Booking->get_event();
@@ -382,16 +384,16 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
382
  if ( $EM_Event->is_free() ) return false;
383
 
384
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
385
- if ( $balance <= 0 ) return false;
386
 
387
  $price = $this->core->number( $EM_Booking->booking_price );
388
- if ( $price == 0 ) return true;
389
  if ( !$this->single_currency() ) {
390
  $exchange_rate = $this->prefs['rate'];
391
  $price = $this->core->number( $exchange_rate*$price );
392
  }
393
 
394
- if ( $balance-$price < 0 ) return false;
395
 
396
  return true;
397
  }
@@ -400,10 +402,20 @@ if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
400
  * Has Paid
401
  * Checks if the user has paid for booking
402
  * @since 1.3
403
- * @version 1.0
404
  */
405
  public function has_paid( $EM_Booking ) {
406
- if ( $this->core->has_entry( 'ticket_purchase', $EM_Booking->event->post_id, $EM_Booking->person->ID, 's:3:"bid";i:' . $EM_Booking->booking_id . ';' ) ) return true;
 
 
 
 
 
 
 
 
 
 
407
  return false;
408
  }
409
 
3
  /**
4
  * Events Manager Pro Gateway
5
  * @since 1.3
6
+ * @version 1.0.2
7
  */
8
  if ( !class_exists( 'EM_Gateway_myCRED' ) ) {
9
  class EM_Gateway_myCRED extends EM_Gateway {
241
  0-$price,
242
  $this->prefs['log']['purchase'],
243
  $EM_Booking->event->post_id,
244
+ array( 'ref_type' => 'post', 'bid' => (int) $EM_Booking->booking_id )
245
  );
246
 
247
  // Log transaction with EM
260
  $share,
261
  $this->prefs['log']['purchase'],
262
  $event_post->ID,
263
+ array( 'ref_type' => 'post', 'bid' => (int) $EM_Booking->booking_id )
264
  );
265
  }
266
  }
310
  /**
311
  * Refunds
312
  * @since 1.3
313
+ * @version 1.1
314
  */
315
  public function refunds( $result, $EM_Booking ) {
316
  // Cancellation = refund
317
  if ( $EM_Booking->booking_status == 3 && $EM_Booking->previous_status == 1 && $this->prefs['refund'] > 0 ) {
318
+
319
  // Make sure user has paid for this to refund
320
  if ( $this->has_paid( $EM_Booking ) ) {
321
+
322
  // Price
323
  if ( $this->single_currency() )
324
  $price = $this->core->number( $EM_Booking->booking_price );
327
 
328
  // Refund
329
  if ( $this->prefs['refund'] != 100 )
330
+ $refund = ( $this->prefs['refund'] / 100 ) * $price;
331
  else
332
  $refund = $price;
333
 
338
  $refund,
339
  $this->prefs['log']['refund'],
340
  $EM_Booking->event->post_id,
341
+ array( 'ref_type' => 'post', 'bid' => (int) $booking_id )
342
  );
343
  }
344
  }
354
  if ( $EM_Booking->booking_status == 1 && $this->uses_gateway( $EM_Booking ) ) {
355
  return array(
356
  'reject' => '<a class="em-bookings-reject" href="' . em_add_get_params( $url, array(
357
+ 'action' => 'bookings_reject',
358
+ 'booking_id' => $EM_Booking->booking_id
359
  ) ) . '">' . __( 'Reject', 'mycred' ) . '</a>',
360
  'delete' => '<span class="trash"><a class="em-bookings-delete" href="' . em_add_get_params( $url, array(
361
  'action' => 'bookings_delete',
376
  * Can Pay Check
377
  * Checks if the user can pay for their booking.
378
  * @since 1.2
379
+ * @version 1.0.1
380
  */
381
  public function can_pay( $EM_Booking ) {
382
  $EM_Event = $EM_Booking->get_event();
384
  if ( $EM_Event->is_free() ) return false;
385
 
386
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
387
+ if ( $balance <= $this->core->zero() ) return false;
388
 
389
  $price = $this->core->number( $EM_Booking->booking_price );
390
+ if ( $price == $this->core->zero() ) return true;
391
  if ( !$this->single_currency() ) {
392
  $exchange_rate = $this->prefs['rate'];
393
  $price = $this->core->number( $exchange_rate*$price );
394
  }
395
 
396
+ if ( $balance-$price < $this->core->zero() ) return false;
397
 
398
  return true;
399
  }
402
  * Has Paid
403
  * Checks if the user has paid for booking
404
  * @since 1.3
405
+ * @version 1.1
406
  */
407
  public function has_paid( $EM_Booking ) {
408
+ if ( $this->core->has_entry(
409
+ 'ticket_purchase',
410
+ $EM_Booking->event->post_id,
411
+ $EM_Booking->person->ID,
412
+ array(
413
+ 'ref_type' => 'post',
414
+ 'bid' => (int) $EM_Booking->booking_id
415
+ )
416
+ ) )
417
+ return true;
418
+
419
  return false;
420
  }
421
 
addons/gateway/event-booking/mycred-eventsmanager.php CHANGED
@@ -72,7 +72,7 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
72
  add_action( 'em_booking_form_tickets_col_mycred', array( $this, 'ticket_col' ), 10, 2 );
73
 
74
  // Add Pay Button
75
- add_filter( 'em_my_bookings_booking_actions', array( $this, 'add_pay_button' ), 10, 2 );
76
  add_action( 'em_my_bookings_booking_loop', array( $this, 'payment_box' ) );
77
  add_action( 'em_template_my_bookings_footer', array( $this, 'insert_scripting' ) );
78
 
@@ -144,7 +144,7 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
144
  if ( $EM_Event->is_free() ) return false;
145
 
146
  // Only pending events can be paid for
147
- if ( $EM_Booking->booking_status == 0 && get_option( 'dbem_bookings_user_cancellation' ) && $EM_Event->get_bookings()->has_open_time() ) {
148
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
149
  if ( $balance <= 0 ) return false;
150
 
@@ -166,21 +166,31 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
166
  * Has Paid
167
  * Checks if the user has paid for booking
168
  * @since 1.2
169
- * @version 1.0
170
  */
171
  public function has_paid( $EM_Booking ) {
172
- if ( $this->core->has_entry( 'ticket_purchase', $EM_Booking->event->post_id, $EM_Booking->person->ID, 's:3:"bid";i:' . $EM_Booking->booking_id . ';' ) ) return true;
 
 
 
 
 
 
 
 
 
 
173
  return false;
174
  }
175
 
176
  /**
177
  * AJAX: Process Payment
178
  * @since 1.2
179
- * @version 1.0
180
  */
181
  public function process_payment() {
182
  // Security
183
- check_ajax_referer( 'mycred-pay-em-booking', 'token' );
184
 
185
  // Requirements
186
  if ( !isset( $_POST['booking_id'] ) || !is_user_logged_in() ) die( 'ERROR_1' );
@@ -216,7 +226,7 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
216
  0-$price,
217
  $this->prefs['log']['purchase'],
218
  $booking->event->post_id,
219
- array( 'ref_type' => 'post', 'bid' => $booking_id )
220
  );
221
 
222
  // Update Booking if approval is required (with option to disable this feature)
@@ -240,7 +250,7 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
240
  $share,
241
  $this->prefs['log']['purchase'],
242
  $event_post->ID,
243
- array( 'ref_type' => 'post', 'bid' => $booking_id )
244
  );
245
  }
246
  }
@@ -256,34 +266,39 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
256
  /**
257
  * Refunds
258
  * @since 1.2
259
- * @version 1.0
260
  */
261
  public function refunds( $result, $EM_Booking ) {
 
 
 
 
262
  // Cancellation
263
  if ( $EM_Booking->booking_status == 3 && $EM_Booking->previous_status != 3 ) {
264
- $refund = $this->prefs['refund'];
265
-
266
  // Make sure user has paid for this to refund
267
  if ( $this->has_paid( $EM_Booking ) ) {
 
268
  // Price
269
- $price = $EM_Booking->booking_price;
270
  if ( $this->single_currency() )
271
- $price = $this->core->number( $price );
272
- else {
273
- $exchange_rate = $this->prefs['rate'];
274
- $price = $this->core->number( $exchange_rate*$price );
275
- }
276
 
277
- $event_id = $EM_Booking->get_event();
 
 
 
 
278
 
279
  // Charge
280
  $this->core->add_creds(
281
  'ticket_purchase_refund',
282
  $EM_Booking->person->ID,
283
- $price,
284
  $this->prefs['log']['refund'],
285
  $EM_Booking->event->post_id,
286
- array( 'ref_type' => 'post', 'bid' => $booking_id )
287
  );
288
  }
289
  }
@@ -334,12 +349,13 @@ if ( !class_exists( 'myCRED_Events_Manager_Gateway' ) && defined( 'EM_VERSION' )
334
 
335
  /**
336
  * Add Pay Action
 
337
  * @since 1.2
338
  * @version 1.0
339
  */
340
- public function add_pay_button( $cancel_link, $EM_Booking ) {
341
- if ( $this->can_pay( $EM_Booking ) && !$this->has_paid( $EM_Booking ) ) {
342
- if ( !empty( $cancel_link ) )
343
  $cancel_link .= ' &bull; ';
344
 
345
  $cancel_link .= '<a href="javascript:void(0)" class="mycred-show-pay" data-booking="' . $EM_Booking->booking_id . '">' . $this->prefs['labels']['link'] . '</a>';
@@ -657,8 +673,5 @@ jQuery(function($){
657
  do_action( 'mycred_em_save_settings', $this );
658
  }
659
  }
660
-
661
- $events = new myCRED_Events_Manager_Gateway();
662
- $events->load();
663
  }
664
  ?>
72
  add_action( 'em_booking_form_tickets_col_mycred', array( $this, 'ticket_col' ), 10, 2 );
73
 
74
  // Add Pay Button
75
+ add_filter( 'em_my_bookings_booking_actions', array( $this, 'add_pay_button' ), 1, 2 );
76
  add_action( 'em_my_bookings_booking_loop', array( $this, 'payment_box' ) );
77
  add_action( 'em_template_my_bookings_footer', array( $this, 'insert_scripting' ) );
78
 
144
  if ( $EM_Event->is_free() ) return false;
145
 
146
  // Only pending events can be paid for
147
+ if ( $EM_Booking->booking_status == 0 && $EM_Event->get_bookings()->has_open_time() ) {
148
  $balance = $this->core->get_users_cred( $EM_Booking->person->ID );
149
  if ( $balance <= 0 ) return false;
150
 
166
  * Has Paid
167
  * Checks if the user has paid for booking
168
  * @since 1.2
169
+ * @version 1.1
170
  */
171
  public function has_paid( $EM_Booking ) {
172
+ if ( $this->core->has_entry(
173
+ 'ticket_purchase',
174
+ $EM_Booking->event->post_id,
175
+ $EM_Booking->person->ID,
176
+ array(
177
+ 'ref_type' => 'post',
178
+ 'bid' => (int) $EM_Booking->booking_id
179
+ )
180
+ ) )
181
+ return true;
182
+
183
  return false;
184
  }
185
 
186
  /**
187
  * AJAX: Process Payment
188
  * @since 1.2
189
+ * @version 1.0.1
190
  */
191
  public function process_payment() {
192
  // Security
193
+ check_ajax_referer( 'mycred-pay-booking', 'token' );
194
 
195
  // Requirements
196
  if ( !isset( $_POST['booking_id'] ) || !is_user_logged_in() ) die( 'ERROR_1' );
226
  0-$price,
227
  $this->prefs['log']['purchase'],
228
  $booking->event->post_id,
229
+ array( 'ref_type' => 'post', 'bid' => (int) $booking_id )
230
  );
231
 
232
  // Update Booking if approval is required (with option to disable this feature)
250
  $share,
251
  $this->prefs['log']['purchase'],
252
  $event_post->ID,
253
+ array( 'ref_type' => 'post', 'bid' => (int) $booking_id )
254
  );
255
  }
256
  }
266
  /**
267
  * Refunds
268
  * @since 1.2
269
+ * @version 1.1
270
  */
271
  public function refunds( $result, $EM_Booking ) {
272
+ update_option( 'catch_refunds', array(
273
+ 'new_status' => $EM_Booking->booking_status,
274
+ 'prev_status' => $EM_Booking->previous_status
275
+ ) );
276
  // Cancellation
277
  if ( $EM_Booking->booking_status == 3 && $EM_Booking->previous_status != 3 ) {
278
+
 
279
  // Make sure user has paid for this to refund
280
  if ( $this->has_paid( $EM_Booking ) ) {
281
+
282
  // Price
 
283
  if ( $this->single_currency() )
284
+ $price = $this->core->number( $EM_Booking->booking_price );
285
+ else
286
+ $price = $this->core->number( $this->prefs['rate']*$EM_Booking->booking_price );
 
 
287
 
288
+ // Refund
289
+ if ( $this->prefs['refund'] != 100 )
290
+ $refund = ( $this->prefs['refund'] / 100 ) * $price;
291
+ else
292
+ $refund = $price;
293
 
294
  // Charge
295
  $this->core->add_creds(
296
  'ticket_purchase_refund',
297
  $EM_Booking->person->ID,
298
+ $refund,
299
  $this->prefs['log']['refund'],
300
  $EM_Booking->event->post_id,
301
+ array( 'ref_type' => 'post', 'bid' => (int) $booking_id )
302
  );
303
  }
304
  }
349
 
350
  /**
351
  * Add Pay Action
352
+ * @used by em_my_bookings_booking_actions
353
  * @since 1.2
354
  * @version 1.0
355
  */
356
+ public function add_pay_button( $cancel_link = '', $EM_Booking ) {
357
+ if ( $this->can_pay( $EM_Booking ) && ! $this->has_paid( $EM_Booking ) ) {
358
+ if ( ! empty( $cancel_link ) )
359
  $cancel_link .= ' &bull; ';
360
 
361
  $cancel_link .= '<a href="javascript:void(0)" class="mycred-show-pay" data-booking="' . $EM_Booking->booking_id . '">' . $this->prefs['labels']['link'] . '</a>';
673
  do_action( 'mycred_em_save_settings', $this );
674
  }
675
  }
 
 
 
676
  }
677
  ?>
addons/gateway/myCRED-addon-gateway.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Gateway
4
  * Addon URI: http://mycred.me/add-ons/gateway/
5
- * Version: 1.3
6
  * Description: Let your users pay using their <strong>my</strong>CRED points balance. Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event Espresso, Events Manager. Supported Membership Plugins: WPMU DEV Membership
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -49,7 +49,7 @@ function mycred_load_events_manager() {
49
  if ( !defined( 'EM_VERSION' ) ) return;
50
 
51
  // Pro
52
- if ( defined( 'EMP_VERSION' ) ) {
53
  require_once( myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php' );
54
  EM_Gateways::register_gateway( 'mycred', 'EM_Gateway_myCRED' );
55
  }
2
  /**
3
  * Addon: Gateway
4
  * Addon URI: http://mycred.me/add-ons/gateway/
5
+ * Version: 1.3.1
6
  * Description: Let your users pay using their <strong>my</strong>CRED points balance. Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event Espresso, Events Manager. Supported Membership Plugins: WPMU DEV Membership
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
49
  if ( !defined( 'EM_VERSION' ) ) return;
50
 
51
  // Pro
52
+ if ( class_exists( 'EM_Pro' ) ) {
53
  require_once( myCRED_GATE_EVENT_DIR . 'mycred-eventsmanager-pro.php' );
54
  EM_Gateways::register_gateway( 'mycred', 'EM_Gateway_myCRED' );
55
  }
addons/notifications/myCRED-addon-notifications.php CHANGED
@@ -107,10 +107,10 @@ if ( !class_exists( 'myCRED_Notifications' ) ) {
107
  /**
108
  * myCRED Add
109
  * @since 1.2.3
110
- * @version 1.1
111
  */
112
  public function mycred_add( $reply, $request, $mycred ) {
113
- if ( $reply !== true ) return $reply;
114
 
115
  $template = $this->notifications['template'];
116
  $template = str_replace( '%entry%', $request['entry'], $template );
107
  /**
108
  * myCRED Add
109
  * @since 1.2.3
110
+ * @version 1.1.1
111
  */
112
  public function mycred_add( $reply, $request, $mycred ) {
113
+ if ( $reply === false ) return $reply;
114
 
115
  $template = $this->notifications['template'];
116
  $template = str_replace( '%entry%', $request['entry'], $template );
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Addon: Ranks
4
- * Addon URI: http://mycred.me/add-ons/email-notices/
5
  * Version: 1.1
6
  * Description: Create ranks for users reaching a certain number of %_plural% with the option to add logos for each rank.
7
  * Author: Gabriel S Merovingi
1
  <?php
2
  /**
3
  * Addon: Ranks
4
+ * Addon URI: http://mycred.me/add-ons/ranks/
5
  * Version: 1.1
6
  * Description: Create ranks for users reaching a certain number of %_plural% with the option to add logos for each rank.
7
  * Author: Gabriel S Merovingi
assets/js/links.js CHANGED
@@ -1,31 +1,42 @@
1
  /**
2
  * myCRED Points for Link Clicks jQuery Scripts
3
  * @since 0.1
4
- * @version 1.2
5
  */
6
  jQuery(function($) {
7
- var mycred_click = function( points, href, id, title ) {
8
  $.ajax({
9
  type : "POST",
10
  data : {
11
- action : 'mycred-click-points',
12
- amount : points,
13
- url : href,
14
- eid : id,
15
- token : myCREDgive.token,
16
- etitle : title
17
  },
18
  dataType : "JSON",
19
- url : myCREDgive.ajaxurl
 
 
 
 
 
 
 
 
 
20
  });
21
  };
22
 
23
  $('.mycred-points-link').click(function(){
24
- var id = $(this).attr( 'id' );
25
- if ( typeof id === 'undefined' && id === false ) {
26
- id = '';
 
27
  }
28
 
29
- mycred_click( $(this).attr( 'data-amount' ), $(this).attr( 'href' ), id, $(this).text() );
 
 
30
  });
31
  });
1
  /**
2
  * myCRED Points for Link Clicks jQuery Scripts
3
  * @since 0.1
4
+ * @version 1.3.1
5
  */
6
  jQuery(function($) {
7
+ var mycred_click = function( href, title, target, skey ) {
8
  $.ajax({
9
  type : "POST",
10
  data : {
11
+ action : 'mycred-click-points',
12
+ url : href,
13
+ token : myCREDgive.token,
14
+ etitle : title,
15
+ key : skey
 
16
  },
17
  dataType : "JSON",
18
+ url : myCREDgive.ajaxurl,
19
+ success : function( data ) {
20
+ //console.log( data );
21
+ window.location.href = href;
22
+ },
23
+ error : function( jqXHR, textStatus, errorThrown ) {
24
+ // Debug
25
+ //console.log( jqXHR );
26
+ //console.log( 'textStatus: ' + textStatus + ' | errorThrown: ' + errorThrown );
27
+ }
28
  });
29
  };
30
 
31
  $('.mycred-points-link').click(function(){
32
+ var target = $(this).attr( 'target' );
33
+ //console.log( target );
34
+ if ( typeof target === 'undefined' ) {
35
+ target = 'self';
36
  }
37
 
38
+ mycred_click( $(this).attr( 'href' ), $(this).text(), target, $(this).attr( 'data-key' ) );
39
+
40
+ if ( target == 'self' ) return false;
41
  });
42
  });
includes/mycred-functions.php CHANGED
@@ -131,7 +131,7 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
131
  * @param $number (int|float) the initial number
132
  * @returns the given number formated either as an integer or float
133
  * @since 0.1
134
- * @version 1.1
135
  */
136
  public function number( $number = '' ) {
137
  if ( $number === '' ) return $number;
@@ -142,7 +142,7 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
142
  $decimals = (int) $this->format['decimals'];
143
 
144
  if ( $decimals > 0 ) {
145
- return (float) number_format( (float) $number, $decimals, '.', '' );
146
  }
147
  else {
148
  return (int) $number;
@@ -769,6 +769,9 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
769
 
770
  return $this->number( $balance );
771
  }
 
 
 
772
 
773
  /**
774
  * Update users balance
@@ -885,12 +888,13 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
885
  * @param $ref_id (array), optional array of reference IDs allowing the use of content specific keywords in the log entry
886
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
887
  * @returns boolean true on success or false on fail
888
- * @version 1.0.1
889
  */
890
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
891
  // All the reasons we would fail
892
  if ( empty( $ref ) || empty( $user_id ) || empty( $amount ) ) return false;
893
  if ( !preg_match( '/mycred_/', $type ) ) return false;
 
894
 
895
  global $wpdb;
896
 
131
  * @param $number (int|float) the initial number
132
  * @returns the given number formated either as an integer or float
133
  * @since 0.1
134
+ * @version 1.1.1
135
  */
136
  public function number( $number = '' ) {
137
  if ( $number === '' ) return $number;
142
  $decimals = (int) $this->format['decimals'];
143
 
144
  if ( $decimals > 0 ) {
145
+ return number_format( (float) $number, $decimals, '.', '' );
146
  }
147
  else {
148
  return (int) $number;
769
 
770
  return $this->number( $balance );
771
  }
772
+ public function get_users_balance( $user_id = '', $type = '' ) {
773
+ return $this->get_users_cred( $user_id, $type );
774
+ }
775
 
776
  /**
777
  * Update users balance
888
  * @param $ref_id (array), optional array of reference IDs allowing the use of content specific keywords in the log entry
889
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
890
  * @returns boolean true on success or false on fail
891
+ * @version 1.0.2
892
  */
893
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
894
  // All the reasons we would fail
895
  if ( empty( $ref ) || empty( $user_id ) || empty( $amount ) ) return false;
896
  if ( !preg_match( '/mycred_/', $type ) ) return false;
897
+ if ( $this->number( $amount ) == $this->zero() ) return false;
898
 
899
  global $wpdb;
900
 
includes/mycred-protect.php CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
3
  /**
4
  * myCRED_Protect class
5
  * @since 0.1
6
- * @version 1.0
7
  */
8
  class myCRED_Protect {
9
 
3
  /**
4
  * myCRED_Protect class
5
  * @since 0.1
6
+ * @version 1.0.1
7
  */
8
  class myCRED_Protect {
9
 
includes/mycred-shortcodes.php CHANGED
@@ -198,13 +198,13 @@ if ( !function_exists( 'mycred_render_my_ranking' ) ) {
198
 
199
  /**
200
  * myCRED Shortcode: mycred_give
201
- * This shortcode allows you to award or deduct points from the current user
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.0
208
  */
209
  if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
210
  function mycred_render_shortcode_give( $atts, $content )
@@ -212,11 +212,12 @@ if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
212
  if ( !is_user_logged_in() ) return;
213
 
214
  extract( shortcode_atts( array(
215
- 'amount' => NULL,
216
- 'log' => '',
217
- 'ref' => 'gift',
218
- 'limit' => 0,
219
- 'type' => 'mycred_default'
 
220
  ), $atts ) );
221
 
222
  if ( $amount === NULL )
@@ -226,7 +227,9 @@ if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
226
  return '<strong>' . apply_filters( 'mycred_label', myCRED_NAME ) . ' ' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Log Template Missing!', 'mycred' );
227
 
228
  $mycred = mycred_get_settings();
229
- $user_id = get_current_user_id();
 
 
230
 
231
  // Check for exclusion
232
  if ( $mycred->exclude_user( $user_id ) ) return;
@@ -259,7 +262,7 @@ if ( !function_exists( 'mycred_render_shortcode_give' ) ) {
259
  *
260
  * @see http://mycred.me/shortcodes/mycred_link/
261
  * @since 1.1
262
- * @version 1.0
263
  */
264
  if ( !function_exists( 'mycred_render_shortcode_link' ) ) {
265
  function mycred_render_shortcode_link( $atts, $content )
@@ -290,6 +293,13 @@ if ( !function_exists( 'mycred_render_shortcode_link' ) ) {
290
  else
291
  $atts['class'] = 'mycred-points-link ' . $atts['class'];
292
 
 
 
 
 
 
 
 
293
  // Construct anchor attributes
294
  $attr = array();
295
  foreach ( $atts as $attribute => $value ) {
@@ -297,8 +307,13 @@ if ( !function_exists( 'mycred_render_shortcode_link' ) ) {
297
  $attr[] = $attribute . '="' . $value . '"';
298
  }
299
  }
300
- // Add amount
301
- $attr[] = 'data-amount="' . $atts['amount'] . '"';
 
 
 
 
 
302
 
303
  // Make sure jQuery script is called
304
  $mycred_link_points = true;
198
 
199
  /**
200
  * myCRED Shortcode: mycred_give
201
+ * This shortcode allows you to award or deduct points from a given user or the current user
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 )
212
  if ( !is_user_logged_in() ) return;
213
 
214
  extract( shortcode_atts( array(
215
+ 'amount' => NULL,
216
+ 'user_id' => '',
217
+ 'log' => '',
218
+ 'ref' => 'gift',
219
+ 'limit' => 0,
220
+ 'type' => 'mycred_default'
221
  ), $atts ) );
222
 
223
  if ( $amount === NULL )
227
  return '<strong>' . apply_filters( 'mycred_label', myCRED_NAME ) . ' ' . __( 'error', 'mycred' ) . '</strong> ' . __( 'Log Template Missing!', 'mycred' );
228
 
229
  $mycred = mycred_get_settings();
230
+
231
+ if ( empty( $user_id ) )
232
+ $user_id = get_current_user_id();
233
 
234
  // Check for exclusion
235
  if ( $mycred->exclude_user( $user_id ) ) return;
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 )
293
  else
294
  $atts['class'] = 'mycred-points-link ' . $atts['class'];
295
 
296
+ // If no id exists, make one
297
+ if ( empty( $atts['id'] ) ) {
298
+ $id = str_replace( array( 'http://', 'https://', 'http%3A%2F%2F', 'https%3A%2F%2F' ), 'hs', $atts['href'] );
299
+ $id = str_replace( array( '/', '-', '_', ':', '.', '?', '=', '+', '\\', '%2F' ), '', $id );
300
+ $atts['id'] = $id;
301
+ }
302
+
303
  // Construct anchor attributes
304
  $attr = array();
305
  foreach ( $atts as $attribute => $value ) {
307
  $attr[] = $attribute . '="' . $value . '"';
308
  }
309
  }
310
+
311
+ // Add key
312
+ require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
313
+ $protect = new myCRED_Protect();
314
+ $data = $atts['amount'] . ':' . $atts['id'];
315
+ $key = $protect->do_encode( $data );
316
+ $attr[] = 'data-key="' . $key . '"';
317
 
318
  // Make sure jQuery script is called
319
  $mycred_link_points = true;
includes/mycred-widgets.php CHANGED
@@ -156,14 +156,14 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
156
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'My Balance', 'mycred' );
157
  $cred_format = isset( $instance['cred_format'] ) ? esc_attr( $instance['cred_format'] ) : '%cred_f%';
158
 
159
- $show_history = isset( $instance['show_history'] ) ? 1 : 0;
160
  $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : __( '%plural% History', 'mycred' );
161
  $history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
162
  $history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
163
 
164
- $show_rank = isset( $instance['show_rank'] ) ? 1 : 0;
165
  $rank_format = isset( $instance['rank_format'] ) ? $instance['rank_format'] : '#%ranking%';
166
- $show_visitors = isset( $instance['show_visitors'] ) ? 1 : 0;
167
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
168
 
169
  // CSS to help with show/hide
@@ -194,7 +194,7 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
194
  </p>
195
  <!-- Ranking -->
196
  <p class="myCRED-widget-field">
197
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_rank' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>" value="1"<?php checked( $show_rank, true ); ?> class="checkbox" />
198
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>"><?php _e( 'Include users ranking', 'mycred' ); ?></label><br />
199
  <span class="mycred-hidden<?php echo $rank_format_class; ?>">
200
  <label for="<?php echo esc_attr( $this->get_field_id( 'rank_format' ) ); ?>"><?php _e( 'Format', 'mycred' ); ?>:</label>
@@ -204,7 +204,7 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
204
  </p>
205
  <!-- History -->
206
  <p class="myCRED-widget-field">
207
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, true ); ?> class="checkbox" />
208
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>"><?php _e( 'Include history', 'mycred' ); ?></label><br />
209
  <span class="mycred-hidden<?php echo $history_option_class; ?>">
210
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
@@ -218,7 +218,7 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
218
  </p>
219
  <!-- Show to Visitors -->
220
  <p class="myCRED-widget-field">
221
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, true ); ?> class="checkbox" />
222
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
223
  <span class="mycred-hidden<?php echo $visitor_option_class; ?>">
224
  <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
156
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'My Balance', 'mycred' );
157
  $cred_format = isset( $instance['cred_format'] ) ? esc_attr( $instance['cred_format'] ) : '%cred_f%';
158
 
159
+ $show_history = isset( $instance['show_history'] ) ? $instance['show_history'] : 0;
160
  $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : __( '%plural% History', 'mycred' );
161
  $history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
162
  $history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
163
 
164
+ $show_rank = isset( $instance['show_rank'] ) ? $instance['show_rank'] : 0;
165
  $rank_format = isset( $instance['rank_format'] ) ? $instance['rank_format'] : '#%ranking%';
166
+ $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
167
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
168
 
169
  // CSS to help with show/hide
194
  </p>
195
  <!-- Ranking -->
196
  <p class="myCRED-widget-field">
197
+ <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_rank' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>" value="1"<?php checked( $show_rank, 1 ); ?> class="checkbox" />
198
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_rank' ) ); ?>"><?php _e( 'Include users ranking', 'mycred' ); ?></label><br />
199
  <span class="mycred-hidden<?php echo $rank_format_class; ?>">
200
  <label for="<?php echo esc_attr( $this->get_field_id( 'rank_format' ) ); ?>"><?php _e( 'Format', 'mycred' ); ?>:</label>
204
  </p>
205
  <!-- History -->
206
  <p class="myCRED-widget-field">
207
+ <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" />
208
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>"><?php _e( 'Include history', 'mycred' ); ?></label><br />
209
  <span class="mycred-hidden<?php echo $history_option_class; ?>">
210
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
218
  </p>
219
  <!-- Show to Visitors -->
220
  <p class="myCRED-widget-field">
221
+ <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
222
  <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
223
  <span class="mycred-hidden<?php echo $visitor_option_class; ?>">
224
  <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred.pot CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
- "POT-Creation-Date: 2013-10-11 23:27+0100\n"
8
- "PO-Revision-Date: 2013-10-11 23:29+0100\n"
9
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
10
  "Language-Team: LANGUAGE <support@mycred.me>\n"
11
  "MIME-Version: 1.0\n"
@@ -14,156 +14,156 @@ msgstr ""
14
  "X-Generator: Poedit 1.5.7\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-KeywordsList: _n;_e;__\n"
17
- "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3\n"
18
  "X-Poedit-SearchPath-1: .\n"
19
 
20
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:366
21
- msgid "My Balance: "
22
  msgstr ""
23
 
24
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:463
25
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:486
26
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:837
27
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:276
28
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:136
29
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:391
30
  msgid "Processing..."
31
  msgstr ""
32
 
33
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:464
34
  msgid ""
35
  "Warning! All entries in your log will be permamenly removed! This can not be "
36
  "undone!"
37
  msgstr ""
38
 
39
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:465
40
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
41
  msgstr ""
42
 
43
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:466
44
  msgid "Done!"
45
  msgstr ""
46
 
47
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:467
48
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:485
49
  msgid "Close"
50
  msgstr ""
51
 
52
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:468
53
  msgid "Export users %plural%"
54
  msgstr ""
55
 
56
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:484
57
  #, php-format
58
  msgid "Edit Users %s balance"
59
  msgstr ""
60
 
61
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:542
62
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:624
63
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:432
64
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:493
65
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:408
66
  msgid "Setup"
67
  msgstr ""
68
 
69
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:546
70
  msgid "Tutorials"
71
  msgstr ""
72
 
73
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:547
74
  msgid "Codex"
75
  msgstr ""
76
 
77
- #: /Users/gabriel/Repositories/mycred/tags/1.3/mycred.php:548
78
  msgid "Store"
79
  msgstr ""
80
 
81
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:57
82
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
83
  msgstr ""
84
 
85
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:66
86
  msgid "This Hook has no settings"
87
  msgstr ""
88
 
89
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:133
90
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1036
91
  msgid "No limit"
92
  msgstr ""
93
 
94
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:134
95
  msgid "Once every 24 hours"
96
  msgstr ""
97
 
98
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:135
99
  msgid "Once every 12 hours"
100
  msgstr ""
101
 
102
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:136
103
  msgid "Once every 7 days"
104
  msgstr ""
105
 
106
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:137
107
  msgid "Once per day (reset at midnight)"
108
  msgstr ""
109
 
110
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-hook.php:144
111
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:342
112
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:262
113
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:283
114
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514
115
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
116
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:514
117
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:382
118
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:186
119
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:773
120
  msgid "Select"
121
  msgstr ""
122
 
123
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-module.php:42
124
  msgid "myCRED_Module() Error. A Module ID is required!"
125
  msgstr ""
126
 
127
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-module.php:313
128
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-module.php:321
129
  msgid "Surprise"
130
  msgstr ""
131
 
132
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-module.php:378
133
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:154
134
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:180
135
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:103
136
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:202
137
  msgid "click to close"
138
  msgstr ""
139
 
140
- #: /Users/gabriel/Repositories/mycred/tags/1.3/abstracts/mycred-abstract-module.php:379
141
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:155
142
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:181
143
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:104
144
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:203
145
  msgid "click to open"
146
  msgstr ""
147
 
148
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:12
149
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:49
150
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:50
151
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:51
152
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:179
153
  msgid "Banking"
154
  msgstr ""
155
 
156
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:13
157
  msgid ""
158
  "This add-on allows you to offer interest on your users points balances or "
159
  "setup recurring payouts."
160
  msgstr ""
161
 
162
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:110
163
  msgid "Compound Interest"
164
  msgstr ""
165
 
166
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:111
167
  msgid ""
168
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
169
  "annual and is compounded daily as long as this service is enabled. Positive "
@@ -171,205 +171,205 @@ msgid ""
171
  "rate will to users loosing %_plural%."
172
  msgstr ""
173
 
174
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:117
175
  msgid "Recurring Payouts"
176
  msgstr ""
177
 
178
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:118
179
  msgid ""
180
  "Give your users %_plural% on a regular basis with the option to set the "
181
  "number of times you want this payout to run (cycles)."
182
  msgstr ""
183
 
184
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:167
185
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:458
186
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:149
187
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:253
188
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:215
189
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:149
190
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:266
191
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:346
192
  msgid "Access Denied"
193
  msgstr ""
194
 
195
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:174
196
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:341
197
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:228
198
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:158
199
  msgid "Settings Updated"
200
  msgstr ""
201
 
202
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:180
203
  msgid ""
204
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
205
  "purchases or payments using the Gateway add-on, along with offering interest "
206
  "on %_plural% balances."
207
  msgstr ""
208
 
209
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:183
210
  msgid "WP-Cron deactivation detected!"
211
  msgstr ""
212
 
213
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:184
214
  msgid "Warning! This add-on requires WP - Cron to work."
215
  msgstr ""
216
 
217
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:197
218
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:370
219
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:172
220
  msgid "Enable"
221
  msgstr ""
222
 
223
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/myCRED-addon-banking.php:210
224
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:185
225
  msgid "Update Changes"
226
  msgstr ""
227
 
228
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:57
229
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
230
  msgstr ""
231
 
232
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:66
233
  msgid "This Service has no settings"
234
  msgstr ""
235
 
236
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:143
237
  msgid "Hourly"
238
  msgstr ""
239
 
240
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:147
241
  msgid "Daily"
242
  msgstr ""
243
 
244
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:151
245
  msgid "Weekly"
246
  msgstr ""
247
 
248
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:155
249
  msgid "Monthly"
250
  msgstr ""
251
 
252
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:159
253
  msgid "Quarterly"
254
  msgstr ""
255
 
256
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:163
257
  msgid "Semiannually"
258
  msgstr ""
259
 
260
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/abstracts/mycred-abstract-service.php:167
261
  msgid "Annually"
262
  msgstr ""
263
 
264
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:25
265
  msgid "%plural% interest rate payment"
266
  msgstr ""
267
 
268
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:275
269
  msgid "Interest Rate"
270
  msgstr ""
271
 
272
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:282
273
  msgid "Payed / Charged"
274
  msgstr ""
275
 
276
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:288
277
  msgid ""
278
  "The interest rate can be either positive or negative and is compounded daily."
279
  msgstr ""
280
 
281
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:291
282
  msgid "Minimum Balance"
283
  msgstr ""
284
 
285
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:295
286
  msgid "The minimum requires balance for interest to apply."
287
  msgstr ""
288
 
289
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:298
290
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:251
291
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:240
292
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:295
293
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:371
294
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:404
295
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:87
296
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:135
297
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:337
298
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:440
299
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1193
300
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1463
301
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:110
302
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:112
303
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:121
304
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:146
305
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:159
306
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:105
307
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:118
308
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:130
309
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:143
310
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-polls.php:132
311
  msgid "Log Template"
312
  msgstr ""
313
 
314
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:302
315
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
316
  msgstr ""
317
 
318
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:305
319
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:258
320
  msgid "Run Time"
321
  msgstr ""
322
 
323
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-interest.php:309
324
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:262
325
  msgid ""
326
  "For large websites, if you are running into time out issues during payouts, "
327
  "you can set the number of seconds a process can run. Use zero for unlimited, "
328
  "but be careful especially if you are on a shared server."
329
  msgstr ""
330
 
331
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:21
332
  msgid "Daily %_plural%"
333
  msgstr ""
334
 
335
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:213
336
  msgid "Not yet run"
337
  msgstr ""
338
 
339
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:218
340
  msgid "Pay Users"
341
  msgstr ""
342
 
343
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:221
344
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:678
345
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:348
346
  msgid "Amount"
347
  msgstr ""
348
 
349
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:223
350
  msgid "Can not be zero."
351
  msgstr ""
352
 
353
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:227
354
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:240
355
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1478
356
  msgid "Interval"
357
  msgstr ""
358
 
359
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:232
360
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:241
361
  msgid "Cycles"
362
  msgstr ""
363
 
364
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:234
365
  msgid "Set to -1 for unlimited"
366
  msgstr ""
367
 
368
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:237
369
  msgid "Last Run / Activated"
370
  msgstr ""
371
 
372
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:240
373
  msgid ""
374
  "Select how often you want to award %_plural%. Note that when this service is "
375
  "enabled, the first payout will be in the beginning of the next period. So "
@@ -377,647 +377,647 @@ msgid ""
377
  "morning."
378
  msgstr ""
379
 
380
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:241
381
  msgid ""
382
  "Cycles let you choose how many intervals this service should run. Each time "
383
  "a cycle runs, the value will decrease until it hits zero, in which case this "
384
  "service will deactivate itself. Use -1 to run unlimited times."
385
  msgstr ""
386
 
387
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:242
388
  msgid "Important"
389
  msgstr ""
390
 
391
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:242
392
  msgid ""
393
  "You can always stop payouts by deactivating this service. Just remember that "
394
  "if you deactivate while there are cycles left, this service will continue on "
395
  "when it gets re-activated. Set cycles to zero to reset."
396
  msgstr ""
397
 
398
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:244
399
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:576
400
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:287
401
  msgid "Excludes"
402
  msgstr ""
403
 
404
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:248
405
  msgid ""
406
  "Comma separated list of user IDs to exclude from this service. No spaces "
407
  "allowed!"
408
  msgstr ""
409
 
410
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/banking/services/mycred-bank-service-payouts.php:255
411
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-galleries.php:81
412
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:435
413
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:448
414
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:461
415
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:474
416
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:487
417
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:500
418
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:514
419
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:527
420
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:540
421
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:553
422
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:175
423
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:188
424
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:201
425
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:214
426
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:338
427
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:351
428
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:390
429
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:403
430
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:416
431
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:429
432
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:450
433
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:444
434
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1467
435
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:109
436
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:122
437
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:144
438
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:165
439
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:499
440
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:512
441
  msgid "Available template tags: General"
442
  msgstr ""
443
 
444
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:13
445
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:384
446
  msgid "BuddyPress"
447
  msgstr ""
448
 
449
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:14
450
  msgid ""
451
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
452
  "BuddyPress allowing you to hook into most BuddyPress related actions."
453
  msgstr ""
454
 
455
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:56
456
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:69
457
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:370
458
  msgid "My History"
459
  msgstr ""
460
 
461
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:57
462
  #, php-format
463
  msgid "%s's History"
464
  msgstr ""
465
 
466
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:219
467
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:227
468
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:414
469
  msgid "All"
470
  msgstr ""
471
 
472
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:220
473
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:415
474
  msgid "Today"
475
  msgstr ""
476
 
477
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:221
478
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:416
479
  msgid "Yesterday"
480
  msgstr ""
481
 
482
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:222
483
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:417
484
  msgid "This Week"
485
  msgstr ""
486
 
487
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:223
488
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:418
489
  msgid "This Month"
490
  msgstr ""
491
 
492
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:320
493
  msgid "BuddyPress: Groups"
494
  msgstr ""
495
 
496
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:321
497
  msgid ""
498
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
499
  "zero to disable a specific hook."
500
  msgstr ""
501
 
502
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:328
503
  msgid "BuddyPress: Members"
504
  msgstr ""
505
 
506
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:329
507
  msgid "Awards %_plural% for profile related actions."
508
  msgstr ""
509
 
510
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:336
511
  msgid "BuddyPress: Links"
512
  msgstr ""
513
 
514
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:337
515
  msgid "Awards %_plural% for link related actions."
516
  msgstr ""
517
 
518
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:344
519
  msgid "BuddyPress: Gallery Actions"
520
  msgstr ""
521
 
522
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:345
523
  msgid ""
524
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
525
  "Gallery."
526
  msgstr ""
527
 
528
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:365
529
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:372
530
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:776
531
  msgid "Do not show."
532
  msgstr ""
533
 
534
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:366
535
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:777
536
  msgid "Include in Profile Header."
537
  msgstr ""
538
 
539
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:367
540
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:778
541
  msgid "Include under the \"Profile\" tab"
542
  msgstr ""
543
 
544
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:368
545
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:779
546
  msgid "Include under the \"Profile\" tab and Profile Header."
547
  msgstr ""
548
 
549
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:373
550
  msgid "Show in Profile"
551
  msgstr ""
552
 
553
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:386
554
  msgid "%singular% Balance"
555
  msgstr ""
556
 
557
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:402
558
  msgid "Members can view each others %_singular% balance."
559
  msgstr ""
560
 
561
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:407
562
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:176
563
  msgid "Template"
564
  msgstr ""
565
 
566
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:409
567
  msgid "Available template tags are: %creds%, %number%, %rank%"
568
  msgstr ""
569
 
570
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:410
571
  msgid ""
572
  "Note that you can also use %rank_logo% to show the feature image of the rank."
573
  msgstr ""
574
 
575
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:414
576
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:160
577
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:70
578
  msgid "%plural% History"
579
  msgstr ""
580
 
581
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:430
582
  msgid "Members can view each others %_plural% history."
583
  msgstr ""
584
 
585
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:435
586
  msgid "Menu Title"
587
  msgstr ""
588
 
589
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:437
590
  msgid "Title shown to me"
591
  msgstr ""
592
 
593
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:442
594
  #, php-format
595
  msgid "Title shown to others. Use %s to show the first name."
596
  msgstr ""
597
 
598
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:447
599
  msgid "Menu Position"
600
  msgstr ""
601
 
602
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:449
603
  msgid "Current menu positions:"
604
  msgstr ""
605
 
606
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:454
607
  msgid "History URL slug"
608
  msgstr ""
609
 
610
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:456
611
  msgid "Do not use empty spaces!"
612
  msgstr ""
613
 
614
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/myCRED-addon-buddypress.php:461
615
  msgid "Number of history entries to show"
616
  msgstr ""
617
 
618
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-galleries.php:72
619
  msgid "%plural% for New Gallery"
620
  msgstr ""
621
 
622
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-galleries.php:79
623
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:433
624
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:446
625
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:459
626
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:472
627
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:485
628
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:498
629
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:512
630
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:525
631
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:538
632
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:551
633
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:173
634
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:186
635
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:199
636
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:212
637
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:336
638
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:349
639
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:362
640
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:375
641
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:388
642
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:401
643
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:414
644
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:427
645
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:303
646
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:546
647
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:559
648
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:594
649
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:915
650
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:932
651
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:949
652
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:276
653
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:414
654
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:427
655
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:440
656
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:458
657
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:471
658
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:490
659
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-contact-form7.php:136
660
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:142
661
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:163
662
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:497
663
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:510
664
  msgid "Log template"
665
  msgstr ""
666
 
667
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:419
668
  msgid "%plural% for Creating Groups"
669
  msgstr ""
670
 
671
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:423
672
  msgid ""
673
  "If you use a negative value and the user does not have enough %_plural% the "
674
  "\"Create Group\" button will be disabled."
675
  msgstr ""
676
 
677
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:427
678
  msgid "Number of members before awarding %_plural%"
679
  msgstr ""
680
 
681
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:429
682
  msgid "Use zero to award %_plural% when group is created."
683
  msgstr ""
684
 
685
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:439
686
  msgid "%plural% for Deleting Groups"
687
  msgstr ""
688
 
689
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:452
690
  msgid "%plural% for New Forum Topic"
691
  msgstr ""
692
 
693
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:465
694
  msgid "%plural% for Editing Forum Topic"
695
  msgstr ""
696
 
697
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:478
698
  msgid "%plural% for New Forum Post"
699
  msgstr ""
700
 
701
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:491
702
  msgid "%plural% for Editing Forum Post"
703
  msgstr ""
704
 
705
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:504
706
  msgid "%plural% for Joining Groups"
707
  msgstr ""
708
 
709
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:508
710
  msgid ""
711
  "If you use a negative value and the user does not have enough %_plural% the "
712
  "\"Join Group\" button will be disabled."
713
  msgstr ""
714
 
715
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:518
716
  msgid "%plural% for Leaving Groups"
717
  msgstr ""
718
 
719
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:531
720
  msgid "%plural% for New Group Avatar"
721
  msgstr ""
722
 
723
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-groups.php:544
724
  msgid "%plural% for New Group Comment"
725
  msgstr ""
726
 
727
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:166
728
  msgid "%plural% for New Links"
729
  msgstr ""
730
 
731
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:179
732
  msgid "%plural% for Vote on Link"
733
  msgstr ""
734
 
735
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:192
736
  msgid "%plural% for Updating Links"
737
  msgstr ""
738
 
739
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-links.php:205
740
  msgid "%plural% for Deleting Links"
741
  msgstr ""
742
 
743
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:324
744
  msgid "%plural% for Profile Updates"
745
  msgstr ""
746
 
747
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:330
748
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:477
749
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:501
750
  msgid "Daily Limit"
751
  msgstr ""
752
 
753
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:332
754
  msgid "Daily limit. User zero for unlimited."
755
  msgstr ""
756
 
757
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:342
758
  msgid "%plural% for New Avatar"
759
  msgstr ""
760
 
761
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:355
762
  msgid "%plural% for New Friendships"
763
  msgstr ""
764
 
765
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:364
766
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:377
767
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:189
768
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:196
769
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:307
770
  msgid "Available template tags: General, User"
771
  msgstr ""
772
 
773
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:368
774
  msgid "%plural% for Leaving Friendship"
775
  msgstr ""
776
 
777
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:381
778
  msgid "%plural% for New Comment"
779
  msgstr ""
780
 
781
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:394
782
  msgid "%plural% for Deleting Comment"
783
  msgstr ""
784
 
785
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:407
786
  msgid "%plural% for New Messages"
787
  msgstr ""
788
 
789
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buddypress/hooks/bp-profile.php:420
790
  msgid "%plural% for Sending Gift"
791
  msgstr ""
792
 
793
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:12
794
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:224
795
  msgid "buyCRED"
796
  msgstr ""
797
 
798
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:13
799
  msgid ""
800
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
801
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
802
  "also let your users buy points for other members."
803
  msgstr ""
804
 
805
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:55
806
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:56
807
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:57
808
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:346
809
  msgid "Payment Gateways"
810
  msgstr ""
811
 
812
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:141
813
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:784
814
  msgid "PayPal Payments Standard"
815
  msgstr ""
816
 
817
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:145
818
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:423
819
  msgid "NETbilling"
820
  msgstr ""
821
 
822
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:149
823
  msgid "Skrill (Moneybookers)"
824
  msgstr ""
825
 
826
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:153
827
  msgid "Zombaio"
828
  msgstr ""
829
 
830
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:199
831
  msgid "Please login to purchase %_plural%"
832
  msgstr ""
833
 
834
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:213
835
  msgid "Gift purchase from %display_name%."
836
  msgstr ""
837
 
838
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:226
839
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:565
840
  msgid "Minimum %plural%"
841
  msgstr ""
842
 
843
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:230
844
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
845
  msgstr ""
846
 
847
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:233
848
  msgid "Login Template"
849
  msgstr ""
850
 
851
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:237
852
  msgid "Content to show when a user is not logged in."
853
  msgstr ""
854
 
855
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:244
856
  msgid ""
857
  "Available template tags: General and %gateway% for the payment gateway used."
858
  msgstr ""
859
 
860
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:247
861
  msgid "Thank You Page"
862
  msgstr ""
863
 
864
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:250
865
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:271
866
  msgid "Custom URL"
867
  msgstr ""
868
 
869
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:255
870
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:276
871
  msgid "Page"
872
  msgstr ""
873
 
874
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:268
875
  msgid "Cancellation Page"
876
  msgstr ""
877
 
878
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:289
879
  msgid "Gifting"
880
  msgstr ""
881
 
882
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:291
883
  msgid "Allow users to buy %_plural% for other users."
884
  msgstr ""
885
 
886
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:292
887
  msgid "Allow users to buy %_plural% for content authors."
888
  msgstr ""
889
 
890
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:297
891
  msgid "Available template tags: %singular%, %plural% and %display_name%"
892
  msgstr ""
893
 
894
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:347
895
  msgid ""
896
  "Select the payment gateways you want to offer your users to buy %plural%."
897
  msgstr ""
898
 
899
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:363
900
  msgid "Test Mode"
901
  msgstr ""
902
 
903
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:365
904
  msgid "Enabled"
905
  msgstr ""
906
 
907
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:368
908
  msgid "Disabled"
909
  msgstr ""
910
 
911
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:388
912
  msgid "Update Gateway Settings"
913
  msgstr ""
914
 
915
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:435
916
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:532
917
  msgid "This Add-on needs to setup before you can use this shortcode."
918
  msgstr ""
919
 
920
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:453
921
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:549
922
  msgid "No gateways installed."
923
  msgstr ""
924
 
925
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:454
926
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:550
927
  msgid "Gateway does not exist."
928
  msgstr ""
929
 
930
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:490
931
  msgid "Yourself"
932
  msgstr ""
933
 
934
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:551
935
  msgid "No active gateways found."
936
  msgstr ""
937
 
938
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:552
939
  msgid "The selected gateway is not active."
940
  msgstr ""
941
 
942
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:592
943
  msgid "Buy with"
944
  msgstr ""
945
 
946
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:596
947
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:49
948
  msgid "Buy Now"
949
  msgstr ""
950
 
951
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:629
952
  msgid "No users found"
953
  msgstr ""
954
 
955
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:639
956
  msgid "To"
957
  msgstr ""
958
 
959
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:656
960
  msgid "Select Amount"
961
  msgstr ""
962
 
963
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:680
964
  msgid "min."
965
  msgstr ""
966
 
967
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:688
968
  msgid "Select Gateway"
969
  msgstr ""
970
 
971
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:768
972
  msgid "Buy %plural%"
973
  msgstr ""
974
 
975
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:770
976
  msgid "This add-on lets your users buy %_plural% using a payment gateway."
977
  msgstr ""
978
 
979
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:771
980
  msgid "Supported Gateways"
981
  msgstr ""
982
 
983
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:772
984
  msgid ""
985
  "myCRED supports purchases through: PayPal Payments Standard, Skrill "
986
  "(Moneybookers) and NETbilling. Let us know if you want to add other payment "
987
  "gateways."
988
  msgstr ""
989
 
990
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:773
991
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1066
992
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:497
993
  msgid "Usage"
994
  msgstr ""
995
 
996
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:774
997
  msgid "Purchases can be made using one of the following shortcodes:"
998
  msgstr ""
999
 
1000
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:776
1001
  msgid ""
1002
  "When you want to sell a pre-set amount, sell to a specific user or use a "
1003
  "specific gateway.<br />For more information on how to use the shortcode, "
1004
  "please visit the"
1005
  msgstr ""
1006
 
1007
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:777
1008
  msgid ""
1009
  "When you want to give your users the option to select an amount, gateway or "
1010
  "recipient.<br />For more information on how to use the shortcode, please "
1011
  "visit the"
1012
  msgstr ""
1013
 
1014
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:786
1015
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:327
1016
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:344
1017
  msgid "Currency"
1018
  msgstr ""
1019
 
1020
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:787
1021
  msgid ""
1022
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1023
  "transactions will not be approved until you login to your PayPal account and "
@@ -1025,12 +1025,12 @@ msgid ""
1025
  "will not be applied to the buyer until you have resolved the issue."
1026
  msgstr ""
1027
 
1028
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:788
1029
  msgid "Instant Payment Notifications"
1030
  msgstr ""
1031
 
1032
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:789
1033
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:358
1034
  msgid ""
1035
  "For this gateway to work, you must login to your PayPal account and under "
1036
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
@@ -1038,1049 +1038,1049 @@ msgid ""
1038
  "have selected \"Receive IPN messages (Enabled)\"."
1039
  msgstr ""
1040
 
1041
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:793
1042
  msgid "Skrill"
1043
  msgstr ""
1044
 
1045
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:795
1046
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:607
1047
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:321
1048
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:338
1049
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:290
1050
  msgid "Sandbox Mode"
1051
  msgstr ""
1052
 
1053
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:796
1054
  msgid ""
1055
  "Transactions made while Sandbox mode is active are real transactions! "
1056
  "Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
1057
  msgstr ""
1058
 
1059
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:797
1060
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:383
1061
  msgid "Checkout Page"
1062
  msgstr ""
1063
 
1064
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:798
1065
  msgid ""
1066
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1067
  "When a user selects this option, no points are awarded! You will need to "
1068
  "manually award these once the bank transfer is completed."
1069
  msgstr ""
1070
 
1071
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/myCRED-addon-buy-creds.php:799
1072
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:403
1073
  msgid ""
1074
  "By default purchases made using Skrill will result in users having to signup "
1075
  "for a Skrill account (if they do not have one already). You can contact "
1076
  "Skrill Merchant Services and request to disable this feature."
1077
  msgstr ""
1078
 
1079
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:60
1080
  msgid ""
1081
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1082
  "class."
1083
  msgstr ""
1084
 
1085
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:69
1086
  msgid ""
1087
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1088
  msgstr ""
1089
 
1090
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:85
1091
  msgid "This Payment Gateway has no settings"
1092
  msgstr ""
1093
 
1094
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:234
1095
  msgid "Go to "
1096
  msgstr ""
1097
 
1098
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:255
1099
  msgid "Payment Gateway Logo"
1100
  msgstr ""
1101
 
1102
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:268
1103
  msgid "Click here if you are not automatically redirected"
1104
  msgstr ""
1105
 
1106
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:865
1107
  msgid "Outside US"
1108
  msgstr ""
1109
 
1110
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:26
1111
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:23
1112
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:28
1113
  msgid "Purchase of myCRED %plural%"
1114
  msgstr ""
1115
 
1116
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:55
1117
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:318
1118
  msgid "You have tried too many times. Please contact support."
1119
  msgstr ""
1120
 
1121
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:62
1122
  msgid "This payment gateway has not yet been setup! Exiting."
1123
  msgstr ""
1124
 
1125
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:81
1126
  msgid "First name can not be empty"
1127
  msgstr ""
1128
 
1129
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:87
1130
  msgid "Last name can not be empty"
1131
  msgstr ""
1132
 
1133
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:93
1134
  msgid "Street can not be empty"
1135
  msgstr ""
1136
 
1137
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:99
1138
  msgid "City can not be empty"
1139
  msgstr ""
1140
 
1141
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:105
1142
  msgid "Country can not be empty"
1143
  msgstr ""
1144
 
1145
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:113
1146
  msgid "State can not be empty"
1147
  msgstr ""
1148
 
1149
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:121
1150
  msgid "Zip / Post Code can not be empty"
1151
  msgstr ""
1152
 
1153
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:127
1154
  msgid "Email can not be empty"
1155
  msgstr ""
1156
 
1157
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:143
1158
  msgid "Please enter your credit card number"
1159
  msgstr ""
1160
 
1161
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:149
1162
  msgid "Card Expiration Month must be selected"
1163
  msgstr ""
1164
 
1165
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:155
1166
  msgid "Card Expiration Year must be set"
1167
  msgstr ""
1168
 
1169
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:161
1170
  msgid "Please enter the CVV2 code from the back of your card"
1171
  msgstr ""
1172
 
1173
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:170
1174
  msgid "Account Routing number missing"
1175
  msgstr ""
1176
 
1177
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:176
1178
  msgid "Account Number missing"
1179
  msgstr ""
1180
 
1181
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:184
1182
  msgid "Incorrect Credit Card number"
1183
  msgstr ""
1184
 
1185
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:190
1186
  msgid "The credit card entered is past its expiration date."
1187
  msgstr ""
1188
 
1189
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:196
1190
  msgid "The CVV2 number entered is not valid."
1191
  msgstr ""
1192
 
1193
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:202
1194
  msgid "The bank routing number entered is not valid."
1195
  msgstr ""
1196
 
1197
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:205
1198
  msgid "The bank account number entered is not valid."
1199
  msgstr ""
1200
 
1201
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:312
1202
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:333
1203
  msgid "Invalid Address"
1204
  msgstr ""
1205
 
1206
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:315
1207
  msgid "Invalid CVV2"
1208
  msgstr ""
1209
 
1210
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:321
1211
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:324
1212
  msgid "Please contact support."
1213
  msgstr ""
1214
 
1215
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:327
1216
  msgid "Your email address is invalid."
1217
  msgstr ""
1218
 
1219
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:330
1220
  msgid "Your information is invalid. Please correct"
1221
  msgstr ""
1222
 
1223
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:336
1224
  msgid "Your card was declined. Please try again."
1225
  msgstr ""
1226
 
1227
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:340
1228
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:358
1229
  msgid "Duplicate transaction. Please contact support"
1230
  msgstr ""
1231
 
1232
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:343
1233
  msgid "Your transaction was approved"
1234
  msgstr ""
1235
 
1236
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:350
1237
  msgid " error: "
1238
  msgstr ""
1239
 
1240
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:430
1241
  msgid "Debug"
1242
  msgstr ""
1243
 
1244
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:439
1245
  msgid "Error"
1246
  msgstr ""
1247
 
1248
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:440
1249
  msgid "The following error/s were found: "
1250
  msgstr ""
1251
 
1252
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:448
1253
  msgid "Please update and try again."
1254
  msgstr ""
1255
 
1256
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:454
1257
  msgid "Transaction Approved"
1258
  msgstr ""
1259
 
1260
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:455
1261
  msgid "Your have successfully purchased "
1262
  msgstr ""
1263
 
1264
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:456
1265
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:466
1266
  msgid "Click here to continue"
1267
  msgstr ""
1268
 
1269
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:464
1270
  msgid "Transaction Declined"
1271
  msgstr ""
1272
 
1273
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:465
1274
  msgid ""
1275
  "I am sorry but your transaction could not be completed due to the following "
1276
  msgstr ""
1277
 
1278
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:474
1279
  msgid "Transaction Error"
1280
  msgstr ""
1281
 
1282
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:475
1283
  msgid "NETbilling returned the following error: "
1284
  msgstr ""
1285
 
1286
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:476
1287
  msgid "Please try again."
1288
  msgstr ""
1289
 
1290
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:480
1291
  msgid "Purchase of"
1292
  msgstr ""
1293
 
1294
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:480
1295
  msgid "for"
1296
  msgstr ""
1297
 
1298
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:481
1299
  msgid "Fields marked * are required!"
1300
  msgstr ""
1301
 
1302
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:491
1303
  msgid "Billing Details"
1304
  msgstr ""
1305
 
1306
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:560
1307
  msgid "Month"
1308
  msgstr ""
1309
 
1310
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:566
1311
  msgid "Year"
1312
  msgstr ""
1313
 
1314
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:613
1315
  msgid "Account ID"
1316
  msgstr ""
1317
 
1318
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:619
1319
  msgid "Site Tag"
1320
  msgstr ""
1321
 
1322
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:625
1323
  msgid "Dynamic IP Security Code"
1324
  msgstr ""
1325
 
1326
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:631
1327
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:341
1328
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:364
1329
  msgid "Item Name"
1330
  msgstr ""
1331
 
1332
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:637
1333
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:348
1334
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:371
1335
  msgid "%plural% Exchange Rate"
1336
  msgstr ""
1337
 
1338
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:643
1339
  msgid "Allowed Attempts"
1340
  msgstr ""
1341
 
1342
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:647
1343
  msgid "Maximum number of attempts allowed for purchases."
1344
  msgstr ""
1345
 
1346
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:650
1347
  msgid "Advanced"
1348
  msgstr ""
1349
 
1350
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:654
1351
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1352
  msgstr ""
1353
 
1354
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:658
1355
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1356
  msgstr ""
1357
 
1358
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:662
1359
  msgid ""
1360
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1361
  "disable_negative_db)"
1362
  msgstr ""
1363
 
1364
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:666
1365
  msgid ""
1366
  "Disable only the negative database component of the fraud protection system."
1367
  msgstr ""
1368
 
1369
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:670
1370
  msgid "Disable automatic sending of both merchant and customer email receipts."
1371
  msgstr ""
1372
 
1373
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/netbilling.php:674
1374
  msgid "Disable immediate rejection of expired cards."
1375
  msgstr ""
1376
 
1377
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:225
1378
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:211
1379
  msgid "Success"
1380
  msgstr ""
1381
 
1382
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:226
1383
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:212
1384
  msgid "Thank you for your purchase"
1385
  msgstr ""
1386
 
1387
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:239
1388
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:225
1389
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:232
1390
  msgid "Please setup this gateway before attempting to make a purchase!"
1391
  msgstr ""
1392
 
1393
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:299
1394
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:266
1395
  msgid "Return to "
1396
  msgstr ""
1397
 
1398
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:304
1399
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:320
1400
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:271
1401
  msgid "Processing payment &hellip;"
1402
  msgstr ""
1403
 
1404
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:332
1405
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:401
1406
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:433
1407
  msgid "Important!"
1408
  msgstr ""
1409
 
1410
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:332
1411
  msgid ""
1412
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1413
  "transactions will not be approved until you login to your PayPal account and "
1414
  "Accept each transaction!"
1415
  msgstr ""
1416
 
1417
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:335
1418
  msgid "Account Email"
1419
  msgstr ""
1420
 
1421
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:345
1422
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:368
1423
  msgid "Description of the item being purchased by the user."
1424
  msgstr ""
1425
 
1426
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:351
1427
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:374
1428
  msgid "Your selected currency"
1429
  msgstr ""
1430
 
1431
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/paypal-standard.php:354
1432
  msgid "IPN Address"
1433
  msgstr ""
1434
 
1435
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:303
1436
  msgid "Product:"
1437
  msgstr ""
1438
 
1439
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:312
1440
  msgid "Gift to:"
1441
  msgstr ""
1442
 
1443
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:313
1444
  msgid "(author)"
1445
  msgstr ""
1446
 
1447
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:341
1448
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1449
  msgstr ""
1450
 
1451
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:351
1452
  msgid "Merchant Account Email"
1453
  msgstr ""
1454
 
1455
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:357
1456
  msgid "Secret Word"
1457
  msgstr ""
1458
 
1459
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:361
1460
  msgid ""
1461
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1462
  msgstr ""
1463
 
1464
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:377
1465
  msgid "Confirmation Email"
1466
  msgstr ""
1467
 
1468
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:380
1469
  msgid ""
1470
  "Ask Skrill to send me a confirmation email for each successful purchase."
1471
  msgstr ""
1472
 
1473
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:386
1474
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:75
1475
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:706
1476
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:597
1477
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:186
1478
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:360
1479
  msgid "Title"
1480
  msgstr ""
1481
 
1482
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:388
1483
  msgid ""
1484
  "If left empty, your account email is used as title on the Skill Payment Page."
1485
  msgstr ""
1486
 
1487
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:391
1488
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:314
1489
  msgid "Logo URL"
1490
  msgstr ""
1491
 
1492
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:393
1493
  msgid ""
1494
  "The URL to the image you want to use on the top of the gateway. For best "
1495
  "integration results we recommend you use logos with dimensions up to 200px "
1496
  "in width and 50px in height."
1497
  msgstr ""
1498
 
1499
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:396
1500
  msgid "Confirmation Note"
1501
  msgstr ""
1502
 
1503
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:398
1504
  msgid ""
1505
  "Optional text to show user once a transaction has been successfully "
1506
  "completed. This text is shown by Skrill."
1507
  msgstr ""
1508
 
1509
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/skrill.php:402
1510
  msgid ""
1511
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1512
  "When a user selects this option, no %_plural% are awarded! You will need to "
1513
  "manually award these once the bank transfer is completed."
1514
  msgstr ""
1515
 
1516
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:296
1517
  msgid "Site ID"
1518
  msgstr ""
1519
 
1520
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:302
1521
  msgid "GW Password"
1522
  msgstr ""
1523
 
1524
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:308
1525
  msgid "Pricing ID"
1526
  msgstr ""
1527
 
1528
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:320
1529
  msgid "IP Verification"
1530
  msgstr ""
1531
 
1532
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:323
1533
  msgid "Do not verify that callbacks are coming from Zombaio."
1534
  msgstr ""
1535
 
1536
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:326
1537
  msgid "Language"
1538
  msgstr ""
1539
 
1540
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:333
1541
  msgid "Postback URL (ZScript)"
1542
  msgstr ""
1543
 
1544
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/buy-creds/gateways/zombaio.php:337
1545
  msgid ""
1546
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1547
  "address and click validate."
1548
  msgstr ""
1549
 
1550
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:12
1551
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:155
1552
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:161
1553
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:167
1554
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:265
1555
  msgid "Email Notices"
1556
  msgstr ""
1557
 
1558
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:13
1559
  msgid "Create email notices for any type of myCRED instance."
1560
  msgstr ""
1561
 
1562
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:156
1563
  msgid "Email Notice"
1564
  msgstr ""
1565
 
1566
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:157
1567
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:168
1568
  msgid "Add New"
1569
  msgstr ""
1570
 
1571
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:158
1572
  msgid "Add New Notice"
1573
  msgstr ""
1574
 
1575
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:159
1576
  msgid "Edit Notice"
1577
  msgstr ""
1578
 
1579
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:160
1580
  msgid "New Notice"
1581
  msgstr ""
1582
 
1583
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:162
1584
  msgid "View Notice"
1585
  msgstr ""
1586
 
1587
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:163
1588
  msgid "Search Email Notices"
1589
  msgstr ""
1590
 
1591
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:164
1592
  msgid "No email notices found"
1593
  msgstr ""
1594
 
1595
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:165
1596
  msgid "No email notices found in Trash"
1597
  msgstr ""
1598
 
1599
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:188
1600
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:848
1601
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:319
1602
  msgid "General"
1603
  msgstr ""
1604
 
1605
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:189
1606
  msgid "users balance changes"
1607
  msgstr ""
1608
 
1609
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:190
1610
  msgid "user gains %_plural%"
1611
  msgstr ""
1612
 
1613
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:191
1614
  msgid "user lose %_plural%"
1615
  msgstr ""
1616
 
1617
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:192
1618
  msgid "users balance reaches zero"
1619
  msgstr ""
1620
 
1621
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:193
1622
  msgid "users balance goes minus"
1623
  msgstr ""
1624
 
1625
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:199
1626
  msgid "Sell Content Add-on"
1627
  msgstr ""
1628
 
1629
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:200
1630
  msgid "user buys content"
1631
  msgstr ""
1632
 
1633
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:201
1634
  msgid "authors content gets sold"
1635
  msgstr ""
1636
 
1637
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:208
1638
  msgid "buyCREDs Add-on"
1639
  msgstr ""
1640
 
1641
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:209
1642
  msgid "user buys %_plural%"
1643
  msgstr ""
1644
 
1645
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:216
1646
  msgid "Transfer Add-on"
1647
  msgstr ""
1648
 
1649
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:217
1650
  msgid "user sends %_plural%"
1651
  msgstr ""
1652
 
1653
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:218
1654
  msgid "user receives %_plural%"
1655
  msgstr ""
1656
 
1657
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:225
1658
  msgid "Ranks Add-on"
1659
  msgstr ""
1660
 
1661
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:226
1662
  msgid "user is demoted"
1663
  msgstr ""
1664
 
1665
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:227
1666
  msgid "user is promoted"
1667
  msgstr ""
1668
 
1669
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:267
1670
  msgid ""
1671
  "Settings that apply to all email notices and can not be overridden for "
1672
  "individual emails."
1673
  msgstr ""
1674
 
1675
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:268
1676
  msgid "Email Format"
1677
  msgstr ""
1678
 
1679
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:272
1680
  msgid "Plain text emails only."
1681
  msgstr ""
1682
 
1683
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:276
1684
  msgid "HTML or Plain text emails."
1685
  msgstr ""
1686
 
1687
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:279
1688
  msgid "Filters"
1689
  msgstr ""
1690
 
1691
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:283
1692
  msgid ""
1693
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1694
  "an email is sent."
1695
  msgstr ""
1696
 
1697
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:287
1698
  msgid ""
1699
  "Allow WordPress and Third Party Plugins to filter the email content before "
1700
  "an email is sent."
1701
  msgstr ""
1702
 
1703
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:290
1704
  msgid ""
1705
  "Default email settings. These settings can be individually overridden when "
1706
  "editing emails."
1707
  msgstr ""
1708
 
1709
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:291
1710
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:687
1711
  msgid "Email Settings"
1712
  msgstr ""
1713
 
1714
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:294
1715
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:804
1716
  msgid "Senders Name:"
1717
  msgstr ""
1718
 
1719
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:298
1720
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:806
1721
  msgid "Senders Email:"
1722
  msgstr ""
1723
 
1724
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:302
1725
  msgid "Reply-To:"
1726
  msgstr ""
1727
 
1728
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:306
1729
  msgid "Default Email Content"
1730
  msgstr ""
1731
 
1732
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:310
1733
  msgid "Default email content."
1734
  msgstr ""
1735
 
1736
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:313
1737
  msgid "Default Email Styling"
1738
  msgstr ""
1739
 
1740
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:317
1741
  msgid "Ignored if HTML is not allowed in emails."
1742
  msgstr ""
1743
 
1744
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:622
1745
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:736
1746
  msgid "Email Subject"
1747
  msgstr ""
1748
 
1749
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:623
1750
  msgid "Status"
1751
  msgstr ""
1752
 
1753
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:643
1754
  msgid "Not Active"
1755
  msgstr ""
1756
 
1757
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:645
1758
  #, php-format
1759
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1760
  msgstr ""
1761
 
1762
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:649
1763
  msgid "Active"
1764
  msgstr ""
1765
 
1766
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:651
1767
  #, php-format
1768
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1769
  msgstr ""
1770
 
1771
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:660
1772
  msgid "Email is sent when"
1773
  msgstr ""
1774
 
1775
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:662
1776
  msgid "Missing instance for this notice!"
1777
  msgstr ""
1778
 
1779
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:671
1780
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:673
1781
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:675
1782
  msgid "Sent To"
1783
  msgstr ""
1784
 
1785
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:671
1786
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:798
1787
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:344
1788
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:243
1789
  msgid "User"
1790
  msgstr ""
1791
 
1792
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:673
1793
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:799
1794
  msgid "Administrator"
1795
  msgstr ""
1796
 
1797
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:675
1798
  msgid "Both Administrator and User"
1799
  msgstr ""
1800
 
1801
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:696
1802
  msgid "Available Template Tags"
1803
  msgstr ""
1804
 
1805
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:707
1806
  msgid "Email Header"
1807
  msgstr ""
1808
 
1809
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:767
1810
  msgid "Send this email notice when..."
1811
  msgstr ""
1812
 
1813
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:796
1814
  msgid "Recipient:"
1815
  msgstr ""
1816
 
1817
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:800
1818
  msgid "Both"
1819
  msgstr ""
1820
 
1821
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:808
1822
  msgid "Reply-To Email:"
1823
  msgstr ""
1824
 
1825
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:814
1826
  msgid "Save"
1827
  msgstr ""
1828
 
1829
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:826
1830
  msgid "CSS Styling"
1831
  msgstr ""
1832
 
1833
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:841
1834
  msgid "Site Related"
1835
  msgstr ""
1836
 
1837
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:842
1838
  msgid "Your websites title"
1839
  msgstr ""
1840
 
1841
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:843
1842
  msgid "Your websites address"
1843
  msgstr ""
1844
 
1845
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:844
1846
  msgid "Your websites tagline (description)"
1847
  msgstr ""
1848
 
1849
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:845
1850
  msgid "Your websites admin email"
1851
  msgstr ""
1852
 
1853
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:846
1854
  msgid "Total number of blog members"
1855
  msgstr ""
1856
 
1857
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:849
1858
  msgid "Points name in singular format"
1859
  msgstr ""
1860
 
1861
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:850
1862
  msgid "Points name in plural"
1863
  msgstr ""
1864
 
1865
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:851
1866
  msgid "Login URL"
1867
  msgstr ""
1868
 
1869
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:854
1870
  msgid "User Related"
1871
  msgstr ""
1872
 
1873
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:855
1874
  msgid "The users ID"
1875
  msgstr ""
1876
 
1877
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:856
1878
  msgid "The users login name (username)"
1879
  msgstr ""
1880
 
1881
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:857
1882
  msgid "The users display name"
1883
  msgstr ""
1884
 
1885
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:858
1886
  msgid "The users profile address"
1887
  msgstr ""
1888
 
1889
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:859
1890
  msgid "Link to the users profile address with their display name as title"
1891
  msgstr ""
1892
 
1893
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:860
1894
  msgid "The users current balance unformated"
1895
  msgstr ""
1896
 
1897
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:861
1898
  msgid "The users current balance formated"
1899
  msgstr ""
1900
 
1901
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:863
1902
  msgid "Post Related"
1903
  msgstr ""
1904
 
1905
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:864
1906
  msgid "Post Title"
1907
  msgstr ""
1908
 
1909
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:865
1910
  msgid "Post URL address"
1911
  msgstr ""
1912
 
1913
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:866
1914
  msgid "Link to post Post title"
1915
  msgstr ""
1916
 
1917
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:867
1918
  msgid "The post type"
1919
  msgstr ""
1920
 
1921
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:943
1922
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:946
1923
  #, php-format
1924
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1925
  msgstr ""
1926
 
1927
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:944
1928
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:470
1929
  msgid "Custom field updated"
1930
  msgstr ""
1931
 
1932
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:945
1933
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:471
1934
  msgid "Custom filed updated"
1935
  msgstr ""
1936
 
1937
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:948
1938
  msgid "Email Notice Activated"
1939
  msgstr ""
1940
 
1941
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:949
1942
  msgid "Email Notice Saved"
1943
  msgstr ""
1944
 
1945
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:950
1946
  #, php-format
1947
  msgid ""
1948
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1949
  msgstr ""
1950
 
1951
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:952
1952
  #, php-format
1953
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1954
  msgstr ""
1955
 
1956
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:971
1957
  msgid ""
1958
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1959
  "you are not yet ready to use this email notice!"
1960
  msgstr ""
1961
 
1962
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:973
1963
  #, php-format
1964
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1965
  msgstr ""
1966
 
1967
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/email-notices/myCRED-addon-email-notices.php:975
1968
  msgid "This email notice is active."
1969
  msgstr ""
1970
 
1971
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/myCRED-addon-gateway.php:12
1972
  msgid "Gateway"
1973
  msgstr ""
1974
 
1975
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/myCRED-addon-gateway.php:13
1976
  msgid ""
1977
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1978
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1979
  "Espresso, Events Manager."
1980
  msgstr ""
1981
 
1982
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:143
1983
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:271
1984
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:295
1985
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:374
1986
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:345
1987
  msgid "Current Balance"
1988
  msgstr ""
1989
 
1990
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:147
1991
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:113
1992
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:275
1993
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:299
1994
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:378
1995
  msgid "Total Cost"
1996
  msgstr ""
1997
 
1998
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:151
1999
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:279
2000
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:303
2001
  msgid "Balance After Purchase"
2002
  msgstr ""
2003
 
2004
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:175
2005
  msgid "Payment"
2006
  msgstr ""
2007
 
2008
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:178
2009
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:227
2010
  #, php-format
2011
  msgid "<a href=\"%s\">Go Back</a>"
2012
  msgstr ""
2013
 
2014
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:181
2015
  msgid "will be deducted from your account."
2016
  msgstr ""
2017
 
2018
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:217
2019
  #, php-format
2020
  msgid ""
2021
  "Sorry, but you can not use this gateway as your account is excluded. Please "
2022
  "<a href=\"%s\">select a different payment method</a>."
2023
  msgstr ""
2024
 
2025
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:236
2026
  msgid "Paid"
2027
  msgstr ""
2028
 
2029
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:239
2030
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:34
2031
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:51
2032
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:52
2033
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:76
2034
  msgid "myCRED"
2035
  msgstr ""
2036
 
2037
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:339
2038
  msgid "%_singular% Balance"
2039
  msgstr ""
2040
 
2041
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:341
2042
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:90
2043
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:26
2044
  msgid "Payment for Order: #%order_id%"
2045
  msgstr ""
2046
 
2047
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:344
2048
  msgid "Product Sale: %post_title%"
2049
  msgstr ""
2050
 
2051
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:345
2052
  msgid "Pay using your account balance."
2053
  msgstr ""
2054
 
2055
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:346
2056
  msgid ""
2057
  "TOTAL amount has been deducted from your account. Your current balance is: "
2058
  "%balance_f%"
2059
  msgstr ""
2060
 
2061
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:347
2062
  msgid ""
2063
  "Insufficient funds. Please select another form of payment. Your current "
2064
  "balance is: %balance_f%"
2065
  msgstr ""
2066
 
2067
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:348
2068
  msgid ""
2069
  "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2070
  "%\">login</a>."
2071
  msgstr ""
2072
 
2073
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:353
2074
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:175
2075
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:19
2076
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:20
2077
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:21
2078
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:224
2079
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:246
2080
  msgid "Settings"
2081
  msgstr ""
2082
 
2083
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:355
2084
  #, php-format
2085
  msgid ""
2086
  "Let your users pay for items in their shopping cart using their %s Account. "
@@ -2088,134 +2088,134 @@ msgid ""
2088
  "purchase!"
2089
  msgstr ""
2090
 
2091
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:358
2092
  msgid "Method Name"
2093
  msgstr ""
2094
 
2095
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:360
2096
  msgid ""
2097
  "Enter a public name for this payment method that is displayed to users - No "
2098
  "HTML"
2099
  msgstr ""
2100
 
2101
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:365
2102
  msgid "Gateway Logo URL"
2103
  msgstr ""
2104
 
2105
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:373
2106
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:89
2107
  msgid ""
2108
  "Log entry template for successful payments. Available template tags: "
2109
  "%order_id%, %order_link%"
2110
  msgstr ""
2111
 
2112
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:380
2113
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:95
2114
  msgid "How much is 1 %_singular% worth in %currency%?"
2115
  msgstr ""
2116
 
2117
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:385
2118
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:100
2119
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:326
2120
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:428
2121
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:459
2122
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:520
2123
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:525
2124
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:594
2125
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:658
2126
  msgid "Exchange Rate"
2127
  msgstr ""
2128
 
2129
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:394
2130
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:128
2131
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:330
2132
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:440
2133
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:450
2134
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:511
2135
  msgid "Profit Sharing"
2136
  msgstr ""
2137
 
2138
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:397
2139
  msgid "Percentage"
2140
  msgstr ""
2141
 
2142
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:399
2143
  msgid "Option to share sales with the product owner. User zero to disable"
2144
  msgstr ""
2145
 
2146
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:406
2147
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:338
2148
  msgid ""
2149
  "Log entry template for profit sharing. Available template tags: General and "
2150
  "Post related"
2151
  msgstr ""
2152
 
2153
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:411
2154
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:341
2155
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:519
2156
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:580
2157
  msgid "Messages"
2158
  msgstr ""
2159
 
2160
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:414
2161
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:352
2162
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:529
2163
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:590
2164
  msgid "Insufficient Funds"
2165
  msgstr ""
2166
 
2167
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:416
2168
  msgid "Message to show when the user can not use this gateway."
2169
  msgstr ""
2170
 
2171
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:418
2172
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:426
2173
  msgid "Available template tags are: General."
2174
  msgstr ""
2175
 
2176
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:422
2177
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:348
2178
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:468
2179
  msgid "Visitors"
2180
  msgstr ""
2181
 
2182
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:424
2183
  msgid "Message to show to buyers that are not logged in."
2184
  msgstr ""
2185
 
2186
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:430
2187
  msgid "User Instructions"
2188
  msgstr ""
2189
 
2190
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:432
2191
  msgid "Information to show users before payment."
2192
  msgstr ""
2193
 
2194
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:434
2195
  msgid ""
2196
  "Available template tags are: %balance% and %balance_f% for users current "
2197
  "balance."
2198
  msgstr ""
2199
 
2200
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:438
2201
  msgid "Confirmation Information"
2202
  msgstr ""
2203
 
2204
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:440
2205
  msgid "Information to display on the order confirmation page. - HTML allowed"
2206
  msgstr ""
2207
 
2208
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:442
2209
  msgid ""
2210
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2211
  "- users current balance."
2212
  msgstr ""
2213
 
2214
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:446
2215
  msgid "Order Confirmation Email"
2216
  msgstr ""
2217
 
2218
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:448
2219
  #, php-format
2220
  msgid ""
2221
  "This is the email text to send to those who have made %s checkouts. It "
@@ -2224,773 +2224,773 @@ msgid ""
2224
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2225
  msgstr ""
2226
 
2227
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-marketpress.php:450
2228
  #, php-format
2229
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2230
  msgstr ""
2231
 
2232
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:35
2233
  msgid "Let users pay using their myCRED balance."
2234
  msgstr ""
2235
 
2236
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:68
2237
  msgid "Enable/Disable"
2238
  msgstr ""
2239
 
2240
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:70
2241
  msgid "Enable myCRED Payment"
2242
  msgstr ""
2243
 
2244
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:72
2245
  msgid ""
2246
  "Users who are not logged in or excluded from using myCRED will not have "
2247
  "access to this gateway!"
2248
  msgstr ""
2249
 
2250
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:77
2251
  msgid "Title to show for this payment option."
2252
  msgstr ""
2253
 
2254
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:78
2255
  msgid "Pay with myCRED"
2256
  msgstr ""
2257
 
2258
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:82
2259
  msgid "Customer Message"
2260
  msgstr ""
2261
 
2262
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:84
2263
  msgid "Deduct the amount from your %_plural% balance."
2264
  msgstr ""
2265
 
2266
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:107
2267
  msgid "Show Total"
2268
  msgstr ""
2269
 
2270
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:109
2271
  msgid "Show the final price in %_plural% ."
2272
  msgstr ""
2273
 
2274
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:111
2275
  msgid "Do not show"
2276
  msgstr ""
2277
 
2278
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:112
2279
  msgid "Show in Cart"
2280
  msgstr ""
2281
 
2282
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:113
2283
  msgid "Show on Checkout Page"
2284
  msgstr ""
2285
 
2286
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:114
2287
  msgid "Show in Cart and on Checkout Page"
2288
  msgstr ""
2289
 
2290
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:119
2291
  msgid "Label"
2292
  msgstr ""
2293
 
2294
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:121
2295
  msgid "Order Total in %_plural%"
2296
  msgstr ""
2297
 
2298
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:130
2299
  msgid "Option to share a percentage of the sale with the product owner."
2300
  msgstr ""
2301
 
2302
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:137
2303
  msgid ""
2304
  "Log entry template for profit sharing. Available template tags: General and "
2305
  "Post related."
2306
  msgstr ""
2307
 
2308
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:138
2309
  msgid "Sale of %post_title%"
2310
  msgstr ""
2311
 
2312
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:163
2313
  msgid "myCRED Payment"
2314
  msgstr ""
2315
 
2316
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:164
2317
  msgid ""
2318
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2319
  "users with insufficient funds and users who are not logged in will not see "
2320
  "this payment gateway on the checkout page."
2321
  msgstr ""
2322
 
2323
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:185
2324
  msgid "You must be logged in to pay with %_plural%"
2325
  msgstr ""
2326
 
2327
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:191
2328
  msgid "You can not use this gateway. Please try a different payment option."
2329
  msgstr ""
2330
 
2331
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:203
2332
  msgid "Insufficient funds. Please try a different payment option."
2333
  msgstr ""
2334
 
2335
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:267
2336
  msgid "Your account has successfully been charged."
2337
  msgstr ""
2338
 
2339
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-woocommerce.php:477
2340
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:121
2341
  msgid "Your current balance"
2342
  msgstr ""
2343
 
2344
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:28
2345
  msgid "Store sale"
2346
  msgstr ""
2347
 
2348
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:30
2349
  msgid "You must be logged in to use this gateway"
2350
  msgstr ""
2351
 
2352
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:31
2353
  msgid "Insufficient Funds."
2354
  msgstr ""
2355
 
2356
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:32
2357
  msgid "Deduct the amount from your balance."
2358
  msgstr ""
2359
 
2360
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:102
2361
  msgid "Item"
2362
  msgstr ""
2363
 
2364
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:188
2365
  msgid "You can not use this gateway."
2366
  msgstr ""
2367
 
2368
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:322
2369
  msgid "Log Template for Payments"
2370
  msgstr ""
2371
 
2372
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:323
2373
  msgid ""
2374
  "Log entry template for successful payments. Available template tags: "
2375
  "General, %order_id%"
2376
  msgstr ""
2377
 
2378
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:327
2379
  #, php-format
2380
  msgid "How much is 1 %s worth in %s"
2381
  msgstr ""
2382
 
2383
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:333
2384
  msgid "Payout"
2385
  msgstr ""
2386
 
2387
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:334
2388
  msgid ""
2389
  "Option to share a percentage of the sale with the product owner (post "
2390
  "author). User zero to disable."
2391
  msgstr ""
2392
 
2393
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:344
2394
  msgid "Instructions"
2395
  msgstr ""
2396
 
2397
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:345
2398
  msgid ""
2399
  "Optional instructions to show users when selecting this gateway. Leave empty "
2400
  "to hide."
2401
  msgstr ""
2402
 
2403
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:349
2404
  msgid "Message to show visitors who are not logged in."
2405
  msgstr ""
2406
 
2407
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/carts/mycred-wpecommerce.php:353
2408
  msgid ""
2409
  "Message to show when users does not have enough %plural% to pay using this "
2410
  "gateway."
2411
  msgstr ""
2412
 
2413
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:24
2414
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:435
2415
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:496
2416
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:313
2417
  msgid "Payments"
2418
  msgstr ""
2419
 
2420
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:25
2421
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:36
2422
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:32
2423
  msgid "Pay Now"
2424
  msgstr ""
2425
 
2426
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:29
2427
  msgid "Payment for Event Registration"
2428
  msgstr ""
2429
 
2430
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:337
2431
  #, php-format
2432
  msgid "Activate %s"
2433
  msgstr ""
2434
 
2435
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:345
2436
  #, php-format
2437
  msgid "Deactivate %s"
2438
  msgstr ""
2439
 
2440
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:361
2441
  msgid "Gateway Settings"
2442
  msgstr ""
2443
 
2444
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:393
2445
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:425
2446
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:483
2447
  #, php-format
2448
  msgid "How many %s is 1 %s worth?"
2449
  msgstr ""
2450
 
2451
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:399
2452
  msgid "Gateways Settings Successfully Updated"
2453
  msgstr ""
2454
 
2455
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:407
2456
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:495
2457
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:556
2458
  msgid "Labels"
2459
  msgstr ""
2460
 
2461
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:410
2462
  msgid "Gateway Title"
2463
  msgstr ""
2464
 
2465
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:412
2466
  msgid "Title to show on Payment page"
2467
  msgstr ""
2468
 
2469
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:415
2470
  msgid "Payment Type"
2471
  msgstr ""
2472
 
2473
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:417
2474
  msgid "Title to show on receipts and logs"
2475
  msgstr ""
2476
 
2477
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:420
2478
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:512
2479
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:573
2480
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:349
2481
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:541
2482
  msgid "Button Label"
2483
  msgstr ""
2484
 
2485
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:422
2486
  msgid "Pay Button"
2487
  msgstr ""
2488
 
2489
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:425
2490
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:132
2491
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:135
2492
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:307
2493
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:310
2494
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:340
2495
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:537
2496
  msgid "Price"
2497
  msgstr ""
2498
 
2499
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:435
2500
  msgid ""
2501
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2502
  "<code>mycred_no_sale</code>"
2503
  msgstr ""
2504
 
2505
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:436
2506
  msgid "Users must be logged in to use this gateway!"
2507
  msgstr ""
2508
 
2509
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:442
2510
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:453
2511
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:514
2512
  msgid ""
2513
  "Option to share sales with the event owner (post author). Use zero to "
2514
  "disable."
2515
  msgstr ""
2516
 
2517
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:445
2518
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:22
2519
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:23
2520
  msgid "Log"
2521
  msgstr ""
2522
 
2523
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:448
2524
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:549
2525
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:623
2526
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:681
2527
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:349
2528
  msgid "Log Entry"
2529
  msgstr ""
2530
 
2531
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:455
2532
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:898
2533
  msgid "Templates"
2534
  msgstr ""
2535
 
2536
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:458
2537
  msgid "Solvent users"
2538
  msgstr ""
2539
 
2540
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:460
2541
  msgid ""
2542
  "Message to show users on the payment page before they are charged. Leave "
2543
  "empty to hide.<br />Available template tags: General"
2544
  msgstr ""
2545
 
2546
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:463
2547
  msgid "Insolvent users"
2548
  msgstr ""
2549
 
2550
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:465
2551
  msgid ""
2552
  "Message to show users who do not have enough points to pay.<br />Available "
2553
  "template tags: General"
2554
  msgstr ""
2555
 
2556
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:470
2557
  msgid ""
2558
  "Message to show visitors (users not logged in) on the payment page.<br /"
2559
  ">Available template tags: General"
2560
  msgstr ""
2561
 
2562
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventespresso3.php:480
2563
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:380
2564
  msgid "Update Settings"
2565
  msgstr ""
2566
 
2567
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:30
2568
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:26
2569
  msgid "Payment for tickets to %link_with_title%"
2570
  msgstr ""
2571
 
2572
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:31
2573
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:27
2574
  msgid "Ticket refund for %link_with_title%"
2575
  msgstr ""
2576
 
2577
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:35
2578
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:31
2579
  msgid "Pay using your %_plural% balance"
2580
  msgstr ""
2581
 
2582
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:37
2583
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:33
2584
  msgid "Pay"
2585
  msgstr ""
2586
 
2587
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2588
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:36
2589
  msgid "Thank you for your payment!"
2590
  msgstr ""
2591
 
2592
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2593
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:37
2594
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2595
  msgstr ""
2596
 
2597
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:129
2598
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:304
2599
  msgid "Ticket Type"
2600
  msgstr ""
2601
 
2602
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:138
2603
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:313
2604
  msgid "Spaces"
2605
  msgstr ""
2606
 
2607
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:220
2608
  msgid "You can not pay using this gateway."
2609
  msgstr ""
2610
 
2611
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:357
2612
  msgid "Reject"
2613
  msgstr ""
2614
 
2615
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:361
2616
  msgid "Delete"
2617
  msgstr ""
2618
 
2619
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:366
2620
  msgid "Edit/View"
2621
  msgstr ""
2622
 
2623
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:437
2624
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:498
2625
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2626
  msgstr ""
2627
 
2628
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:438
2629
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:499
2630
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2631
  msgstr ""
2632
 
2633
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:439
2634
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:500
2635
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2636
  msgstr ""
2637
 
2638
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:443
2639
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:476
2640
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:504
2641
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:537
2642
  msgid "Refunds"
2643
  msgstr ""
2644
 
2645
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:446
2646
  msgid ""
2647
  "The percentage of the paid amount to refund if a user cancells their "
2648
  "booking. Use zero for no refunds. No refunds are given to \"Rejected\" "
2649
  "bookings!"
2650
  msgstr ""
2651
 
2652
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:466
2653
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:527
2654
  msgid "Log Templates"
2655
  msgstr ""
2656
 
2657
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:469
2658
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:530
2659
  msgid "Purchases"
2660
  msgstr ""
2661
 
2662
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:472
2663
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:479
2664
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:533
2665
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:540
2666
  msgid "Available template tags: General and Post related."
2667
  msgstr ""
2668
 
2669
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:498
2670
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:559
2671
  msgid "Payment Link Label"
2672
  msgstr ""
2673
 
2674
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
2675
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:562
2676
  msgid ""
2677
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2678
  "HTML allowed."
2679
  msgstr ""
2680
 
2681
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:505
2682
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:566
2683
  msgid "Payment Header"
2684
  msgstr ""
2685
 
2686
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:508
2687
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:569
2688
  msgid "Shown on top of the payment form. No HTML allowed."
2689
  msgstr ""
2690
 
2691
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:515
2692
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:576
2693
  msgid "The button label for payments. No HTML allowed!"
2694
  msgstr ""
2695
 
2696
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:522
2697
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:583
2698
  msgid "Successful Payments"
2699
  msgstr ""
2700
 
2701
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:525
2702
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager-pro.php:532
2703
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:586
2704
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:593
2705
  msgid "No HTML allowed! Available template tags: General"
2706
  msgstr ""
2707
 
2708
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:382
2709
  msgid "Balance After Payment"
2710
  msgstr ""
2711
 
2712
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:489
2713
  msgid "Click to toggle"
2714
  msgstr ""
2715
 
2716
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:489
2717
  #, php-format
2718
  msgid "%s Payments"
2719
  msgstr ""
2720
 
2721
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/gateway/event-booking/mycred-eventsmanager.php:507
2722
  msgid ""
2723
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2724
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2725
  msgstr ""
2726
 
2727
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:12
2728
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:40
2729
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:41
2730
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:42
2731
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:466
2732
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:743
2733
  msgid "Import"
2734
  msgstr ""
2735
 
2736
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:13
2737
  msgid ""
2738
  "With the Import add-on you can import CSV files, CubePoints or existing "
2739
  "points under any custom user meta values."
2740
  msgstr ""
2741
 
2742
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:91
2743
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:749
2744
  msgid "CSV File"
2745
  msgstr ""
2746
 
2747
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:92
2748
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2749
  msgstr ""
2750
 
2751
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:95
2752
  msgid "CubePoints"
2753
  msgstr ""
2754
 
2755
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:96
2756
  msgid "Import CubePoints"
2757
  msgstr ""
2758
 
2759
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:99
2760
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:769
2761
  msgid "Custom User Meta"
2762
  msgstr ""
2763
 
2764
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:100
2765
  msgid "Import %_plural% from pre-existing custom user meta."
2766
  msgstr ""
2767
 
2768
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:217
2769
  msgid "No file selected. Please select your CSV file and try again."
2770
  msgstr ""
2771
 
2772
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:232
2773
  msgid "Failed to load file."
2774
  msgstr ""
2775
 
2776
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:253
2777
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:423
2778
  #, php-format
2779
  msgid ""
2780
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2781
  msgstr ""
2782
 
2783
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:262
2784
  msgid ""
2785
  "No valid records found in file. Make sure you have selected the correct way "
2786
  "to identify users in the mycred_user column!"
2787
  msgstr ""
2788
 
2789
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:268
2790
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:351
2791
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:438
2792
  #, php-format
2793
  msgid ""
2794
  "Import successfully completed. A total of %d users were effected and %d "
2795
  "entires were skipped. Import completed in %.2f seconds."
2796
  msgstr ""
2797
 
2798
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:302
2799
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:587
2800
  msgid "No CubePoints found."
2801
  msgstr ""
2802
 
2803
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:336
2804
  #, php-format
2805
  msgid ""
2806
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2807
  "seconds."
2808
  msgstr ""
2809
 
2810
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:345
2811
  msgid "No valid CubePoints founds."
2812
  msgstr ""
2813
 
2814
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:371
2815
  msgid "Missing meta key. Not sure what I should be looking for."
2816
  msgstr ""
2817
 
2818
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:390
2819
  #, php-format
2820
  msgid "No rows found for the <strong>%s</strong> meta key."
2821
  msgstr ""
2822
 
2823
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:432
2824
  msgid "No valid records founds."
2825
  msgstr ""
2826
 
2827
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:478
2828
  msgid "Remember to de-activate this add-on once you are done importing!"
2829
  msgstr ""
2830
 
2831
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:510
2832
  msgid "File"
2833
  msgstr ""
2834
 
2835
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:514
2836
  msgid "Maximum allowed upload size is "
2837
  msgstr ""
2838
 
2839
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:514
2840
  msgid ""
2841
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2842
  "Optional columns: <code>mycred_log</code>."
2843
  msgstr ""
2844
 
2845
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:517
2846
  msgid "Identify Users By"
2847
  msgstr ""
2848
 
2849
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:520
2850
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:343
2851
  msgid "ID"
2852
  msgstr ""
2853
 
2854
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:521
2855
  msgid "Username"
2856
  msgstr ""
2857
 
2858
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:522
2859
  msgid "Email"
2860
  msgstr ""
2861
 
2862
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:529
2863
  msgid "How much is 1 imported value worth?"
2864
  msgstr ""
2865
 
2866
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:534
2867
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:602
2868
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:666
2869
  msgid "Round"
2870
  msgstr ""
2871
 
2872
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:535
2873
  msgid "None"
2874
  msgstr ""
2875
 
2876
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:536
2877
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:604
2878
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:668
2879
  msgid "Round Up"
2880
  msgstr ""
2881
 
2882
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:537
2883
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:605
2884
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:669
2885
  msgid "Round Down"
2886
  msgstr ""
2887
 
2888
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:542
2889
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:610
2890
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:674
2891
  msgid "Precision"
2892
  msgstr ""
2893
 
2894
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:544
2895
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:612
2896
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:676
2897
  msgid ""
2898
  "The optional number of decimal digits to round to. Use zero to round the "
2899
  "nearest whole number."
2900
  msgstr ""
2901
 
2902
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:553
2903
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:627
2904
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:685
2905
  msgid "See the help tab for available template tags. Leave blank to disable."
2906
  msgstr ""
2907
 
2908
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:558
2909
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:632
2910
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:696
2911
  msgid "Run Import"
2912
  msgstr ""
2913
 
2914
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:585
2915
  #, php-format
2916
  msgid "Found %d users with CubePoints."
2917
  msgstr ""
2918
 
2919
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:588
2920
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:652
2921
  msgid "Meta Key"
2922
  msgstr ""
2923
 
2924
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:603
2925
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:667
2926
  msgid "Do not round"
2927
  msgstr ""
2928
 
2929
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:617
2930
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:688
2931
  msgid "After Import"
2932
  msgstr ""
2933
 
2934
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:620
2935
  msgid "Delete users CubePoints balance."
2936
  msgstr ""
2937
 
2938
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:691
2939
  msgid "Delete the old value."
2940
  msgstr ""
2941
 
2942
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:720
2943
  msgid "Failed to get file contents."
2944
  msgstr ""
2945
 
2946
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:725
2947
  msgid "Failed to put file contents."
2948
  msgstr ""
2949
 
2950
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:745
2951
  msgid ""
2952
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2953
  "database. Remember that the import can take time depending on your file size "
2954
  "or the number of users being imported."
2955
  msgstr ""
2956
 
2957
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:751
2958
  msgid "CSV Import"
2959
  msgstr ""
2960
 
2961
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:752
2962
  msgid ""
2963
  "Imports using a comma-separated values file requires the following columns:"
2964
  msgstr ""
2965
 
2966
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:753
2967
  msgid ""
2968
  "Column identifing the user. All rows must identify the user the same way, "
2969
  "either using an ID, Username (user_login) or email. Users that can not be "
2970
  "found will be ignored."
2971
  msgstr ""
2972
 
2973
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:754
2974
  msgid ""
2975
  "Column with the amount to be imported. If set, an exchange rate is applied "
2976
  "to this value before import."
2977
  msgstr ""
2978
 
2979
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:755
2980
  msgid ""
2981
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2982
  "the log entry for each import."
2983
  msgstr ""
2984
 
2985
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:759
2986
  msgid "Cubepoints"
2987
  msgstr ""
2988
 
2989
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:761
2990
  msgid "Cubepoints Import"
2991
  msgstr ""
2992
 
2993
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:762
2994
  msgid ""
2995
  "When this page loads, the importer will automatically check if you have been "
2996
  "using Cubepoints. If you have, you can import these with the option to "
@@ -2998,345 +2998,345 @@ msgid ""
2998
  "clean."
2999
  msgstr ""
3000
 
3001
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:763
3002
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:773
3003
  msgid ""
3004
  "Before a value is imported, you can apply an exchange rate. To import "
3005
  "without changing the value, use 1 as the exchange rate."
3006
  msgstr ""
3007
 
3008
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:764
3009
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:774
3010
  msgid ""
3011
  "You can select to add a log entry for each import or leave the template "
3012
  "empty to skip."
3013
  msgstr ""
3014
 
3015
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:765
3016
  msgid ""
3017
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
3018
  "installation exists."
3019
  msgstr ""
3020
 
3021
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:771
3022
  msgid "Custom User Meta Import"
3023
  msgstr ""
3024
 
3025
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:772
3026
  msgid ""
3027
  "You can import any type of points that have previously been saved in your "
3028
  "database. All you need is the meta key under which it has been saved."
3029
  msgstr ""
3030
 
3031
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/import/myCRED-addon-import.php:775
3032
  msgid ""
3033
  "Please note that the meta key is case sensitive and can not contain "
3034
  "whitespaces!"
3035
  msgstr ""
3036
 
3037
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:12
3038
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:167
3039
  msgid "Notifications"
3040
  msgstr ""
3041
 
3042
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:13
3043
  msgid "Notify your users when their balances changes."
3044
  msgstr ""
3045
 
3046
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:169
3047
  msgid "Styling"
3048
  msgstr ""
3049
 
3050
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:173
3051
  msgid "Use the included CSS Styling for notifications."
3052
  msgstr ""
3053
 
3054
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:180
3055
  msgid ""
3056
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
3057
  msgstr ""
3058
 
3059
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:183
3060
  msgid "Transient Lifespan"
3061
  msgstr ""
3062
 
3063
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:187
3064
  msgid ""
3065
  "The number of days a users notification is saved before being automatically "
3066
  "deleted."
3067
  msgstr ""
3068
 
3069
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:190
3070
  msgid "Duration"
3071
  msgstr ""
3072
 
3073
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/notifications/myCRED-addon-notifications.php:194
3074
  msgid ""
3075
  "The number of milliseconds a notice should be visible.<br />Use zero to "
3076
  "require that the user closes the notice manually. 1000 milliseconds = 1 "
3077
  "second."
3078
  msgstr ""
3079
 
3080
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:12
3081
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:166
3082
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:172
3083
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:178
3084
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:701
3085
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:893
3086
  msgid "Ranks"
3087
  msgstr ""
3088
 
3089
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:13
3090
  msgid ""
3091
  "Create ranks for users reaching a certain number of points with the option "
3092
  "to add logos for each rank."
3093
  msgstr ""
3094
 
3095
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:167
3096
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:396
3097
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:413
3098
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:509
3099
  msgid "Rank"
3100
  msgstr ""
3101
 
3102
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:169
3103
  msgid "Add New Rank"
3104
  msgstr ""
3105
 
3106
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:170
3107
  msgid "Edit Rank"
3108
  msgstr ""
3109
 
3110
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:171
3111
  msgid "New Rank"
3112
  msgstr ""
3113
 
3114
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:173
3115
  msgid "View Rank"
3116
  msgstr ""
3117
 
3118
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:174
3119
  msgid "Search Ranks"
3120
  msgstr ""
3121
 
3122
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:175
3123
  msgid "No ranks found"
3124
  msgstr ""
3125
 
3126
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:176
3127
  msgid "No ranks found in Trash"
3128
  msgstr ""
3129
 
3130
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:242
3131
  #, php-format
3132
  msgid "Completed - Total of %d users effected"
3133
  msgstr ""
3134
 
3135
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:244
3136
  msgid "Log is Empty"
3137
  msgstr ""
3138
 
3139
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:438
3140
  msgid "Newbie"
3141
  msgstr ""
3142
 
3143
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:469
3144
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:472
3145
  #, php-format
3146
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
3147
  msgstr ""
3148
 
3149
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:474
3150
  msgid "Rank Activated"
3151
  msgstr ""
3152
 
3153
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:475
3154
  msgid "Rank Saved"
3155
  msgstr ""
3156
 
3157
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:476
3158
  #, php-format
3159
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
3160
  msgstr ""
3161
 
3162
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:478
3163
  #, php-format
3164
  msgid "Rank scheduled for: <strong>%1$s</strong>."
3165
  msgstr ""
3166
 
3167
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:535
3168
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:590
3169
  msgid "Rank Title"
3170
  msgstr ""
3171
 
3172
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:536
3173
  msgid "Logo"
3174
  msgstr ""
3175
 
3176
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:537
3177
  msgid "Requirement"
3178
  msgstr ""
3179
 
3180
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:538
3181
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:365
3182
  msgid "Users"
3183
  msgstr ""
3184
 
3185
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:554
3186
  msgid "No Logo Set"
3187
  msgstr ""
3188
 
3189
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:563
3190
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:568
3191
  msgid "Any Value"
3192
  msgstr ""
3193
 
3194
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:570
3195
  msgid "Maximum %plural%"
3196
  msgstr ""
3197
 
3198
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:603
3199
  msgid "Rank Settings"
3200
  msgstr ""
3201
 
3202
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:625
3203
  msgid "Minimum %plural% to reach this rank"
3204
  msgstr ""
3205
 
3206
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:629
3207
  msgid "Maximum %plural% to be included in this rank"
3208
  msgstr ""
3209
 
3210
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:634
3211
  msgid "All Published Ranks"
3212
  msgstr ""
3213
 
3214
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:641
3215
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:643
3216
  msgid "Not Set"
3217
  msgstr ""
3218
 
3219
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:648
3220
  msgid "No Ranks found"
3221
  msgstr ""
3222
 
3223
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:703
3224
  msgid "Rank Features"
3225
  msgstr ""
3226
 
3227
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:707
3228
  msgid "%plural% requirement"
3229
  msgstr ""
3230
 
3231
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:708
3232
  msgid "Featured Image (Logo)"
3233
  msgstr ""
3234
 
3235
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:709
3236
  msgid "Content"
3237
  msgstr ""
3238
 
3239
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:710
3240
  msgid "Excerpt"
3241
  msgstr ""
3242
 
3243
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:711
3244
  msgid "Comments"
3245
  msgstr ""
3246
 
3247
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:712
3248
  msgid "Page Attributes"
3249
  msgstr ""
3250
 
3251
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:713
3252
  msgid "Custom Fields"
3253
  msgstr ""
3254
 
3255
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:716
3256
  msgid "Public"
3257
  msgstr ""
3258
 
3259
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:720
3260
  msgid ""
3261
  "If you want to create a template archive for each rank, you must select to "
3262
  "have ranks public. Defaults to disabled."
3263
  msgstr ""
3264
 
3265
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:723
3266
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:896
3267
  msgid "Rank Basis"
3268
  msgstr ""
3269
 
3270
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:726
3271
  msgid "Users are ranked according to their current balance."
3272
  msgstr ""
3273
 
3274
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:729
3275
  msgid ""
3276
  "Users are ranked according to the total amount of %_plural% they have "
3277
  "accumulated."
3278
  msgstr ""
3279
 
3280
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:733
3281
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:738
3282
  msgid "Calculate Totals"
3283
  msgstr ""
3284
 
3285
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:736
3286
  msgid ""
3287
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3288
  "the users current balance will be used as a starting point."
3289
  msgstr ""
3290
 
3291
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:736
3292
  msgid ""
3293
  "Once a users total has been calculated, they will be assigned to their "
3294
  "appropriate roles. For this reason, it is highly recommended that you first "
3295
  "setup your ranks!"
3296
  msgstr ""
3297
 
3298
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:737
3299
  msgid ""
3300
  "Depending on your log size and number of users this process may take a "
3301
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3302
  "until this is completed!"
3303
  msgstr ""
3304
 
3305
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:742
3306
  msgid "Archive URL"
3307
  msgstr ""
3308
 
3309
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:746
3310
  msgid "Ignored if Ranks are not public"
3311
  msgstr ""
3312
 
3313
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:749
3314
  msgid "Display Order"
3315
  msgstr ""
3316
 
3317
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:756
3318
  msgid "Ascending - Lowest rank to highest"
3319
  msgstr ""
3320
 
3321
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:757
3322
  msgid "Descending - Highest rank to lowest"
3323
  msgstr ""
3324
 
3325
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:766
3326
  msgid ""
3327
  "Select in what order ranks should be displayed in your admin area and/or "
3328
  "front if ranks are \"Public\""
3329
  msgstr ""
3330
 
3331
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:782
3332
  msgid "Rank in BuddyPress"
3333
  msgstr ""
3334
 
3335
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:850
3336
  msgid "Script Communication Error"
3337
  msgstr ""
3338
 
3339
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:895
3340
  msgid ""
3341
  "You can create ranks according to the amount of points a user has. By "
3342
  "default, ranks are only visible in widgets and shortcodes however it is "
@@ -3344,7 +3344,7 @@ msgid ""
3344
  "specific ones."
3345
  msgstr ""
3346
 
3347
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:897
3348
  msgid ""
3349
  "As of version 1.2, you can select to rank users according to their current "
3350
  "balance or the total amount of %_plural% they have accumulated. This is "
@@ -3352,29 +3352,29 @@ msgid ""
3352
  "%_plural% to pay for items in your store or event tickets."
3353
  msgstr ""
3354
 
3355
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:899
3356
  msgid ""
3357
  "Ranks are just another custom post type which means that you can, if you "
3358
  "select to make Ranks Public, create custom template files for ranks in your "
3359
  "theme folder."
3360
  msgstr ""
3361
 
3362
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:900
3363
  #, php-format
3364
  msgid ""
3365
  "For more information on Templates for Custom Post Types visit the <a href="
3366
  "\"%s\">WordPress Codex</a>."
3367
  msgstr ""
3368
 
3369
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:901
3370
  msgid "Changing URL Slug"
3371
  msgstr ""
3372
 
3373
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:902
3374
  msgid "You can change the URL slug used for ranks to any URL friendly value."
3375
  msgstr ""
3376
 
3377
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/myCRED-addon-ranks.php:903
3378
  msgid ""
3379
  "If you are using a custom permalink structure and you make ranks public or "
3380
  "change the slug, you will need to visit your permalink settings page and "
@@ -3382,1725 +3382,1727 @@ msgid ""
3382
  "a 404 error message when trying to view a rank archive page."
3383
  msgstr ""
3384
 
3385
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-functions.php:148
3386
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-functions.php:154
3387
  msgid "No Rank"
3388
  msgstr ""
3389
 
3390
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-shortcodes.php:57
3391
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-shortcodes.php:132
3392
  msgid "No users found with this rank"
3393
  msgstr ""
3394
 
3395
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-shortcodes.php:62
3396
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:223
3397
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:226
3398
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:285
3399
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:334
3400
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:338
3401
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:342
3402
  msgid "error"
3403
  msgstr ""
3404
 
3405
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/ranks/includes/mycred-rank-shortcodes.php:62
3406
  msgid "Rank ID is required!"
3407
  msgstr ""
3408
 
3409
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:12
3410
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:304
3411
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1061
3412
  msgid "Sell Content"
3413
  msgstr ""
3414
 
3415
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:13
3416
  msgid ""
3417
  "This add-on allows you to sell posts, pages or any public post types on your "
3418
  "website. You can either sell the entire content or using our shortcode, sell "
3419
  "parts of your content allowing you to offer \"teasers\"."
3420
  msgstr ""
3421
 
3422
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:42
3423
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3424
  msgstr ""
3425
 
3426
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:43
3427
  msgid ""
3428
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3429
  "</p>"
3430
  msgstr ""
3431
 
3432
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:44
3433
  msgid ""
3434
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3435
  "<p><strong>Price</strong>: %price%</p>"
3436
  msgstr ""
3437
 
3438
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:54
3439
  msgid "Purchase of %link_with_title%"
3440
  msgstr ""
3441
 
3442
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:55
3443
  msgid "Sale of %link_with_title%"
3444
  msgstr ""
3445
 
3446
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:72
3447
  msgid "Hours"
3448
  msgstr ""
3449
 
3450
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:214
3451
  msgid "You can not buy this content."
3452
  msgstr ""
3453
 
3454
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:277
3455
  msgid "Error. Try Again"
3456
  msgstr ""
3457
 
3458
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:299
3459
  msgid "No Payout. Just charge."
3460
  msgstr ""
3461
 
3462
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:300
3463
  msgid "Pay Content Author."
3464
  msgstr ""
3465
 
3466
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:306
3467
  msgid "Post Types"
3468
  msgstr ""
3469
 
3470
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:310
3471
  msgid "Comma separated list of post types that can be sold."
3472
  msgstr ""
3473
 
3474
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:327
3475
  msgid "Percentage to pay Author"
3476
  msgstr ""
3477
 
3478
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:329
3479
  msgid ""
3480
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3481
  "authors are not paid."
3482
  msgstr ""
3483
 
3484
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:337
3485
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1064
3486
  msgid "Defaults"
3487
  msgstr ""
3488
 
3489
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:345
3490
  msgid "Allow authors to change price."
3491
  msgstr ""
3492
 
3493
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:354
3494
  msgid "Allow authors to change button label."
3495
  msgstr ""
3496
 
3497
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:358
3498
  msgid "Purchases expire after"
3499
  msgstr ""
3500
 
3501
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:360
3502
  msgid "Use zero for permanent sales."
3503
  msgstr ""
3504
 
3505
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:363
3506
  msgid "Sale Template for non members"
3507
  msgstr ""
3508
 
3509
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:367
3510
  msgid ""
3511
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3512
  "be logged in to buy content!"
3513
  msgstr ""
3514
 
3515
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:368
3516
  msgid ""
3517
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3518
  "%link_with_title%, %price%"
3519
  msgstr ""
3520
 
3521
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:371
3522
  msgid "Sale Template for members"
3523
  msgstr ""
3524
 
3525
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:375
3526
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:383
3527
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3528
  msgstr ""
3529
 
3530
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:376
3531
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:384
3532
  msgid ""
3533
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3534
  "%link_with_title%, %buy_button%, %price%"
3535
  msgstr ""
3536
 
3537
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:379
3538
  msgid "Insufficient funds template"
3539
  msgstr ""
3540
 
3541
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:387
3542
  msgid "Log template for Purchases"
3543
  msgstr ""
3544
 
3545
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:391
3546
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:398
3547
  msgid ""
3548
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3549
  "or %link_with_title%"
3550
  msgstr ""
3551
 
3552
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:394
3553
  msgid "Log template for Sales"
3554
  msgstr ""
3555
 
3556
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:450
3557
  msgid "Sell This"
3558
  msgstr ""
3559
 
3560
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:499
3561
  msgid " Sell Content needs to be setup before you can use this feature."
3562
  msgstr ""
3563
 
3564
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:502
3565
  msgid "Setup add-on"
3566
  msgstr ""
3567
 
3568
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:502
3569
  msgid "Lets do it"
3570
  msgstr ""
3571
 
3572
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:531
3573
  msgid "Enable sale of this "
3574
  msgstr ""
3575
 
3576
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:545
3577
  msgid "Purchase expires after"
3578
  msgstr ""
3579
 
3580
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:794
3581
  msgid "Thank you for your purchase!"
3582
  msgstr ""
3583
 
3584
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:878
3585
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:961
3586
  msgid "The following content is set for sale:"
3587
  msgstr ""
3588
 
3589
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:979
3590
  msgid "No purchases found"
3591
  msgstr ""
3592
 
3593
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1016
3594
  msgid "Purchased"
3595
  msgstr ""
3596
 
3597
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1063
3598
  msgid ""
3599
  "This add-on lets you sell either entire contents or parts of it. You can "
3600
  "select if you want to just charge users or share a percentage of the sale "
3601
  "with the post author."
3602
  msgstr ""
3603
 
3604
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1065
3605
  msgid ""
3606
  "The default price and button label is applied to all content that is set for "
3607
  "sale. You can select if you want to enforce these settings or let the "
3608
  "content authors set their own."
3609
  msgstr ""
3610
 
3611
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/sell-content/myCRED-addon-sell-content.php:1067
3612
  msgid ""
3613
  "You can either sell entire posts via the Sell Content Meta Box or by using "
3614
  "the <code>mycred_sell_this</code> shortcode.<br />For more information on "
3615
  "how to use the shortcode, please visit the"
3616
  msgstr ""
3617
 
3618
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:12
3619
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:50
3620
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:492
3621
  msgid "Transfer"
3622
  msgstr ""
3623
 
3624
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:13
3625
  msgid ""
3626
  "Allow your users to send or \"donate\" points to other members by either "
3627
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3628
  msgstr ""
3629
 
3630
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:43
3631
  msgid "You do not have enough %plural% to send."
3632
  msgstr ""
3633
 
3634
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:44
3635
  msgid "You have exceeded your %limit% transfer limit."
3636
  msgstr ""
3637
 
3638
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:143
3639
  msgid "Transaction completed."
3640
  msgstr ""
3641
 
3642
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:144
3643
  msgid ""
3644
  "Security token could not be verified. Please contact your site administrator!"
3645
  msgstr ""
3646
 
3647
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:145
3648
  msgid "Communications error. Please try again later."
3649
  msgstr ""
3650
 
3651
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:146
3652
  msgid "Recipient not found. Please try again."
3653
  msgstr ""
3654
 
3655
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:147
3656
  msgid "Transaction declined by recipient."
3657
  msgstr ""
3658
 
3659
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:148
3660
  msgid "Incorrect amount. Please try again."
3661
  msgstr ""
3662
 
3663
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:149
3664
  msgid ""
3665
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3666
  "this has been done!"
3667
  msgstr ""
3668
 
3669
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:150
3670
  msgid "Insufficient funds. Please enter a lower amount."
3671
  msgstr ""
3672
 
3673
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:151
3674
  msgid "Transfer Limit exceeded."
3675
  msgstr ""
3676
 
3677
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:152
3678
  msgid ""
3679
  "The request amount will exceed your transfer limit. Please try again with a "
3680
  "lower amount!"
3681
  msgstr ""
3682
 
3683
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:177
3684
  msgid "No limits."
3685
  msgstr ""
3686
 
3687
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:178
3688
  msgid "Impose daily limit."
3689
  msgstr ""
3690
 
3691
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:179
3692
  msgid "Impose weekly limit."
3693
  msgstr ""
3694
 
3695
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:183
3696
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:591
3697
  msgid "Transfer %plural%"
3698
  msgstr ""
3699
 
3700
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:185
3701
  msgid "Log template for sending"
3702
  msgstr ""
3703
 
3704
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:192
3705
  msgid "Log template for receiving"
3706
  msgstr ""
3707
 
3708
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:199
3709
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:954
3710
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1200
3711
  msgid "Limits"
3712
  msgstr ""
3713
 
3714
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:216
3715
  msgid "Maximum Amount"
3716
  msgstr ""
3717
 
3718
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:218
3719
  msgid "This amount is ignored if no limits are imposed."
3720
  msgstr ""
3721
 
3722
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:221
3723
  msgid "Form Templates"
3724
  msgstr ""
3725
 
3726
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:224
3727
  msgid "Not logged in Template"
3728
  msgstr ""
3729
 
3730
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:226
3731
  msgid ""
3732
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3733
  "elements allowed!"
3734
  msgstr ""
3735
 
3736
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:230
3737
  msgid "Balance Template"
3738
  msgstr ""
3739
 
3740
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:232
3741
  msgid ""
3742
  "Template to use when displaying the users balance (if included). No HTML "
3743
  "elements allowed!"
3744
  msgstr ""
3745
 
3746
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:236
3747
  msgid "Limit Template"
3748
  msgstr ""
3749
 
3750
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:238
3751
  msgid ""
3752
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3753
  msgstr ""
3754
 
3755
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:242
3756
  msgid "Button Template"
3757
  msgstr ""
3758
 
3759
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:244
3760
  msgid "Send Transfer button template. No HTML elements allowed!"
3761
  msgstr ""
3762
 
3763
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:247
3764
  msgid "Error Messages"
3765
  msgstr ""
3766
 
3767
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:250
3768
  msgid "Balance to low to send."
3769
  msgstr ""
3770
 
3771
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:252
3772
  msgid ""
3773
  "Text to show when a users balance is to low for transfers. Leave empty to "
3774
  "hide. No HTML elements allowed!"
3775
  msgstr ""
3776
 
3777
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:256
3778
  msgid "Transfer Limit Reached."
3779
  msgstr ""
3780
 
3781
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:258
3782
  msgid ""
3783
  "Text to show when a user has reached their transfer limit (if used). Leave "
3784
  "empty to hide. No HTML elements allowed!"
3785
  msgstr ""
3786
 
3787
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:494
3788
  msgid ""
3789
  "This add-on lets your users transfer %_plural% to each other. Members who "
3790
  "are set to be excluded can neither send or receive %_plural%."
3791
  msgstr ""
3792
 
3793
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:495
3794
  msgid "Transfer Limit"
3795
  msgstr ""
3796
 
3797
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:496
3798
  msgid ""
3799
  "You can impose a daily-, weekly- or monthly transfer limit for each user. "
3800
  "Note, that this transfer limit is imposed on everyone who are not excluded "
3801
  "from using myCRED."
3802
  msgstr ""
3803
 
3804
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:498
3805
  msgid ""
3806
  "Transfers can be made by either using the <code>mycred_transfer</code> "
3807
  "shortcode or via the myCRED Transfer Widget.<br />For more information on "
3808
  "how to use the shortcode, please visit the"
3809
  msgstr ""
3810
 
3811
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:521
3812
  msgid "Allow transfers between users."
3813
  msgstr ""
3814
 
3815
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:523
3816
  #, php-format
3817
  msgid "%s Transfer"
3818
  msgstr ""
3819
 
3820
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:537
3821
  msgid "The myCRED Transfer add-on has not yet been setup!"
3822
  msgstr ""
3823
 
3824
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:602
3825
  msgid "Show users balance"
3826
  msgstr ""
3827
 
3828
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:606
3829
  msgid "Show users limit"
3830
  msgstr ""
3831
 
3832
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:729
3833
  msgid "To:"
3834
  msgstr ""
3835
 
3836
- #: /Users/gabriel/Repositories/mycred/tags/1.3/addons/transfer/myCRED-addon-transfer.php:733
3837
  msgid "Amount:"
3838
  msgstr ""
3839
 
3840
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:68
3841
  msgid "User is excluded"
3842
  msgstr ""
3843
 
3844
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:73
3845
  msgid "Log Entry can not be empty"
3846
  msgstr ""
3847
 
3848
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:77
3849
  msgid "Amount can not be zero"
3850
  msgstr ""
3851
 
3852
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:174
3853
  msgid "Excluded"
3854
  msgstr ""
3855
 
3856
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:181
3857
  msgid "History"
3858
  msgstr ""
3859
 
3860
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:183
3861
  msgid "Adjust"
3862
  msgstr ""
3863
 
3864
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:234
3865
  #, php-format
3866
  msgid "My current %singular% balance"
3867
  msgstr ""
3868
 
3869
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:257
3870
  msgid "Adjust Your Balance"
3871
  msgstr ""
3872
 
3873
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:259
3874
  msgid "Adjust Users Balance"
3875
  msgstr ""
3876
 
3877
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:266
3878
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:337
3879
  msgid "required"
3880
  msgstr ""
3881
 
3882
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:268
3883
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:339
3884
  msgid "optional"
3885
  msgstr ""
3886
 
3887
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:274
3888
  msgid "Log description for adjustment"
3889
  msgstr ""
3890
 
3891
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:275
3892
  msgid "Update"
3893
  msgstr ""
3894
 
3895
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:276
3896
  msgid "Description is required!"
3897
  msgstr ""
3898
 
3899
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:281
3900
  msgid "Users Current Balance"
3901
  msgstr ""
3902
 
3903
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:348
3904
  msgid "A positive or negative value"
3905
  msgstr ""
3906
 
3907
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-admin.php:350
3908
  msgid "Update Balance"
3909
  msgstr ""
3910
 
3911
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:65
3912
  msgid "Point"
3913
  msgstr ""
3914
 
3915
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:66
3916
  msgid "Points"
3917
  msgstr ""
3918
 
3919
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:388
3920
  msgid "Deleted"
3921
  msgstr ""
3922
 
3923
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:523
3924
  msgid "Deleted Item"
3925
  msgstr ""
3926
 
3927
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:1304
3928
  msgid "ref empty"
3929
  msgstr ""
3930
 
3931
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:1312
3932
  msgid "incorrect user id format"
3933
  msgstr ""
3934
 
3935
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:1325
3936
  msgid "incorrect unix timestamp (from):"
3937
  msgstr ""
3938
 
3939
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-functions.php:1334
3940
  msgid "incorrect unix timestamp (to):"
3941
  msgstr ""
3942
 
3943
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:38
3944
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
3945
  msgstr ""
3946
 
3947
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:43
3948
  msgid "myCRED requires PHP 5.2.0 or higher. Version detected: "
3949
  msgstr ""
3950
 
3951
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:48
3952
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3953
  msgstr ""
3954
 
3955
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:53
3956
  msgid ""
3957
  "Sorry but your WordPress installation does not reach the minimum "
3958
  "requirements for running myCRED. The following errors were given:"
3959
  msgstr ""
3960
 
3961
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:253
3962
  msgid "myCRED needs your attention."
3963
  msgstr ""
3964
 
3965
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:253
3966
  msgid "Run Setup"
3967
  msgstr ""
3968
 
3969
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:265
3970
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:266
3971
  msgid "myCRED Setup"
3972
  msgstr ""
3973
 
3974
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:410
3975
  msgid "Step"
3976
  msgstr ""
3977
 
3978
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:433
3979
  msgid ""
3980
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3981
  "points format, layout and security settings."
3982
  msgstr ""
3983
 
3984
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:434
3985
  msgid "Begin Setup"
3986
  msgstr ""
3987
 
3988
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:491
3989
  msgid "Select the format you want to use for your points."
3990
  msgstr ""
3991
 
3992
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:492
3993
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:200
3994
  msgid "Format"
3995
  msgstr ""
3996
 
3997
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:495
3998
  msgid "Separators"
3999
  msgstr ""
4000
 
4001
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:505
4002
  msgid "Decimals"
4003
  msgstr ""
4004
 
4005
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:507
4006
  msgid "Use zero for no decimals."
4007
  msgstr ""
4008
 
4009
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:510
4010
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:255
4011
  msgid "Presentation"
4012
  msgstr ""
4013
 
4014
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:513
4015
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:242
4016
  msgid "Name (Singular)"
4017
  msgstr ""
4018
 
4019
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:517
4020
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:247
4021
  msgid "Name (Plural)"
4022
  msgstr ""
4023
 
4024
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:523
4025
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:258
4026
  msgid "Prefix"
4027
  msgstr ""
4028
 
4029
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:531
4030
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:266
4031
  msgid "Suffix"
4032
  msgstr ""
4033
 
4034
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:536
4035
  msgid "Cancel Setup"
4036
  msgstr ""
4037
 
4038
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:536
4039
  msgid "Cancel"
4040
  msgstr ""
4041
 
4042
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:536
4043
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:616
4044
  msgid "Next"
4045
  msgstr ""
4046
 
4047
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:565
4048
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:274
4049
  msgid "Security"
4050
  msgstr ""
4051
 
4052
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:568
4053
  msgid "Edit Settings Capability"
4054
  msgstr ""
4055
 
4056
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:572
4057
  msgid "Edit Users %plural% Capability"
4058
  msgstr ""
4059
 
4060
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:580
4061
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:291
4062
  msgid "Exclude those who can \"Edit Settings\"."
4063
  msgstr ""
4064
 
4065
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:584
4066
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:295
4067
  msgid "Exclude those who can \"Edit Users %plural%\"."
4068
  msgstr ""
4069
 
4070
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:587
4071
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:299
4072
  msgid "Exclude the following user IDs:"
4073
  msgstr ""
4074
 
4075
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:591
4076
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:304
4077
  msgid "Rankings"
4078
  msgstr ""
4079
 
4080
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:595
4081
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:308
4082
  msgid "Update rankings each time a users balance changes."
4083
  msgstr ""
4084
 
4085
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:599
4086
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:312
4087
  msgid "Update rankings once a day."
4088
  msgstr ""
4089
 
4090
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:603
4091
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:316
4092
  msgid "Update rankings once a week."
4093
  msgstr ""
4094
 
4095
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:607
4096
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:320
4097
  msgid "Update rankings on a specific date."
4098
  msgstr ""
4099
 
4100
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:611
4101
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:244
4102
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:324
4103
  msgid "Date"
4104
  msgstr ""
4105
 
4106
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:635
4107
  msgid "Ready"
4108
  msgstr ""
4109
 
4110
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:636
4111
  msgid "Almost done! Click the button below to finish this setup."
4112
  msgstr ""
4113
 
4114
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-install.php:637
4115
  msgid "Install & Run"
4116
  msgstr ""
4117
 
4118
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:246
4119
  msgid "Entry"
4120
  msgstr ""
4121
 
4122
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:346
4123
  msgid "User Missing"
4124
  msgstr ""
4125
 
4126
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:385
4127
  msgid "No log entries found"
4128
  msgstr ""
4129
 
4130
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:400
4131
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:402
4132
  msgid "Search Log"
4133
  msgstr ""
4134
 
4135
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-log.php:401
4136
  msgid "search log entries"
4137
  msgstr ""
4138
 
4139
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:60
4140
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:61
4141
  msgid "Network Settings"
4142
  msgstr ""
4143
 
4144
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:158
4145
  msgid "Network"
4146
  msgstr ""
4147
 
4148
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:164
4149
  #, php-format
4150
  msgid "Note! %s has not yet been setup."
4151
  msgstr ""
4152
 
4153
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:168
4154
  msgid "Network Settings Updated"
4155
  msgstr ""
4156
 
4157
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:170
4158
  #, php-format
4159
  msgid "Configure network settings for %s."
4160
  msgstr ""
4161
 
4162
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:177
4163
  msgid "Master Template"
4164
  msgstr ""
4165
 
4166
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:181
4167
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:195
4168
  msgid "Yes"
4169
  msgstr ""
4170
 
4171
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:185
4172
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:199
4173
  msgid "No"
4174
  msgstr ""
4175
 
4176
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:188
4177
  #, php-format
4178
  msgid ""
4179
  "If enabled, %s will use your main site's settings for all other sites in "
4180
  "your network."
4181
  msgstr ""
4182
 
4183
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:191
4184
  msgid "Central Logging"
4185
  msgstr ""
4186
 
4187
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:202
4188
  #, php-format
4189
  msgid "If enabled, %s will log all site actions in your main site's log."
4190
  msgstr ""
4191
 
4192
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:205
4193
  msgid "Site Block"
4194
  msgstr ""
4195
 
4196
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:209
4197
  #, php-format
4198
  msgid "Comma separated list of blog ids where %s is to be disabled."
4199
  msgstr ""
4200
 
4201
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-network.php:218
4202
  msgid "Save Network Settings"
4203
  msgstr ""
4204
 
4205
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:523
4206
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4207
  msgstr ""
4208
 
4209
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:526
4210
  msgid "Click Update Settings to load the Remote API settings."
4211
  msgstr ""
4212
 
4213
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:528
4214
  msgid "Allow Remote Access"
4215
  msgstr ""
4216
 
4217
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:549
4218
  msgid "Remote Access"
4219
  msgstr ""
4220
 
4221
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:551
4222
  msgid "API Key"
4223
  msgstr ""
4224
 
4225
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:554
4226
  msgid "Key"
4227
  msgstr ""
4228
 
4229
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:555
4230
  msgid "min. 12 characters"
4231
  msgstr ""
4232
 
4233
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:556
4234
  msgid "Required for this feature to work!<br />Minimum 12 characters."
4235
  msgstr ""
4236
 
4237
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:559
4238
  msgid "Key Length"
4239
  msgstr ""
4240
 
4241
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:564
4242
  msgid "Generate New Key"
4243
  msgstr ""
4244
 
4245
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:566
4246
  msgid "Warning!"
4247
  msgstr ""
4248
 
4249
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:566
4250
  msgid ""
4251
  "Keep this key safe! Those you share this key with will be able to remotely "
4252
  "deduct / add / transfer %plural%!"
4253
  msgstr ""
4254
 
4255
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:568
4256
  msgid "Incoming URI"
4257
  msgstr ""
4258
 
4259
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:572
4260
  msgid ""
4261
  "The incoming call address. Remote calls made to any other URL will be "
4262
  "ignored."
4263
  msgstr ""
4264
 
4265
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:575
4266
  msgid "Debug Mode"
4267
  msgstr ""
4268
 
4269
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-remote.php:578
4270
  msgid ""
4271
  "Remember to disable when not used to prevent mischievous calls from learning "
4272
  "about your setup!"
4273
  msgstr ""
4274
 
4275
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:146
4276
  msgid "Leaderboard is empty."
4277
  msgstr ""
4278
 
4279
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:223
4280
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:334
4281
  msgid "Amount missing!"
4282
  msgstr ""
4283
 
4284
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:226
4285
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:342
4286
  msgid "Log Template Missing!"
4287
  msgstr ""
4288
 
4289
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:285
4290
  msgid "Anchor missing URL!"
4291
  msgstr ""
4292
 
4293
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:338
4294
  msgid "User ID missing for recipient."
4295
  msgstr ""
4296
 
4297
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:392
4298
  msgid "Sent"
4299
  msgstr ""
4300
 
4301
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:393
4302
  msgid "Error - Try Again"
4303
  msgstr ""
4304
 
4305
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-shortcodes.php:488
4306
  msgid "A video ID is required for this shortcode"
4307
  msgstr ""
4308
 
4309
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:19
4310
  #, php-format
4311
  msgid "Show the current users %s balance"
4312
  msgstr ""
4313
 
4314
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:21
4315
  #, php-format
4316
  msgid "%s Balance"
4317
  msgstr ""
4318
 
4319
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:156
4320
  msgid "My Balance"
4321
  msgstr ""
4322
 
4323
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:167
4324
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4325
  msgstr ""
4326
 
4327
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:191
4328
  msgid "Layout"
4329
  msgstr ""
4330
 
4331
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:193
4332
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:216
4333
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:226
4334
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:374
4335
  msgid "See the help tab for available template tags."
4336
  msgstr ""
4337
 
4338
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:198
4339
  msgid "Include users ranking"
4340
  msgstr ""
4341
 
4342
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:202
4343
  msgid ""
4344
  "This will be appended after the balance. See the help tab for available "
4345
  "template tags."
4346
  msgstr ""
4347
 
4348
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:208
4349
  msgid "Include history"
4350
  msgstr ""
4351
 
4352
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:210
4353
  msgid "History Title"
4354
  msgstr ""
4355
 
4356
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:212
4357
  msgid "Number of entires"
4358
  msgstr ""
4359
 
4360
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:214
4361
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:372
4362
  msgid "Row layout"
4363
  msgstr ""
4364
 
4365
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:222
4366
  msgid "Show message when not logged in"
4367
  msgstr ""
4368
 
4369
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:224
4370
  msgid "Message"
4371
  msgstr ""
4372
 
4373
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:297
4374
  #, php-format
4375
  msgid "Show a list of users sorted by their %s balance"
4376
  msgstr ""
4377
 
4378
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:299
4379
  #, php-format
4380
  msgid "%s List"
4381
  msgstr ""
4382
 
4383
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:352
4384
  msgid "Leaderboard"
4385
  msgstr ""
4386
 
4387
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:365
4388
  msgid "Visible to non-members"
4389
  msgstr ""
4390
 
4391
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:368
4392
  msgid "Number of users"
4393
  msgstr ""
4394
 
4395
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:377
4396
  msgid "Offset"
4397
  msgstr ""
4398
 
4399
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:379
4400
  msgid "Optional offset of order. Use zero to return the first in the list."
4401
  msgstr ""
4402
 
4403
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:382
4404
  msgid "Order"
4405
  msgstr ""
4406
 
4407
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:386
4408
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:195
4409
  msgid "Ascending"
4410
  msgstr ""
4411
 
4412
- #: /Users/gabriel/Repositories/mycred/tags/1.3/includes/mycred-widgets.php:387
4413
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:195
4414
  msgid "Descending"
4415
  msgstr ""
4416
 
4417
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:23
4418
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:24
4419
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:25
4420
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:260
4421
  msgid "Add-ons"
4422
  msgstr ""
4423
 
4424
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:265
4425
  msgid "Add-on Activated"
4426
  msgstr ""
4427
 
4428
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:267
4429
  msgid "Add-on Deactivated"
4430
  msgstr ""
4431
 
4432
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:270
4433
  msgid "Add-ons can expand your current installation with further features."
4434
  msgstr ""
4435
 
4436
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:289
4437
  #, php-format
4438
  msgid "You can find more add-ons in our %s."
4439
  msgstr ""
4440
 
4441
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:289
4442
  msgid "online store"
4443
  msgstr ""
4444
 
4445
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:309
4446
  msgid "Deactivate Add-on"
4447
  msgstr ""
4448
 
4449
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:310
4450
  msgid "Deactivate"
4451
  msgstr ""
4452
 
4453
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:315
4454
  msgid "Activate Add-on"
4455
  msgstr ""
4456
 
4457
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:316
4458
  msgid "Activate"
4459
  msgstr ""
4460
 
4461
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:333
4462
  msgid "Version"
4463
  msgstr ""
4464
 
4465
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:336
4466
  msgid "By"
4467
  msgstr ""
4468
 
4469
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-addons.php:339
4470
  msgid "Documentation"
4471
  msgstr ""
4472
 
4473
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:56
4474
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:76
4475
  msgid "Access denied for this action"
4476
  msgstr ""
4477
 
4478
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:93
4479
  msgid "Accounts successfully reset"
4480
  msgstr ""
4481
 
4482
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:124
4483
  msgid "No users found to export"
4484
  msgstr ""
4485
 
4486
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:231
4487
  msgid "Adjust your core or add-on settings. Follow us on:"
4488
  msgstr ""
4489
 
4490
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:231
4491
  msgid "Facebook"
4492
  msgstr ""
4493
 
4494
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:231
4495
  msgid "Google Plus"
4496
  msgstr ""
4497
 
4498
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:237
4499
  msgid "Core Settings"
4500
  msgstr ""
4501
 
4502
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:239
4503
  msgid "Name"
4504
  msgstr ""
4505
 
4506
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:244
4507
  msgid "Accessible though the %singular% template tag."
4508
  msgstr ""
4509
 
4510
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:249
4511
  msgid "Accessible though the %plural% template tag."
4512
  msgstr ""
4513
 
4514
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:252
4515
  msgid "Tip"
4516
  msgstr ""
4517
 
4518
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:252
4519
  msgid ""
4520
  "Adding an underscore at the beginning of template tag for names will return "
4521
  "them in lowercase. i.e. %_singular%"
4522
  msgstr ""
4523
 
4524
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:270
4525
  msgid "Separator"
4526
  msgstr ""
4527
 
4528
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:277
4529
  msgid "Edit Settings"
4530
  msgstr ""
4531
 
4532
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:279
4533
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:284
4534
  msgid "Capability to check for."
4535
  msgstr ""
4536
 
4537
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:282
4538
  msgid "Edit Users %plural%"
4539
  msgstr ""
4540
 
4541
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:301
4542
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4543
  msgstr ""
4544
 
4545
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:341
4546
  msgid "Management"
4547
  msgstr ""
4548
 
4549
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:343
4550
  msgid "The Log"
4551
  msgstr ""
4552
 
4553
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:346
4554
  msgid "Table Name"
4555
  msgstr ""
4556
 
4557
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:350
4558
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:92
4559
  msgid "Entries"
4560
  msgstr ""
4561
 
4562
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:354
4563
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:369
4564
  msgid "Actions"
4565
  msgstr ""
4566
 
4567
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:355
4568
  msgid "Empty Log"
4569
  msgstr ""
4570
 
4571
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:361
4572
  msgid "User Meta Key"
4573
  msgstr ""
4574
 
4575
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:370
4576
  msgid "Set all to zero"
4577
  msgstr ""
4578
 
4579
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:370
4580
  msgid "CSV Export"
4581
  msgstr ""
4582
 
4583
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:388
4584
  msgid "Identify users by"
4585
  msgstr ""
4586
 
4587
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:393
4588
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:188
4589
  msgid "User ID"
4590
  msgstr ""
4591
 
4592
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:394
4593
  msgid "User Email"
4594
  msgstr ""
4595
 
4596
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:395
4597
  msgid "User Login"
4598
  msgstr ""
4599
 
4600
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:402
4601
  msgid ""
4602
  "Use ID if you intend to use this export as a backup of your current site "
4603
  "while Email is recommended if you want to export to a different site."
4604
  msgstr ""
4605
 
4606
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:405
4607
  msgid "Import Log Entry"
4608
  msgstr ""
4609
 
4610
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:407
4611
  #, php-format
4612
  msgid ""
4613
  "Optional log entry to use if you intend to import this file in a different "
4614
  "%s installation."
4615
  msgstr ""
4616
 
4617
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-general.php:410
4618
  msgid "Export"
4619
  msgstr ""
4620
 
4621
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:23
4622
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:24
4623
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:25
4624
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:156
4625
  msgid "Hooks"
4626
  msgstr ""
4627
 
4628
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:85
4629
  msgid "%plural% for registrations"
4630
  msgstr ""
4631
 
4632
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:86
4633
  msgid "Award %_plural% for users joining your website."
4634
  msgstr ""
4635
 
4636
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:92
4637
  msgid "%plural% for logins"
4638
  msgstr ""
4639
 
4640
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:93
4641
  msgid ""
4642
  "Award %_plural% for logging in to your website. You can also set an optional "
4643
  "limit."
4644
  msgstr ""
4645
 
4646
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:99
4647
  msgid "%plural% for publishing content"
4648
  msgstr ""
4649
 
4650
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:100
4651
  msgid ""
4652
  "Award %_plural% for publishing content on your website. If your custom post "
4653
  "type is not shown bellow, make sure it is set to \"Public\"."
4654
  msgstr ""
4655
 
4656
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:106
4657
  msgid "%plural% for comments"
4658
  msgstr ""
4659
 
4660
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:107
4661
  msgid "Award %_plural% for making comments."
4662
  msgstr ""
4663
 
4664
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:113
4665
  msgid "%plural% for clicking on links"
4666
  msgstr ""
4667
 
4668
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:114
4669
  msgid ""
4670
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4671
  "shortcode."
4672
  msgstr ""
4673
 
4674
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:120
4675
  msgid "%plural% for viewing Videos"
4676
  msgstr ""
4677
 
4678
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:121
4679
  msgid ""
4680
  "Award %_plural% to users who watches videos embedded using the "
4681
  "[mycred_video] shortcode."
4682
  msgstr ""
4683
 
4684
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:160
4685
  msgid ""
4686
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4687
  "depending on their actions around your website."
4688
  msgstr ""
4689
 
4690
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:447
4691
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:147
4692
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:168
4693
  msgid "Limit"
4694
  msgstr ""
4695
 
4696
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:540
4697
  msgid "%plural% for Posts"
4698
  msgstr ""
4699
 
4700
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:550
4701
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:563
4702
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:598
4703
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:268
4704
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:278
4705
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:416
4706
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:429
4707
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:442
4708
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:460
4709
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:473
4710
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:492
4711
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-contact-form7.php:138
4712
  msgid "Available template tags: General, Post"
4713
  msgstr ""
4714
 
4715
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:553
4716
  msgid "%plural% for Pages"
4717
  msgstr ""
4718
 
4719
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:588
4720
  msgid "%plural% for %s"
4721
  msgstr ""
4722
 
4723
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:903
4724
  msgid "Approved Comment"
4725
  msgstr ""
4726
 
4727
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:906
4728
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:923
4729
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:940
4730
  msgid "Comment Author"
4731
  msgstr ""
4732
 
4733
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:910
4734
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:927
4735
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:944
4736
  msgid "Content Author"
4737
  msgstr ""
4738
 
4739
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:917
4740
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:934
4741
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:951
4742
  msgid "Available template tags: General, Comment"
4743
  msgstr ""
4744
 
4745
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:920
4746
  msgid "Comment Marked SPAM"
4747
  msgstr ""
4748
 
4749
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:937
4750
  msgid "Trashed / Unapproved Comments"
4751
  msgstr ""
4752
 
4753
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:957
4754
  msgid "Limit per post"
4755
  msgstr ""
4756
 
4757
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:959
4758
  msgid ""
4759
- "The number of comments per post that grants %_plural%. Use zero for "
4760
- "unlimited."
4761
  msgstr ""
4762
 
4763
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:963
4764
  msgid "Limit per day"
4765
  msgstr ""
4766
 
4767
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:965
4768
  msgid ""
4769
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4770
  msgstr ""
4771
 
4772
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:970
4773
  msgid ""
4774
  "%plural% is to be awarded even when comment authors reply to their own "
4775
  "comment."
4776
  msgstr ""
4777
 
4778
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1037
4779
  msgid "Once for each unique URL"
4780
  msgstr ""
4781
 
4782
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1038
4783
  msgid "Once for each unique link id"
4784
  msgstr ""
4785
 
4786
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1190
4787
  msgid ""
4788
  "The default amount to award for clicking on links. You can override this in "
4789
  "the shortcode."
4790
  msgstr ""
4791
 
4792
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1197
4793
  msgid ""
4794
  "Available template tags: General and custom tags: %url%, %title% or %id%."
4795
  msgstr ""
4796
 
4797
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1208
4798
- msgid "Remember!"
4799
  msgstr ""
4800
 
4801
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1208
4802
  msgid ""
4803
- "If you select to limit by id and you do not include the id attribute in the "
4804
- "shortcode, no %_plural% will be awarded!"
 
 
4805
  msgstr ""
4806
 
4807
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1460
4808
  msgid "Amount to award for viewing videos."
4809
  msgstr ""
4810
 
4811
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1470
4812
  msgid "Award Logic"
4813
  msgstr ""
4814
 
4815
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1472
4816
  msgid "Select when %_plural% should be awarded or deducted."
4817
  msgstr ""
4818
 
4819
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1473
4820
  msgid "Play - As soon as video starts playing."
4821
  msgstr ""
4822
 
4823
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1474
4824
  msgid "Full - First when the entire video has played."
4825
  msgstr ""
4826
 
4827
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1475
4828
  msgid "Interval - For each x number of seconds watched."
4829
  msgstr ""
4830
 
4831
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1480
4832
  msgid "Number of seconds"
4833
  msgstr ""
4834
 
4835
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1487
4836
  msgid "Leniency"
4837
  msgstr ""
4838
 
4839
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1489
4840
  msgid ""
4841
  "The maximum percentage a users view of a movie can differ from the actual "
4842
  "length."
4843
  msgstr ""
4844
 
4845
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-hooks.php:1492
4846
  msgid ""
4847
  "Do not set this value to zero! A lot of thing can happen while a user "
4848
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4849
  "buffering or play back errors."
4850
  msgstr ""
4851
 
4852
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:24
4853
  msgid "Activity Log"
4854
  msgstr ""
4855
 
4856
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:175
4857
  msgid "Show all references"
4858
  msgstr ""
4859
 
4860
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:194
4861
  msgid "Show in order"
4862
  msgstr ""
4863
 
4864
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:207
4865
  msgid "Filter"
4866
  msgstr ""
4867
 
4868
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:233
4869
  #, php-format
4870
  msgid "Showing %d %s"
4871
  msgstr ""
4872
 
4873
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:233
4874
  msgid "entry"
4875
  msgstr ""
4876
 
4877
- #: /Users/gabriel/Repositories/mycred/tags/1.3/modules/mycred-module-log.php:252
4878
  msgid "Search results for"
4879
  msgstr ""
4880
 
4881
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:16
4882
  msgid "BadgeOS"
4883
  msgstr ""
4884
 
4885
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:17
4886
  msgid ""
4887
  "Default settings for each BadgeOS Achievement type. These settings may be "
4888
  "overridden for individual achievement type."
4889
  msgstr ""
4890
 
4891
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:93
4892
  #, php-format
4893
  msgid ""
4894
  "Please setup your <a href=\"%s\">default settings</a> before using this "
4895
  "feature."
4896
  msgstr ""
4897
 
4898
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:104
4899
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:106
4900
  msgid "%plural% to Award"
4901
  msgstr ""
4902
 
4903
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:108
4904
  msgid "Use zero to disable"
4905
  msgstr ""
4906
 
4907
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:119
4908
  msgid "Deduction Log Template"
4909
  msgstr ""
4910
 
4911
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:255
4912
  #, php-format
4913
  msgid "Default %s for %s"
4914
  msgstr ""
4915
 
4916
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:262
4917
  msgid "Use zero to disable users gaining %_plural%"
4918
  msgstr ""
4919
 
4920
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:266
4921
  msgid "Default Log template"
4922
  msgstr ""
4923
 
4924
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-badgeOS.php:272
4925
  msgid "Deduct %_plural% if user looses "
4926
  msgstr ""
4927
 
4928
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:16
4929
  msgid "bbPress"
4930
  msgstr ""
4931
 
4932
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:17
4933
  msgid "Awards %_plural% for bbPress actions."
4934
  msgstr ""
4935
 
4936
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:407
4937
  msgid "%plural% for New Forum"
4938
  msgstr ""
4939
 
4940
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:420
4941
  msgid "%plural% for Forum Deletion"
4942
  msgstr ""
4943
 
4944
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:433
4945
  msgid "%plural% for New Topic"
4946
  msgstr ""
4947
 
4948
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:447
4949
  msgid "Forum authors can receive %_plural% for creating new topics."
4950
  msgstr ""
4951
 
4952
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:451
4953
  msgid "%plural% for Topic Deletion"
4954
  msgstr ""
4955
 
4956
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:464
4957
  msgid "%plural% for Favorited Topic"
4958
  msgstr ""
4959
 
4960
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:479
4961
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:503
4962
  msgid "Use zero for unlimited"
4963
  msgstr ""
4964
 
4965
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:483
4966
  msgid "%plural% for New Reply"
4967
  msgstr ""
4968
 
4969
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:497
4970
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4971
  msgstr ""
4972
 
4973
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-bbPress.php:507
4974
  msgid "Show users %_plural% balance in replies"
4975
  msgstr ""
4976
 
4977
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-contact-form7.php:16
4978
  msgid "Contact Form 7 Form Submissions"
4979
  msgstr ""
4980
 
4981
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-contact-form7.php:17
4982
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4983
  msgstr ""
4984
 
4985
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-contact-form7.php:108
4986
  msgid "No forms found."
4987
  msgstr ""
4988
 
4989
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:16
4990
  msgid "Events Manager"
4991
  msgstr ""
4992
 
4993
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:17
4994
  msgid "Awards %_plural% for users attending events."
4995
  msgstr ""
4996
 
4997
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:140
4998
  msgid "Attending Event"
4999
  msgstr ""
5000
 
5001
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:150
5002
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:163
5003
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:134
5004
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:147
5005
  msgid "Available template tags: General and Post Related"
5006
  msgstr ""
5007
 
5008
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-events-manager-light.php:153
5009
  msgid "Cancelling Attendance"
5010
  msgstr ""
5011
 
5012
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:16
5013
  msgid "GD Star Rating"
5014
  msgstr ""
5015
 
5016
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:17
5017
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5018
  msgstr ""
5019
 
5020
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:99
5021
  msgid "Rating"
5022
  msgstr ""
5023
 
5024
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-gd-star-rating.php:112
5025
  msgid "Up / Down Vote"
5026
  msgstr ""
5027
 
5028
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:16
5029
  msgid "Invite Anyone Plugin"
5030
  msgstr ""
5031
 
5032
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:17
5033
  msgid ""
5034
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5035
  "accepted."
5036
  msgstr ""
5037
 
5038
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:135
5039
  msgid "%plural% for Sending An Invite"
5040
  msgstr ""
5041
 
5042
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:151
5043
  msgid ""
5044
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5045
  msgstr ""
5046
 
5047
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:155
5048
  msgid "%plural% for Accepting An Invite"
5049
  msgstr ""
5050
 
5051
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:159
5052
  msgid "%plural% for each invited user that accepts an invitation."
5053
  msgstr ""
5054
 
5055
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-invite-anyone.php:172
5056
  msgid ""
5057
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5058
  "unlimited."
5059
  msgstr ""
5060
 
5061
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:16
5062
  msgid "Jetpack Subscriptions"
5063
  msgstr ""
5064
 
5065
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:17
5066
  msgid ""
5067
  "Awards %_plural% for users signing up for site or comment updates using "
5068
  "Jetpack."
5069
  msgstr ""
5070
 
5071
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:490
5072
  msgid "Site Subscriptions"
5073
  msgstr ""
5074
 
5075
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-jetpack.php:503
5076
  msgid "Comment Subscriptions"
5077
  msgstr ""
5078
 
5079
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:16
5080
  msgid "WP Favorite Posts"
5081
  msgstr ""
5082
 
5083
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:17
5084
  msgid "Awards %_plural% for users adding posts to their favorites."
5085
  msgstr ""
5086
 
5087
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:124
5088
  msgid "Adding Content to Favorites"
5089
  msgstr ""
5090
 
5091
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-favorite-posts.php:137
5092
  msgid "Removing Content from Favorites"
5093
  msgstr ""
5094
 
5095
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-polls.php:16
5096
  msgid "WP-Polls"
5097
  msgstr ""
5098
 
5099
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-polls.php:17
5100
  msgid "Awards %_plural% for users voting in polls."
5101
  msgstr ""
5102
 
5103
- #: /Users/gabriel/Repositories/mycred/tags/1.3/plugins/mycred-hook-wp-polls.php:136
5104
  msgid ""
5105
  "Available template tags: General. You can also use %poll_id% and "
5106
  "%poll_question%."
4
  msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
+ "POT-Creation-Date: 2013-10-26 16:48+0100\n"
8
+ "PO-Revision-Date: 2013-10-26 16:48+0100\n"
9
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
10
  "Language-Team: LANGUAGE <support@mycred.me>\n"
11
  "MIME-Version: 1.0\n"
14
  "X-Generator: Poedit 1.5.7\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-KeywordsList: _n;_e;__\n"
17
+ "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3.1\n"
18
  "X-Poedit-SearchPath-1: .\n"
19
 
20
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:320
21
+ msgid "My Balance: %cred_f%"
22
  msgstr ""
23
 
24
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:421
25
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:444
26
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:837
27
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:276
28
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:136
29
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:406
30
  msgid "Processing..."
31
  msgstr ""
32
 
33
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:422
34
  msgid ""
35
  "Warning! All entries in your log will be permamenly removed! This can not be "
36
  "undone!"
37
  msgstr ""
38
 
39
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:423
40
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
41
  msgstr ""
42
 
43
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:424
44
  msgid "Done!"
45
  msgstr ""
46
 
47
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:425
48
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:443
49
  msgid "Close"
50
  msgstr ""
51
 
52
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:426
53
  msgid "Export users %plural%"
54
  msgstr ""
55
 
56
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:442
57
  #, php-format
58
  msgid "Edit Users %s balance"
59
  msgstr ""
60
 
61
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:500
62
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:624
63
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:444
64
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:509
65
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:408
66
  msgid "Setup"
67
  msgstr ""
68
 
69
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:504
70
  msgid "Tutorials"
71
  msgstr ""
72
 
73
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:505
74
  msgid "Codex"
75
  msgstr ""
76
 
77
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/mycred.php:506
78
  msgid "Store"
79
  msgstr ""
80
 
81
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:57
82
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
83
  msgstr ""
84
 
85
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:66
86
  msgid "This Hook has no settings"
87
  msgstr ""
88
 
89
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:133
90
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1051
91
  msgid "No limit"
92
  msgstr ""
93
 
94
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:134
95
  msgid "Once every 24 hours"
96
  msgstr ""
97
 
98
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:135
99
  msgid "Once every 12 hours"
100
  msgstr ""
101
 
102
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:136
103
  msgid "Once every 7 days"
104
  msgstr ""
105
 
106
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:137
107
  msgid "Once per day (reset at midnight)"
108
  msgstr ""
109
 
110
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-hook.php:144
111
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:342
112
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:262
113
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:283
114
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514
115
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
116
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:514
117
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:382
118
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:186
119
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:773
120
  msgid "Select"
121
  msgstr ""
122
 
123
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-module.php:42
124
  msgid "myCRED_Module() Error. A Module ID is required!"
125
  msgstr ""
126
 
127
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-module.php:313
128
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-module.php:321
129
  msgid "Surprise"
130
  msgstr ""
131
 
132
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-module.php:378
133
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:154
134
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:180
135
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:103
136
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:202
137
  msgid "click to close"
138
  msgstr ""
139
 
140
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/abstracts/mycred-abstract-module.php:379
141
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:155
142
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:181
143
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:104
144
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:203
145
  msgid "click to open"
146
  msgstr ""
147
 
148
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:12
149
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:49
150
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:50
151
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:51
152
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:179
153
  msgid "Banking"
154
  msgstr ""
155
 
156
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:13
157
  msgid ""
158
  "This add-on allows you to offer interest on your users points balances or "
159
  "setup recurring payouts."
160
  msgstr ""
161
 
162
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:110
163
  msgid "Compound Interest"
164
  msgstr ""
165
 
166
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:111
167
  msgid ""
168
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
169
  "annual and is compounded daily as long as this service is enabled. Positive "
171
  "rate will to users loosing %_plural%."
172
  msgstr ""
173
 
174
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:117
175
  msgid "Recurring Payouts"
176
  msgstr ""
177
 
178
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:118
179
  msgid ""
180
  "Give your users %_plural% on a regular basis with the option to set the "
181
  "number of times you want this payout to run (cycles)."
182
  msgstr ""
183
 
184
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:167
185
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:458
186
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:149
187
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:253
188
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:215
189
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:149
190
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:266
191
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:346
192
  msgid "Access Denied"
193
  msgstr ""
194
 
195
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:174
196
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:341
197
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:228
198
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:158
199
  msgid "Settings Updated"
200
  msgstr ""
201
 
202
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:180
203
  msgid ""
204
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
205
  "purchases or payments using the Gateway add-on, along with offering interest "
206
  "on %_plural% balances."
207
  msgstr ""
208
 
209
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:183
210
  msgid "WP-Cron deactivation detected!"
211
  msgstr ""
212
 
213
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:184
214
  msgid "Warning! This add-on requires WP - Cron to work."
215
  msgstr ""
216
 
217
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:197
218
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:370
219
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:172
220
  msgid "Enable"
221
  msgstr ""
222
 
223
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/myCRED-addon-banking.php:210
224
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:185
225
  msgid "Update Changes"
226
  msgstr ""
227
 
228
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:57
229
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
230
  msgstr ""
231
 
232
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:66
233
  msgid "This Service has no settings"
234
  msgstr ""
235
 
236
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:143
237
  msgid "Hourly"
238
  msgstr ""
239
 
240
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:147
241
  msgid "Daily"
242
  msgstr ""
243
 
244
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:151
245
  msgid "Weekly"
246
  msgstr ""
247
 
248
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:155
249
  msgid "Monthly"
250
  msgstr ""
251
 
252
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:159
253
  msgid "Quarterly"
254
  msgstr ""
255
 
256
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:163
257
  msgid "Semiannually"
258
  msgstr ""
259
 
260
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/abstracts/mycred-abstract-service.php:167
261
  msgid "Annually"
262
  msgstr ""
263
 
264
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:25
265
  msgid "%plural% interest rate payment"
266
  msgstr ""
267
 
268
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:275
269
  msgid "Interest Rate"
270
  msgstr ""
271
 
272
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:282
273
  msgid "Payed / Charged"
274
  msgstr ""
275
 
276
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:288
277
  msgid ""
278
  "The interest rate can be either positive or negative and is compounded daily."
279
  msgstr ""
280
 
281
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:291
282
  msgid "Minimum Balance"
283
  msgstr ""
284
 
285
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:295
286
  msgid "The minimum requires balance for interest to apply."
287
  msgstr ""
288
 
289
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:298
290
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:251
291
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:240
292
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:295
293
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:371
294
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:404
295
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:87
296
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:135
297
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:337
298
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:440
299
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1220
300
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1490
301
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:110
302
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:112
303
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:121
304
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:146
305
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:159
306
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:105
307
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:118
308
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:130
309
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:143
310
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-polls.php:132
311
  msgid "Log Template"
312
  msgstr ""
313
 
314
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:302
315
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
316
  msgstr ""
317
 
318
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:305
319
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:258
320
  msgid "Run Time"
321
  msgstr ""
322
 
323
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-interest.php:309
324
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:262
325
  msgid ""
326
  "For large websites, if you are running into time out issues during payouts, "
327
  "you can set the number of seconds a process can run. Use zero for unlimited, "
328
  "but be careful especially if you are on a shared server."
329
  msgstr ""
330
 
331
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:21
332
  msgid "Daily %_plural%"
333
  msgstr ""
334
 
335
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:213
336
  msgid "Not yet run"
337
  msgstr ""
338
 
339
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:218
340
  msgid "Pay Users"
341
  msgstr ""
342
 
343
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:221
344
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:678
345
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:348
346
  msgid "Amount"
347
  msgstr ""
348
 
349
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:223
350
  msgid "Can not be zero."
351
  msgstr ""
352
 
353
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:227
354
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:240
355
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1505
356
  msgid "Interval"
357
  msgstr ""
358
 
359
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:232
360
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:241
361
  msgid "Cycles"
362
  msgstr ""
363
 
364
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:234
365
  msgid "Set to -1 for unlimited"
366
  msgstr ""
367
 
368
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:237
369
  msgid "Last Run / Activated"
370
  msgstr ""
371
 
372
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:240
373
  msgid ""
374
  "Select how often you want to award %_plural%. Note that when this service is "
375
  "enabled, the first payout will be in the beginning of the next period. So "
377
  "morning."
378
  msgstr ""
379
 
380
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:241
381
  msgid ""
382
  "Cycles let you choose how many intervals this service should run. Each time "
383
  "a cycle runs, the value will decrease until it hits zero, in which case this "
384
  "service will deactivate itself. Use -1 to run unlimited times."
385
  msgstr ""
386
 
387
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:242
388
  msgid "Important"
389
  msgstr ""
390
 
391
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:242
392
  msgid ""
393
  "You can always stop payouts by deactivating this service. Just remember that "
394
  "if you deactivate while there are cycles left, this service will continue on "
395
  "when it gets re-activated. Set cycles to zero to reset."
396
  msgstr ""
397
 
398
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:244
399
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:576
400
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:286
401
  msgid "Excludes"
402
  msgstr ""
403
 
404
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:248
405
  msgid ""
406
  "Comma separated list of user IDs to exclude from this service. No spaces "
407
  "allowed!"
408
  msgstr ""
409
 
410
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/banking/services/mycred-bank-service-payouts.php:255
411
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-galleries.php:81
412
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:435
413
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:448
414
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:461
415
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:474
416
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:487
417
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:500
418
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:514
419
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:527
420
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:540
421
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:553
422
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:175
423
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:188
424
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:201
425
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:214
426
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:338
427
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:351
428
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:390
429
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:403
430
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:416
431
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:429
432
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:450
433
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:444
434
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1494
435
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:109
436
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:122
437
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:144
438
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:165
439
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:499
440
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:512
441
  msgid "Available template tags: General"
442
  msgstr ""
443
 
444
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:13
445
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:403
446
  msgid "BuddyPress"
447
  msgstr ""
448
 
449
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:14
450
  msgid ""
451
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
452
  "BuddyPress allowing you to hook into most BuddyPress related actions."
453
  msgstr ""
454
 
455
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:56
456
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:69
457
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:370
458
  msgid "My History"
459
  msgstr ""
460
 
461
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:57
462
  #, php-format
463
  msgid "%s's History"
464
  msgstr ""
465
 
466
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:238
467
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:246
468
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:414
469
  msgid "All"
470
  msgstr ""
471
 
472
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:239
473
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:415
474
  msgid "Today"
475
  msgstr ""
476
 
477
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:240
478
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:416
479
  msgid "Yesterday"
480
  msgstr ""
481
 
482
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:241
483
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:417
484
  msgid "This Week"
485
  msgstr ""
486
 
487
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:242
488
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:418
489
  msgid "This Month"
490
  msgstr ""
491
 
492
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:339
493
  msgid "BuddyPress: Groups"
494
  msgstr ""
495
 
496
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:340
497
  msgid ""
498
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
499
  "zero to disable a specific hook."
500
  msgstr ""
501
 
502
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:347
503
  msgid "BuddyPress: Members"
504
  msgstr ""
505
 
506
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:348
507
  msgid "Awards %_plural% for profile related actions."
508
  msgstr ""
509
 
510
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:355
511
  msgid "BuddyPress: Links"
512
  msgstr ""
513
 
514
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:356
515
  msgid "Awards %_plural% for link related actions."
516
  msgstr ""
517
 
518
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:363
519
  msgid "BuddyPress: Gallery Actions"
520
  msgstr ""
521
 
522
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:364
523
  msgid ""
524
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
525
  "Gallery."
526
  msgstr ""
527
 
528
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:384
529
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:391
530
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:776
531
  msgid "Do not show."
532
  msgstr ""
533
 
534
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:385
535
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:777
536
  msgid "Include in Profile Header."
537
  msgstr ""
538
 
539
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:386
540
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:778
541
  msgid "Include under the \"Profile\" tab"
542
  msgstr ""
543
 
544
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:387
545
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:779
546
  msgid "Include under the \"Profile\" tab and Profile Header."
547
  msgstr ""
548
 
549
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:392
550
  msgid "Show in Profile"
551
  msgstr ""
552
 
553
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:405
554
  msgid "%singular% Balance"
555
  msgstr ""
556
 
557
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:421
558
  msgid "Members can view each others %_singular% balance."
559
  msgstr ""
560
 
561
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:426
562
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:176
563
  msgid "Template"
564
  msgstr ""
565
 
566
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:428
567
  msgid "Available template tags are: %creds%, %number%, %rank%"
568
  msgstr ""
569
 
570
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:429
571
  msgid ""
572
  "Note that you can also use %rank_logo% to show the feature image of the rank."
573
  msgstr ""
574
 
575
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:433
576
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:160
577
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:70
578
  msgid "%plural% History"
579
  msgstr ""
580
 
581
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:449
582
  msgid "Members can view each others %_plural% history."
583
  msgstr ""
584
 
585
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:454
586
  msgid "Menu Title"
587
  msgstr ""
588
 
589
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:456
590
  msgid "Title shown to me"
591
  msgstr ""
592
 
593
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:461
594
  #, php-format
595
  msgid "Title shown to others. Use %s to show the first name."
596
  msgstr ""
597
 
598
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:466
599
  msgid "Menu Position"
600
  msgstr ""
601
 
602
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:468
603
  msgid "Current menu positions:"
604
  msgstr ""
605
 
606
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:473
607
  msgid "History URL slug"
608
  msgstr ""
609
 
610
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:475
611
  msgid "Do not use empty spaces!"
612
  msgstr ""
613
 
614
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/myCRED-addon-buddypress.php:480
615
  msgid "Number of history entries to show"
616
  msgstr ""
617
 
618
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-galleries.php:72
619
  msgid "%plural% for New Gallery"
620
  msgstr ""
621
 
622
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-galleries.php:79
623
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:433
624
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:446
625
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:459
626
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:472
627
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:485
628
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:498
629
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:512
630
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:525
631
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:538
632
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:551
633
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:173
634
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:186
635
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:199
636
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:212
637
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:336
638
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:349
639
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:362
640
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:375
641
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:388
642
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:401
643
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:414
644
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:427
645
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:303
646
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:560
647
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:573
648
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:608
649
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:930
650
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:947
651
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:964
652
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:276
653
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:414
654
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:427
655
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:440
656
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:458
657
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:471
658
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:490
659
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-contact-form7.php:136
660
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:142
661
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:163
662
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:497
663
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:510
664
  msgid "Log template"
665
  msgstr ""
666
 
667
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:419
668
  msgid "%plural% for Creating Groups"
669
  msgstr ""
670
 
671
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:423
672
  msgid ""
673
  "If you use a negative value and the user does not have enough %_plural% the "
674
  "\"Create Group\" button will be disabled."
675
  msgstr ""
676
 
677
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:427
678
  msgid "Number of members before awarding %_plural%"
679
  msgstr ""
680
 
681
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:429
682
  msgid "Use zero to award %_plural% when group is created."
683
  msgstr ""
684
 
685
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:439
686
  msgid "%plural% for Deleting Groups"
687
  msgstr ""
688
 
689
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:452
690
  msgid "%plural% for New Forum Topic"
691
  msgstr ""
692
 
693
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:465
694
  msgid "%plural% for Editing Forum Topic"
695
  msgstr ""
696
 
697
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:478
698
  msgid "%plural% for New Forum Post"
699
  msgstr ""
700
 
701
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:491
702
  msgid "%plural% for Editing Forum Post"
703
  msgstr ""
704
 
705
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:504
706
  msgid "%plural% for Joining Groups"
707
  msgstr ""
708
 
709
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:508
710
  msgid ""
711
  "If you use a negative value and the user does not have enough %_plural% the "
712
  "\"Join Group\" button will be disabled."
713
  msgstr ""
714
 
715
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:518
716
  msgid "%plural% for Leaving Groups"
717
  msgstr ""
718
 
719
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:531
720
  msgid "%plural% for New Group Avatar"
721
  msgstr ""
722
 
723
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-groups.php:544
724
  msgid "%plural% for New Group Comment"
725
  msgstr ""
726
 
727
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:166
728
  msgid "%plural% for New Links"
729
  msgstr ""
730
 
731
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:179
732
  msgid "%plural% for Vote on Link"
733
  msgstr ""
734
 
735
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:192
736
  msgid "%plural% for Updating Links"
737
  msgstr ""
738
 
739
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-links.php:205
740
  msgid "%plural% for Deleting Links"
741
  msgstr ""
742
 
743
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:324
744
  msgid "%plural% for Profile Updates"
745
  msgstr ""
746
 
747
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:330
748
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:477
749
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:501
750
  msgid "Daily Limit"
751
  msgstr ""
752
 
753
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:332
754
  msgid "Daily limit. User zero for unlimited."
755
  msgstr ""
756
 
757
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:342
758
  msgid "%plural% for New Avatar"
759
  msgstr ""
760
 
761
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:355
762
  msgid "%plural% for New Friendships"
763
  msgstr ""
764
 
765
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:364
766
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:377
767
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:189
768
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:196
769
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:307
770
  msgid "Available template tags: General, User"
771
  msgstr ""
772
 
773
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:368
774
  msgid "%plural% for Leaving Friendship"
775
  msgstr ""
776
 
777
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:381
778
  msgid "%plural% for New Comment"
779
  msgstr ""
780
 
781
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:394
782
  msgid "%plural% for Deleting Comment"
783
  msgstr ""
784
 
785
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:407
786
  msgid "%plural% for New Messages"
787
  msgstr ""
788
 
789
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buddypress/hooks/bp-profile.php:420
790
  msgid "%plural% for Sending Gift"
791
  msgstr ""
792
 
793
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:12
794
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:224
795
  msgid "buyCRED"
796
  msgstr ""
797
 
798
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:13
799
  msgid ""
800
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
801
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
802
  "also let your users buy points for other members."
803
  msgstr ""
804
 
805
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:55
806
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:56
807
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:57
808
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:346
809
  msgid "Payment Gateways"
810
  msgstr ""
811
 
812
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:141
813
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:784
814
  msgid "PayPal Payments Standard"
815
  msgstr ""
816
 
817
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:145
818
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:423
819
  msgid "NETbilling"
820
  msgstr ""
821
 
822
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:149
823
  msgid "Skrill (Moneybookers)"
824
  msgstr ""
825
 
826
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:153
827
  msgid "Zombaio"
828
  msgstr ""
829
 
830
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:199
831
  msgid "Please login to purchase %_plural%"
832
  msgstr ""
833
 
834
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:213
835
  msgid "Gift purchase from %display_name%."
836
  msgstr ""
837
 
838
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:226
839
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:565
840
  msgid "Minimum %plural%"
841
  msgstr ""
842
 
843
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:230
844
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
845
  msgstr ""
846
 
847
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:233
848
  msgid "Login Template"
849
  msgstr ""
850
 
851
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:237
852
  msgid "Content to show when a user is not logged in."
853
  msgstr ""
854
 
855
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:244
856
  msgid ""
857
  "Available template tags: General and %gateway% for the payment gateway used."
858
  msgstr ""
859
 
860
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:247
861
  msgid "Thank You Page"
862
  msgstr ""
863
 
864
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:250
865
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:271
866
  msgid "Custom URL"
867
  msgstr ""
868
 
869
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:255
870
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:276
871
  msgid "Page"
872
  msgstr ""
873
 
874
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:268
875
  msgid "Cancellation Page"
876
  msgstr ""
877
 
878
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:289
879
  msgid "Gifting"
880
  msgstr ""
881
 
882
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:291
883
  msgid "Allow users to buy %_plural% for other users."
884
  msgstr ""
885
 
886
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:292
887
  msgid "Allow users to buy %_plural% for content authors."
888
  msgstr ""
889
 
890
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:297
891
  msgid "Available template tags: %singular%, %plural% and %display_name%"
892
  msgstr ""
893
 
894
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:347
895
  msgid ""
896
  "Select the payment gateways you want to offer your users to buy %plural%."
897
  msgstr ""
898
 
899
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:363
900
  msgid "Test Mode"
901
  msgstr ""
902
 
903
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:365
904
  msgid "Enabled"
905
  msgstr ""
906
 
907
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:368
908
  msgid "Disabled"
909
  msgstr ""
910
 
911
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:388
912
  msgid "Update Gateway Settings"
913
  msgstr ""
914
 
915
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:435
916
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:532
917
  msgid "This Add-on needs to setup before you can use this shortcode."
918
  msgstr ""
919
 
920
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:453
921
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:549
922
  msgid "No gateways installed."
923
  msgstr ""
924
 
925
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:454
926
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:550
927
  msgid "Gateway does not exist."
928
  msgstr ""
929
 
930
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:490
931
  msgid "Yourself"
932
  msgstr ""
933
 
934
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:551
935
  msgid "No active gateways found."
936
  msgstr ""
937
 
938
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:552
939
  msgid "The selected gateway is not active."
940
  msgstr ""
941
 
942
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:592
943
  msgid "Buy with"
944
  msgstr ""
945
 
946
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:596
947
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:49
948
  msgid "Buy Now"
949
  msgstr ""
950
 
951
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:629
952
  msgid "No users found"
953
  msgstr ""
954
 
955
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:639
956
  msgid "To"
957
  msgstr ""
958
 
959
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:656
960
  msgid "Select Amount"
961
  msgstr ""
962
 
963
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:680
964
  msgid "min."
965
  msgstr ""
966
 
967
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:688
968
  msgid "Select Gateway"
969
  msgstr ""
970
 
971
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:768
972
  msgid "Buy %plural%"
973
  msgstr ""
974
 
975
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:770
976
  msgid "This add-on lets your users buy %_plural% using a payment gateway."
977
  msgstr ""
978
 
979
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:771
980
  msgid "Supported Gateways"
981
  msgstr ""
982
 
983
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:772
984
  msgid ""
985
  "myCRED supports purchases through: PayPal Payments Standard, Skrill "
986
  "(Moneybookers) and NETbilling. Let us know if you want to add other payment "
987
  "gateways."
988
  msgstr ""
989
 
990
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:773
991
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1066
992
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:497
993
  msgid "Usage"
994
  msgstr ""
995
 
996
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:774
997
  msgid "Purchases can be made using one of the following shortcodes:"
998
  msgstr ""
999
 
1000
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:776
1001
  msgid ""
1002
  "When you want to sell a pre-set amount, sell to a specific user or use a "
1003
  "specific gateway.<br />For more information on how to use the shortcode, "
1004
  "please visit the"
1005
  msgstr ""
1006
 
1007
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:777
1008
  msgid ""
1009
  "When you want to give your users the option to select an amount, gateway or "
1010
  "recipient.<br />For more information on how to use the shortcode, please "
1011
  "visit the"
1012
  msgstr ""
1013
 
1014
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:786
1015
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:327
1016
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:344
1017
  msgid "Currency"
1018
  msgstr ""
1019
 
1020
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:787
1021
  msgid ""
1022
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1023
  "transactions will not be approved until you login to your PayPal account and "
1025
  "will not be applied to the buyer until you have resolved the issue."
1026
  msgstr ""
1027
 
1028
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:788
1029
  msgid "Instant Payment Notifications"
1030
  msgstr ""
1031
 
1032
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:789
1033
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:358
1034
  msgid ""
1035
  "For this gateway to work, you must login to your PayPal account and under "
1036
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
1038
  "have selected \"Receive IPN messages (Enabled)\"."
1039
  msgstr ""
1040
 
1041
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:793
1042
  msgid "Skrill"
1043
  msgstr ""
1044
 
1045
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:795
1046
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:607
1047
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:321
1048
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:338
1049
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:290
1050
  msgid "Sandbox Mode"
1051
  msgstr ""
1052
 
1053
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:796
1054
  msgid ""
1055
  "Transactions made while Sandbox mode is active are real transactions! "
1056
  "Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
1057
  msgstr ""
1058
 
1059
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:797
1060
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:383
1061
  msgid "Checkout Page"
1062
  msgstr ""
1063
 
1064
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:798
1065
  msgid ""
1066
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1067
  "When a user selects this option, no points are awarded! You will need to "
1068
  "manually award these once the bank transfer is completed."
1069
  msgstr ""
1070
 
1071
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/myCRED-addon-buy-creds.php:799
1072
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:403
1073
  msgid ""
1074
  "By default purchases made using Skrill will result in users having to signup "
1075
  "for a Skrill account (if they do not have one already). You can contact "
1076
  "Skrill Merchant Services and request to disable this feature."
1077
  msgstr ""
1078
 
1079
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:60
1080
  msgid ""
1081
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1082
  "class."
1083
  msgstr ""
1084
 
1085
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:69
1086
  msgid ""
1087
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1088
  msgstr ""
1089
 
1090
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:85
1091
  msgid "This Payment Gateway has no settings"
1092
  msgstr ""
1093
 
1094
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:234
1095
  msgid "Go to "
1096
  msgstr ""
1097
 
1098
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:255
1099
  msgid "Payment Gateway Logo"
1100
  msgstr ""
1101
 
1102
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:268
1103
  msgid "Click here if you are not automatically redirected"
1104
  msgstr ""
1105
 
1106
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:865
1107
  msgid "Outside US"
1108
  msgstr ""
1109
 
1110
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:26
1111
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:23
1112
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:28
1113
  msgid "Purchase of myCRED %plural%"
1114
  msgstr ""
1115
 
1116
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:55
1117
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:318
1118
  msgid "You have tried too many times. Please contact support."
1119
  msgstr ""
1120
 
1121
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:62
1122
  msgid "This payment gateway has not yet been setup! Exiting."
1123
  msgstr ""
1124
 
1125
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:81
1126
  msgid "First name can not be empty"
1127
  msgstr ""
1128
 
1129
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:87
1130
  msgid "Last name can not be empty"
1131
  msgstr ""
1132
 
1133
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:93
1134
  msgid "Street can not be empty"
1135
  msgstr ""
1136
 
1137
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:99
1138
  msgid "City can not be empty"
1139
  msgstr ""
1140
 
1141
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:105
1142
  msgid "Country can not be empty"
1143
  msgstr ""
1144
 
1145
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:113
1146
  msgid "State can not be empty"
1147
  msgstr ""
1148
 
1149
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:121
1150
  msgid "Zip / Post Code can not be empty"
1151
  msgstr ""
1152
 
1153
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:127
1154
  msgid "Email can not be empty"
1155
  msgstr ""
1156
 
1157
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:143
1158
  msgid "Please enter your credit card number"
1159
  msgstr ""
1160
 
1161
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:149
1162
  msgid "Card Expiration Month must be selected"
1163
  msgstr ""
1164
 
1165
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:155
1166
  msgid "Card Expiration Year must be set"
1167
  msgstr ""
1168
 
1169
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:161
1170
  msgid "Please enter the CVV2 code from the back of your card"
1171
  msgstr ""
1172
 
1173
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:170
1174
  msgid "Account Routing number missing"
1175
  msgstr ""
1176
 
1177
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:176
1178
  msgid "Account Number missing"
1179
  msgstr ""
1180
 
1181
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:184
1182
  msgid "Incorrect Credit Card number"
1183
  msgstr ""
1184
 
1185
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:190
1186
  msgid "The credit card entered is past its expiration date."
1187
  msgstr ""
1188
 
1189
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:196
1190
  msgid "The CVV2 number entered is not valid."
1191
  msgstr ""
1192
 
1193
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:202
1194
  msgid "The bank routing number entered is not valid."
1195
  msgstr ""
1196
 
1197
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:205
1198
  msgid "The bank account number entered is not valid."
1199
  msgstr ""
1200
 
1201
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:312
1202
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:333
1203
  msgid "Invalid Address"
1204
  msgstr ""
1205
 
1206
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:315
1207
  msgid "Invalid CVV2"
1208
  msgstr ""
1209
 
1210
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:321
1211
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:324
1212
  msgid "Please contact support."
1213
  msgstr ""
1214
 
1215
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:327
1216
  msgid "Your email address is invalid."
1217
  msgstr ""
1218
 
1219
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:330
1220
  msgid "Your information is invalid. Please correct"
1221
  msgstr ""
1222
 
1223
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:336
1224
  msgid "Your card was declined. Please try again."
1225
  msgstr ""
1226
 
1227
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:340
1228
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:358
1229
  msgid "Duplicate transaction. Please contact support"
1230
  msgstr ""
1231
 
1232
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:343
1233
  msgid "Your transaction was approved"
1234
  msgstr ""
1235
 
1236
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:350
1237
  msgid " error: "
1238
  msgstr ""
1239
 
1240
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:430
1241
  msgid "Debug"
1242
  msgstr ""
1243
 
1244
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:439
1245
  msgid "Error"
1246
  msgstr ""
1247
 
1248
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:440
1249
  msgid "The following error/s were found: "
1250
  msgstr ""
1251
 
1252
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:448
1253
  msgid "Please update and try again."
1254
  msgstr ""
1255
 
1256
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:454
1257
  msgid "Transaction Approved"
1258
  msgstr ""
1259
 
1260
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:455
1261
  msgid "Your have successfully purchased "
1262
  msgstr ""
1263
 
1264
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:456
1265
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:466
1266
  msgid "Click here to continue"
1267
  msgstr ""
1268
 
1269
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:464
1270
  msgid "Transaction Declined"
1271
  msgstr ""
1272
 
1273
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:465
1274
  msgid ""
1275
  "I am sorry but your transaction could not be completed due to the following "
1276
  msgstr ""
1277
 
1278
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:474
1279
  msgid "Transaction Error"
1280
  msgstr ""
1281
 
1282
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:475
1283
  msgid "NETbilling returned the following error: "
1284
  msgstr ""
1285
 
1286
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:476
1287
  msgid "Please try again."
1288
  msgstr ""
1289
 
1290
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:480
1291
  msgid "Purchase of"
1292
  msgstr ""
1293
 
1294
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:480
1295
  msgid "for"
1296
  msgstr ""
1297
 
1298
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:481
1299
  msgid "Fields marked * are required!"
1300
  msgstr ""
1301
 
1302
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:491
1303
  msgid "Billing Details"
1304
  msgstr ""
1305
 
1306
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:560
1307
  msgid "Month"
1308
  msgstr ""
1309
 
1310
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:566
1311
  msgid "Year"
1312
  msgstr ""
1313
 
1314
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:613
1315
  msgid "Account ID"
1316
  msgstr ""
1317
 
1318
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:619
1319
  msgid "Site Tag"
1320
  msgstr ""
1321
 
1322
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:625
1323
  msgid "Dynamic IP Security Code"
1324
  msgstr ""
1325
 
1326
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:631
1327
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:341
1328
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:364
1329
  msgid "Item Name"
1330
  msgstr ""
1331
 
1332
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:637
1333
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:348
1334
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:371
1335
  msgid "%plural% Exchange Rate"
1336
  msgstr ""
1337
 
1338
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:643
1339
  msgid "Allowed Attempts"
1340
  msgstr ""
1341
 
1342
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:647
1343
  msgid "Maximum number of attempts allowed for purchases."
1344
  msgstr ""
1345
 
1346
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:650
1347
  msgid "Advanced"
1348
  msgstr ""
1349
 
1350
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:654
1351
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1352
  msgstr ""
1353
 
1354
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:658
1355
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1356
  msgstr ""
1357
 
1358
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:662
1359
  msgid ""
1360
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1361
  "disable_negative_db)"
1362
  msgstr ""
1363
 
1364
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:666
1365
  msgid ""
1366
  "Disable only the negative database component of the fraud protection system."
1367
  msgstr ""
1368
 
1369
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:670
1370
  msgid "Disable automatic sending of both merchant and customer email receipts."
1371
  msgstr ""
1372
 
1373
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/netbilling.php:674
1374
  msgid "Disable immediate rejection of expired cards."
1375
  msgstr ""
1376
 
1377
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:225
1378
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:211
1379
  msgid "Success"
1380
  msgstr ""
1381
 
1382
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:226
1383
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:212
1384
  msgid "Thank you for your purchase"
1385
  msgstr ""
1386
 
1387
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:239
1388
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:225
1389
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:232
1390
  msgid "Please setup this gateway before attempting to make a purchase!"
1391
  msgstr ""
1392
 
1393
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:299
1394
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:266
1395
  msgid "Return to "
1396
  msgstr ""
1397
 
1398
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:304
1399
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:320
1400
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:271
1401
  msgid "Processing payment &hellip;"
1402
  msgstr ""
1403
 
1404
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:332
1405
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:401
1406
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:433
1407
  msgid "Important!"
1408
  msgstr ""
1409
 
1410
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:332
1411
  msgid ""
1412
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1413
  "transactions will not be approved until you login to your PayPal account and "
1414
  "Accept each transaction!"
1415
  msgstr ""
1416
 
1417
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:335
1418
  msgid "Account Email"
1419
  msgstr ""
1420
 
1421
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:345
1422
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:368
1423
  msgid "Description of the item being purchased by the user."
1424
  msgstr ""
1425
 
1426
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:351
1427
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:374
1428
  msgid "Your selected currency"
1429
  msgstr ""
1430
 
1431
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/paypal-standard.php:354
1432
  msgid "IPN Address"
1433
  msgstr ""
1434
 
1435
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:303
1436
  msgid "Product:"
1437
  msgstr ""
1438
 
1439
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:312
1440
  msgid "Gift to:"
1441
  msgstr ""
1442
 
1443
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:313
1444
  msgid "(author)"
1445
  msgstr ""
1446
 
1447
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:341
1448
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1449
  msgstr ""
1450
 
1451
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:351
1452
  msgid "Merchant Account Email"
1453
  msgstr ""
1454
 
1455
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:357
1456
  msgid "Secret Word"
1457
  msgstr ""
1458
 
1459
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:361
1460
  msgid ""
1461
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1462
  msgstr ""
1463
 
1464
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:377
1465
  msgid "Confirmation Email"
1466
  msgstr ""
1467
 
1468
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:380
1469
  msgid ""
1470
  "Ask Skrill to send me a confirmation email for each successful purchase."
1471
  msgstr ""
1472
 
1473
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:386
1474
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:75
1475
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:706
1476
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:597
1477
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:186
1478
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:360
1479
  msgid "Title"
1480
  msgstr ""
1481
 
1482
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:388
1483
  msgid ""
1484
  "If left empty, your account email is used as title on the Skill Payment Page."
1485
  msgstr ""
1486
 
1487
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:391
1488
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:314
1489
  msgid "Logo URL"
1490
  msgstr ""
1491
 
1492
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:393
1493
  msgid ""
1494
  "The URL to the image you want to use on the top of the gateway. For best "
1495
  "integration results we recommend you use logos with dimensions up to 200px "
1496
  "in width and 50px in height."
1497
  msgstr ""
1498
 
1499
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:396
1500
  msgid "Confirmation Note"
1501
  msgstr ""
1502
 
1503
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:398
1504
  msgid ""
1505
  "Optional text to show user once a transaction has been successfully "
1506
  "completed. This text is shown by Skrill."
1507
  msgstr ""
1508
 
1509
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/skrill.php:402
1510
  msgid ""
1511
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1512
  "When a user selects this option, no %_plural% are awarded! You will need to "
1513
  "manually award these once the bank transfer is completed."
1514
  msgstr ""
1515
 
1516
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:296
1517
  msgid "Site ID"
1518
  msgstr ""
1519
 
1520
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:302
1521
  msgid "GW Password"
1522
  msgstr ""
1523
 
1524
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:308
1525
  msgid "Pricing ID"
1526
  msgstr ""
1527
 
1528
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:320
1529
  msgid "IP Verification"
1530
  msgstr ""
1531
 
1532
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:323
1533
  msgid "Do not verify that callbacks are coming from Zombaio."
1534
  msgstr ""
1535
 
1536
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:326
1537
  msgid "Language"
1538
  msgstr ""
1539
 
1540
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:333
1541
  msgid "Postback URL (ZScript)"
1542
  msgstr ""
1543
 
1544
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/buy-creds/gateways/zombaio.php:337
1545
  msgid ""
1546
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1547
  "address and click validate."
1548
  msgstr ""
1549
 
1550
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:12
1551
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:155
1552
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:161
1553
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:167
1554
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:265
1555
  msgid "Email Notices"
1556
  msgstr ""
1557
 
1558
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:13
1559
  msgid "Create email notices for any type of myCRED instance."
1560
  msgstr ""
1561
 
1562
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:156
1563
  msgid "Email Notice"
1564
  msgstr ""
1565
 
1566
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:157
1567
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:168
1568
  msgid "Add New"
1569
  msgstr ""
1570
 
1571
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:158
1572
  msgid "Add New Notice"
1573
  msgstr ""
1574
 
1575
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:159
1576
  msgid "Edit Notice"
1577
  msgstr ""
1578
 
1579
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:160
1580
  msgid "New Notice"
1581
  msgstr ""
1582
 
1583
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:162
1584
  msgid "View Notice"
1585
  msgstr ""
1586
 
1587
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:163
1588
  msgid "Search Email Notices"
1589
  msgstr ""
1590
 
1591
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:164
1592
  msgid "No email notices found"
1593
  msgstr ""
1594
 
1595
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:165
1596
  msgid "No email notices found in Trash"
1597
  msgstr ""
1598
 
1599
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:188
1600
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:848
1601
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:319
1602
  msgid "General"
1603
  msgstr ""
1604
 
1605
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:189
1606
  msgid "users balance changes"
1607
  msgstr ""
1608
 
1609
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:190
1610
  msgid "user gains %_plural%"
1611
  msgstr ""
1612
 
1613
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:191
1614
  msgid "user lose %_plural%"
1615
  msgstr ""
1616
 
1617
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:192
1618
  msgid "users balance reaches zero"
1619
  msgstr ""
1620
 
1621
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:193
1622
  msgid "users balance goes minus"
1623
  msgstr ""
1624
 
1625
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:199
1626
  msgid "Sell Content Add-on"
1627
  msgstr ""
1628
 
1629
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:200
1630
  msgid "user buys content"
1631
  msgstr ""
1632
 
1633
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:201
1634
  msgid "authors content gets sold"
1635
  msgstr ""
1636
 
1637
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:208
1638
  msgid "buyCREDs Add-on"
1639
  msgstr ""
1640
 
1641
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:209
1642
  msgid "user buys %_plural%"
1643
  msgstr ""
1644
 
1645
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:216
1646
  msgid "Transfer Add-on"
1647
  msgstr ""
1648
 
1649
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:217
1650
  msgid "user sends %_plural%"
1651
  msgstr ""
1652
 
1653
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:218
1654
  msgid "user receives %_plural%"
1655
  msgstr ""
1656
 
1657
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:225
1658
  msgid "Ranks Add-on"
1659
  msgstr ""
1660
 
1661
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:226
1662
  msgid "user is demoted"
1663
  msgstr ""
1664
 
1665
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:227
1666
  msgid "user is promoted"
1667
  msgstr ""
1668
 
1669
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:267
1670
  msgid ""
1671
  "Settings that apply to all email notices and can not be overridden for "
1672
  "individual emails."
1673
  msgstr ""
1674
 
1675
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:268
1676
  msgid "Email Format"
1677
  msgstr ""
1678
 
1679
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:272
1680
  msgid "Plain text emails only."
1681
  msgstr ""
1682
 
1683
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:276
1684
  msgid "HTML or Plain text emails."
1685
  msgstr ""
1686
 
1687
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:279
1688
  msgid "Filters"
1689
  msgstr ""
1690
 
1691
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:283
1692
  msgid ""
1693
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1694
  "an email is sent."
1695
  msgstr ""
1696
 
1697
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:287
1698
  msgid ""
1699
  "Allow WordPress and Third Party Plugins to filter the email content before "
1700
  "an email is sent."
1701
  msgstr ""
1702
 
1703
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:290
1704
  msgid ""
1705
  "Default email settings. These settings can be individually overridden when "
1706
  "editing emails."
1707
  msgstr ""
1708
 
1709
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:291
1710
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:687
1711
  msgid "Email Settings"
1712
  msgstr ""
1713
 
1714
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:294
1715
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:804
1716
  msgid "Senders Name:"
1717
  msgstr ""
1718
 
1719
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:298
1720
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:806
1721
  msgid "Senders Email:"
1722
  msgstr ""
1723
 
1724
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:302
1725
  msgid "Reply-To:"
1726
  msgstr ""
1727
 
1728
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:306
1729
  msgid "Default Email Content"
1730
  msgstr ""
1731
 
1732
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:310
1733
  msgid "Default email content."
1734
  msgstr ""
1735
 
1736
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:313
1737
  msgid "Default Email Styling"
1738
  msgstr ""
1739
 
1740
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:317
1741
  msgid "Ignored if HTML is not allowed in emails."
1742
  msgstr ""
1743
 
1744
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:622
1745
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:736
1746
  msgid "Email Subject"
1747
  msgstr ""
1748
 
1749
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:623
1750
  msgid "Status"
1751
  msgstr ""
1752
 
1753
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:643
1754
  msgid "Not Active"
1755
  msgstr ""
1756
 
1757
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:645
1758
  #, php-format
1759
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1760
  msgstr ""
1761
 
1762
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:649
1763
  msgid "Active"
1764
  msgstr ""
1765
 
1766
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:651
1767
  #, php-format
1768
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1769
  msgstr ""
1770
 
1771
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:660
1772
  msgid "Email is sent when"
1773
  msgstr ""
1774
 
1775
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:662
1776
  msgid "Missing instance for this notice!"
1777
  msgstr ""
1778
 
1779
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:671
1780
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:673
1781
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:675
1782
  msgid "Sent To"
1783
  msgstr ""
1784
 
1785
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:671
1786
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:798
1787
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:344
1788
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:243
1789
  msgid "User"
1790
  msgstr ""
1791
 
1792
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:673
1793
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:799
1794
  msgid "Administrator"
1795
  msgstr ""
1796
 
1797
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:675
1798
  msgid "Both Administrator and User"
1799
  msgstr ""
1800
 
1801
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:696
1802
  msgid "Available Template Tags"
1803
  msgstr ""
1804
 
1805
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:707
1806
  msgid "Email Header"
1807
  msgstr ""
1808
 
1809
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:767
1810
  msgid "Send this email notice when..."
1811
  msgstr ""
1812
 
1813
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:796
1814
  msgid "Recipient:"
1815
  msgstr ""
1816
 
1817
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:800
1818
  msgid "Both"
1819
  msgstr ""
1820
 
1821
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:808
1822
  msgid "Reply-To Email:"
1823
  msgstr ""
1824
 
1825
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:814
1826
  msgid "Save"
1827
  msgstr ""
1828
 
1829
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:826
1830
  msgid "CSS Styling"
1831
  msgstr ""
1832
 
1833
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:841
1834
  msgid "Site Related"
1835
  msgstr ""
1836
 
1837
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:842
1838
  msgid "Your websites title"
1839
  msgstr ""
1840
 
1841
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:843
1842
  msgid "Your websites address"
1843
  msgstr ""
1844
 
1845
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:844
1846
  msgid "Your websites tagline (description)"
1847
  msgstr ""
1848
 
1849
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:845
1850
  msgid "Your websites admin email"
1851
  msgstr ""
1852
 
1853
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:846
1854
  msgid "Total number of blog members"
1855
  msgstr ""
1856
 
1857
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:849
1858
  msgid "Points name in singular format"
1859
  msgstr ""
1860
 
1861
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:850
1862
  msgid "Points name in plural"
1863
  msgstr ""
1864
 
1865
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:851
1866
  msgid "Login URL"
1867
  msgstr ""
1868
 
1869
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:854
1870
  msgid "User Related"
1871
  msgstr ""
1872
 
1873
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:855
1874
  msgid "The users ID"
1875
  msgstr ""
1876
 
1877
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:856
1878
  msgid "The users login name (username)"
1879
  msgstr ""
1880
 
1881
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:857
1882
  msgid "The users display name"
1883
  msgstr ""
1884
 
1885
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:858
1886
  msgid "The users profile address"
1887
  msgstr ""
1888
 
1889
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:859
1890
  msgid "Link to the users profile address with their display name as title"
1891
  msgstr ""
1892
 
1893
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:860
1894
  msgid "The users current balance unformated"
1895
  msgstr ""
1896
 
1897
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:861
1898
  msgid "The users current balance formated"
1899
  msgstr ""
1900
 
1901
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:863
1902
  msgid "Post Related"
1903
  msgstr ""
1904
 
1905
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:864
1906
  msgid "Post Title"
1907
  msgstr ""
1908
 
1909
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:865
1910
  msgid "Post URL address"
1911
  msgstr ""
1912
 
1913
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:866
1914
  msgid "Link to post Post title"
1915
  msgstr ""
1916
 
1917
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:867
1918
  msgid "The post type"
1919
  msgstr ""
1920
 
1921
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:943
1922
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:946
1923
  #, php-format
1924
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1925
  msgstr ""
1926
 
1927
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:944
1928
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:470
1929
  msgid "Custom field updated"
1930
  msgstr ""
1931
 
1932
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:945
1933
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:471
1934
  msgid "Custom filed updated"
1935
  msgstr ""
1936
 
1937
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:948
1938
  msgid "Email Notice Activated"
1939
  msgstr ""
1940
 
1941
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:949
1942
  msgid "Email Notice Saved"
1943
  msgstr ""
1944
 
1945
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:950
1946
  #, php-format
1947
  msgid ""
1948
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1949
  msgstr ""
1950
 
1951
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:952
1952
  #, php-format
1953
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1954
  msgstr ""
1955
 
1956
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:971
1957
  msgid ""
1958
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1959
  "you are not yet ready to use this email notice!"
1960
  msgstr ""
1961
 
1962
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:973
1963
  #, php-format
1964
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1965
  msgstr ""
1966
 
1967
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/email-notices/myCRED-addon-email-notices.php:975
1968
  msgid "This email notice is active."
1969
  msgstr ""
1970
 
1971
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/myCRED-addon-gateway.php:12
1972
  msgid "Gateway"
1973
  msgstr ""
1974
 
1975
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/myCRED-addon-gateway.php:13
1976
  msgid ""
1977
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1978
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1979
  "Espresso, Events Manager."
1980
  msgstr ""
1981
 
1982
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:143
1983
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:271
1984
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:295
1985
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:390
1986
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:345
1987
  msgid "Current Balance"
1988
  msgstr ""
1989
 
1990
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:147
1991
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:113
1992
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:275
1993
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:299
1994
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:394
1995
  msgid "Total Cost"
1996
  msgstr ""
1997
 
1998
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:151
1999
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:279
2000
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:303
2001
  msgid "Balance After Purchase"
2002
  msgstr ""
2003
 
2004
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:175
2005
  msgid "Payment"
2006
  msgstr ""
2007
 
2008
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:178
2009
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:227
2010
  #, php-format
2011
  msgid "<a href=\"%s\">Go Back</a>"
2012
  msgstr ""
2013
 
2014
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:181
2015
  msgid "will be deducted from your account."
2016
  msgstr ""
2017
 
2018
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:217
2019
  #, php-format
2020
  msgid ""
2021
  "Sorry, but you can not use this gateway as your account is excluded. Please "
2022
  "<a href=\"%s\">select a different payment method</a>."
2023
  msgstr ""
2024
 
2025
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:236
2026
  msgid "Paid"
2027
  msgstr ""
2028
 
2029
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:239
2030
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:34
2031
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:51
2032
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:52
2033
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:76
2034
  msgid "myCRED"
2035
  msgstr ""
2036
 
2037
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:339
2038
  msgid "%_singular% Balance"
2039
  msgstr ""
2040
 
2041
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:341
2042
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:90
2043
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:26
2044
  msgid "Payment for Order: #%order_id%"
2045
  msgstr ""
2046
 
2047
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:344
2048
  msgid "Product Sale: %post_title%"
2049
  msgstr ""
2050
 
2051
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:345
2052
  msgid "Pay using your account balance."
2053
  msgstr ""
2054
 
2055
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:346
2056
  msgid ""
2057
  "TOTAL amount has been deducted from your account. Your current balance is: "
2058
  "%balance_f%"
2059
  msgstr ""
2060
 
2061
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:347
2062
  msgid ""
2063
  "Insufficient funds. Please select another form of payment. Your current "
2064
  "balance is: %balance_f%"
2065
  msgstr ""
2066
 
2067
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:348
2068
  msgid ""
2069
  "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2070
  "%\">login</a>."
2071
  msgstr ""
2072
 
2073
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:353
2074
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:175
2075
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:19
2076
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:20
2077
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:21
2078
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:224
2079
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:246
2080
  msgid "Settings"
2081
  msgstr ""
2082
 
2083
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:355
2084
  #, php-format
2085
  msgid ""
2086
  "Let your users pay for items in their shopping cart using their %s Account. "
2088
  "purchase!"
2089
  msgstr ""
2090
 
2091
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:358
2092
  msgid "Method Name"
2093
  msgstr ""
2094
 
2095
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:360
2096
  msgid ""
2097
  "Enter a public name for this payment method that is displayed to users - No "
2098
  "HTML"
2099
  msgstr ""
2100
 
2101
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:365
2102
  msgid "Gateway Logo URL"
2103
  msgstr ""
2104
 
2105
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:373
2106
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:89
2107
  msgid ""
2108
  "Log entry template for successful payments. Available template tags: "
2109
  "%order_id%, %order_link%"
2110
  msgstr ""
2111
 
2112
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:380
2113
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:95
2114
  msgid "How much is 1 %_singular% worth in %currency%?"
2115
  msgstr ""
2116
 
2117
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:385
2118
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:100
2119
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:326
2120
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:428
2121
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:471
2122
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:536
2123
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:525
2124
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:594
2125
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:658
2126
  msgid "Exchange Rate"
2127
  msgstr ""
2128
 
2129
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:394
2130
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:128
2131
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:330
2132
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:440
2133
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:462
2134
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:527
2135
  msgid "Profit Sharing"
2136
  msgstr ""
2137
 
2138
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:397
2139
  msgid "Percentage"
2140
  msgstr ""
2141
 
2142
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:399
2143
  msgid "Option to share sales with the product owner. User zero to disable"
2144
  msgstr ""
2145
 
2146
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:406
2147
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:338
2148
  msgid ""
2149
  "Log entry template for profit sharing. Available template tags: General and "
2150
  "Post related"
2151
  msgstr ""
2152
 
2153
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:411
2154
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:341
2155
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:531
2156
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:596
2157
  msgid "Messages"
2158
  msgstr ""
2159
 
2160
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:414
2161
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:352
2162
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:541
2163
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:606
2164
  msgid "Insufficient Funds"
2165
  msgstr ""
2166
 
2167
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:416
2168
  msgid "Message to show when the user can not use this gateway."
2169
  msgstr ""
2170
 
2171
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:418
2172
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:426
2173
  msgid "Available template tags are: General."
2174
  msgstr ""
2175
 
2176
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:422
2177
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:348
2178
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:468
2179
  msgid "Visitors"
2180
  msgstr ""
2181
 
2182
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:424
2183
  msgid "Message to show to buyers that are not logged in."
2184
  msgstr ""
2185
 
2186
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:430
2187
  msgid "User Instructions"
2188
  msgstr ""
2189
 
2190
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:432
2191
  msgid "Information to show users before payment."
2192
  msgstr ""
2193
 
2194
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:434
2195
  msgid ""
2196
  "Available template tags are: %balance% and %balance_f% for users current "
2197
  "balance."
2198
  msgstr ""
2199
 
2200
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:438
2201
  msgid "Confirmation Information"
2202
  msgstr ""
2203
 
2204
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:440
2205
  msgid "Information to display on the order confirmation page. - HTML allowed"
2206
  msgstr ""
2207
 
2208
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:442
2209
  msgid ""
2210
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2211
  "- users current balance."
2212
  msgstr ""
2213
 
2214
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:446
2215
  msgid "Order Confirmation Email"
2216
  msgstr ""
2217
 
2218
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:448
2219
  #, php-format
2220
  msgid ""
2221
  "This is the email text to send to those who have made %s checkouts. It "
2224
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2225
  msgstr ""
2226
 
2227
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-marketpress.php:450
2228
  #, php-format
2229
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2230
  msgstr ""
2231
 
2232
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:35
2233
  msgid "Let users pay using their myCRED balance."
2234
  msgstr ""
2235
 
2236
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:68
2237
  msgid "Enable/Disable"
2238
  msgstr ""
2239
 
2240
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:70
2241
  msgid "Enable myCRED Payment"
2242
  msgstr ""
2243
 
2244
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:72
2245
  msgid ""
2246
  "Users who are not logged in or excluded from using myCRED will not have "
2247
  "access to this gateway!"
2248
  msgstr ""
2249
 
2250
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:77
2251
  msgid "Title to show for this payment option."
2252
  msgstr ""
2253
 
2254
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:78
2255
  msgid "Pay with myCRED"
2256
  msgstr ""
2257
 
2258
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:82
2259
  msgid "Customer Message"
2260
  msgstr ""
2261
 
2262
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:84
2263
  msgid "Deduct the amount from your %_plural% balance."
2264
  msgstr ""
2265
 
2266
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:107
2267
  msgid "Show Total"
2268
  msgstr ""
2269
 
2270
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:109
2271
  msgid "Show the final price in %_plural% ."
2272
  msgstr ""
2273
 
2274
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:111
2275
  msgid "Do not show"
2276
  msgstr ""
2277
 
2278
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:112
2279
  msgid "Show in Cart"
2280
  msgstr ""
2281
 
2282
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:113
2283
  msgid "Show on Checkout Page"
2284
  msgstr ""
2285
 
2286
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:114
2287
  msgid "Show in Cart and on Checkout Page"
2288
  msgstr ""
2289
 
2290
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:119
2291
  msgid "Label"
2292
  msgstr ""
2293
 
2294
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:121
2295
  msgid "Order Total in %_plural%"
2296
  msgstr ""
2297
 
2298
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:130
2299
  msgid "Option to share a percentage of the sale with the product owner."
2300
  msgstr ""
2301
 
2302
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:137
2303
  msgid ""
2304
  "Log entry template for profit sharing. Available template tags: General and "
2305
  "Post related."
2306
  msgstr ""
2307
 
2308
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:138
2309
  msgid "Sale of %post_title%"
2310
  msgstr ""
2311
 
2312
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:163
2313
  msgid "myCRED Payment"
2314
  msgstr ""
2315
 
2316
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:164
2317
  msgid ""
2318
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2319
  "users with insufficient funds and users who are not logged in will not see "
2320
  "this payment gateway on the checkout page."
2321
  msgstr ""
2322
 
2323
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:185
2324
  msgid "You must be logged in to pay with %_plural%"
2325
  msgstr ""
2326
 
2327
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:191
2328
  msgid "You can not use this gateway. Please try a different payment option."
2329
  msgstr ""
2330
 
2331
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:203
2332
  msgid "Insufficient funds. Please try a different payment option."
2333
  msgstr ""
2334
 
2335
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:267
2336
  msgid "Your account has successfully been charged."
2337
  msgstr ""
2338
 
2339
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-woocommerce.php:477
2340
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:121
2341
  msgid "Your current balance"
2342
  msgstr ""
2343
 
2344
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:28
2345
  msgid "Store sale"
2346
  msgstr ""
2347
 
2348
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:30
2349
  msgid "You must be logged in to use this gateway"
2350
  msgstr ""
2351
 
2352
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:31
2353
  msgid "Insufficient Funds."
2354
  msgstr ""
2355
 
2356
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:32
2357
  msgid "Deduct the amount from your balance."
2358
  msgstr ""
2359
 
2360
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:102
2361
  msgid "Item"
2362
  msgstr ""
2363
 
2364
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:188
2365
  msgid "You can not use this gateway."
2366
  msgstr ""
2367
 
2368
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:322
2369
  msgid "Log Template for Payments"
2370
  msgstr ""
2371
 
2372
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:323
2373
  msgid ""
2374
  "Log entry template for successful payments. Available template tags: "
2375
  "General, %order_id%"
2376
  msgstr ""
2377
 
2378
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:327
2379
  #, php-format
2380
  msgid "How much is 1 %s worth in %s"
2381
  msgstr ""
2382
 
2383
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:333
2384
  msgid "Payout"
2385
  msgstr ""
2386
 
2387
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:334
2388
  msgid ""
2389
  "Option to share a percentage of the sale with the product owner (post "
2390
  "author). User zero to disable."
2391
  msgstr ""
2392
 
2393
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:344
2394
  msgid "Instructions"
2395
  msgstr ""
2396
 
2397
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:345
2398
  msgid ""
2399
  "Optional instructions to show users when selecting this gateway. Leave empty "
2400
  "to hide."
2401
  msgstr ""
2402
 
2403
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:349
2404
  msgid "Message to show visitors who are not logged in."
2405
  msgstr ""
2406
 
2407
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/carts/mycred-wpecommerce.php:353
2408
  msgid ""
2409
  "Message to show when users does not have enough %plural% to pay using this "
2410
  "gateway."
2411
  msgstr ""
2412
 
2413
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:24
2414
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:447
2415
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:512
2416
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:313
2417
  msgid "Payments"
2418
  msgstr ""
2419
 
2420
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:25
2421
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:36
2422
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:32
2423
  msgid "Pay Now"
2424
  msgstr ""
2425
 
2426
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:29
2427
  msgid "Payment for Event Registration"
2428
  msgstr ""
2429
 
2430
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:337
2431
  #, php-format
2432
  msgid "Activate %s"
2433
  msgstr ""
2434
 
2435
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:345
2436
  #, php-format
2437
  msgid "Deactivate %s"
2438
  msgstr ""
2439
 
2440
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:361
2441
  msgid "Gateway Settings"
2442
  msgstr ""
2443
 
2444
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:393
2445
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:437
2446
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:499
2447
  #, php-format
2448
  msgid "How many %s is 1 %s worth?"
2449
  msgstr ""
2450
 
2451
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:399
2452
  msgid "Gateways Settings Successfully Updated"
2453
  msgstr ""
2454
 
2455
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:407
2456
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:507
2457
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:572
2458
  msgid "Labels"
2459
  msgstr ""
2460
 
2461
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:410
2462
  msgid "Gateway Title"
2463
  msgstr ""
2464
 
2465
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:412
2466
  msgid "Title to show on Payment page"
2467
  msgstr ""
2468
 
2469
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:415
2470
  msgid "Payment Type"
2471
  msgstr ""
2472
 
2473
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:417
2474
  msgid "Title to show on receipts and logs"
2475
  msgstr ""
2476
 
2477
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:420
2478
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:524
2479
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:589
2480
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:349
2481
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:541
2482
  msgid "Button Label"
2483
  msgstr ""
2484
 
2485
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:422
2486
  msgid "Pay Button"
2487
  msgstr ""
2488
 
2489
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:425
2490
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:132
2491
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:135
2492
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:322
2493
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:325
2494
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:340
2495
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:537
2496
  msgid "Price"
2497
  msgstr ""
2498
 
2499
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:435
2500
  msgid ""
2501
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2502
  "<code>mycred_no_sale</code>"
2503
  msgstr ""
2504
 
2505
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:436
2506
  msgid "Users must be logged in to use this gateway!"
2507
  msgstr ""
2508
 
2509
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:442
2510
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:465
2511
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:530
2512
  msgid ""
2513
  "Option to share sales with the event owner (post author). Use zero to "
2514
  "disable."
2515
  msgstr ""
2516
 
2517
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:445
2518
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:22
2519
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:23
2520
  msgid "Log"
2521
  msgstr ""
2522
 
2523
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:448
2524
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:549
2525
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:623
2526
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:681
2527
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:349
2528
  msgid "Log Entry"
2529
  msgstr ""
2530
 
2531
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:455
2532
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:898
2533
  msgid "Templates"
2534
  msgstr ""
2535
 
2536
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:458
2537
  msgid "Solvent users"
2538
  msgstr ""
2539
 
2540
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:460
2541
  msgid ""
2542
  "Message to show users on the payment page before they are charged. Leave "
2543
  "empty to hide.<br />Available template tags: General"
2544
  msgstr ""
2545
 
2546
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:463
2547
  msgid "Insolvent users"
2548
  msgstr ""
2549
 
2550
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:465
2551
  msgid ""
2552
  "Message to show users who do not have enough points to pay.<br />Available "
2553
  "template tags: General"
2554
  msgstr ""
2555
 
2556
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:470
2557
  msgid ""
2558
  "Message to show visitors (users not logged in) on the payment page.<br /"
2559
  ">Available template tags: General"
2560
  msgstr ""
2561
 
2562
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventespresso3.php:480
2563
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:379
2564
  msgid "Update Settings"
2565
  msgstr ""
2566
 
2567
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:30
2568
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:26
2569
  msgid "Payment for tickets to %link_with_title%"
2570
  msgstr ""
2571
 
2572
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:31
2573
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:27
2574
  msgid "Ticket refund for %link_with_title%"
2575
  msgstr ""
2576
 
2577
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:35
2578
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:31
2579
  msgid "Pay using your %_plural% balance"
2580
  msgstr ""
2581
 
2582
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:37
2583
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:33
2584
  msgid "Pay"
2585
  msgstr ""
2586
 
2587
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2588
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:36
2589
  msgid "Thank you for your payment!"
2590
  msgstr ""
2591
 
2592
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2593
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:37
2594
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2595
  msgstr ""
2596
 
2597
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:129
2598
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:319
2599
  msgid "Ticket Type"
2600
  msgstr ""
2601
 
2602
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:138
2603
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:328
2604
  msgid "Spaces"
2605
  msgstr ""
2606
 
2607
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:220
2608
  msgid "You can not pay using this gateway."
2609
  msgstr ""
2610
 
2611
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:359
2612
  msgid "Reject"
2613
  msgstr ""
2614
 
2615
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:363
2616
  msgid "Delete"
2617
  msgstr ""
2618
 
2619
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:368
2620
  msgid "Edit/View"
2621
  msgstr ""
2622
 
2623
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:449
2624
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:514
2625
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2626
  msgstr ""
2627
 
2628
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:450
2629
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:515
2630
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2631
  msgstr ""
2632
 
2633
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:451
2634
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:516
2635
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2636
  msgstr ""
2637
 
2638
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:455
2639
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:488
2640
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:520
2641
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:553
2642
  msgid "Refunds"
2643
  msgstr ""
2644
 
2645
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:458
2646
  msgid ""
2647
  "The percentage of the paid amount to refund if a user cancells their "
2648
  "booking. Use zero for no refunds. No refunds are given to \"Rejected\" "
2649
  "bookings!"
2650
  msgstr ""
2651
 
2652
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:478
2653
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:543
2654
  msgid "Log Templates"
2655
  msgstr ""
2656
 
2657
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:481
2658
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:546
2659
  msgid "Purchases"
2660
  msgstr ""
2661
 
2662
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:484
2663
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:491
2664
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:549
2665
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:556
2666
  msgid "Available template tags: General and Post related."
2667
  msgstr ""
2668
 
2669
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:510
2670
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:575
2671
  msgid "Payment Link Label"
2672
  msgstr ""
2673
 
2674
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:513
2675
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:578
2676
  msgid ""
2677
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2678
  "HTML allowed."
2679
  msgstr ""
2680
 
2681
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:517
2682
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:582
2683
  msgid "Payment Header"
2684
  msgstr ""
2685
 
2686
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
2687
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:585
2688
  msgid "Shown on top of the payment form. No HTML allowed."
2689
  msgstr ""
2690
 
2691
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2692
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:592
2693
  msgid "The button label for payments. No HTML allowed!"
2694
  msgstr ""
2695
 
2696
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:534
2697
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:599
2698
  msgid "Successful Payments"
2699
  msgstr ""
2700
 
2701
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:537
2702
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager-pro.php:544
2703
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:602
2704
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:609
2705
  msgid "No HTML allowed! Available template tags: General"
2706
  msgstr ""
2707
 
2708
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:398
2709
  msgid "Balance After Payment"
2710
  msgstr ""
2711
 
2712
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:505
2713
  msgid "Click to toggle"
2714
  msgstr ""
2715
 
2716
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:505
2717
  #, php-format
2718
  msgid "%s Payments"
2719
  msgstr ""
2720
 
2721
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/gateway/event-booking/mycred-eventsmanager.php:523
2722
  msgid ""
2723
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2724
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2725
  msgstr ""
2726
 
2727
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:12
2728
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:40
2729
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:41
2730
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:42
2731
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:466
2732
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:743
2733
  msgid "Import"
2734
  msgstr ""
2735
 
2736
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:13
2737
  msgid ""
2738
  "With the Import add-on you can import CSV files, CubePoints or existing "
2739
  "points under any custom user meta values."
2740
  msgstr ""
2741
 
2742
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:91
2743
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:749
2744
  msgid "CSV File"
2745
  msgstr ""
2746
 
2747
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:92
2748
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2749
  msgstr ""
2750
 
2751
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:95
2752
  msgid "CubePoints"
2753
  msgstr ""
2754
 
2755
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:96
2756
  msgid "Import CubePoints"
2757
  msgstr ""
2758
 
2759
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:99
2760
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:769
2761
  msgid "Custom User Meta"
2762
  msgstr ""
2763
 
2764
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:100
2765
  msgid "Import %_plural% from pre-existing custom user meta."
2766
  msgstr ""
2767
 
2768
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:217
2769
  msgid "No file selected. Please select your CSV file and try again."
2770
  msgstr ""
2771
 
2772
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:232
2773
  msgid "Failed to load file."
2774
  msgstr ""
2775
 
2776
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:253
2777
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:423
2778
  #, php-format
2779
  msgid ""
2780
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2781
  msgstr ""
2782
 
2783
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:262
2784
  msgid ""
2785
  "No valid records found in file. Make sure you have selected the correct way "
2786
  "to identify users in the mycred_user column!"
2787
  msgstr ""
2788
 
2789
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:268
2790
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:351
2791
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:438
2792
  #, php-format
2793
  msgid ""
2794
  "Import successfully completed. A total of %d users were effected and %d "
2795
  "entires were skipped. Import completed in %.2f seconds."
2796
  msgstr ""
2797
 
2798
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:302
2799
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:587
2800
  msgid "No CubePoints found."
2801
  msgstr ""
2802
 
2803
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:336
2804
  #, php-format
2805
  msgid ""
2806
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2807
  "seconds."
2808
  msgstr ""
2809
 
2810
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:345
2811
  msgid "No valid CubePoints founds."
2812
  msgstr ""
2813
 
2814
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:371
2815
  msgid "Missing meta key. Not sure what I should be looking for."
2816
  msgstr ""
2817
 
2818
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:390
2819
  #, php-format
2820
  msgid "No rows found for the <strong>%s</strong> meta key."
2821
  msgstr ""
2822
 
2823
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:432
2824
  msgid "No valid records founds."
2825
  msgstr ""
2826
 
2827
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:478
2828
  msgid "Remember to de-activate this add-on once you are done importing!"
2829
  msgstr ""
2830
 
2831
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:510
2832
  msgid "File"
2833
  msgstr ""
2834
 
2835
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:514
2836
  msgid "Maximum allowed upload size is "
2837
  msgstr ""
2838
 
2839
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:514
2840
  msgid ""
2841
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2842
  "Optional columns: <code>mycred_log</code>."
2843
  msgstr ""
2844
 
2845
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:517
2846
  msgid "Identify Users By"
2847
  msgstr ""
2848
 
2849
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:520
2850
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:343
2851
  msgid "ID"
2852
  msgstr ""
2853
 
2854
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:521
2855
  msgid "Username"
2856
  msgstr ""
2857
 
2858
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:522
2859
  msgid "Email"
2860
  msgstr ""
2861
 
2862
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:529
2863
  msgid "How much is 1 imported value worth?"
2864
  msgstr ""
2865
 
2866
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:534
2867
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:602
2868
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:666
2869
  msgid "Round"
2870
  msgstr ""
2871
 
2872
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:535
2873
  msgid "None"
2874
  msgstr ""
2875
 
2876
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:536
2877
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:604
2878
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:668
2879
  msgid "Round Up"
2880
  msgstr ""
2881
 
2882
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:537
2883
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:605
2884
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:669
2885
  msgid "Round Down"
2886
  msgstr ""
2887
 
2888
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:542
2889
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:610
2890
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:674
2891
  msgid "Precision"
2892
  msgstr ""
2893
 
2894
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:544
2895
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:612
2896
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:676
2897
  msgid ""
2898
  "The optional number of decimal digits to round to. Use zero to round the "
2899
  "nearest whole number."
2900
  msgstr ""
2901
 
2902
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:553
2903
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:627
2904
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:685
2905
  msgid "See the help tab for available template tags. Leave blank to disable."
2906
  msgstr ""
2907
 
2908
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:558
2909
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:632
2910
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:696
2911
  msgid "Run Import"
2912
  msgstr ""
2913
 
2914
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:585
2915
  #, php-format
2916
  msgid "Found %d users with CubePoints."
2917
  msgstr ""
2918
 
2919
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:588
2920
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:652
2921
  msgid "Meta Key"
2922
  msgstr ""
2923
 
2924
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:603
2925
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:667
2926
  msgid "Do not round"
2927
  msgstr ""
2928
 
2929
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:617
2930
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:688
2931
  msgid "After Import"
2932
  msgstr ""
2933
 
2934
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:620
2935
  msgid "Delete users CubePoints balance."
2936
  msgstr ""
2937
 
2938
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:691
2939
  msgid "Delete the old value."
2940
  msgstr ""
2941
 
2942
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:720
2943
  msgid "Failed to get file contents."
2944
  msgstr ""
2945
 
2946
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:725
2947
  msgid "Failed to put file contents."
2948
  msgstr ""
2949
 
2950
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:745
2951
  msgid ""
2952
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2953
  "database. Remember that the import can take time depending on your file size "
2954
  "or the number of users being imported."
2955
  msgstr ""
2956
 
2957
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:751
2958
  msgid "CSV Import"
2959
  msgstr ""
2960
 
2961
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:752
2962
  msgid ""
2963
  "Imports using a comma-separated values file requires the following columns:"
2964
  msgstr ""
2965
 
2966
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:753
2967
  msgid ""
2968
  "Column identifing the user. All rows must identify the user the same way, "
2969
  "either using an ID, Username (user_login) or email. Users that can not be "
2970
  "found will be ignored."
2971
  msgstr ""
2972
 
2973
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:754
2974
  msgid ""
2975
  "Column with the amount to be imported. If set, an exchange rate is applied "
2976
  "to this value before import."
2977
  msgstr ""
2978
 
2979
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:755
2980
  msgid ""
2981
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2982
  "the log entry for each import."
2983
  msgstr ""
2984
 
2985
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:759
2986
  msgid "Cubepoints"
2987
  msgstr ""
2988
 
2989
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:761
2990
  msgid "Cubepoints Import"
2991
  msgstr ""
2992
 
2993
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:762
2994
  msgid ""
2995
  "When this page loads, the importer will automatically check if you have been "
2996
  "using Cubepoints. If you have, you can import these with the option to "
2998
  "clean."
2999
  msgstr ""
3000
 
3001
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:763
3002
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:773
3003
  msgid ""
3004
  "Before a value is imported, you can apply an exchange rate. To import "
3005
  "without changing the value, use 1 as the exchange rate."
3006
  msgstr ""
3007
 
3008
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:764
3009
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:774
3010
  msgid ""
3011
  "You can select to add a log entry for each import or leave the template "
3012
  "empty to skip."
3013
  msgstr ""
3014
 
3015
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:765
3016
  msgid ""
3017
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
3018
  "installation exists."
3019
  msgstr ""
3020
 
3021
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:771
3022
  msgid "Custom User Meta Import"
3023
  msgstr ""
3024
 
3025
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:772
3026
  msgid ""
3027
  "You can import any type of points that have previously been saved in your "
3028
  "database. All you need is the meta key under which it has been saved."
3029
  msgstr ""
3030
 
3031
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/import/myCRED-addon-import.php:775
3032
  msgid ""
3033
  "Please note that the meta key is case sensitive and can not contain "
3034
  "whitespaces!"
3035
  msgstr ""
3036
 
3037
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:12
3038
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:167
3039
  msgid "Notifications"
3040
  msgstr ""
3041
 
3042
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:13
3043
  msgid "Notify your users when their balances changes."
3044
  msgstr ""
3045
 
3046
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:169
3047
  msgid "Styling"
3048
  msgstr ""
3049
 
3050
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:173
3051
  msgid "Use the included CSS Styling for notifications."
3052
  msgstr ""
3053
 
3054
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:180
3055
  msgid ""
3056
  "Use %entry% to show the log entry in the notice and %amount% for the amount."
3057
  msgstr ""
3058
 
3059
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:183
3060
  msgid "Transient Lifespan"
3061
  msgstr ""
3062
 
3063
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:187
3064
  msgid ""
3065
  "The number of days a users notification is saved before being automatically "
3066
  "deleted."
3067
  msgstr ""
3068
 
3069
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:190
3070
  msgid "Duration"
3071
  msgstr ""
3072
 
3073
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/notifications/myCRED-addon-notifications.php:194
3074
  msgid ""
3075
  "The number of milliseconds a notice should be visible.<br />Use zero to "
3076
  "require that the user closes the notice manually. 1000 milliseconds = 1 "
3077
  "second."
3078
  msgstr ""
3079
 
3080
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:12
3081
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:166
3082
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:172
3083
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:178
3084
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:701
3085
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:893
3086
  msgid "Ranks"
3087
  msgstr ""
3088
 
3089
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:13
3090
  msgid ""
3091
  "Create ranks for users reaching a certain number of points with the option "
3092
  "to add logos for each rank."
3093
  msgstr ""
3094
 
3095
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:167
3096
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:396
3097
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:413
3098
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:509
3099
  msgid "Rank"
3100
  msgstr ""
3101
 
3102
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:169
3103
  msgid "Add New Rank"
3104
  msgstr ""
3105
 
3106
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:170
3107
  msgid "Edit Rank"
3108
  msgstr ""
3109
 
3110
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:171
3111
  msgid "New Rank"
3112
  msgstr ""
3113
 
3114
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:173
3115
  msgid "View Rank"
3116
  msgstr ""
3117
 
3118
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:174
3119
  msgid "Search Ranks"
3120
  msgstr ""
3121
 
3122
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:175
3123
  msgid "No ranks found"
3124
  msgstr ""
3125
 
3126
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:176
3127
  msgid "No ranks found in Trash"
3128
  msgstr ""
3129
 
3130
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:242
3131
  #, php-format
3132
  msgid "Completed - Total of %d users effected"
3133
  msgstr ""
3134
 
3135
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:244
3136
  msgid "Log is Empty"
3137
  msgstr ""
3138
 
3139
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:438
3140
  msgid "Newbie"
3141
  msgstr ""
3142
 
3143
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:469
3144
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:472
3145
  #, php-format
3146
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
3147
  msgstr ""
3148
 
3149
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:474
3150
  msgid "Rank Activated"
3151
  msgstr ""
3152
 
3153
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:475
3154
  msgid "Rank Saved"
3155
  msgstr ""
3156
 
3157
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:476
3158
  #, php-format
3159
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
3160
  msgstr ""
3161
 
3162
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:478
3163
  #, php-format
3164
  msgid "Rank scheduled for: <strong>%1$s</strong>."
3165
  msgstr ""
3166
 
3167
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:535
3168
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:590
3169
  msgid "Rank Title"
3170
  msgstr ""
3171
 
3172
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:536
3173
  msgid "Logo"
3174
  msgstr ""
3175
 
3176
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:537
3177
  msgid "Requirement"
3178
  msgstr ""
3179
 
3180
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:538
3181
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:364
3182
  msgid "Users"
3183
  msgstr ""
3184
 
3185
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:554
3186
  msgid "No Logo Set"
3187
  msgstr ""
3188
 
3189
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:563
3190
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:568
3191
  msgid "Any Value"
3192
  msgstr ""
3193
 
3194
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:570
3195
  msgid "Maximum %plural%"
3196
  msgstr ""
3197
 
3198
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:603
3199
  msgid "Rank Settings"
3200
  msgstr ""
3201
 
3202
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:625
3203
  msgid "Minimum %plural% to reach this rank"
3204
  msgstr ""
3205
 
3206
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:629
3207
  msgid "Maximum %plural% to be included in this rank"
3208
  msgstr ""
3209
 
3210
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:634
3211
  msgid "All Published Ranks"
3212
  msgstr ""
3213
 
3214
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:641
3215
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:643
3216
  msgid "Not Set"
3217
  msgstr ""
3218
 
3219
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:648
3220
  msgid "No Ranks found"
3221
  msgstr ""
3222
 
3223
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:703
3224
  msgid "Rank Features"
3225
  msgstr ""
3226
 
3227
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:707
3228
  msgid "%plural% requirement"
3229
  msgstr ""
3230
 
3231
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:708
3232
  msgid "Featured Image (Logo)"
3233
  msgstr ""
3234
 
3235
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:709
3236
  msgid "Content"
3237
  msgstr ""
3238
 
3239
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:710
3240
  msgid "Excerpt"
3241
  msgstr ""
3242
 
3243
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:711
3244
  msgid "Comments"
3245
  msgstr ""
3246
 
3247
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:712
3248
  msgid "Page Attributes"
3249
  msgstr ""
3250
 
3251
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:713
3252
  msgid "Custom Fields"
3253
  msgstr ""
3254
 
3255
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:716
3256
  msgid "Public"
3257
  msgstr ""
3258
 
3259
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:720
3260
  msgid ""
3261
  "If you want to create a template archive for each rank, you must select to "
3262
  "have ranks public. Defaults to disabled."
3263
  msgstr ""
3264
 
3265
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:723
3266
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:896
3267
  msgid "Rank Basis"
3268
  msgstr ""
3269
 
3270
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:726
3271
  msgid "Users are ranked according to their current balance."
3272
  msgstr ""
3273
 
3274
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:729
3275
  msgid ""
3276
  "Users are ranked according to the total amount of %_plural% they have "
3277
  "accumulated."
3278
  msgstr ""
3279
 
3280
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:733
3281
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:738
3282
  msgid "Calculate Totals"
3283
  msgstr ""
3284
 
3285
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:736
3286
  msgid ""
3287
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3288
  "the users current balance will be used as a starting point."
3289
  msgstr ""
3290
 
3291
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:736
3292
  msgid ""
3293
  "Once a users total has been calculated, they will be assigned to their "
3294
  "appropriate roles. For this reason, it is highly recommended that you first "
3295
  "setup your ranks!"
3296
  msgstr ""
3297
 
3298
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:737
3299
  msgid ""
3300
  "Depending on your log size and number of users this process may take a "
3301
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3302
  "until this is completed!"
3303
  msgstr ""
3304
 
3305
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:742
3306
  msgid "Archive URL"
3307
  msgstr ""
3308
 
3309
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:746
3310
  msgid "Ignored if Ranks are not public"
3311
  msgstr ""
3312
 
3313
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:749
3314
  msgid "Display Order"
3315
  msgstr ""
3316
 
3317
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:756
3318
  msgid "Ascending - Lowest rank to highest"
3319
  msgstr ""
3320
 
3321
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:757
3322
  msgid "Descending - Highest rank to lowest"
3323
  msgstr ""
3324
 
3325
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:766
3326
  msgid ""
3327
  "Select in what order ranks should be displayed in your admin area and/or "
3328
  "front if ranks are \"Public\""
3329
  msgstr ""
3330
 
3331
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:782
3332
  msgid "Rank in BuddyPress"
3333
  msgstr ""
3334
 
3335
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:850
3336
  msgid "Script Communication Error"
3337
  msgstr ""
3338
 
3339
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:895
3340
  msgid ""
3341
  "You can create ranks according to the amount of points a user has. By "
3342
  "default, ranks are only visible in widgets and shortcodes however it is "
3344
  "specific ones."
3345
  msgstr ""
3346
 
3347
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:897
3348
  msgid ""
3349
  "As of version 1.2, you can select to rank users according to their current "
3350
  "balance or the total amount of %_plural% they have accumulated. This is "
3352
  "%_plural% to pay for items in your store or event tickets."
3353
  msgstr ""
3354
 
3355
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:899
3356
  msgid ""
3357
  "Ranks are just another custom post type which means that you can, if you "
3358
  "select to make Ranks Public, create custom template files for ranks in your "
3359
  "theme folder."
3360
  msgstr ""
3361
 
3362
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:900
3363
  #, php-format
3364
  msgid ""
3365
  "For more information on Templates for Custom Post Types visit the <a href="
3366
  "\"%s\">WordPress Codex</a>."
3367
  msgstr ""
3368
 
3369
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:901
3370
  msgid "Changing URL Slug"
3371
  msgstr ""
3372
 
3373
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:902
3374
  msgid "You can change the URL slug used for ranks to any URL friendly value."
3375
  msgstr ""
3376
 
3377
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/myCRED-addon-ranks.php:903
3378
  msgid ""
3379
  "If you are using a custom permalink structure and you make ranks public or "
3380
  "change the slug, you will need to visit your permalink settings page and "
3382
  "a 404 error message when trying to view a rank archive page."
3383
  msgstr ""
3384
 
3385
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-functions.php:148
3386
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-functions.php:154
3387
  msgid "No Rank"
3388
  msgstr ""
3389
 
3390
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:57
3391
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:132
3392
  msgid "No users found with this rank"
3393
  msgstr ""
3394
 
3395
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:62
3396
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:224
3397
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:227
3398
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:288
3399
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:349
3400
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:353
3401
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:357
3402
  msgid "error"
3403
  msgstr ""
3404
 
3405
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/ranks/includes/mycred-rank-shortcodes.php:62
3406
  msgid "Rank ID is required!"
3407
  msgstr ""
3408
 
3409
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:12
3410
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:304
3411
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1061
3412
  msgid "Sell Content"
3413
  msgstr ""
3414
 
3415
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:13
3416
  msgid ""
3417
  "This add-on allows you to sell posts, pages or any public post types on your "
3418
  "website. You can either sell the entire content or using our shortcode, sell "
3419
  "parts of your content allowing you to offer \"teasers\"."
3420
  msgstr ""
3421
 
3422
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:42
3423
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3424
  msgstr ""
3425
 
3426
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:43
3427
  msgid ""
3428
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3429
  "</p>"
3430
  msgstr ""
3431
 
3432
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:44
3433
  msgid ""
3434
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3435
  "<p><strong>Price</strong>: %price%</p>"
3436
  msgstr ""
3437
 
3438
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:54
3439
  msgid "Purchase of %link_with_title%"
3440
  msgstr ""
3441
 
3442
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:55
3443
  msgid "Sale of %link_with_title%"
3444
  msgstr ""
3445
 
3446
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:72
3447
  msgid "Hours"
3448
  msgstr ""
3449
 
3450
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:214
3451
  msgid "You can not buy this content."
3452
  msgstr ""
3453
 
3454
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:277
3455
  msgid "Error. Try Again"
3456
  msgstr ""
3457
 
3458
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:299
3459
  msgid "No Payout. Just charge."
3460
  msgstr ""
3461
 
3462
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:300
3463
  msgid "Pay Content Author."
3464
  msgstr ""
3465
 
3466
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:306
3467
  msgid "Post Types"
3468
  msgstr ""
3469
 
3470
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:310
3471
  msgid "Comma separated list of post types that can be sold."
3472
  msgstr ""
3473
 
3474
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:327
3475
  msgid "Percentage to pay Author"
3476
  msgstr ""
3477
 
3478
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:329
3479
  msgid ""
3480
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3481
  "authors are not paid."
3482
  msgstr ""
3483
 
3484
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:337
3485
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1064
3486
  msgid "Defaults"
3487
  msgstr ""
3488
 
3489
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:345
3490
  msgid "Allow authors to change price."
3491
  msgstr ""
3492
 
3493
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:354
3494
  msgid "Allow authors to change button label."
3495
  msgstr ""
3496
 
3497
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:358
3498
  msgid "Purchases expire after"
3499
  msgstr ""
3500
 
3501
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:360
3502
  msgid "Use zero for permanent sales."
3503
  msgstr ""
3504
 
3505
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:363
3506
  msgid "Sale Template for non members"
3507
  msgstr ""
3508
 
3509
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:367
3510
  msgid ""
3511
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3512
  "be logged in to buy content!"
3513
  msgstr ""
3514
 
3515
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:368
3516
  msgid ""
3517
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3518
  "%link_with_title%, %price%"
3519
  msgstr ""
3520
 
3521
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:371
3522
  msgid "Sale Template for members"
3523
  msgstr ""
3524
 
3525
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:375
3526
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:383
3527
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3528
  msgstr ""
3529
 
3530
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:376
3531
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:384
3532
  msgid ""
3533
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3534
  "%link_with_title%, %buy_button%, %price%"
3535
  msgstr ""
3536
 
3537
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:379
3538
  msgid "Insufficient funds template"
3539
  msgstr ""
3540
 
3541
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:387
3542
  msgid "Log template for Purchases"
3543
  msgstr ""
3544
 
3545
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:391
3546
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:398
3547
  msgid ""
3548
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3549
  "or %link_with_title%"
3550
  msgstr ""
3551
 
3552
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:394
3553
  msgid "Log template for Sales"
3554
  msgstr ""
3555
 
3556
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:450
3557
  msgid "Sell This"
3558
  msgstr ""
3559
 
3560
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:499
3561
  msgid " Sell Content needs to be setup before you can use this feature."
3562
  msgstr ""
3563
 
3564
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:502
3565
  msgid "Setup add-on"
3566
  msgstr ""
3567
 
3568
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:502
3569
  msgid "Lets do it"
3570
  msgstr ""
3571
 
3572
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:531
3573
  msgid "Enable sale of this "
3574
  msgstr ""
3575
 
3576
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:545
3577
  msgid "Purchase expires after"
3578
  msgstr ""
3579
 
3580
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:794
3581
  msgid "Thank you for your purchase!"
3582
  msgstr ""
3583
 
3584
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:878
3585
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:961
3586
  msgid "The following content is set for sale:"
3587
  msgstr ""
3588
 
3589
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:979
3590
  msgid "No purchases found"
3591
  msgstr ""
3592
 
3593
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1016
3594
  msgid "Purchased"
3595
  msgstr ""
3596
 
3597
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1063
3598
  msgid ""
3599
  "This add-on lets you sell either entire contents or parts of it. You can "
3600
  "select if you want to just charge users or share a percentage of the sale "
3601
  "with the post author."
3602
  msgstr ""
3603
 
3604
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1065
3605
  msgid ""
3606
  "The default price and button label is applied to all content that is set for "
3607
  "sale. You can select if you want to enforce these settings or let the "
3608
  "content authors set their own."
3609
  msgstr ""
3610
 
3611
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/sell-content/myCRED-addon-sell-content.php:1067
3612
  msgid ""
3613
  "You can either sell entire posts via the Sell Content Meta Box or by using "
3614
  "the <code>mycred_sell_this</code> shortcode.<br />For more information on "
3615
  "how to use the shortcode, please visit the"
3616
  msgstr ""
3617
 
3618
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:12
3619
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:50
3620
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:492
3621
  msgid "Transfer"
3622
  msgstr ""
3623
 
3624
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:13
3625
  msgid ""
3626
  "Allow your users to send or \"donate\" points to other members by either "
3627
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3628
  msgstr ""
3629
 
3630
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:43
3631
  msgid "You do not have enough %plural% to send."
3632
  msgstr ""
3633
 
3634
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:44
3635
  msgid "You have exceeded your %limit% transfer limit."
3636
  msgstr ""
3637
 
3638
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:143
3639
  msgid "Transaction completed."
3640
  msgstr ""
3641
 
3642
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:144
3643
  msgid ""
3644
  "Security token could not be verified. Please contact your site administrator!"
3645
  msgstr ""
3646
 
3647
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:145
3648
  msgid "Communications error. Please try again later."
3649
  msgstr ""
3650
 
3651
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:146
3652
  msgid "Recipient not found. Please try again."
3653
  msgstr ""
3654
 
3655
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:147
3656
  msgid "Transaction declined by recipient."
3657
  msgstr ""
3658
 
3659
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:148
3660
  msgid "Incorrect amount. Please try again."
3661
  msgstr ""
3662
 
3663
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:149
3664
  msgid ""
3665
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3666
  "this has been done!"
3667
  msgstr ""
3668
 
3669
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:150
3670
  msgid "Insufficient funds. Please enter a lower amount."
3671
  msgstr ""
3672
 
3673
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:151
3674
  msgid "Transfer Limit exceeded."
3675
  msgstr ""
3676
 
3677
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:152
3678
  msgid ""
3679
  "The request amount will exceed your transfer limit. Please try again with a "
3680
  "lower amount!"
3681
  msgstr ""
3682
 
3683
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:177
3684
  msgid "No limits."
3685
  msgstr ""
3686
 
3687
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:178
3688
  msgid "Impose daily limit."
3689
  msgstr ""
3690
 
3691
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:179
3692
  msgid "Impose weekly limit."
3693
  msgstr ""
3694
 
3695
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:183
3696
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:591
3697
  msgid "Transfer %plural%"
3698
  msgstr ""
3699
 
3700
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:185
3701
  msgid "Log template for sending"
3702
  msgstr ""
3703
 
3704
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:192
3705
  msgid "Log template for receiving"
3706
  msgstr ""
3707
 
3708
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:199
3709
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:969
3710
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1227
3711
  msgid "Limits"
3712
  msgstr ""
3713
 
3714
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:216
3715
  msgid "Maximum Amount"
3716
  msgstr ""
3717
 
3718
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:218
3719
  msgid "This amount is ignored if no limits are imposed."
3720
  msgstr ""
3721
 
3722
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:221
3723
  msgid "Form Templates"
3724
  msgstr ""
3725
 
3726
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:224
3727
  msgid "Not logged in Template"
3728
  msgstr ""
3729
 
3730
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:226
3731
  msgid ""
3732
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3733
  "elements allowed!"
3734
  msgstr ""
3735
 
3736
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:230
3737
  msgid "Balance Template"
3738
  msgstr ""
3739
 
3740
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:232
3741
  msgid ""
3742
  "Template to use when displaying the users balance (if included). No HTML "
3743
  "elements allowed!"
3744
  msgstr ""
3745
 
3746
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:236
3747
  msgid "Limit Template"
3748
  msgstr ""
3749
 
3750
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:238
3751
  msgid ""
3752
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3753
  msgstr ""
3754
 
3755
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:242
3756
  msgid "Button Template"
3757
  msgstr ""
3758
 
3759
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:244
3760
  msgid "Send Transfer button template. No HTML elements allowed!"
3761
  msgstr ""
3762
 
3763
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:247
3764
  msgid "Error Messages"
3765
  msgstr ""
3766
 
3767
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:250
3768
  msgid "Balance to low to send."
3769
  msgstr ""
3770
 
3771
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:252
3772
  msgid ""
3773
  "Text to show when a users balance is to low for transfers. Leave empty to "
3774
  "hide. No HTML elements allowed!"
3775
  msgstr ""
3776
 
3777
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:256
3778
  msgid "Transfer Limit Reached."
3779
  msgstr ""
3780
 
3781
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:258
3782
  msgid ""
3783
  "Text to show when a user has reached their transfer limit (if used). Leave "
3784
  "empty to hide. No HTML elements allowed!"
3785
  msgstr ""
3786
 
3787
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:494
3788
  msgid ""
3789
  "This add-on lets your users transfer %_plural% to each other. Members who "
3790
  "are set to be excluded can neither send or receive %_plural%."
3791
  msgstr ""
3792
 
3793
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:495
3794
  msgid "Transfer Limit"
3795
  msgstr ""
3796
 
3797
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:496
3798
  msgid ""
3799
  "You can impose a daily-, weekly- or monthly transfer limit for each user. "
3800
  "Note, that this transfer limit is imposed on everyone who are not excluded "
3801
  "from using myCRED."
3802
  msgstr ""
3803
 
3804
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:498
3805
  msgid ""
3806
  "Transfers can be made by either using the <code>mycred_transfer</code> "
3807
  "shortcode or via the myCRED Transfer Widget.<br />For more information on "
3808
  "how to use the shortcode, please visit the"
3809
  msgstr ""
3810
 
3811
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:521
3812
  msgid "Allow transfers between users."
3813
  msgstr ""
3814
 
3815
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:523
3816
  #, php-format
3817
  msgid "%s Transfer"
3818
  msgstr ""
3819
 
3820
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:537
3821
  msgid "The myCRED Transfer add-on has not yet been setup!"
3822
  msgstr ""
3823
 
3824
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:602
3825
  msgid "Show users balance"
3826
  msgstr ""
3827
 
3828
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:606
3829
  msgid "Show users limit"
3830
  msgstr ""
3831
 
3832
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:729
3833
  msgid "To:"
3834
  msgstr ""
3835
 
3836
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/addons/transfer/myCRED-addon-transfer.php:733
3837
  msgid "Amount:"
3838
  msgstr ""
3839
 
3840
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:68
3841
  msgid "User is excluded"
3842
  msgstr ""
3843
 
3844
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:73
3845
  msgid "Log Entry can not be empty"
3846
  msgstr ""
3847
 
3848
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:77
3849
  msgid "Amount can not be zero"
3850
  msgstr ""
3851
 
3852
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:174
3853
  msgid "Excluded"
3854
  msgstr ""
3855
 
3856
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:181
3857
  msgid "History"
3858
  msgstr ""
3859
 
3860
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:183
3861
  msgid "Adjust"
3862
  msgstr ""
3863
 
3864
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:234
3865
  #, php-format
3866
  msgid "My current %singular% balance"
3867
  msgstr ""
3868
 
3869
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:257
3870
  msgid "Adjust Your Balance"
3871
  msgstr ""
3872
 
3873
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:259
3874
  msgid "Adjust Users Balance"
3875
  msgstr ""
3876
 
3877
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:266
3878
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:337
3879
  msgid "required"
3880
  msgstr ""
3881
 
3882
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:268
3883
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:339
3884
  msgid "optional"
3885
  msgstr ""
3886
 
3887
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:274
3888
  msgid "Log description for adjustment"
3889
  msgstr ""
3890
 
3891
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:275
3892
  msgid "Update"
3893
  msgstr ""
3894
 
3895
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:276
3896
  msgid "Description is required!"
3897
  msgstr ""
3898
 
3899
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:281
3900
  msgid "Users Current Balance"
3901
  msgstr ""
3902
 
3903
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:348
3904
  msgid "A positive or negative value"
3905
  msgstr ""
3906
 
3907
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-admin.php:350
3908
  msgid "Update Balance"
3909
  msgstr ""
3910
 
3911
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:65
3912
  msgid "Point"
3913
  msgstr ""
3914
 
3915
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:66
3916
  msgid "Points"
3917
  msgstr ""
3918
 
3919
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:388
3920
  msgid "Deleted"
3921
  msgstr ""
3922
 
3923
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:523
3924
  msgid "Deleted Item"
3925
  msgstr ""
3926
 
3927
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:1308
3928
  msgid "ref empty"
3929
  msgstr ""
3930
 
3931
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:1316
3932
  msgid "incorrect user id format"
3933
  msgstr ""
3934
 
3935
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:1329
3936
  msgid "incorrect unix timestamp (from):"
3937
  msgstr ""
3938
 
3939
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-functions.php:1338
3940
  msgid "incorrect unix timestamp (to):"
3941
  msgstr ""
3942
 
3943
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:38
3944
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
3945
  msgstr ""
3946
 
3947
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:43
3948
  msgid "myCRED requires PHP 5.2.0 or higher. Version detected: "
3949
  msgstr ""
3950
 
3951
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:48
3952
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3953
  msgstr ""
3954
 
3955
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:53
3956
  msgid ""
3957
  "Sorry but your WordPress installation does not reach the minimum "
3958
  "requirements for running myCRED. The following errors were given:"
3959
  msgstr ""
3960
 
3961
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:253
3962
  msgid "myCRED needs your attention."
3963
  msgstr ""
3964
 
3965
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:253
3966
  msgid "Run Setup"
3967
  msgstr ""
3968
 
3969
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:265
3970
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:266
3971
  msgid "myCRED Setup"
3972
  msgstr ""
3973
 
3974
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:410
3975
  msgid "Step"
3976
  msgstr ""
3977
 
3978
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:433
3979
  msgid ""
3980
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3981
  "points format, layout and security settings."
3982
  msgstr ""
3983
 
3984
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:434
3985
  msgid "Begin Setup"
3986
  msgstr ""
3987
 
3988
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:491
3989
  msgid "Select the format you want to use for your points."
3990
  msgstr ""
3991
 
3992
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:492
3993
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:200
3994
  msgid "Format"
3995
  msgstr ""
3996
 
3997
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:495
3998
  msgid "Separators"
3999
  msgstr ""
4000
 
4001
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:505
4002
  msgid "Decimals"
4003
  msgstr ""
4004
 
4005
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:507
4006
  msgid "Use zero for no decimals."
4007
  msgstr ""
4008
 
4009
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:510
4010
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:254
4011
  msgid "Presentation"
4012
  msgstr ""
4013
 
4014
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:513
4015
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:241
4016
  msgid "Name (Singular)"
4017
  msgstr ""
4018
 
4019
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:517
4020
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:246
4021
  msgid "Name (Plural)"
4022
  msgstr ""
4023
 
4024
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:523
4025
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:257
4026
  msgid "Prefix"
4027
  msgstr ""
4028
 
4029
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:531
4030
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:265
4031
  msgid "Suffix"
4032
  msgstr ""
4033
 
4034
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:536
4035
  msgid "Cancel Setup"
4036
  msgstr ""
4037
 
4038
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:536
4039
  msgid "Cancel"
4040
  msgstr ""
4041
 
4042
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:536
4043
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:616
4044
  msgid "Next"
4045
  msgstr ""
4046
 
4047
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:565
4048
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:273
4049
  msgid "Security"
4050
  msgstr ""
4051
 
4052
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:568
4053
  msgid "Edit Settings Capability"
4054
  msgstr ""
4055
 
4056
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:572
4057
  msgid "Edit Users %plural% Capability"
4058
  msgstr ""
4059
 
4060
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:580
4061
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:290
4062
  msgid "Exclude those who can \"Edit Settings\"."
4063
  msgstr ""
4064
 
4065
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:584
4066
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:294
4067
  msgid "Exclude those who can \"Edit Users %plural%\"."
4068
  msgstr ""
4069
 
4070
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:587
4071
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:298
4072
  msgid "Exclude the following user IDs:"
4073
  msgstr ""
4074
 
4075
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:591
4076
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:303
4077
  msgid "Rankings"
4078
  msgstr ""
4079
 
4080
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:595
4081
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:307
4082
  msgid "Update rankings each time a users balance changes."
4083
  msgstr ""
4084
 
4085
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:599
4086
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:311
4087
  msgid "Update rankings once a day."
4088
  msgstr ""
4089
 
4090
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:603
4091
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:315
4092
  msgid "Update rankings once a week."
4093
  msgstr ""
4094
 
4095
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:607
4096
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:319
4097
  msgid "Update rankings on a specific date."
4098
  msgstr ""
4099
 
4100
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:611
4101
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:244
4102
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:323
4103
  msgid "Date"
4104
  msgstr ""
4105
 
4106
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:635
4107
  msgid "Ready"
4108
  msgstr ""
4109
 
4110
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:636
4111
  msgid "Almost done! Click the button below to finish this setup."
4112
  msgstr ""
4113
 
4114
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-install.php:637
4115
  msgid "Install & Run"
4116
  msgstr ""
4117
 
4118
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:246
4119
  msgid "Entry"
4120
  msgstr ""
4121
 
4122
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:346
4123
  msgid "User Missing"
4124
  msgstr ""
4125
 
4126
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:385
4127
  msgid "No log entries found"
4128
  msgstr ""
4129
 
4130
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:400
4131
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:402
4132
  msgid "Search Log"
4133
  msgstr ""
4134
 
4135
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-log.php:401
4136
  msgid "search log entries"
4137
  msgstr ""
4138
 
4139
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:60
4140
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:61
4141
  msgid "Network Settings"
4142
  msgstr ""
4143
 
4144
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:158
4145
  msgid "Network"
4146
  msgstr ""
4147
 
4148
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:164
4149
  #, php-format
4150
  msgid "Note! %s has not yet been setup."
4151
  msgstr ""
4152
 
4153
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:168
4154
  msgid "Network Settings Updated"
4155
  msgstr ""
4156
 
4157
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:170
4158
  #, php-format
4159
  msgid "Configure network settings for %s."
4160
  msgstr ""
4161
 
4162
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:177
4163
  msgid "Master Template"
4164
  msgstr ""
4165
 
4166
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:181
4167
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:195
4168
  msgid "Yes"
4169
  msgstr ""
4170
 
4171
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:185
4172
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:199
4173
  msgid "No"
4174
  msgstr ""
4175
 
4176
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:188
4177
  #, php-format
4178
  msgid ""
4179
  "If enabled, %s will use your main site's settings for all other sites in "
4180
  "your network."
4181
  msgstr ""
4182
 
4183
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:191
4184
  msgid "Central Logging"
4185
  msgstr ""
4186
 
4187
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:202
4188
  #, php-format
4189
  msgid "If enabled, %s will log all site actions in your main site's log."
4190
  msgstr ""
4191
 
4192
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:205
4193
  msgid "Site Block"
4194
  msgstr ""
4195
 
4196
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:209
4197
  #, php-format
4198
  msgid "Comma separated list of blog ids where %s is to be disabled."
4199
  msgstr ""
4200
 
4201
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-network.php:218
4202
  msgid "Save Network Settings"
4203
  msgstr ""
4204
 
4205
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:523
4206
  msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4207
  msgstr ""
4208
 
4209
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:526
4210
  msgid "Click Update Settings to load the Remote API settings."
4211
  msgstr ""
4212
 
4213
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:528
4214
  msgid "Allow Remote Access"
4215
  msgstr ""
4216
 
4217
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:549
4218
  msgid "Remote Access"
4219
  msgstr ""
4220
 
4221
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:551
4222
  msgid "API Key"
4223
  msgstr ""
4224
 
4225
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:554
4226
  msgid "Key"
4227
  msgstr ""
4228
 
4229
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:555
4230
  msgid "min. 12 characters"
4231
  msgstr ""
4232
 
4233
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:556
4234
  msgid "Required for this feature to work!<br />Minimum 12 characters."
4235
  msgstr ""
4236
 
4237
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:559
4238
  msgid "Key Length"
4239
  msgstr ""
4240
 
4241
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:564
4242
  msgid "Generate New Key"
4243
  msgstr ""
4244
 
4245
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:566
4246
  msgid "Warning!"
4247
  msgstr ""
4248
 
4249
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:566
4250
  msgid ""
4251
  "Keep this key safe! Those you share this key with will be able to remotely "
4252
  "deduct / add / transfer %plural%!"
4253
  msgstr ""
4254
 
4255
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:568
4256
  msgid "Incoming URI"
4257
  msgstr ""
4258
 
4259
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:572
4260
  msgid ""
4261
  "The incoming call address. Remote calls made to any other URL will be "
4262
  "ignored."
4263
  msgstr ""
4264
 
4265
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:575
4266
  msgid "Debug Mode"
4267
  msgstr ""
4268
 
4269
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-remote.php:578
4270
  msgid ""
4271
  "Remember to disable when not used to prevent mischievous calls from learning "
4272
  "about your setup!"
4273
  msgstr ""
4274
 
4275
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:146
4276
  msgid "Leaderboard is empty."
4277
  msgstr ""
4278
 
4279
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:224
4280
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:349
4281
  msgid "Amount missing!"
4282
  msgstr ""
4283
 
4284
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:227
4285
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:357
4286
  msgid "Log Template Missing!"
4287
  msgstr ""
4288
 
4289
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:288
4290
  msgid "Anchor missing URL!"
4291
  msgstr ""
4292
 
4293
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:353
4294
  msgid "User ID missing for recipient."
4295
  msgstr ""
4296
 
4297
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:407
4298
  msgid "Sent"
4299
  msgstr ""
4300
 
4301
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:408
4302
  msgid "Error - Try Again"
4303
  msgstr ""
4304
 
4305
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-shortcodes.php:503
4306
  msgid "A video ID is required for this shortcode"
4307
  msgstr ""
4308
 
4309
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:19
4310
  #, php-format
4311
  msgid "Show the current users %s balance"
4312
  msgstr ""
4313
 
4314
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:21
4315
  #, php-format
4316
  msgid "%s Balance"
4317
  msgstr ""
4318
 
4319
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:156
4320
  msgid "My Balance"
4321
  msgstr ""
4322
 
4323
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:167
4324
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4325
  msgstr ""
4326
 
4327
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:191
4328
  msgid "Layout"
4329
  msgstr ""
4330
 
4331
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:193
4332
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:216
4333
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:226
4334
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:374
4335
  msgid "See the help tab for available template tags."
4336
  msgstr ""
4337
 
4338
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:198
4339
  msgid "Include users ranking"
4340
  msgstr ""
4341
 
4342
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:202
4343
  msgid ""
4344
  "This will be appended after the balance. See the help tab for available "
4345
  "template tags."
4346
  msgstr ""
4347
 
4348
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:208
4349
  msgid "Include history"
4350
  msgstr ""
4351
 
4352
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:210
4353
  msgid "History Title"
4354
  msgstr ""
4355
 
4356
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:212
4357
  msgid "Number of entires"
4358
  msgstr ""
4359
 
4360
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:214
4361
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:372
4362
  msgid "Row layout"
4363
  msgstr ""
4364
 
4365
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:222
4366
  msgid "Show message when not logged in"
4367
  msgstr ""
4368
 
4369
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:224
4370
  msgid "Message"
4371
  msgstr ""
4372
 
4373
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:297
4374
  #, php-format
4375
  msgid "Show a list of users sorted by their %s balance"
4376
  msgstr ""
4377
 
4378
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:299
4379
  #, php-format
4380
  msgid "%s List"
4381
  msgstr ""
4382
 
4383
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:352
4384
  msgid "Leaderboard"
4385
  msgstr ""
4386
 
4387
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:365
4388
  msgid "Visible to non-members"
4389
  msgstr ""
4390
 
4391
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:368
4392
  msgid "Number of users"
4393
  msgstr ""
4394
 
4395
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:377
4396
  msgid "Offset"
4397
  msgstr ""
4398
 
4399
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:379
4400
  msgid "Optional offset of order. Use zero to return the first in the list."
4401
  msgstr ""
4402
 
4403
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:382
4404
  msgid "Order"
4405
  msgstr ""
4406
 
4407
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:386
4408
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:195
4409
  msgid "Ascending"
4410
  msgstr ""
4411
 
4412
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/includes/mycred-widgets.php:387
4413
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:195
4414
  msgid "Descending"
4415
  msgstr ""
4416
 
4417
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:23
4418
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:24
4419
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:25
4420
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:260
4421
  msgid "Add-ons"
4422
  msgstr ""
4423
 
4424
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:265
4425
  msgid "Add-on Activated"
4426
  msgstr ""
4427
 
4428
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:267
4429
  msgid "Add-on Deactivated"
4430
  msgstr ""
4431
 
4432
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:270
4433
  msgid "Add-ons can expand your current installation with further features."
4434
  msgstr ""
4435
 
4436
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:289
4437
  #, php-format
4438
  msgid "You can find more add-ons in our %s."
4439
  msgstr ""
4440
 
4441
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:289
4442
  msgid "online store"
4443
  msgstr ""
4444
 
4445
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:309
4446
  msgid "Deactivate Add-on"
4447
  msgstr ""
4448
 
4449
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:310
4450
  msgid "Deactivate"
4451
  msgstr ""
4452
 
4453
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:315
4454
  msgid "Activate Add-on"
4455
  msgstr ""
4456
 
4457
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:316
4458
  msgid "Activate"
4459
  msgstr ""
4460
 
4461
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:333
4462
  msgid "Version"
4463
  msgstr ""
4464
 
4465
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:336
4466
  msgid "By"
4467
  msgstr ""
4468
 
4469
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-addons.php:339
4470
  msgid "Documentation"
4471
  msgstr ""
4472
 
4473
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:56
4474
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:76
4475
  msgid "Access denied for this action"
4476
  msgstr ""
4477
 
4478
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:93
4479
  msgid "Accounts successfully reset"
4480
  msgstr ""
4481
 
4482
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:124
4483
  msgid "No users found to export"
4484
  msgstr ""
4485
 
4486
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:231
4487
  msgid "Adjust your core or add-on settings. Follow us on:"
4488
  msgstr ""
4489
 
4490
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:231
4491
  msgid "Facebook"
4492
  msgstr ""
4493
 
4494
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:231
4495
  msgid "Google Plus"
4496
  msgstr ""
4497
 
4498
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:236
4499
  msgid "Core Settings"
4500
  msgstr ""
4501
 
4502
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:238
4503
  msgid "Name"
4504
  msgstr ""
4505
 
4506
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:243
4507
  msgid "Accessible though the %singular% template tag."
4508
  msgstr ""
4509
 
4510
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:248
4511
  msgid "Accessible though the %plural% template tag."
4512
  msgstr ""
4513
 
4514
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:251
4515
  msgid "Tip"
4516
  msgstr ""
4517
 
4518
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:251
4519
  msgid ""
4520
  "Adding an underscore at the beginning of template tag for names will return "
4521
  "them in lowercase. i.e. %_singular%"
4522
  msgstr ""
4523
 
4524
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:269
4525
  msgid "Separator"
4526
  msgstr ""
4527
 
4528
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:276
4529
  msgid "Edit Settings"
4530
  msgstr ""
4531
 
4532
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:278
4533
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:283
4534
  msgid "Capability to check for."
4535
  msgstr ""
4536
 
4537
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:281
4538
  msgid "Edit Users %plural%"
4539
  msgstr ""
4540
 
4541
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:300
4542
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4543
  msgstr ""
4544
 
4545
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:340
4546
  msgid "Management"
4547
  msgstr ""
4548
 
4549
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:342
4550
  msgid "The Log"
4551
  msgstr ""
4552
 
4553
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:345
4554
  msgid "Table Name"
4555
  msgstr ""
4556
 
4557
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:349
4558
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:92
4559
  msgid "Entries"
4560
  msgstr ""
4561
 
4562
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:353
4563
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:368
4564
  msgid "Actions"
4565
  msgstr ""
4566
 
4567
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:354
4568
  msgid "Empty Log"
4569
  msgstr ""
4570
 
4571
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:360
4572
  msgid "User Meta Key"
4573
  msgstr ""
4574
 
4575
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:369
4576
  msgid "Set all to zero"
4577
  msgstr ""
4578
 
4579
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:369
4580
  msgid "CSV Export"
4581
  msgstr ""
4582
 
4583
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:387
4584
  msgid "Identify users by"
4585
  msgstr ""
4586
 
4587
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:392
4588
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:188
4589
  msgid "User ID"
4590
  msgstr ""
4591
 
4592
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:393
4593
  msgid "User Email"
4594
  msgstr ""
4595
 
4596
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:394
4597
  msgid "User Login"
4598
  msgstr ""
4599
 
4600
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:401
4601
  msgid ""
4602
  "Use ID if you intend to use this export as a backup of your current site "
4603
  "while Email is recommended if you want to export to a different site."
4604
  msgstr ""
4605
 
4606
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:404
4607
  msgid "Import Log Entry"
4608
  msgstr ""
4609
 
4610
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:406
4611
  #, php-format
4612
  msgid ""
4613
  "Optional log entry to use if you intend to import this file in a different "
4614
  "%s installation."
4615
  msgstr ""
4616
 
4617
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-general.php:409
4618
  msgid "Export"
4619
  msgstr ""
4620
 
4621
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:23
4622
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:24
4623
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:25
4624
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:156
4625
  msgid "Hooks"
4626
  msgstr ""
4627
 
4628
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:85
4629
  msgid "%plural% for registrations"
4630
  msgstr ""
4631
 
4632
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:86
4633
  msgid "Award %_plural% for users joining your website."
4634
  msgstr ""
4635
 
4636
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:92
4637
  msgid "%plural% for logins"
4638
  msgstr ""
4639
 
4640
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:93
4641
  msgid ""
4642
  "Award %_plural% for logging in to your website. You can also set an optional "
4643
  "limit."
4644
  msgstr ""
4645
 
4646
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:99
4647
  msgid "%plural% for publishing content"
4648
  msgstr ""
4649
 
4650
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:100
4651
  msgid ""
4652
  "Award %_plural% for publishing content on your website. If your custom post "
4653
  "type is not shown bellow, make sure it is set to \"Public\"."
4654
  msgstr ""
4655
 
4656
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:106
4657
  msgid "%plural% for comments"
4658
  msgstr ""
4659
 
4660
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:107
4661
  msgid "Award %_plural% for making comments."
4662
  msgstr ""
4663
 
4664
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:113
4665
  msgid "%plural% for clicking on links"
4666
  msgstr ""
4667
 
4668
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:114
4669
  msgid ""
4670
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4671
  "shortcode."
4672
  msgstr ""
4673
 
4674
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:120
4675
  msgid "%plural% for viewing Videos"
4676
  msgstr ""
4677
 
4678
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:121
4679
  msgid ""
4680
  "Award %_plural% to users who watches videos embedded using the "
4681
  "[mycred_video] shortcode."
4682
  msgstr ""
4683
 
4684
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:160
4685
  msgid ""
4686
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4687
  "depending on their actions around your website."
4688
  msgstr ""
4689
 
4690
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:447
4691
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:147
4692
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:168
4693
  msgid "Limit"
4694
  msgstr ""
4695
 
4696
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:554
4697
  msgid "%plural% for Posts"
4698
  msgstr ""
4699
 
4700
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:564
4701
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:577
4702
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:612
4703
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:268
4704
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:278
4705
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:416
4706
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:429
4707
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:442
4708
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:460
4709
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:473
4710
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:492
4711
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-contact-form7.php:138
4712
  msgid "Available template tags: General, Post"
4713
  msgstr ""
4714
 
4715
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:567
4716
  msgid "%plural% for Pages"
4717
  msgstr ""
4718
 
4719
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:602
4720
  msgid "%plural% for %s"
4721
  msgstr ""
4722
 
4723
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:918
4724
  msgid "Approved Comment"
4725
  msgstr ""
4726
 
4727
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:921
4728
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:938
4729
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:955
4730
  msgid "Comment Author"
4731
  msgstr ""
4732
 
4733
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:925
4734
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:942
4735
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:959
4736
  msgid "Content Author"
4737
  msgstr ""
4738
 
4739
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:932
4740
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:949
4741
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:966
4742
  msgid "Available template tags: General, Comment"
4743
  msgstr ""
4744
 
4745
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:935
4746
  msgid "Comment Marked SPAM"
4747
  msgstr ""
4748
 
4749
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:952
4750
  msgid "Trashed / Unapproved Comments"
4751
  msgstr ""
4752
 
4753
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:972
4754
  msgid "Limit per post"
4755
  msgstr ""
4756
 
4757
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:974
4758
  msgid ""
4759
+ "The number of comments per post that grants %_plural% to the comment author. "
4760
+ "Use zero for unlimited."
4761
  msgstr ""
4762
 
4763
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:978
4764
  msgid "Limit per day"
4765
  msgstr ""
4766
 
4767
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:980
4768
  msgid ""
4769
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4770
  msgstr ""
4771
 
4772
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:985
4773
  msgid ""
4774
  "%plural% is to be awarded even when comment authors reply to their own "
4775
  "comment."
4776
  msgstr ""
4777
 
4778
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1052
4779
  msgid "Once for each unique URL"
4780
  msgstr ""
4781
 
4782
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1053
4783
  msgid "Once for each unique link id"
4784
  msgstr ""
4785
 
4786
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1217
4787
  msgid ""
4788
  "The default amount to award for clicking on links. You can override this in "
4789
  "the shortcode."
4790
  msgstr ""
4791
 
4792
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1224
4793
  msgid ""
4794
  "Available template tags: General and custom tags: %url%, %title% or %id%."
4795
  msgstr ""
4796
 
4797
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1235
4798
+ msgid "Note!"
4799
  msgstr ""
4800
 
4801
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1235
4802
  msgid ""
4803
+ "If no ID is set when using the mycred_link shortcode, the shortcode will "
4804
+ "generate one automatically based on the value set under href. If you are "
4805
+ "using this feature for \"sharing\" content, it is recommended that you limit "
4806
+ "by ID."
4807
  msgstr ""
4808
 
4809
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1487
4810
  msgid "Amount to award for viewing videos."
4811
  msgstr ""
4812
 
4813
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1497
4814
  msgid "Award Logic"
4815
  msgstr ""
4816
 
4817
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1499
4818
  msgid "Select when %_plural% should be awarded or deducted."
4819
  msgstr ""
4820
 
4821
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1500
4822
  msgid "Play - As soon as video starts playing."
4823
  msgstr ""
4824
 
4825
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1501
4826
  msgid "Full - First when the entire video has played."
4827
  msgstr ""
4828
 
4829
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1502
4830
  msgid "Interval - For each x number of seconds watched."
4831
  msgstr ""
4832
 
4833
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1507
4834
  msgid "Number of seconds"
4835
  msgstr ""
4836
 
4837
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1514
4838
  msgid "Leniency"
4839
  msgstr ""
4840
 
4841
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1516
4842
  msgid ""
4843
  "The maximum percentage a users view of a movie can differ from the actual "
4844
  "length."
4845
  msgstr ""
4846
 
4847
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-hooks.php:1519
4848
  msgid ""
4849
  "Do not set this value to zero! A lot of thing can happen while a user "
4850
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4851
  "buffering or play back errors."
4852
  msgstr ""
4853
 
4854
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:24
4855
  msgid "Activity Log"
4856
  msgstr ""
4857
 
4858
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:175
4859
  msgid "Show all references"
4860
  msgstr ""
4861
 
4862
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:194
4863
  msgid "Show in order"
4864
  msgstr ""
4865
 
4866
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:207
4867
  msgid "Filter"
4868
  msgstr ""
4869
 
4870
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:233
4871
  #, php-format
4872
  msgid "Showing %d %s"
4873
  msgstr ""
4874
 
4875
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:233
4876
  msgid "entry"
4877
  msgstr ""
4878
 
4879
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/modules/mycred-module-log.php:252
4880
  msgid "Search results for"
4881
  msgstr ""
4882
 
4883
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:16
4884
  msgid "BadgeOS"
4885
  msgstr ""
4886
 
4887
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:17
4888
  msgid ""
4889
  "Default settings for each BadgeOS Achievement type. These settings may be "
4890
  "overridden for individual achievement type."
4891
  msgstr ""
4892
 
4893
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:93
4894
  #, php-format
4895
  msgid ""
4896
  "Please setup your <a href=\"%s\">default settings</a> before using this "
4897
  "feature."
4898
  msgstr ""
4899
 
4900
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:104
4901
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:106
4902
  msgid "%plural% to Award"
4903
  msgstr ""
4904
 
4905
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:108
4906
  msgid "Use zero to disable"
4907
  msgstr ""
4908
 
4909
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:119
4910
  msgid "Deduction Log Template"
4911
  msgstr ""
4912
 
4913
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:255
4914
  #, php-format
4915
  msgid "Default %s for %s"
4916
  msgstr ""
4917
 
4918
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:262
4919
  msgid "Use zero to disable users gaining %_plural%"
4920
  msgstr ""
4921
 
4922
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:266
4923
  msgid "Default Log template"
4924
  msgstr ""
4925
 
4926
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-badgeOS.php:272
4927
  msgid "Deduct %_plural% if user looses "
4928
  msgstr ""
4929
 
4930
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:16
4931
  msgid "bbPress"
4932
  msgstr ""
4933
 
4934
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:17
4935
  msgid "Awards %_plural% for bbPress actions."
4936
  msgstr ""
4937
 
4938
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:407
4939
  msgid "%plural% for New Forum"
4940
  msgstr ""
4941
 
4942
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:420
4943
  msgid "%plural% for Forum Deletion"
4944
  msgstr ""
4945
 
4946
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:433
4947
  msgid "%plural% for New Topic"
4948
  msgstr ""
4949
 
4950
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:447
4951
  msgid "Forum authors can receive %_plural% for creating new topics."
4952
  msgstr ""
4953
 
4954
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:451
4955
  msgid "%plural% for Topic Deletion"
4956
  msgstr ""
4957
 
4958
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:464
4959
  msgid "%plural% for Favorited Topic"
4960
  msgstr ""
4961
 
4962
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:479
4963
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:503
4964
  msgid "Use zero for unlimited"
4965
  msgstr ""
4966
 
4967
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:483
4968
  msgid "%plural% for New Reply"
4969
  msgstr ""
4970
 
4971
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:497
4972
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4973
  msgstr ""
4974
 
4975
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-bbPress.php:507
4976
  msgid "Show users %_plural% balance in replies"
4977
  msgstr ""
4978
 
4979
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-contact-form7.php:16
4980
  msgid "Contact Form 7 Form Submissions"
4981
  msgstr ""
4982
 
4983
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-contact-form7.php:17
4984
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4985
  msgstr ""
4986
 
4987
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-contact-form7.php:108
4988
  msgid "No forms found."
4989
  msgstr ""
4990
 
4991
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:16
4992
  msgid "Events Manager"
4993
  msgstr ""
4994
 
4995
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:17
4996
  msgid "Awards %_plural% for users attending events."
4997
  msgstr ""
4998
 
4999
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:140
5000
  msgid "Attending Event"
5001
  msgstr ""
5002
 
5003
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:150
5004
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:163
5005
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:134
5006
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:147
5007
  msgid "Available template tags: General and Post Related"
5008
  msgstr ""
5009
 
5010
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-events-manager-light.php:153
5011
  msgid "Cancelling Attendance"
5012
  msgstr ""
5013
 
5014
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:16
5015
  msgid "GD Star Rating"
5016
  msgstr ""
5017
 
5018
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:17
5019
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5020
  msgstr ""
5021
 
5022
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:99
5023
  msgid "Rating"
5024
  msgstr ""
5025
 
5026
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-gd-star-rating.php:112
5027
  msgid "Up / Down Vote"
5028
  msgstr ""
5029
 
5030
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:16
5031
  msgid "Invite Anyone Plugin"
5032
  msgstr ""
5033
 
5034
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:17
5035
  msgid ""
5036
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5037
  "accepted."
5038
  msgstr ""
5039
 
5040
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:135
5041
  msgid "%plural% for Sending An Invite"
5042
  msgstr ""
5043
 
5044
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:151
5045
  msgid ""
5046
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5047
  msgstr ""
5048
 
5049
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:155
5050
  msgid "%plural% for Accepting An Invite"
5051
  msgstr ""
5052
 
5053
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:159
5054
  msgid "%plural% for each invited user that accepts an invitation."
5055
  msgstr ""
5056
 
5057
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-invite-anyone.php:172
5058
  msgid ""
5059
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5060
  "unlimited."
5061
  msgstr ""
5062
 
5063
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:16
5064
  msgid "Jetpack Subscriptions"
5065
  msgstr ""
5066
 
5067
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:17
5068
  msgid ""
5069
  "Awards %_plural% for users signing up for site or comment updates using "
5070
  "Jetpack."
5071
  msgstr ""
5072
 
5073
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:490
5074
  msgid "Site Subscriptions"
5075
  msgstr ""
5076
 
5077
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-jetpack.php:503
5078
  msgid "Comment Subscriptions"
5079
  msgstr ""
5080
 
5081
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:16
5082
  msgid "WP Favorite Posts"
5083
  msgstr ""
5084
 
5085
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:17
5086
  msgid "Awards %_plural% for users adding posts to their favorites."
5087
  msgstr ""
5088
 
5089
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:124
5090
  msgid "Adding Content to Favorites"
5091
  msgstr ""
5092
 
5093
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-favorite-posts.php:137
5094
  msgid "Removing Content from Favorites"
5095
  msgstr ""
5096
 
5097
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-polls.php:16
5098
  msgid "WP-Polls"
5099
  msgstr ""
5100
 
5101
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-polls.php:17
5102
  msgid "Awards %_plural% for users voting in polls."
5103
  msgstr ""
5104
 
5105
+ #: /Users/gabriel/Repositories/mycred/tags/1.3.1/plugins/mycred-hook-wp-polls.php:136
5106
  msgid ""
5107
  "Available template tags: General. You can also use %poll_id% and "
5108
  "%poll_question%."
modules/mycred-module-addons.php CHANGED
@@ -34,7 +34,7 @@ if ( !class_exists( 'myCRED_Addons' ) ) {
34
  * Run Addons
35
  * Catches all add-on activations and deactivations and loads addons
36
  * @since 0.1
37
- * @version 1.0
38
  */
39
  public function module_ready() {
40
  $addons = $this->addons;
@@ -89,7 +89,7 @@ if ( !class_exists( 'myCRED_Addons' ) ) {
89
  if ( mycred_override_settings() )
90
  update_site_option( 1, 'mycred_pref_addons', $new_settings );
91
  else
92
- update_site_option( $GLOBALS['blog_id'], 'mycred_pref_addons', $new_settings );
93
 
94
  $this->addons = $new_settings;
95
  $this->installed = $installed;
34
  * Run Addons
35
  * Catches all add-on activations and deactivations and loads addons
36
  * @since 0.1
37
+ * @version 1.0.1
38
  */
39
  public function module_ready() {
40
  $addons = $this->addons;
89
  if ( mycred_override_settings() )
90
  update_site_option( 1, 'mycred_pref_addons', $new_settings );
91
  else
92
+ update_option( 'mycred_pref_addons', $new_settings );
93
 
94
  $this->addons = $new_settings;
95
  $this->installed = $installed;
modules/mycred-module-general.php CHANGED
@@ -229,7 +229,6 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
229
  } ?>
230
 
231
  <p><?php echo __( 'Adjust your core or add-on settings. Follow us on:', 'mycred' ) . ' '; ?><a href="https://www.facebook.com/myCRED" class="facebook" target="_blank"><?php _e( 'Facebook', 'mycred' ); ?></a>, <a href="https://plus.google.com/b/102981932999764129220/102981932999764129220/posts" class="googleplus" target="_blank"><?php _e( 'Google Plus', 'mycred' ); ?></a></p>
232
- <pre><?php if ( current_user_can( 'export' ) ) echo 'has cap'; else echo 'does not have cap'; ?></pre>
233
  <form method="post" action="options.php">
234
  <?php settings_fields( 'myCRED-general' ); ?>
235
 
229
  } ?>
230
 
231
  <p><?php echo __( 'Adjust your core or add-on settings. Follow us on:', 'mycred' ) . ' '; ?><a href="https://www.facebook.com/myCRED" class="facebook" target="_blank"><?php _e( 'Facebook', 'mycred' ); ?></a>, <a href="https://plus.google.com/b/102981932999764129220/102981932999764129220/posts" class="googleplus" target="_blank"><?php _e( 'Google Plus', 'mycred' ); ?></a></p>
 
232
  <form method="post" action="options.php">
233
  <?php settings_fields( 'myCRED-general' ); ?>
234
 
modules/mycred-module-hooks.php CHANGED
@@ -76,7 +76,7 @@ if ( !class_exists( 'myCRED_Hooks' ) ) {
76
  /**
77
  * Get Hooks
78
  * @since 0.1
79
- * @version 1.1
80
  */
81
  public function get( $save = false ) {
82
  $installed = array();
@@ -132,7 +132,7 @@ if ( !class_exists( 'myCRED_Hooks' ) ) {
132
  if ( mycred_override_settings() )
133
  update_site_option( 1, 'mycred_pref_hooks', $new_data );
134
  else
135
- update_site_option( $GLOBALS['blog_id'], 'mycred_pref_hooks', $new_data );
136
  }
137
 
138
  $this->installed = $installed;
@@ -289,7 +289,7 @@ if ( !class_exists( 'myCRED_Hook_Registration' ) ) {
289
  /**
290
  * Preference for Registration Hook
291
  * @since 0.1
292
- * @version 1.0
293
  */
294
  public function preferences() {
295
  $prefs = $this->prefs; ?>
@@ -297,7 +297,7 @@ if ( !class_exists( 'myCRED_Hook_Registration' ) ) {
297
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
298
  <ol>
299
  <li>
300
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->format_number( $prefs['creds'] ); ?>" size="8" /></div>
301
  </li>
302
  </ol>
303
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
@@ -426,7 +426,7 @@ if ( !class_exists( 'myCRED_Hook_Logging_In' ) ) {
426
  /**
427
  * Preference for Login Hook
428
  * @since 0.1
429
- * @version 1.0
430
  */
431
  public function preferences() {
432
  $prefs = $this->prefs; ?>
@@ -434,7 +434,7 @@ if ( !class_exists( 'myCRED_Hook_Logging_In' ) ) {
434
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
435
  <ol>
436
  <li>
437
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->format_number( $prefs['creds'] ); ?>" size="8" /></div>
438
  </li>
439
  </ol>
440
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
@@ -459,7 +459,7 @@ if ( !class_exists( 'myCRED_Hook_Logging_In' ) ) {
459
  /**
460
  * Hook for publishing content
461
  * @since 0.1
462
- * @version 1.0
463
  */
464
  if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
465
  class myCRED_Hook_Publishing_Content extends myCRED_Hook {
@@ -467,18 +467,32 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
467
  * Construct
468
  */
469
  function __construct( $hook_prefs ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  parent::__construct( array(
471
  'id' => 'publishing_content',
472
- 'defaults' => array(
473
- 'post' => array(
474
- 'creds' => 1,
475
- 'log' => '%plural% for new Post'
476
- ),
477
- 'page' => array(
478
- 'creds' => 1,
479
- 'log' => '%plural% for new Page'
480
- )
481
- )
482
  ), $hook_prefs );
483
  }
484
 
@@ -532,7 +546,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
532
  /**
533
  * Preference for Publish Content Hook
534
  * @since 0.1
535
- * @version 1.0
536
  */
537
  public function preferences() {
538
  $prefs = $this->prefs; ?>
@@ -540,7 +554,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
540
  <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Posts', 'mycred' ) ); ?></label>
541
  <ol>
542
  <li>
543
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['post']['creds'] ); ?>" size="8" /></div>
544
  </li>
545
  </ol>
546
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
@@ -553,7 +567,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
553
  <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Pages', 'mycred' ) ); ?></label>
554
  <ol>
555
  <li>
556
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['page']['creds'] ); ?>" size="8" /></div>
557
  </li>
558
  </ol>
559
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
@@ -588,7 +602,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
588
  <label class="subheader"><?php echo sprintf( $this->core->template_tags_general( __( '%plural% for %s', 'mycred' ) ), $post_type->labels->name ); ?></label>
589
  <ol>
590
  <li>
591
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $_creds ); ?>" size="8" /></div>
592
  </li>
593
  </ol>
594
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
@@ -620,7 +634,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
620
  /**
621
  * Hook for comments
622
  * @since 0.1
623
- * @version 1.1
624
  */
625
  if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
626
  class myCRED_Hook_Comments extends myCRED_Hook {
@@ -670,156 +684,157 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
670
  * If comments are approved without moderation, we apply the corresponding method
671
  * or else we will wait till the appropriate instance.
672
  * @since 0.1
673
- * @version 1.1
674
  */
675
  public function new_comment( $comment_id, $comment_status ) {
676
  // Marked SPAM
677
- if ( $comment_status === 'spam' && $this->prefs['spam'] != 0 )
678
  $this->comment_transitions( 'spam', 'unapproved', $comment_id );
679
  // Approved comment
680
- elseif ( $comment_status == '1' && $this->prefs['approved'] != 0 )
681
  $this->comment_transitions( 'approved', 'unapproved', $comment_id );
682
  }
683
 
684
  /**
685
  * Comment Transitions
686
  * @since 1.1.2
687
- * @version 1.2.1
688
  */
689
  public function comment_transitions( $new_status, $old_status, $comment ) {
690
  // Passing an integer instead of an object means we need to grab the comment object ourselves
691
- if ( !is_object( $comment ) )
692
  $comment = get_comment( $comment );
 
 
 
693
 
694
  // Ignore Pingbacks or Trackbacks
695
- if ( !empty( $comment->comment_type ) ) return;
696
 
697
  // Logged out users miss out
698
  if ( $comment->user_id == 0 ) return;
699
 
700
- // Check if user should be excluded
701
- if ( $this->core->exclude_user( $comment->user_id ) === true ) return;
702
-
703
- // Check if we are allowed to comment our own comment
704
- if ( $this->prefs['limits']['self_reply'] != 0 && $comment->comment_parent != 0 ) {
705
- $parent = get_comment( $comment->comment_parent );
706
- if ( $parent->user_id == $comment->user_id ) return;
 
707
  }
708
-
 
 
 
709
  $reference = '';
710
- $instance = 'approved';
711
-
712
- // Approved comments
713
- if ( $this->prefs['approved']['creds'] != 0 && $new_status == 'approved' ) {
714
- // New approved comment
715
- if ( $old_status == 'unapproved' || $old_status == 'hold' ) {
716
- $reference = 'approved_comment';
717
- $points = $this->prefs['approved']['creds'];
718
- $points_author = $this->prefs['approved']['author'];
719
- $log = $this->prefs['approved']['log'];
 
 
720
 
721
- if ( $this->user_exceeds_limit( $comment->user_id, $comment->comment_post_ID ) )
722
- $points = 0;
723
  }
724
-
725
- // Marked as "Not Spam"
726
- elseif ( $this->prefs['spam']['creds'] != 0 && $old_status == 'spam' ) {
727
- $reference = 'approved_comment';
728
-
729
- // Reverse points
730
- if ( $this->prefs['spam']['creds'] < 0 ) {
731
- $points = abs( $this->prefs['spam']['creds'] );
732
- $points_author = abs( $this->prefs['spam']['author'] );
733
- }
734
- else {
735
- $points = $this->prefs['spam']['creds'];
736
- $points_author = $this->prefs['spam']['author'];
737
- }
738
-
739
- $log = $this->prefs['approved']['log'];
740
  }
741
-
742
- // Returned comment from trash
743
- elseif ( $this->prefs['trash']['creds'] != 0 && $old_status == 'trash' ) {
744
- $reference = 'approved_comment';
745
- // Reverse points
746
- if ( $this->prefs['trash']['creds'] < 0 ) {
747
- $points = abs( $this->prefs['trash']['creds'] );
748
- $points_author = abs( $this->prefs['trash']['author'] );
749
- }
750
- else {
751
- $points = $this->prefs['trash']['creds'];
752
- $points_author = $this->prefs['trash']['author'];
753
- }
754
-
755
- $log = $this->prefs['approved']['log'];
756
  }
757
  }
758
-
759
- // Spam comments
760
- elseif ( $this->prefs['spam'] != 0 && $new_status == 'spam' ) {
761
- $reference = 'spam_comment';
762
- $points = $this->prefs['spam']['creds'];
763
- $points_author = $this->prefs['spam']['author'];
764
- $log = $this->prefs['spam']['log'];
765
- $instance = 'spam';
766
- }
767
-
768
- // Trashed comments
769
- elseif ( $this->prefs['trash'] != 0 && $new_status == 'trash' ) {
770
- $reference = 'deleted_comment';
771
- $points = $this->prefs['trash']['creds'];
772
- $points_author = $this->prefs['trash']['author'];
773
  $log = $this->prefs['trash']['log'];
774
- $instance = 'trash';
775
- }
776
 
777
- // Unapproved comments
778
- elseif ( $new_status == 'unapproved' && $old_status == 'approved' ) {
779
- $reference = 'deleted_comment';
780
- // Reverse points
781
- if ( $this->prefs['approved']['creds'] < 0 ) {
782
- $points = abs( $this->prefs['approved']['creds'] );
783
- $points_author = abs( $this->prefs['approved']['author'] );
784
  }
 
785
  else {
786
- $points = $this->prefs['approved']['creds'];
787
- $points_author = $this->prefs['approved']['author'];
788
  }
 
 
 
 
 
 
789
 
790
- $log = $this->prefs['trash']['log'];
791
- $instance = 'trash';
792
  }
 
 
 
 
 
793
 
794
- // Execute
795
- if ( ! empty( $reference ) ) {
796
- if ( $points != 0 ) {
797
- $this->core->add_creds(
798
- $reference,
799
- $comment->user_id,
800
- $points,
801
- $log,
802
- $comment->comment_ID,
803
- array( 'ref_type' => 'comment' )
804
- );
805
- }
806
 
807
- // Content Author
808
- if ( $points_author != 0 ) {
809
- // Get post author
810
- $post = get_post( (int) $comment->comment_post_ID );
811
- // Make sure post still exists and author is not the commenter
812
- if ( $post !== NULL && $comment->user_id != $post->post_author ) {
 
 
813
  $this->core->add_creds(
814
  $reference,
815
- $post->post_author,
816
- $points_author,
817
  $log,
818
  $comment->comment_ID,
819
  array( 'ref_type' => 'comment' )
820
  );
821
  }
822
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
823
  }
824
  }
825
 
@@ -888,7 +903,7 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
888
  /**
889
  * Preferences for Commenting Hook
890
  * @since 0.1
891
- * @version 1.0
892
  */
893
  public function preferences() {
894
  $prefs = $this->prefs;
@@ -904,11 +919,11 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
904
  <ol class="inline">
905
  <li>
906
  <label for="<?php echo $this->field_id( array( 'approved' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
907
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['approved']['creds'] ); ?>" size="8" /></div>
908
  </li>
909
  <li>
910
  <label for="<?php echo $this->field_id( array( 'approved' => 'author' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
911
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'author' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['approved']['author'] ); ?>" size="8" /></div>
912
  </li>
913
  <li class="block empty">&nbsp;</li>
914
  <li class="block">
@@ -921,11 +936,11 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
921
  <ol class="inline">
922
  <li>
923
  <label for="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
924
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['spam']['creds'] ); ?>" size="8" /></div>
925
  </li>
926
  <li>
927
  <label for="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
928
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'author' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['spam']['author'] ); ?>" size="8" /></div>
929
  </li>
930
  <li class="block empty">&nbsp;</li>
931
  <li class="block">
@@ -938,11 +953,11 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
938
  <ol class="inline">
939
  <li>
940
  <label for="<?php echo $this->field_id( array( 'trash' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
941
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['trash']['creds'] ); ?>" size="8" /></div>
942
  </li>
943
  <li>
944
  <label for="<?php echo $this->field_id( array( 'trash' => 'author' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
945
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'author' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['trash']['author'] ); ?>" size="8" /></div>
946
  </li>
947
  <li class="block empty">&nbsp;</li>
948
  <li class="block">
@@ -956,7 +971,7 @@ if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
956
  <li>
957
  <label for="<?php echo $this->field_id( array( 'limits' => 'per_post' ) ); ?>"><?php _e( 'Limit per post', 'mycred' ); ?></label>
958
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'limits' => 'per_post' ) ); ?>" id="<?php echo $this->field_id( array( 'limits' => 'per_post' ) ); ?>" value="<?php echo $prefs['limits']['per_post']; ?>" size="8" /></div>
959
- <span class="description"><?php echo $this->core->template_tags_general( __( 'The number of comments per post that grants %_plural%. Use zero for unlimited.', 'mycred' ) ); ?></span>
960
  </li>
961
  <li class="empty">&nbsp;</li>
962
  <li>
@@ -1042,10 +1057,10 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1042
  /**
1043
  * Parse Custom Tags in Log
1044
  * @since 1.1
1045
- * @version 1.1
1046
  */
1047
  public function parse_custom_tags( $content, $log_entry ) {
1048
- $data = unserialize( $log_entry->data );
1049
  $content = str_replace( '%url%', $data['link_url'], $content );
1050
  $content = str_replace( '%id%', $data['link_id'], $content );
1051
  if ( isset( $data['link_title'] ) )
@@ -1087,7 +1102,7 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1087
  'myCREDgive',
1088
  array(
1089
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
1090
- 'token' => wp_create_nonce( 'mycred-link-points' )
1091
  )
1092
  );
1093
  wp_enqueue_script( 'mycred-link-points' );
@@ -1097,12 +1112,13 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1097
  /**
1098
  * Custom Has Entry Check
1099
  * @since 1.1
1100
- * @version 1.1
1101
  */
1102
  public function has_entry( $action = '', $reference = '', $user_id = '', $data = '' ) {
1103
  global $wpdb;
1104
 
1105
  if ( $this->prefs['limit_by'] == 'url' ) {
 
1106
  $string = '%s:8:"link_url";s:' . strlen( $reference ) . ':"' . $reference . '";%';
1107
  }
1108
  elseif ( $this->prefs['limit_by'] == 'id' ) {
@@ -1120,11 +1136,11 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1120
  /**
1121
  * AJAX Call Handler
1122
  * @since 1.1
1123
- * @version 1.2
1124
  */
1125
  public function ajax_call_link_points() {
1126
  // We must be logged in
1127
- if ( !is_user_logged_in() ) die();
1128
 
1129
  // Security
1130
  check_ajax_referer( 'mycred-link-points', 'token' );
@@ -1133,27 +1149,38 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1133
  $user_id = get_current_user_id();
1134
 
1135
  // Check if user should be excluded
1136
- if ( $this->core->exclude_user( $user_id ) ) return;
 
 
 
 
 
 
 
 
 
 
1137
 
1138
- // If amount is not set we default
1139
- if ( $_POST['amount'] == 0 )
1140
  $amount = $this->prefs['creds'];
1141
  else
1142
- $amount = $this->core->format_number( $_POST['amount'] );
 
 
1143
 
1144
  // Limits
1145
  if ( $this->prefs['limit_by'] == 'url' ) {
1146
- if ( !isset( $_POST['url'] ) || empty( $_POST['url'] ) ) die();
1147
- if ( $this->has_entry( 'link_click', $_POST['url'], $user_id ) ) die();
1148
  $ref = $_POST['url'];
1149
  }
1150
  elseif ( $this->prefs['limit_by'] == 'id' ) {
1151
- if ( !isset( $_POST['eid'] ) || empty( $_POST['eid'] ) ) die();
1152
- if ( $this->has_entry( 'link_click', $_POST['eid'], $user_id ) ) die();
1153
- $ref = $_POST['eid'];
1154
  }
1155
  else {
1156
- $ref = '';
1157
  }
1158
 
1159
  // Execute
@@ -1162,11 +1189,11 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1162
  $user_id,
1163
  $amount,
1164
  $this->prefs['log'],
1165
- $ref,
1166
  array(
1167
  'ref_type' => 'link',
1168
- 'link_url' => ( isset( $_POST['url'] ) ) ? $_POST['url'] : '',
1169
- 'link_id' => ( isset( $_POST['eid'] ) ) ? $_POST['eid'] : '',
1170
  'link_title' => ( isset( $_POST['etitle'] ) ) ? $_POST['etitle'] : ''
1171
  )
1172
  );
@@ -1178,7 +1205,7 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1178
  /**
1179
  * Preference for Link Click Hook
1180
  * @since 1.1
1181
- * @version 1.0.1
1182
  */
1183
  public function preferences() {
1184
  $prefs = $this->prefs; ?>
@@ -1186,7 +1213,7 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1186
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
1187
  <ol>
1188
  <li>
1189
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->format_number( $prefs['creds'] ); ?>" size="8" /></div>
1190
  <span class="description"><?php _e( 'The default amount to award for clicking on links. You can override this in the shortcode.', 'mycred' ); ?></span>
1191
  </li>
1192
  </ol>
@@ -1205,7 +1232,7 @@ if ( !class_exists( 'myCRED_Hook_Click_Links' ) ) {
1205
  $this->impose_limits_dropdown( 'limit_by', false ); ?>
1206
 
1207
  </li>
1208
- <li><strong><?php _e( 'Remember!', 'mycred' ); ?></strong> <?php echo $this->core->template_tags_general( __( 'If you select to limit by id and you do not include the id attribute in the shortcode, no %_plural% will be awarded!', 'mycred' ) ); ?></li>
1209
  </ol>
1210
  <?php unset( $this );
1211
  }
@@ -1456,7 +1483,7 @@ if ( !class_exists( 'myCRED_Hook_Video_Views' ) ) {
1456
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
1457
  <ol>
1458
  <li>
1459
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->format_number( $prefs['creds'] ); ?>" size="8" /></div>
1460
  <span class="description"><?php _e( 'Amount to award for viewing videos.', 'mycred' ); ?></span>
1461
  </li>
1462
  </ol>
76
  /**
77
  * Get Hooks
78
  * @since 0.1
79
+ * @version 1.1.1
80
  */
81
  public function get( $save = false ) {
82
  $installed = array();
132
  if ( mycred_override_settings() )
133
  update_site_option( 1, 'mycred_pref_hooks', $new_data );
134
  else
135
+ update_option( 'mycred_pref_hooks', $new_data );
136
  }
137
 
138
  $this->installed = $installed;
289
  /**
290
  * Preference for Registration Hook
291
  * @since 0.1
292
+ * @version 1.0.1
293
  */
294
  public function preferences() {
295
  $prefs = $this->prefs; ?>
297
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
298
  <ol>
299
  <li>
300
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->number( $prefs['creds'] ); ?>" size="8" /></div>
301
  </li>
302
  </ol>
303
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
426
  /**
427
  * Preference for Login Hook
428
  * @since 0.1
429
+ * @version 1.0.1
430
  */
431
  public function preferences() {
432
  $prefs = $this->prefs; ?>
434
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
435
  <ol>
436
  <li>
437
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->number( $prefs['creds'] ); ?>" size="8" /></div>
438
  </li>
439
  </ol>
440
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
459
  /**
460
  * Hook for publishing content
461
  * @since 0.1
462
+ * @version 1.0.1
463
  */
464
  if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
465
  class myCRED_Hook_Publishing_Content extends myCRED_Hook {
467
  * Construct
468
  */
469
  function __construct( $hook_prefs ) {
470
+ $defaults = array(
471
+ 'post' => array(
472
+ 'creds' => 1,
473
+ 'log' => '%plural% for new Post'
474
+ ),
475
+ 'page' => array(
476
+ 'creds' => 1,
477
+ 'log' => '%plural% for new Page'
478
+ )
479
+ );
480
+
481
+ $post_type_args = array(
482
+ 'public' => true,
483
+ '_builtin' => false
484
+ );
485
+ $post_types = get_post_types( $post_type_args, 'objects', 'and' );
486
+ foreach ( $post_types as $post_type ) {
487
+ $defaults[ $post_type->name ] = array(
488
+ 'creds' => 0,
489
+ 'log' => ''
490
+ );
491
+ }
492
+
493
  parent::__construct( array(
494
  'id' => 'publishing_content',
495
+ 'defaults' => $defaults
 
 
 
 
 
 
 
 
 
496
  ), $hook_prefs );
497
  }
498
 
546
  /**
547
  * Preference for Publish Content Hook
548
  * @since 0.1
549
+ * @version 1.0.1
550
  */
551
  public function preferences() {
552
  $prefs = $this->prefs; ?>
554
  <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Posts', 'mycred' ) ); ?></label>
555
  <ol>
556
  <li>
557
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'post' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'post' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['post']['creds'] ); ?>" size="8" /></div>
558
  </li>
559
  </ol>
560
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
567
  <label class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Pages', 'mycred' ) ); ?></label>
568
  <ol>
569
  <li>
570
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'page' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'page' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['page']['creds'] ); ?>" size="8" /></div>
571
  </li>
572
  </ol>
573
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
602
  <label class="subheader"><?php echo sprintf( $this->core->template_tags_general( __( '%plural% for %s', 'mycred' ) ), $post_type->labels->name ); ?></label>
603
  <ol>
604
  <li>
605
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>" value="<?php echo $this->core->number( $_creds ); ?>" size="8" /></div>
606
  </li>
607
  </ol>
608
  <label class="subheader"><?php _e( 'Log template', 'mycred' ); ?></label>
634
  /**
635
  * Hook for comments
636
  * @since 0.1
637
+ * @version 1.2
638
  */
639
  if ( !class_exists( 'myCRED_Hook_Comments' ) ) {
640
  class myCRED_Hook_Comments extends myCRED_Hook {
684
  * If comments are approved without moderation, we apply the corresponding method
685
  * or else we will wait till the appropriate instance.
686
  * @since 0.1
687
+ * @version 1.2.1
688
  */
689
  public function new_comment( $comment_id, $comment_status ) {
690
  // Marked SPAM
691
+ if ( $comment_status === 'spam' )
692
  $this->comment_transitions( 'spam', 'unapproved', $comment_id );
693
  // Approved comment
694
+ elseif ( $comment_status == '1' )
695
  $this->comment_transitions( 'approved', 'unapproved', $comment_id );
696
  }
697
 
698
  /**
699
  * Comment Transitions
700
  * @since 1.1.2
701
+ * @version 1.3.1
702
  */
703
  public function comment_transitions( $new_status, $old_status, $comment ) {
704
  // Passing an integer instead of an object means we need to grab the comment object ourselves
705
+ if ( ! is_object( $comment ) )
706
  $comment = get_comment( $comment );
707
+
708
+ // No comment object so lets bail
709
+ if ( $comment === NULL ) return;
710
 
711
  // Ignore Pingbacks or Trackbacks
712
+ if ( ! empty( $comment->comment_type ) ) return;
713
 
714
  // Logged out users miss out
715
  if ( $comment->user_id == 0 ) return;
716
 
717
+ // Get comment author
718
+ $comment_author = $comment->user_id;
719
+
720
+ // Get content author
721
+ $content_author = NULL;
722
+ if ( isset( $comment->comment_post_ID ) || ! empty( $comment->comment_post_ID ) ) {
723
+ $post = get_post( (int) $comment->comment_post_ID );
724
+ $content_author = $post->post_author;
725
  }
726
+
727
+ $comment_author_points = $this->core->zero();
728
+ $content_author_points = $this->core->zero();
729
+
730
  $reference = '';
731
+ $log = '';
732
+
733
+ // Approved Comments
734
+ if ( $new_status == 'approved' ) {
735
+ $reference = 'approved_comment';
736
+ $log = $this->prefs['approved']['log'];
737
+
738
+ // From unapproved / hold
739
+ if ( in_array( $old_status, array( 'unapproved', 'hold' ) ) ) {
740
+ // Comment author
741
+ if ( ! $this->user_exceeds_limit( $comment_author, $comment->comment_post_ID ) )
742
+ $comment_author_points = $this->prefs['approved']['creds'];
743
 
744
+ // Content author
745
+ $content_author_points = $this->prefs['approved']['author'];
746
  }
747
+ // From being marked as spam
748
+ elseif ( $old_status == 'spam' ) {
749
+ $comment_author_points = abs( $this->prefs['spam']['creds'] );
750
+ $content_author_points = abs( $this->prefs['spam']['author'] );
 
 
 
 
 
 
 
 
 
 
 
 
751
  }
752
+ // From being in trash
753
+ elseif ( $old_status == 'trash' ) {
754
+ $comment_author_points = abs( $this->prefs['trash']['creds'] );
755
+ $content_author_points = abs( $this->prefs['trash']['author'] );
 
 
 
 
 
 
 
 
 
 
 
756
  }
757
  }
758
+
759
+ // Unapproved Comments
760
+ elseif ( $new_status == 'unapproved' && $old_status == 'approved' ) {
761
+ $reference = 'unapproved_comment';
 
 
 
 
 
 
 
 
 
 
 
762
  $log = $this->prefs['trash']['log'];
 
 
763
 
764
+ // If we deducted points for approved comments we want to add them back
765
+ if ( $this->prefs['approved']['creds'] < $this->core->zero() ) {
766
+ $comment_author_points = abs( $this->prefs['approved']['creds'] );
767
+ $content_author_points = abs( $this->prefs['approved']['author'] );
 
 
 
768
  }
769
+ // Else use what we have set
770
  else {
771
+ $comment_author_points = $this->prefs['approved']['creds'];
772
+ $content_author_points = $this->prefs['approved']['author'];
773
  }
774
+ }
775
+
776
+ // Marked as SPAM
777
+ elseif ( $new_status == 'spam' ) {
778
+ $reference = 'spam_comment';
779
+ $log = $this->prefs['spam']['log'];
780
 
781
+ $comment_author_points = $this->prefs['spam']['creds'];
782
+ $content_author_points = $this->prefs['spam']['author'];
783
  }
784
+
785
+ // Trashed Comments
786
+ elseif ( $new_status == 'trash' ) {
787
+ $reference = 'deleted_comment';
788
+ $log = $this->prefs['trash']['log'];
789
 
790
+ $comment_author_points = $this->prefs['trash']['creds'];
791
+ $content_author_points = $this->prefs['trash']['author'];
792
+ }
 
 
 
 
 
 
 
 
 
793
 
794
+ // Comment Author
795
+ if ( ! $this->core->exclude_user( $comment_author ) && $comment_author_points != $this->core->zero() ) {
796
+
797
+ // Check if we are allowed to comment our own comment and are doing it
798
+ if ( $this->prefs['limits']['self_reply'] != 0 && $comment->comment_parent != 0 ) {
799
+ $parent = get_comment( $comment->comment_parent );
800
+ // Comment author is not replying to their own comments
801
+ if ( $parent->user_id != $comment_author ) {
802
  $this->core->add_creds(
803
  $reference,
804
+ $comment_author,
805
+ $comment_author_points,
806
  $log,
807
  $comment->comment_ID,
808
  array( 'ref_type' => 'comment' )
809
  );
810
  }
811
  }
812
+ // Else
813
+ else {
814
+ $this->core->add_creds(
815
+ $reference,
816
+ $comment_author,
817
+ $comment_author_points,
818
+ $log,
819
+ $comment->comment_ID,
820
+ array( 'ref_type' => 'comment' )
821
+ );
822
+ }
823
+
824
+ }
825
+
826
+ if ( $content_author === NULL ) return;
827
+
828
+ // Content Author
829
+ if ( ! $this->core->exclude_user( $content_author ) && $content_author_points != $this->core->zero() ) {
830
+ $this->core->add_creds(
831
+ $reference,
832
+ $content_author,
833
+ $content_author_points,
834
+ $log,
835
+ $comment->comment_ID,
836
+ array( 'ref_type' => 'comment' )
837
+ );
838
  }
839
  }
840
 
903
  /**
904
  * Preferences for Commenting Hook
905
  * @since 0.1
906
+ * @version 1.0.1
907
  */
908
  public function preferences() {
909
  $prefs = $this->prefs;
919
  <ol class="inline">
920
  <li>
921
  <label for="<?php echo $this->field_id( array( 'approved' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
922
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['approved']['creds'] ); ?>" size="8" /></div>
923
  </li>
924
  <li>
925
  <label for="<?php echo $this->field_id( array( 'approved' => 'author' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
926
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'approved' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'approved' => 'author' ) ); ?>" value="<?php echo $this->core->number( $prefs['approved']['author'] ); ?>" size="8" /></div>
927
  </li>
928
  <li class="block empty">&nbsp;</li>
929
  <li class="block">
936
  <ol class="inline">
937
  <li>
938
  <label for="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
939
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['spam']['creds'] ); ?>" size="8" /></div>
940
  </li>
941
  <li>
942
  <label for="<?php echo $this->field_id( array( 'spam' => 'creds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
943
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'spam' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'spam' => 'author' ) ); ?>" value="<?php echo $this->core->number( $prefs['spam']['author'] ); ?>" size="8" /></div>
944
  </li>
945
  <li class="block empty">&nbsp;</li>
946
  <li class="block">
953
  <ol class="inline">
954
  <li>
955
  <label for="<?php echo $this->field_id( array( 'trash' => 'creds' ) ); ?>"><?php _e( 'Comment Author', 'mycred' ); ?></label>
956
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['trash']['creds'] ); ?>" size="8" /></div>
957
  </li>
958
  <li>
959
  <label for="<?php echo $this->field_id( array( 'trash' => 'author' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
960
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'trash' => 'author' ) ); ?>" id="<?php echo $this->field_id( array( 'trash' => 'author' ) ); ?>" value="<?php echo $this->core->number( $prefs['trash']['author'] ); ?>" size="8" /></div>
961
  </li>
962
  <li class="block empty">&nbsp;</li>
963
  <li class="block">
971
  <li>
972
  <label for="<?php echo $this->field_id( array( 'limits' => 'per_post' ) ); ?>"><?php _e( 'Limit per post', 'mycred' ); ?></label>
973
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'limits' => 'per_post' ) ); ?>" id="<?php echo $this->field_id( array( 'limits' => 'per_post' ) ); ?>" value="<?php echo $prefs['limits']['per_post']; ?>" size="8" /></div>
974
+ <span class="description"><?php echo $this->core->template_tags_general( __( 'The number of comments per post that grants %_plural% to the comment author. Use zero for unlimited.', 'mycred' ) ); ?></span>
975
  </li>
976
  <li class="empty">&nbsp;</li>
977
  <li>
1057
  /**
1058
  * Parse Custom Tags in Log
1059
  * @since 1.1
1060
+ * @version 1.1.1
1061
  */
1062
  public function parse_custom_tags( $content, $log_entry ) {
1063
+ $data = maybe_unserialize( $log_entry->data );
1064
  $content = str_replace( '%url%', $data['link_url'], $content );
1065
  $content = str_replace( '%id%', $data['link_id'], $content );
1066
  if ( isset( $data['link_title'] ) )
1102
  'myCREDgive',
1103
  array(
1104
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
1105
+ 'token' => wp_create_nonce( 'mycred-link-points' )
1106
  )
1107
  );
1108
  wp_enqueue_script( 'mycred-link-points' );
1112
  /**
1113
  * Custom Has Entry Check
1114
  * @since 1.1
1115
+ * @version 1.1.1
1116
  */
1117
  public function has_entry( $action = '', $reference = '', $user_id = '', $data = '' ) {
1118
  global $wpdb;
1119
 
1120
  if ( $this->prefs['limit_by'] == 'url' ) {
1121
+ $reference = urldecode( $reference );
1122
  $string = '%s:8:"link_url";s:' . strlen( $reference ) . ':"' . $reference . '";%';
1123
  }
1124
  elseif ( $this->prefs['limit_by'] == 'id' ) {
1136
  /**
1137
  * AJAX Call Handler
1138
  * @since 1.1
1139
+ * @version 1.3.1
1140
  */
1141
  public function ajax_call_link_points() {
1142
  // We must be logged in
1143
+ if ( !is_user_logged_in() ) die( json_encode( 100 ) );
1144
 
1145
  // Security
1146
  check_ajax_referer( 'mycred-link-points', 'token' );
1149
  $user_id = get_current_user_id();
1150
 
1151
  // Check if user should be excluded
1152
+ if ( $this->core->exclude_user( $user_id ) ) die( json_encode( 200 ) );
1153
+
1154
+ // Key
1155
+ if ( ! isset( $_POST['key'] ) ) die( json_encode( 300 ) );
1156
+ require_once( myCRED_INCLUDES_DIR . 'mycred-protect.php' );
1157
+ $protect = new myCRED_Protect();
1158
+ $key = explode( ':', $protect->do_decode( $_POST['key'] ) );
1159
+ if ( count( $key ) != 2 ) die( json_encode( $key ) );
1160
+
1161
+ $amount = trim( $key[0] );
1162
+ $id = trim( $key[1] );
1163
 
1164
+ // Amount
1165
+ if ( $amount == 0 )
1166
  $amount = $this->prefs['creds'];
1167
  else
1168
+ $amount = $this->core->number( $amount );
1169
+
1170
+ if ( $amount == 0 || $amount == $this->core->zero() ) die( json_encode( 400 ) );
1171
 
1172
  // Limits
1173
  if ( $this->prefs['limit_by'] == 'url' ) {
1174
+ if ( !isset( $_POST['url'] ) || empty( $_POST['url'] ) ) die( json_encode( 500 ) );
1175
+ if ( $this->has_entry( 'link_click', $_POST['url'], $user_id ) ) die( json_encode( 600 ) );
1176
  $ref = $_POST['url'];
1177
  }
1178
  elseif ( $this->prefs['limit_by'] == 'id' ) {
1179
+ if ( $this->has_entry( 'link_click', $id, $user_id ) ) die( json_encode( 700 ) );
1180
+ $ref = $id;
 
1181
  }
1182
  else {
1183
+ $ref = $id;
1184
  }
1185
 
1186
  // Execute
1189
  $user_id,
1190
  $amount,
1191
  $this->prefs['log'],
1192
+ '',
1193
  array(
1194
  'ref_type' => 'link',
1195
+ 'link_url' => $_POST['url'],
1196
+ 'link_id' => $id,
1197
  'link_title' => ( isset( $_POST['etitle'] ) ) ? $_POST['etitle'] : ''
1198
  )
1199
  );
1205
  /**
1206
  * Preference for Link Click Hook
1207
  * @since 1.1
1208
+ * @version 1.0.2
1209
  */
1210
  public function preferences() {
1211
  $prefs = $this->prefs; ?>
1213
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
1214
  <ol>
1215
  <li>
1216
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->number( $prefs['creds'] ); ?>" size="8" /></div>
1217
  <span class="description"><?php _e( 'The default amount to award for clicking on links. You can override this in the shortcode.', 'mycred' ); ?></span>
1218
  </li>
1219
  </ol>
1232
  $this->impose_limits_dropdown( 'limit_by', false ); ?>
1233
 
1234
  </li>
1235
+ <li><strong><?php _e( 'Note!', 'mycred' ); ?></strong> <?php echo $this->core->template_tags_general( __( 'If no ID is set when using the mycred_link shortcode, the shortcode will generate one automatically based on the value set under href. If you are using this feature for "sharing" content, it is recommended that you limit by ID.', 'mycred' ) ); ?></li>
1236
  </ol>
1237
  <?php unset( $this );
1238
  }
1483
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
1484
  <ol>
1485
  <li>
1486
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->number( $prefs['creds'] ); ?>" size="8" /></div>
1487
  <span class="description"><?php _e( 'Amount to award for viewing videos.', 'mycred' ); ?></span>
1488
  </li>
1489
  </ol>
mycred.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
- * Version: 1.3
7
  * Tags: points, tokens, credit, management, reward, charge
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
@@ -15,7 +15,7 @@
15
  * License: GPLv2 or later
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
17
  */
18
- define( 'myCRED_VERSION', '1.3' );
19
  define( 'myCRED_SLUG', 'mycred' );
20
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
21
 
@@ -59,7 +59,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
59
  /**
60
  * Required
61
  * @since 1.3
62
- * @version 1.0
63
  */
64
  function mycred_load() {
65
  require_once( myCRED_INCLUDES_DIR . 'mycred-remote.php' );
@@ -86,48 +86,6 @@ function mycred_load() {
86
  }
87
  mycred_load();
88
 
89
-
90
- /*
91
- if ( !class_exists( 'myCRED_Core' ) ) {
92
- final class myCRED_Core {
93
-
94
- public $plug;
95
- function __construct() {
96
- $this->plug = plugin_basename( myCRED_THIS );
97
-
98
- require_once( myCRED_INCLUDES_DIR . 'mycred-functions.php' );
99
-
100
- require_once( myCRED_INCLUDES_DIR . 'mycred-remote.php' );
101
- require_once( myCRED_INCLUDES_DIR . 'mycred-log.php' );
102
- require_once( myCRED_INCLUDES_DIR . 'mycred-network.php' );
103
-
104
- // Bail now if the setup needs to run
105
- if ( is_mycred_ready() === false ) return;
106
-
107
- require_once( myCRED_ABSTRACTS_DIR . 'mycred-abstract-hook.php' );
108
- require_once( myCRED_ABSTRACTS_DIR . 'mycred-abstract-module.php' );
109
-
110
- require_once( myCRED_INCLUDES_DIR . 'mycred-rankings.php' );
111
- require_once( myCRED_INCLUDES_DIR . 'mycred-shortcodes.php' );
112
- require_once( myCRED_INCLUDES_DIR . 'mycred-widgets.php' );
113
-
114
- // Add-ons
115
- require_once( myCRED_MODULES_DIR . 'mycred-module-addons.php' );
116
- $addons = new myCRED_Addons();
117
- $addons->load();
118
-
119
- do_action( 'mycred_ready' );
120
-
121
- add_action( 'init', 'mycred_init' );
122
- add_action( 'widgets_init', 'mycred_widgets_init' );
123
- add_action( 'admin_init', 'mycred_admin_init' );
124
- }
125
- }
126
- new myCRED_Core();
127
- }
128
- */
129
-
130
-
131
  /**
132
  * Plugin Activation
133
  * @since 1.3
@@ -336,7 +294,7 @@ function mycred_admin_init()
336
  /**
337
  * Adjust the Tool Bar
338
  * @since 1.3
339
- * @version 1.0
340
  */
341
  function mycred_hook_into_toolbar( $wp_admin_bar )
342
  {
@@ -348,7 +306,6 @@ function mycred_hook_into_toolbar( $wp_admin_bar )
348
  if ( $mycred->exclude_user( $user_id ) ) return;
349
 
350
  $cred = $mycred->get_users_cred( $user_id );
351
- $creds_formated = $mycred->format_creds( $cred );
352
 
353
  $wp_admin_bar->add_group( array(
354
  'parent' => 'my-account',
@@ -360,10 +317,11 @@ function mycred_hook_into_toolbar( $wp_admin_bar )
360
  else
361
  $url = 'profile.php?page=mycred_my_history';
362
 
 
363
  $wp_admin_bar->add_menu( array(
364
  'parent' => 'mycred-actions',
365
  'id' => 'user-creds',
366
- 'title' => __( 'My Balance: ', 'mycred' ) . $creds_formated,
367
  'href' => add_query_arg( array( 'page' => 'mycred_my_history' ), get_edit_profile_url( $user_id ) )
368
  ) );
369
 
@@ -533,7 +491,7 @@ function mycred_reset_key()
533
  /**
534
  * myCRED Plugin Links
535
  * @since 1.3
536
- * @version 1.0
537
  */
538
  function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
539
  {
@@ -544,7 +502,7 @@ function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
544
  }
545
 
546
  $actions['tutorials'] = '<a href="http://mycred.me/support/tutorials/" target="_blank">' . __( 'Tutorials', 'mycred' ) . '</a>';
547
- $actions['docs'] = '<a href="http://mycred.me/support/codex/" target="_blank">' . __( 'Codex', 'mycred' ) . '</a>';
548
  $actions['store'] = '<a href="http://mycred.me/store/" target="_blank">' . __( 'Store', 'mycred' ) . '</a>';
549
 
550
  return $actions;
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.1
7
  * Tags: points, tokens, credit, management, reward, charge
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
15
  * License: GPLv2 or later
16
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
17
  */
18
+ define( 'myCRED_VERSION', '1.3.1' );
19
  define( 'myCRED_SLUG', 'mycred' );
20
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
21
 
59
  /**
60
  * Required
61
  * @since 1.3
62
+ * @version 1.1
63
  */
64
  function mycred_load() {
65
  require_once( myCRED_INCLUDES_DIR . 'mycred-remote.php' );
86
  }
87
  mycred_load();
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  /**
90
  * Plugin Activation
91
  * @since 1.3
294
  /**
295
  * Adjust the Tool Bar
296
  * @since 1.3
297
+ * @version 1.1
298
  */
299
  function mycred_hook_into_toolbar( $wp_admin_bar )
300
  {
306
  if ( $mycred->exclude_user( $user_id ) ) return;
307
 
308
  $cred = $mycred->get_users_cred( $user_id );
 
309
 
310
  $wp_admin_bar->add_group( array(
311
  'parent' => 'my-account',
317
  else
318
  $url = 'profile.php?page=mycred_my_history';
319
 
320
+ $my_balance = apply_filters( 'mycred_label_my_balance', __( 'My Balance: %cred_f%', 'mycred' ), $user_id, $mycred );
321
  $wp_admin_bar->add_menu( array(
322
  'parent' => 'mycred-actions',
323
  'id' => 'user-creds',
324
+ 'title' => $mycred->template_tags_amount( $my_balance, $cred ),
325
  'href' => add_query_arg( array( 'page' => 'mycred_my_history' ), get_edit_profile_url( $user_id ) )
326
  ) );
327
 
491
  /**
492
  * myCRED Plugin Links
493
  * @since 1.3
494
+ * @version 1.0.1
495
  */
496
  function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
497
  {
502
  }
503
 
504
  $actions['tutorials'] = '<a href="http://mycred.me/support/tutorials/" target="_blank">' . __( 'Tutorials', 'mycred' ) . '</a>';
505
+ $actions['docs'] = '<a href="http://codex.mycred.me/" target="_blank">' . __( 'Codex', 'mycred' ) . '</a>';
506
  $actions['store'] = '<a href="http://mycred.me/store/" target="_blank">' . __( 'Store', 'mycred' ) . '</a>';
507
 
508
  return $actions;
plugins/mycred-hook-badgeOS.php CHANGED
@@ -36,7 +36,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
36
  * @since 1.0.8
37
  * @version 1.0
38
  */
39
- if ( !class_exists( 'myCRED_Hook_BadgeOS' ) ) {
40
  class myCRED_Hook_BadgeOS extends myCRED_Hook {
41
  /**
42
  * Construct
@@ -104,7 +104,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
104
  <p><strong><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></strong></p>
105
  <p>
106
  <label class="screen-reader-text" for="mycred-values-creds"><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></label>
107
- <input type="text" name="mycred_values[creds]" id="mycred-values-creds" value="<?php echo $achievement_data['creds']; ?>" size="8" />
108
  <span class="description"><?php _e( 'Use zero to disable', 'mycred' ); ?></span>
109
  </p>
110
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
@@ -148,9 +148,9 @@ if ( defined( 'myCRED_VERSION' ) ) {
148
 
149
  // Creds
150
  if ( !empty( $_POST['mycred_values']['creds'] ) && $_POST['mycred_values']['creds'] != $this->prefs[$post_type]['creds'] )
151
- $data['creds'] = $this->core->format_number( $_POST['mycred_values']['creds'] );
152
  else
153
- $data['creds'] = $this->core->format_number( $this->prefs[$post_type]['creds'] );
154
 
155
  // Log template
156
  if ( !empty( $_POST['mycred_values']['log'] ) && $_POST['mycred_values']['log'] != $this->prefs[$post_type]['log'] )
@@ -258,7 +258,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
258
  <label for="<?php echo $this->field_id( array( $post_type, 'creds' ) ); ?>" class="subheader"><?php echo $title; ?></label>
259
  <ol>
260
  <li>
261
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type, 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs[$post_type]['creds'] ); ?>" size="8" /></div>
262
  <span class="description"><?php echo $this->core->template_tags_general( __( 'Use zero to disable users gaining %_plural%', 'mycred' ) ); ?></span>
263
  </li>
264
  <li class="empty">&nbsp;</li>
36
  * @since 1.0.8
37
  * @version 1.0
38
  */
39
+ if ( !class_exists( 'myCRED_Hook_BadgeOS' ) && class_exists( 'myCRED_Hook' ) ) {
40
  class myCRED_Hook_BadgeOS extends myCRED_Hook {
41
  /**
42
  * Construct
104
  <p><strong><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></strong></p>
105
  <p>
106
  <label class="screen-reader-text" for="mycred-values-creds"><?php echo $mycred->template_tags_general( __( '%plural% to Award', 'mycred' ) ); ?></label>
107
+ <input type="text" name="mycred_values[creds]" id="mycred-values-creds" value="<?php echo $mycred->number( $achievement_data['creds'] ); ?>" size="8" />
108
  <span class="description"><?php _e( 'Use zero to disable', 'mycred' ); ?></span>
109
  </p>
110
  <p><strong><?php _e( 'Log Template', 'mycred' ); ?></strong></p>
148
 
149
  // Creds
150
  if ( !empty( $_POST['mycred_values']['creds'] ) && $_POST['mycred_values']['creds'] != $this->prefs[$post_type]['creds'] )
151
+ $data['creds'] = $this->core->number( $_POST['mycred_values']['creds'] );
152
  else
153
+ $data['creds'] = $this->core->number( $this->prefs[$post_type]['creds'] );
154
 
155
  // Log template
156
  if ( !empty( $_POST['mycred_values']['log'] ) && $_POST['mycred_values']['log'] != $this->prefs[$post_type]['log'] )
258
  <label for="<?php echo $this->field_id( array( $post_type, 'creds' ) ); ?>" class="subheader"><?php echo $title; ?></label>
259
  <ol>
260
  <li>
261
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type, 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type, 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs[$post_type]['creds'] ); ?>" size="8" /></div>
262
  <span class="description"><?php echo $this->core->template_tags_general( __( 'Use zero to disable users gaining %_plural%', 'mycred' ) ); ?></span>
263
  </li>
264
  <li class="empty">&nbsp;</li>
plugins/mycred-hook-bbPress.php CHANGED
@@ -54,7 +54,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
54
  * @since 0.1
55
  * @version 1.2
56
  */
57
- if ( !class_exists( 'myCRED_bbPress' ) ) {
58
  class myCRED_bbPress extends myCRED_Hook {
59
  /**
60
  * Construct
@@ -384,7 +384,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
384
  /**
385
  * Preferences
386
  * @since 0.1
387
- * @version 1.1
388
  */
389
  public function preferences() {
390
  $prefs = $this->prefs;
@@ -407,7 +407,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
407
  <label for="<?php echo $this->field_id( array( 'new_forum', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Forum', 'mycred' ) ); ?></label>
408
  <ol id="">
409
  <li>
410
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_forum', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_forum', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['new_forum']['creds'] ); ?>" size="8" /></div>
411
  </li>
412
  <li class="empty">&nbsp;</li>
413
  <li>
@@ -420,7 +420,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
420
  <label for="<?php echo $this->field_id( array( 'delete_forum', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Forum Deletion', 'mycred' ) ); ?></label>
421
  <ol id="">
422
  <li>
423
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_forum', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_forum', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['delete_forum']['creds'] ); ?>" size="8" /></div>
424
  </li>
425
  <li class="empty">&nbsp;</li>
426
  <li>
@@ -433,7 +433,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
433
  <label for="<?php echo $this->field_id( array( 'new_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Topic', 'mycred' ) ); ?></label>
434
  <ol id="">
435
  <li>
436
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['new_topic']['creds'] ); ?>" size="8" /></div>
437
  </li>
438
  <li class="empty">&nbsp;</li>
439
  <li>
@@ -451,7 +451,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
451
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Topic Deletion', 'mycred' ) ); ?></label>
452
  <ol id="">
453
  <li>
454
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['delete_topic']['creds'] ); ?>" size="8" /></div>
455
  </li>
456
  <li class="empty">&nbsp;</li>
457
  <li>
@@ -464,7 +464,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
464
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Favorited Topic', 'mycred' ) ); ?></label>
465
  <ol id="">
466
  <li>
467
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['fav_topic']['creds'] ); ?>" size="8" /></div>
468
  </li>
469
  <li class="empty">&nbsp;</li>
470
  <li>
@@ -475,7 +475,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
475
  <li class="empty">&nbsp;</li>
476
  <li>
477
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
478
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'limit' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['fav_topic']['limit'] ); ?>" size="8" /></div>
479
  <span class="description"><?php _e( 'Use zero for unlimited', 'mycred' ); ?></span>
480
  </li>
481
  </ol>
@@ -483,7 +483,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
483
  <label for="<?php echo $this->field_id( array( 'new_reply', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Reply', 'mycred' ) ); ?></label>
484
  <ol id="">
485
  <li>
486
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['new_reply']['creds'] ); ?>" size="8" /></div>
487
  </li>
488
  <li class="empty">&nbsp;</li>
489
  <li>
@@ -499,7 +499,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
499
  <li class="empty">&nbsp;</li>
500
  <li>
501
  <label for="<?php echo $this->field_id( array( 'new_reply', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
502
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'limit' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['new_reply']['limit'] ); ?>" size="8" /></div>
503
  <span class="description"><?php _e( 'Use zero for unlimited', 'mycred' ); ?></span>
504
  </li>
505
  <li class="empty">&nbsp;</li>
54
  * @since 0.1
55
  * @version 1.2
56
  */
57
+ if ( !class_exists( 'myCRED_bbPress' ) && class_exists( 'myCRED_Hook' ) ) {
58
  class myCRED_bbPress extends myCRED_Hook {
59
  /**
60
  * Construct
384
  /**
385
  * Preferences
386
  * @since 0.1
387
+ * @version 1.1.1
388
  */
389
  public function preferences() {
390
  $prefs = $this->prefs;
407
  <label for="<?php echo $this->field_id( array( 'new_forum', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Forum', 'mycred' ) ); ?></label>
408
  <ol id="">
409
  <li>
410
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_forum', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_forum', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['new_forum']['creds'] ); ?>" size="8" /></div>
411
  </li>
412
  <li class="empty">&nbsp;</li>
413
  <li>
420
  <label for="<?php echo $this->field_id( array( 'delete_forum', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Forum Deletion', 'mycred' ) ); ?></label>
421
  <ol id="">
422
  <li>
423
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_forum', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_forum', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['delete_forum']['creds'] ); ?>" size="8" /></div>
424
  </li>
425
  <li class="empty">&nbsp;</li>
426
  <li>
433
  <label for="<?php echo $this->field_id( array( 'new_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Topic', 'mycred' ) ); ?></label>
434
  <ol id="">
435
  <li>
436
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['new_topic']['creds'] ); ?>" size="8" /></div>
437
  </li>
438
  <li class="empty">&nbsp;</li>
439
  <li>
451
  <label for="<?php echo $this->field_id( array( 'delete_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Topic Deletion', 'mycred' ) ); ?></label>
452
  <ol id="">
453
  <li>
454
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'delete_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'delete_topic', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['delete_topic']['creds'] ); ?>" size="8" /></div>
455
  </li>
456
  <li class="empty">&nbsp;</li>
457
  <li>
464
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Favorited Topic', 'mycred' ) ); ?></label>
465
  <ol id="">
466
  <li>
467
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['fav_topic']['creds'] ); ?>" size="8" /></div>
468
  </li>
469
  <li class="empty">&nbsp;</li>
470
  <li>
475
  <li class="empty">&nbsp;</li>
476
  <li>
477
  <label for="<?php echo $this->field_id( array( 'fav_topic', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
478
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'fav_topic', 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'fav_topic', 'limit' ) ); ?>" value="<?php echo $this->core->number( $prefs['fav_topic']['limit'] ); ?>" size="8" /></div>
479
  <span class="description"><?php _e( 'Use zero for unlimited', 'mycred' ); ?></span>
480
  </li>
481
  </ol>
483
  <label for="<?php echo $this->field_id( array( 'new_reply', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for New Reply', 'mycred' ) ); ?></label>
484
  <ol id="">
485
  <li>
486
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['new_reply']['creds'] ); ?>" size="8" /></div>
487
  </li>
488
  <li class="empty">&nbsp;</li>
489
  <li>
499
  <li class="empty">&nbsp;</li>
500
  <li>
501
  <label for="<?php echo $this->field_id( array( 'new_reply', 'limit' ) ); ?>"><?php _e( 'Daily Limit', 'mycred' ); ?></label>
502
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'limit' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'limit' ) ); ?>" value="<?php echo $this->core->number( $prefs['new_reply']['limit'] ); ?>" size="8" /></div>
503
  <span class="description"><?php _e( 'Use zero for unlimited', 'mycred' ); ?></span>
504
  </li>
505
  <li class="empty">&nbsp;</li>
plugins/mycred-hook-contact-form7.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 0.1
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Contact_Form7' ) ) {
29
  class myCRED_Contact_Form7 extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -97,7 +97,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
97
  /**
98
  * Preferences for Commenting Hook
99
  * @since 0.1
100
- * @version 1.0
101
  */
102
  public function preferences() {
103
  $prefs = $this->prefs;
@@ -129,7 +129,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
129
  <label for="<?php echo $this->field_id( array( $form_id, 'creds' ) ); ?>" class="subheader"><?php echo $form_title; ?></label>
130
  <ol>
131
  <li>
132
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form_id, 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs[$form_id]['creds'] ); ?>" size="8" /></div>
133
  </li>
134
  <li class="empty">&nbsp;</li>
135
  <li>
25
  * @since 0.1
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Contact_Form7' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Contact_Form7 extends myCRED_Hook {
30
  /**
31
  * Construct
97
  /**
98
  * Preferences for Commenting Hook
99
  * @since 0.1
100
+ * @version 1.0.1
101
  */
102
  public function preferences() {
103
  $prefs = $this->prefs;
129
  <label for="<?php echo $this->field_id( array( $form_id, 'creds' ) ); ?>" class="subheader"><?php echo $form_title; ?></label>
130
  <ol>
131
  <li>
132
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $form_id, 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $form_id, 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs[$form_id]['creds'] ); ?>" size="8" /></div>
133
  </li>
134
  <li class="empty">&nbsp;</li>
135
  <li>
plugins/mycred-hook-events-manager-light.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Hook_Events_Manager' ) ) {
29
  class myCRED_Hook_Events_Manager extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -53,7 +53,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
53
  */
54
  public function run() {
55
  if ( $this->prefs['attend']['creds'] != 0 && get_option( 'dbem_bookings_approval' ) != 0 )
56
- add_filter( 'em_bookings_add', array( $this, 'new_booking' ), 10, 2 );
57
 
58
  add_filter( 'em_booking_set_status', array( $this, 'adjust_booking' ), 10, 2 );
59
  }
@@ -132,7 +132,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
132
  /**
133
  * Preferences for Events Manager
134
  * @since 1.1
135
- * @version 1.0
136
  */
137
  public function preferences() {
138
  $prefs = $this->prefs; ?>
@@ -140,7 +140,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
140
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'creds' ) ); ?>"><?php _e( 'Attending Event', 'mycred' ); ?></label>
141
  <ol>
142
  <li>
143
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'attend' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'attend' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['attend']['creds'] ); ?>" size="8" /></div>
144
  </li>
145
  </ol>
146
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
@@ -153,7 +153,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
153
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'creds' ) ); ?>"><?php _e( 'Cancelling Attendance', 'mycred' ); ?></label>
154
  <ol>
155
  <li>
156
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'cancel' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'cancel' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['cancel']['creds'] ); ?>" size="8" /></div>
157
  </li>
158
  </ol>
159
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Hook_Events_Manager' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Hook_Events_Manager extends myCRED_Hook {
30
  /**
31
  * Construct
53
  */
54
  public function run() {
55
  if ( $this->prefs['attend']['creds'] != 0 && get_option( 'dbem_bookings_approval' ) != 0 )
56
+ add_filter( 'em_bookings_add', array( $this, 'new_booking' ), 10, 2 );
57
 
58
  add_filter( 'em_booking_set_status', array( $this, 'adjust_booking' ), 10, 2 );
59
  }
132
  /**
133
  * Preferences for Events Manager
134
  * @since 1.1
135
+ * @version 1.0.1
136
  */
137
  public function preferences() {
138
  $prefs = $this->prefs; ?>
140
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'creds' ) ); ?>"><?php _e( 'Attending Event', 'mycred' ); ?></label>
141
  <ol>
142
  <li>
143
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'attend' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'attend' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['attend']['creds'] ); ?>" size="8" /></div>
144
  </li>
145
  </ol>
146
  <label class="subheader" for="<?php echo $this->field_id( array( 'attend' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
153
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'creds' ) ); ?>"><?php _e( 'Cancelling Attendance', 'mycred' ); ?></label>
154
  <ol>
155
  <li>
156
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'cancel' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'cancel' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['cancel']['creds'] ); ?>" size="8" /></div>
157
  </li>
158
  </ol>
159
  <label class="subheader" for="<?php echo $this->field_id( array( 'cancel' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
plugins/mycred-hook-gd-star-rating.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 1.2
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Hook_GD_Star_Rating' ) ) {
29
  class myCRED_Hook_GD_Star_Rating extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -91,7 +91,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
91
  /**
92
  * Preferences for GD Star Rating
93
  * @since 1.2
94
- * @version 1.0
95
  */
96
  public function preferences() {
97
  $prefs = $this->prefs; ?>
@@ -99,7 +99,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
99
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'creds' ) ); ?>"><?php _e( 'Rating', 'mycred' ); ?></label>
100
  <ol>
101
  <li>
102
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'star_rating' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'star_rating' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['star_rating']['creds'] ); ?>" size="8" /></div>
103
  </li>
104
  </ol>
105
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
@@ -112,7 +112,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
112
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'creds' ) ); ?>"><?php _e( 'Up / Down Vote', 'mycred' ); ?></label>
113
  <ol>
114
  <li>
115
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'up_down' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'up_down' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['up_down']['creds'] ); ?>" size="8" /></div>
116
  </li>
117
  </ol>
118
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
25
  * @since 1.2
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Hook_GD_Star_Rating' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Hook_GD_Star_Rating extends myCRED_Hook {
30
  /**
31
  * Construct
91
  /**
92
  * Preferences for GD Star Rating
93
  * @since 1.2
94
+ * @version 1.0.1
95
  */
96
  public function preferences() {
97
  $prefs = $this->prefs; ?>
99
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'creds' ) ); ?>"><?php _e( 'Rating', 'mycred' ); ?></label>
100
  <ol>
101
  <li>
102
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'star_rating' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'star_rating' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['star_rating']['creds'] ); ?>" size="8" /></div>
103
  </li>
104
  </ol>
105
  <label class="subheader" for="<?php echo $this->field_id( array( 'star_rating' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
112
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'creds' ) ); ?>"><?php _e( 'Up / Down Vote', 'mycred' ); ?></label>
113
  <ol>
114
  <li>
115
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'up_down' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'up_down' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['up_down']['creds'] ); ?>" size="8" /></div>
116
  </li>
117
  </ol>
118
  <label class="subheader" for="<?php echo $this->field_id( array( 'up_down' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
plugins/mycred-hook-invite-anyone.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 0.1
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Invite_Anyone' ) ) {
29
  class myCRED_Invite_Anyone extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -126,7 +126,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
126
  /**
127
  * Preferences
128
  * @since 0.1
129
- * @version 1.0
130
  */
131
  public function preferences() {
132
  $prefs = $this->prefs; ?>
@@ -135,7 +135,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
135
  <label for="<?php echo $this->field_id( array( 'send_invite', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Sending An Invite', 'mycred' ) ); ?></label>
136
  <ol>
137
  <li>
138
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_invite', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'send_invite', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['send_invite']['creds'] ); ?>" size="8" /></div>
139
  </li>
140
  <li class="empty">&nbsp;</li>
141
  <li>
@@ -155,7 +155,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
155
  <label for="<?php echo $this->field_id( array( 'accept_invite', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Accepting An Invite', 'mycred' ) ); ?></label>
156
  <ol>
157
  <li>
158
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'accept_invite', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'accept_invite', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['accept_invite']['creds'] ); ?>" size="8" /></div>
159
  <span class="description"><?php echo $this->core->template_tags_general( __( '%plural% for each invited user that accepts an invitation.', 'mycred' ) ); ?></span>
160
  </li>
161
  <li class="empty">&nbsp;</li>
25
  * @since 0.1
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Invite_Anyone' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Invite_Anyone extends myCRED_Hook {
30
  /**
31
  * Construct
126
  /**
127
  * Preferences
128
  * @since 0.1
129
+ * @version 1.0.1
130
  */
131
  public function preferences() {
132
  $prefs = $this->prefs; ?>
135
  <label for="<?php echo $this->field_id( array( 'send_invite', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Sending An Invite', 'mycred' ) ); ?></label>
136
  <ol>
137
  <li>
138
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'send_invite', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'send_invite', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['send_invite']['creds'] ); ?>" size="8" /></div>
139
  </li>
140
  <li class="empty">&nbsp;</li>
141
  <li>
155
  <label for="<?php echo $this->field_id( array( 'accept_invite', 'creds' ) ); ?>" class="subheader"><?php echo $this->core->template_tags_general( __( '%plural% for Accepting An Invite', 'mycred' ) ); ?></label>
156
  <ol>
157
  <li>
158
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'accept_invite', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'accept_invite', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['accept_invite']['creds'] ); ?>" size="8" /></div>
159
  <span class="description"><?php echo $this->core->template_tags_general( __( '%plural% for each invited user that accepts an invitation.', 'mycred' ) ); ?></span>
160
  </li>
161
  <li class="empty">&nbsp;</li>
plugins/mycred-hook-jetpack.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 1.0.5
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Hook_Jetpack' ) ) {
29
  class myCRED_Hook_Jetpack extends myCRED_Hook {
30
 
31
  /**
@@ -481,7 +481,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
481
  /**
482
  * Preferences
483
  * @since 1.0.5
484
- * @version 1.0
485
  */
486
  public function preferences() {
487
  $prefs = $this->prefs; ?>
@@ -490,7 +490,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
490
  <label for="<?php echo $this->field_id( array( 'subscribe_site', 'creds' ) ); ?>" class="subheader"><?php _e( 'Site Subscriptions', 'mycred' ); ?></label>
491
  <ol>
492
  <li>
493
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_site', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_site', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['subscribe_site']['creds'] ); ?>" size="8" /></div>
494
  </li>
495
  <li class="empty">&nbsp;</li>
496
  <li>
@@ -503,7 +503,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
503
  <label for="<?php echo $this->field_id( array( 'subscribe_comment', 'creds' ) ); ?>" class="subheader"><?php _e( 'Comment Subscriptions', 'mycred' ); ?></label>
504
  <ol>
505
  <li>
506
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_comment', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_comment', 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['subscribe_comment']['creds'] ); ?>" size="8" /></div>
507
  </li>
508
  <li class="empty">&nbsp;</li>
509
  <li>
25
  * @since 1.0.5
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Hook_Jetpack' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Hook_Jetpack extends myCRED_Hook {
30
 
31
  /**
481
  /**
482
  * Preferences
483
  * @since 1.0.5
484
+ * @version 1.0.1
485
  */
486
  public function preferences() {
487
  $prefs = $this->prefs; ?>
490
  <label for="<?php echo $this->field_id( array( 'subscribe_site', 'creds' ) ); ?>" class="subheader"><?php _e( 'Site Subscriptions', 'mycred' ); ?></label>
491
  <ol>
492
  <li>
493
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_site', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_site', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['subscribe_site']['creds'] ); ?>" size="8" /></div>
494
  </li>
495
  <li class="empty">&nbsp;</li>
496
  <li>
503
  <label for="<?php echo $this->field_id( array( 'subscribe_comment', 'creds' ) ); ?>" class="subheader"><?php _e( 'Comment Subscriptions', 'mycred' ); ?></label>
504
  <ol>
505
  <li>
506
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'subscribe_comment', 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'subscribe_comment', 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['subscribe_comment']['creds'] ); ?>" size="8" /></div>
507
  </li>
508
  <li class="empty">&nbsp;</li>
509
  <li>
plugins/mycred-hook-wp-favorite-posts.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Hook_WPFavorite' ) ) {
29
  class myCRED_Hook_WPFavorite extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -124,7 +124,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
124
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'creds' ) ); ?>"><?php _e( 'Adding Content to Favorites', 'mycred' ); ?></label>
125
  <ol>
126
  <li>
127
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'add' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'add' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['add']['creds'] ); ?>" size="8" /></div>
128
  </li>
129
  </ol>
130
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
@@ -137,7 +137,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
137
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'creds' ) ); ?>"><?php _e( 'Removing Content from Favorites', 'mycred' ); ?></label>
138
  <ol>
139
  <li>
140
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'remove' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'remove' => 'creds' ) ); ?>" value="<?php echo $this->core->format_number( $prefs['remove']['creds'] ); ?>" size="8" /></div>
141
  </li>
142
  </ol>
143
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Hook_WPFavorite' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Hook_WPFavorite extends myCRED_Hook {
30
  /**
31
  * Construct
124
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'creds' ) ); ?>"><?php _e( 'Adding Content to Favorites', 'mycred' ); ?></label>
125
  <ol>
126
  <li>
127
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'add' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'add' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['add']['creds'] ); ?>" size="8" /></div>
128
  </li>
129
  </ol>
130
  <label class="subheader" for="<?php echo $this->field_id( array( 'add' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
137
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'creds' ) ); ?>"><?php _e( 'Removing Content from Favorites', 'mycred' ); ?></label>
138
  <ol>
139
  <li>
140
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'remove' => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( 'remove' => 'creds' ) ); ?>" value="<?php echo $this->core->number( $prefs['remove']['creds'] ); ?>" size="8" /></div>
141
  </li>
142
  </ol>
143
  <label class="subheader" for="<?php echo $this->field_id( array( 'remove' => 'log' ) ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
plugins/mycred-hook-wp-polls.php CHANGED
@@ -25,7 +25,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
- if ( !class_exists( 'myCRED_Hook_WPPolls' ) ) {
29
  class myCRED_Hook_WPPolls extends myCRED_Hook {
30
  /**
31
  * Construct
@@ -126,7 +126,7 @@ if ( defined( 'myCRED_VERSION' ) ) {
126
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
127
  <ol>
128
  <li>
129
- <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->format_number( $prefs['creds'] ); ?>" size="8" /></div>
130
  </li>
131
  </ol>
132
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
25
  * @since 1.1
26
  * @version 1.0
27
  */
28
+ if ( !class_exists( 'myCRED_Hook_WPPolls' ) && class_exists( 'myCRED_Hook' ) ) {
29
  class myCRED_Hook_WPPolls extends myCRED_Hook {
30
  /**
31
  * Construct
126
  <label class="subheader"><?php echo $this->core->plural(); ?></label>
127
  <ol>
128
  <li>
129
+ <div class="h2"><input type="text" name="<?php echo $this->field_name( 'creds' ); ?>" id="<?php echo $this->field_id( 'creds' ); ?>" value="<?php echo $this->core->number( $prefs['creds'] ); ?>" size="8" /></div>
130
  </li>
131
  </ol>
132
  <label class="subheader"><?php _e( 'Log Template', 'mycred' ); ?></label>
readme.txt CHANGED
@@ -3,76 +3,37 @@ 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.6.1
6
- Stable tag: 1.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  myCRED is an adaptive points management system that lets you award / charge your users for interacting with your WordPress powered website.
11
 
12
  == Description ==
 
 
13
 
14
- We feel that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
15
 
16
- So we built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented.
17
 
18
- **my**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.
19
 
20
- **Core Features:**
21
 
22
- * Logging of all events
23
- * Log entry templates and template tags
24
- * Easy User Points editing
25
- * Easy to manage Hooks for each instance where users gain/loose points
26
- * Supports any point format
27
- * Ranking
28
- * Custom My Balance Widget
29
- * Custom Leader board Widget
30
- * Minimum CSS Styling
31
- * Built-in log and balance reset
32
- * Export of users balances to CSV files
33
- * Setup points to be used as a virtual currency or store credit
34
 
 
35
 
36
- **Built-in Add-ons:**
37
 
38
- Your myCRED installation comes packed with optional add-ons, adding further features and third-party plugin support.
39
 
40
- * *Email Notices* - Setup email notices for your users and/or admins when a users points balance changes or on specific events, for example when they purchase content set for sale.
41
- * *Transfer* - Allows your users to send points to other members with an option to impose a daily-, weekly- or monthly transfer limit.
42
- * *Import* - Import points from a CSV-file, Cubepoints or points stored under any custom user meta key.
43
- * *Sell Content* - Sell access to entire contents or parts of it with the option to share a percentage of the sale with the content author.
44
- * *Buy Creds* - Let your users buy points via PayPal, Skrill, Zombaio or NETbilling.
45
- * *Ranks* - Allows you to setup ranks based on your users points balance.
46
- * *Gateway* - Allow your users to pay for items in their WooCommerce or MarketPress shopping cart using their point balance.
47
- * *BuddyPress* - Extend **my**CRED to support [BuddyPress](http://wordpress.org/extend/plugins/buddypress/), [BuddyPress Gifts](http://wordpress.org/extend/plugins/buddypress-gifts/), [BuddyPress Links](http://wordpress.org/extend/plugins/buddypress-links/), [BP Album+](http://wordpress.org/extend/plugins/bp-gallery/) and [BP Gallery](http://buddydev.com/plugins/bp-gallery/).
48
- * *Banking* - Charge or payout interest on users balances on a regular basis or setup recurring payouts. Added support for websites with large (2k+) user base.
49
- * *Notifications* - Let your users know when they have earned or lost points on your website though jQuery popups.
50
 
51
 
52
- **Multisites**
53
 
54
- **my**CRED supports Multisite installations and offers you the following features:
55
-
56
- * *Master Template* - Force your main sites **my**CRED installation upon all other sites. Each site will have it's own log but have no access to any settings, hooks or add-ons.
57
- * *Centralized Log* - All sites uses your main sites log instead of individual logs for each site.
58
- * *Block List* - Allows you to block specific sites from using **my**CRED.
59
-
60
- **Important!** The above features requires you to enable **my**CRED network wide!
61
-
62
- **Supported Third-party Plugins:**
63
-
64
- The following third party plugins are supported by default:
65
-
66
- * [BuddyPress](http://buddypress.org)
67
- * [Contact Form 7](http://wordpress.org/plugins/contact-form-7/) - Award users points for submitting forms.
68
- * [Invite Anyone Plugin](http://wordpress.org/extend/plugins/invite-anyone/) - Award users for sending invitations and for each time an invited user accepts and signs up.
69
- * [Jetpack](http://wordpress.org/extend/plugins/jetpack/) - Award users for subscribing to comments or your site. Requires users to be logged in or subscribe using the email saved in their profile.
70
- * [BadgeOS](http://wordpress.org/extend/plugins/badgeos/) - Award points for any BadgeOS achievement type.
71
- * [WP-Polls](http://wordpress.org/plugins/wp-polls/) - Award points for users voting in polls.
72
- * [WP Favorite Posts](http://wordpress.org/plugins/wp-favorite-posts/) - Award points for users adding posts to their favorites or deduct points if they remove posts.
73
- * [Events Manager](http://wordpress.org/plugins/events-manager/) - Award points for users attending events with the option to deduct points if attendance is cancelled.
74
- * [bbPress](http://wordpress.org/extend/plugins/bbpress/) - Award points for new forums, topics, replies and for topics getting added to "Favorites".
75
- * [GD Star Rating](http://wordpress.org/plugins/gd-star-rating/) - Award points for users rating content.
76
 
77
 
78
  **Further Details**
@@ -83,7 +44,8 @@ The following third party plugins are supported by default:
83
  * [Add-ons](http://mycred.me/add-ons/)
84
  * [Tutorials](http://mycred.me/support/tutorials/)
85
  * [Known Issues](http://mycred.me/download/known-issues/)
86
- * [Codex](http://mycred.me/support/codex/)
 
87
 
88
  **Contact**
89
 
@@ -94,13 +56,13 @@ The following third party plugins are supported by default:
94
 
95
  == Installation ==
96
 
97
- For a comprehensive guide on how to install myCRED or how this plugin works, consider visiting our [Online Tutorial](http://mycred.me/support/tutorials/how-to-install-and-setup-mycred/).
98
 
99
  **Single Site**
100
 
101
  1. Upload `mycred` to the `/wp-content/plugins/` directory
102
  2. Activate the plugin through the 'Plugins' menu in WordPress
103
- 3. Run the myCRED Setup which will allow you to configure your **my**CRED installation
104
  4. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
105
  5. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
106
  6. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
@@ -108,10 +70,10 @@ For a comprehensive guide on how to install myCRED or how this plugin works, con
108
  **Multisite with one myCRED installation on all sites**
109
 
110
  1. Upload `mycred` to the `/wp-content/plugins/` directory
111
- 2. Enable myCRED Network Wide though your WordPress Network page
112
  3. While in your Network area, visit the new myCRED menu and select your setup and save.
113
  4. Visit your main sites admin area
114
- 5. Run the myCRED Setup which will allow you to configure your **my**CRED installation
115
  6. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
116
  7. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
117
  8. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
@@ -120,11 +82,11 @@ For a comprehensive guide on how to install myCRED or how this plugin works, con
120
 
121
  1. Upload `mycred` to the `/wp-content/plugins/` directory
122
  2. Activate the plugin through the 'Plugins' menu in WordPress
123
- 3. Run the myCRED Setup which will allow you to configure your **my**CRED installation
124
  4. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
125
  5. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
126
  6. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
127
- 7. Repeat the process on each site you want to run myCRED
128
 
129
  == Frequently Asked Questions ==
130
 
@@ -160,8 +122,8 @@ Yes but if one of them is bought, all is shown. The mycred_sell_this shortcode w
160
 
161
  == Upgrade Notice ==
162
 
163
- = 1.3 =
164
- Performance improvement, new Remote API, updated styling and bug fixes.
165
 
166
 
167
  == Other Notes ==
@@ -177,6 +139,23 @@ Performance improvement, new Remote API, updated styling and bug fixes.
177
 
178
  == Changelog ==
179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  = 1.3 =
181
  * Improved myCRED's module management lowering memory usage.
182
  * Re-designed hooks, add-ons and settings accordion.
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress
4
  Requires at least: 3.1
5
  Tested up to: 3.6.1
6
+ Stable tag: 1.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
  myCRED is an adaptive points management system that lets you award / charge your users for interacting with your WordPress powered website.
11
 
12
  == Description ==
13
+
14
+ I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
15
 
16
+ So I built an adaptive plugin which gives it’s users full control on how points are awarded, used, traded, managed, logged and presented. Built on the "opt-in" principle, it is up to you what features you want to use and how. If your WordPress installation does not support a feature it is hidden from you to keep things clean and simple.
17
 
18
+ **my**CRED comes packed with features along with built-in support for some of the most popular WordPress 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 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
 
22
+ You are welcome to post your issues or questions under the "Support" tab but remember that **my**CRED has it's own online forum along with [F.A.Q.](http://mycred.me/about/faq/) page and [Known Issues](http://mycred.me/download/known-issues/).
23
 
24
+ **Hooks**
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ **my**CRED hooks are instances where you award or deduct points from a user. By default you can award point for: registrations, logins, content publishing, commenting, clicking on links and viewing YouTube videos. You can find more information on built-in hooks [here](http://mycred.me/about/hooks/).
27
 
 
28
 
29
+ **Add-ons**
30
 
31
+ **my**CRED add-ons allows you to enable more complex features that is not just about awarding / deducting points. Features include: Sell Content with points, Buy points for real money, transfer points between users, award ranks according to points balances and expand **my**CRED to work with BuddyPress. You can find a complete list of built-in and premium add-ons [here](http://mycred.me/add-ons/).
 
 
 
 
 
 
 
 
 
32
 
33
 
34
+ **The Codex**
35
 
36
+ If you are comfortable with PHP or have some experience with customising your WordPress installation, I have documented as much as possible of **my**CRED in the [Codex](http://codex.mycred.me/).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
 
39
  **Further Details**
44
  * [Add-ons](http://mycred.me/add-ons/)
45
  * [Tutorials](http://mycred.me/support/tutorials/)
46
  * [Known Issues](http://mycred.me/download/known-issues/)
47
+ * [Codex](http://codex.mycred.me/support/)
48
+
49
 
50
  **Contact**
51
 
56
 
57
  == Installation ==
58
 
59
+ For a comprehensive guide on how to install **my**CRED or how this plugin works, consider visiting our [Online Tutorial](http://mycred.me/support/tutorials/how-to-install-and-setup-mycred/).
60
 
61
  **Single Site**
62
 
63
  1. Upload `mycred` to the `/wp-content/plugins/` directory
64
  2. Activate the plugin through the 'Plugins' menu in WordPress
65
+ 3. Run the **my**CRED Setup which will allow you to configure your **my**CRED installation
66
  4. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
67
  5. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
68
  6. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
70
  **Multisite with one myCRED installation on all sites**
71
 
72
  1. Upload `mycred` to the `/wp-content/plugins/` directory
73
+ 2. Enable **my**CRED Network Wide though your WordPress Network page
74
  3. While in your Network area, visit the new myCRED menu and select your setup and save.
75
  4. Visit your main sites admin area
76
+ 5. Run the **my**CRED Setup which will allow you to configure your **my**CRED installation
77
  6. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
78
  7. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
79
  8. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
82
 
83
  1. Upload `mycred` to the `/wp-content/plugins/` directory
84
  2. Activate the plugin through the 'Plugins' menu in WordPress
85
+ 3. Run the **my**CRED Setup which will allow you to configure your **my**CRED installation
86
  4. Activate the Add-ons you wish to use under the 'myCRED' menu in WordPress
87
  5. Configure and Enable the hooks you wish to use though the 'Hooks' sub menu in WordPress
88
  6. Configure any other Add-on settings you might be using i.e. BuddyPress though the 'Settings' sub menu in WordPress
89
+ 7. Repeat the process on each site you want to run **my**CRED
90
 
91
  == Frequently Asked Questions ==
92
 
122
 
123
  == Upgrade Notice ==
124
 
125
+ = 1.3.1 =
126
+ Important bug fixes for 1.3 users
127
 
128
 
129
  == Other Notes ==
139
 
140
  == Changelog ==
141
 
142
+ = 1.3.1 =
143
+ * Fixed Bug #58 - Some hooks fire to late due to hooks being loaded to late.
144
+ * Fixed Bug #59 - Shopping cart settings are inaccessible due to to late hook registration.
145
+ * Fixed Bug #60 - Notifications lack support for ' or " signs causing an error which prevents notices to load.
146
+ * Fixed Bug #61 - myCRED_Query_Log can not return a single result, requires minimum 2 to be returned or it will default to all.
147
+ * Fixed Bug #62 - Commenter is awarded points instead of post author due to incorrect user id being passed on.
148
+ * Fixed Bug #63 - The removal of myCRED_Core causes customisations depending on this class to fail causing a site wide error.
149
+ * Fixed Bug #64 - Points over 999 with a non-empty thousands separator will cause hooks to award to low points.
150
+ * Fixed Bug #65 - The use of update_blog_option() on non multi sites will cause a php notice.
151
+ * Fixed Bug #66 - Points History page link still visible in tool bar even if history page is disabled.
152
+ * Fixed Bug #67 - Duplicate Gateways when using Events Manager (free version).
153
+ * Fixed Bug #68 - Users are not refunded when cancelling their event attendance in Events Manager (free & pro)
154
+ * Added logout redirect to BP when users logout from the points history page to prevent 404 errors.
155
+ * Added new mycred_label_my_balance filter for adjustments of the tool bar "My Balance" item.
156
+ * Re-wrote the Points for commenting.
157
+
158
+
159
  = 1.3 =
160
  * Improved myCRED's module management lowering memory usage.
161
  * Re-designed hooks, add-ons and settings accordion.