myCRED - Version 1.2.3

Version Description

New Notifications Add-on and added support for Email Notices for users getting promoted / demoted. Bug fixes.

Download this release

Release Info

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

Code changes from version 1.2.2 to 1.2.3

abstracts/mycred-abstract-module.php CHANGED
@@ -39,7 +39,7 @@ if ( !class_exists( 'myCRED_Module' ) ) {
39
  function __construct( $module_id = '', $args = array() ) {
40
  // Module ID is required
41
  if ( empty( $module_id ) )
42
- wp_die( 'myCRED_Module() Error. A Module ID is required!' );
43
 
44
  $this->module_id = $module_id;
45
  $this->core = mycred_get_settings();
@@ -291,11 +291,11 @@ if ( !class_exists( 'myCRED_Module' ) ) {
291
  /**
292
  * Add Admin Menu Item
293
  * @since 0.1
294
- * @version 1.0
295
  */
296
  function add_menu() {
297
  // Network Setting for Multisites
298
- if ( is_multisite() && mycred_overwrite() === true && $this->screen_id != 'myCRED' && $GLOBALS['blog_id'] != 1 ) return;
299
 
300
  if ( !empty( $this->labels ) && !empty( $this->screen_id ) ) {
301
  // Menu Label
@@ -347,7 +347,7 @@ if ( !class_exists( 'myCRED_Module' ) ) {
347
  * Outputs the "click to open" and "click to close" text to the accordion.
348
  *
349
  * @since 0.1
350
- * @version 1.0
351
  */
352
  function settings_header() {
353
  if ( $this->accordion === true )
@@ -355,6 +355,14 @@ if ( !class_exists( 'myCRED_Module' ) ) {
355
 
356
  wp_enqueue_style( 'mycred-admin' );
357
 
 
 
 
 
 
 
 
 
358
  if ( $this->accordion === false ) return;
359
  $click_to_open = __( 'click to open', 'mycred' );
360
  $click_to_close = __( 'click to close', 'mycred' ); ?>
39
  function __construct( $module_id = '', $args = array() ) {
40
  // Module ID is required
41
  if ( empty( $module_id ) )
42
+ wp_die( __( 'myCRED_Module() Error. A Module ID is required!', 'mycred' ) );
43
 
44
  $this->module_id = $module_id;
45
  $this->core = mycred_get_settings();
291
  /**
292
  * Add Admin Menu Item
293
  * @since 0.1
294
+ * @version 1.0.1
295
  */
296
  function add_menu() {
297
  // Network Setting for Multisites
298
+ if ( ( is_multisite() && mycred_overwrite() === true ) && ( $this->screen_id != 'myCRED' || $GLOBALS['blog_id'] != 1 ) ) return;
299
 
300
  if ( !empty( $this->labels ) && !empty( $this->screen_id ) ) {
301
  // Menu Label
347
  * Outputs the "click to open" and "click to close" text to the accordion.
348
  *
349
  * @since 0.1
350
+ * @version 1.1
351
  */
352
  function settings_header() {
353
  if ( $this->accordion === true )
355
 
356
  wp_enqueue_style( 'mycred-admin' );
357
 
358
+ // Load help
359
+ $help = new myCRED_Help();
360
+ $help_screen = $this->module_name . '_page';
361
+ if ( method_exists( $help, $help_screen ) ) {
362
+ $screen = get_current_screen();
363
+ $help->$help_screen( $screen );
364
+ }
365
+
366
  if ( $this->accordion === false ) return;
367
  $click_to_open = __( 'click to open', 'mycred' );
368
  $click_to_close = __( 'click to close', 'mycred' ); ?>
addons/banking/abstracts/mycred-abstract-service.php CHANGED
@@ -272,7 +272,7 @@ if ( !class_exists( 'myCRED_Service' ) ) {
272
  * Returns all blog users IDs either from a daily transient or
273
  * by making a fresh SQL Query.
274
  * @since 1.2
275
- * @version 1.1
276
  */
277
  public function get_users() {
278
  // Get daily transient
@@ -293,6 +293,19 @@ if ( !class_exists( 'myCRED_Service' ) ) {
293
  if ( $data === false ) {
294
  global $wpdb;
295
  $data = $wpdb->get_col( "SELECT ID FROM {$wpdb->users};" );
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  set_transient( 'mycred_banking_payout_ids', $data, DAY_IN_SECONDS );
297
  $wpdb->flush();
298
  }
272
  * Returns all blog users IDs either from a daily transient or
273
  * by making a fresh SQL Query.
274
  * @since 1.2
275
+ * @version 1.2
276
  */
277
  public function get_users() {
278
  // Get daily transient
293
  if ( $data === false ) {
294
  global $wpdb;
295
  $data = $wpdb->get_col( "SELECT ID FROM {$wpdb->users};" );
296
+
297
+ foreach ( $data as $num => $user_id ) {
298
+ $user_id = intval( $user_id );
299
+ if ( isset( $this->prefs['excludes'] ) ) {
300
+ if ( !empty( $this->prefs['excludes'] ) ) {
301
+ if ( !is_array( $this->prefs['excludes'] ) ) $excludes = explode( ',', $this->prefs['excludes'] );
302
+ if ( in_array( $user_id, $excludes ) ) unset( $data[ $num ] );
303
+ }
304
+ }
305
+
306
+ if ( $this->core->exclude_user( $user_id ) ) unset( $data[ $num ] );
307
+ }
308
+
309
  set_transient( 'mycred_banking_payout_ids', $data, DAY_IN_SECONDS );
310
  $wpdb->flush();
311
  }
addons/banking/services/mycred-bank-service-interest.php CHANGED
@@ -95,7 +95,7 @@ if ( !class_exists( 'myCRED_Banking_Service_Interest' ) ) {
95
  if ( $payout_now === false || $last_payout === false ) return;
96
 
97
  // Time to run?
98
- if ( $this->time_to_run( $this->prefs['rate']['pay_out'], $last_run ) ) {
99
  // Save
100
  $this->save( 'last_payout', $unow );
101
 
@@ -140,18 +140,15 @@ if ( !class_exists( 'myCRED_Banking_Service_Interest' ) ) {
140
  * Do Compound Batch
141
  * Compounds interest for each user ID given in batch.
142
  * @since 1.2
143
- * @version 1.1
144
  */
145
  public function do_compound_batch( $batch ) {
146
  if ( !empty( $batch ) && is_array( $batch ) ) {
 
 
 
147
  foreach ( $batch as $user_id ) {
148
  $user_id = intval( $user_id );
149
-
150
- // Handle excludes
151
- if ( !empty( $this->prefs['excludes'] ) ) {
152
- if ( !is_array( $this->prefs['excludes'] ) ) $excludes = explode( ',', $this->prefs['excludes'] );
153
- if ( in_array( $user_id, $excludes ) || $this->core->exclude_user( $user_id ) ) continue;
154
- }
155
 
156
  // Current balance
157
  $balance = $this->core->get_users_cred( $user_id );
@@ -217,18 +214,15 @@ if ( !class_exists( 'myCRED_Banking_Service_Interest' ) ) {
217
  * Do Payout
218
  * Runs though all user compounded interest and pays.
219
  * @since 1.2
220
- * @version 1.1
221
  */
222
  public function do_interest_batch( $batch ) {
223
  if ( !empty( $batch ) && is_array( $batch ) ) {
 
 
 
224
  foreach ( $batch as $user_id ) {
225
  $user_id = intval( $user_id );
226
-
227
- // Handle excludes
228
- if ( !empty( $this->prefs['excludes'] ) ) {
229
- if ( !is_array( $this->prefs['excludes'] ) ) $excludes = explode( ',', $this->prefs['excludes'] );
230
- if ( in_array( $user_id, $excludes ) || $this->core->exclude_user( $user_id ) ) continue;
231
- }
232
 
233
  // Get past interest
234
  $past_interest = get_user_meta( $user_id, $this->core->get_cred_id() . '_comp', true );
95
  if ( $payout_now === false || $last_payout === false ) return;
96
 
97
  // Time to run?
98
+ if ( $this->time_to_run( $this->prefs['rate']['pay_out'], $last_payout ) ) {
99
  // Save
100
  $this->save( 'last_payout', $unow );
101
 
140
  * Do Compound Batch
141
  * Compounds interest for each user ID given in batch.
142
  * @since 1.2
143
+ * @version 1.2
144
  */
145
  public function do_compound_batch( $batch ) {
146
  if ( !empty( $batch ) && is_array( $batch ) ) {
147
+
148
+ set_time_limit( 0 );
149
+
150
  foreach ( $batch as $user_id ) {
151
  $user_id = intval( $user_id );
 
 
 
 
 
 
152
 
153
  // Current balance
154
  $balance = $this->core->get_users_cred( $user_id );
214
  * Do Payout
215
  * Runs though all user compounded interest and pays.
216
  * @since 1.2
217
+ * @version 1.2
218
  */
219
  public function do_interest_batch( $batch ) {
220
  if ( !empty( $batch ) && is_array( $batch ) ) {
221
+
222
+ set_time_limit( 0 );
223
+
224
  foreach ( $batch as $user_id ) {
225
  $user_id = intval( $user_id );
 
 
 
 
 
 
226
 
227
  // Get past interest
228
  $past_interest = get_user_meta( $user_id, $this->core->get_cred_id() . '_comp', true );
addons/banking/services/mycred-bank-service-payouts.php CHANGED
@@ -134,19 +134,16 @@ if ( !class_exists( 'myCRED_Banking_Service_Payouts' ) ) {
134
  * Do Batch
135
  * Applies points to a batch of user ID's. This is also where we check for exclusions.
136
  * @since 1.2
137
- * @version 1.1
138
  */
139
  public function do_payout_batch( $batch, $set = NULL, $cycle = NULL ) {
140
  if ( !empty( $batch ) && is_array( $batch ) ) {
 
 
 
141
  foreach ( $batch as $user_id ) {
142
  $user_id = intval( $user_id );
143
 
144
- // Handle excludes
145
- if ( !empty( $this->prefs['excludes'] ) ) {
146
- if ( !is_array( $this->prefs['excludes'] ) ) $excludes = explode( ',', $this->prefs['excludes'] );
147
- if ( in_array( $user_id, $excludes ) || $this->core->exclude_user( $user_id ) ) continue;
148
- }
149
-
150
  // Add / Deduct points
151
  $this->core->add_creds(
152
  'payout',
134
  * Do Batch
135
  * Applies points to a batch of user ID's. This is also where we check for exclusions.
136
  * @since 1.2
137
+ * @version 1.2
138
  */
139
  public function do_payout_batch( $batch, $set = NULL, $cycle = NULL ) {
140
  if ( !empty( $batch ) && is_array( $batch ) ) {
141
+
142
+ set_time_limit( 0 );
143
+
144
  foreach ( $batch as $user_id ) {
145
  $user_id = intval( $user_id );
146
 
 
 
 
 
 
 
147
  // Add / Deduct points
148
  $this->core->add_creds(
149
  'payout',
addons/buddypress/hooks/bp-press.php DELETED
@@ -1,135 +0,0 @@
1
- <?php
2
- if ( !defined( 'myCRED_VERSION' ) ) exit;
3
- /**
4
- * myCRED_BuddyPress_bbPress class
5
- *
6
- * Creds for bbPress 2.0
7
- * @since 0.1
8
- * @version 1.0
9
- */
10
- if ( !class_exists( 'myCRED_BuddyPress_bbPress' ) ) {
11
- class myCRED_BuddyPress_bbPress extends myCRED_Hook {
12
-
13
- /**
14
- * Construct
15
- */
16
- function __construct( $hook_prefs ) {
17
- parent::__construct( array(
18
- 'id' => 'hook_bp_bbpress',
19
- 'defaults' => array(
20
- 'new_topic' => array(
21
- 'creds' => 1,
22
- 'log' => '%plural% for new forum topic'
23
- ),
24
- 'new_reply' => array(
25
- 'creds' => 1,
26
- 'log' => '%plural% for new forum reply'
27
- )
28
- )
29
- ), $hook_prefs );
30
- }
31
-
32
- /**
33
- * Run
34
- * @since 0.1
35
- * @version 1.0
36
- */
37
- public function run() {
38
- if ( $this->prefs['new_topic']['creds'] != 0 )
39
- add_action( 'bbp_new_topic', array( $this, 'new_topic' ), 20, 4 );
40
-
41
- if ( $this->prefs['new_reply']['creds'] != 0 )
42
- add_action( 'bbp_new_reply', array( $this, 'new_reply' ), 20, 5 );
43
- }
44
-
45
- /**
46
- * New Topic
47
- * @since 0.1
48
- * @version 1.0
49
- */
50
- public function new_topic( $topic_id, $forum_id, $anonymous_data, $topic_author ) {
51
- // Check if user is excluded
52
- if ( $this->core->exclude_user( $topic_author ) ) return;
53
-
54
- // Make sure this is unique event
55
- if ( $this->has_entry( 'new_forum_topic', $topic_id, $topic_author ) ) return;
56
-
57
- // Execute
58
- $this->core->add_creds(
59
- 'new_forum_topic',
60
- $topic_author,
61
- $this->prefs['new_topic']['creds'],
62
- $this->prefs['new_topic']['log'],
63
- $topic_id,
64
- array( 'ref_type' => 'post' )
65
- );
66
-
67
- // Clean up
68
- unset( $this );
69
- }
70
-
71
- /**
72
- * New Reply
73
- * @since 0.1
74
- * @version 1.0
75
- */
76
- public function new_replay( $reply_id, $topic_id, $forum_id, $anonymous_data, $reply_author ) {
77
- // Check if user is excluded
78
- if ( $this->core->exclude_user( $reply_author ) ) return;
79
-
80
- // Make sure this is unique event
81
- if ( $this->has_entry( 'new_forum_reply', $reply_id, $reply_author ) ) return;
82
-
83
- // Execute
84
- $this->core->add_creds(
85
- 'new_forum_reply',
86
- $reply_author,
87
- $this->prefs['new_reply']['creds'],
88
- $this->prefs['new_reply']['log'],
89
- $reply_id,
90
- array( 'ref_type' => 'post' )
91
- );
92
-
93
- // Clean up
94
- unset( $this );
95
- }
96
-
97
- /**
98
- * Preferences
99
- * @since 0.1
100
- * @version 1.0
101
- */
102
- public function preferences() {
103
- $prefs = $this->prefs; ?>
104
-
105
- <!-- Creds for New Topic -->
106
- <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>
107
- <ol id="">
108
- <li>
109
- <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>
110
- </li>
111
- <li class="empty">&nbsp;</li>
112
- <li>
113
- <label for="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
114
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_topic', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_topic', 'log' ) ); ?>" value="<?php echo $prefs['new_topic']['log']; ?>" class="long" /></div>
115
- <span class="description"><?php _e( 'Available template tags: General, Post', 'mycred' ); ?></span>
116
- </li>
117
- </ol>
118
- <!-- Creds for New Reply -->
119
- <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>
120
- <ol id="">
121
- <li>
122
- <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>
123
- </li>
124
- <li class="empty">&nbsp;</li>
125
- <li>
126
- <label for="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>"><?php _e( 'Log template', 'mycred' ); ?></label>
127
- <div class="h2"><input type="text" name="<?php echo $this->field_name( array( 'new_reply', 'log' ) ); ?>" id="<?php echo $this->field_id( array( 'new_reply', 'log' ) ); ?>" value="<?php echo $prefs['new_reply']['log']; ?>" class="long" /></div>
128
- <span class="description"><?php _e( 'Available template tags: General, Post', 'mycred' ); ?></span>
129
- </li>
130
- </ol>
131
- <?php unset( $this );
132
- }
133
- }
134
- }
135
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -59,13 +59,13 @@ if ( !class_exists( 'myCRED_Email_Notices' ) ) {
59
  /**
60
  * Hook into Init
61
  * @since 1.1
62
- * @version 1.0
63
  */
64
  public function module_init() {
65
  $this->register_post_type();
66
  $this->setup_instances();
67
  add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
68
- add_filter( 'mycred_add', array( $this, 'email_check' ), 10, 3 );
69
  }
70
 
71
  /**
@@ -180,7 +180,7 @@ if ( !class_exists( 'myCRED_Email_Notices' ) ) {
180
  /**
181
  * Setup Instances
182
  * @since 1.1
183
- * @version 1.0
184
  */
185
  protected function setup_instances() {
186
  $instances[''] = __( 'Select', 'mycred' );
@@ -220,6 +220,15 @@ if ( !class_exists( 'myCRED_Email_Notices' ) ) {
220
  );
221
  }
222
 
 
 
 
 
 
 
 
 
 
223
  $this->instances = apply_filters( 'mycred_email_instances', $instances );
224
  }
225
 
@@ -336,9 +345,12 @@ if ( !class_exists( 'myCRED_Email_Notices' ) ) {
336
  /**
337
  * Email Notice Check
338
  * @since 1.1
339
- * @version 1.0
340
  */
341
  public function email_check( $reply, $request, $mycred ) {
 
 
 
342
  // Construct events
343
  $event = array( 'all' );
344
  $amount = $request['amount'];
@@ -356,6 +368,16 @@ if ( !class_exists( 'myCRED_Email_Notices' ) ) {
356
  elseif ( $balance-$amount == 0 )
357
  $event[] = 'zero';
358
 
 
 
 
 
 
 
 
 
 
 
359
  // Before we send a notice, lets execute the request
360
  // so that emails show the correct details
361
  $mycred->update_users_balance( $request['user_id'], $request['amount'] );
59
  /**
60
  * Hook into Init
61
  * @since 1.1
62
+ * @version 1.0.1
63
  */
64
  public function module_init() {
65
  $this->register_post_type();
66
  $this->setup_instances();
67
  add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
68
+ add_filter( 'mycred_add', array( $this, 'email_check' ), 20, 3 );
69
  }
70
 
71
  /**
180
  /**
181
  * Setup Instances
182
  * @since 1.1
183
+ * @version 1.1
184
  */
185
  protected function setup_instances() {
186
  $instances[''] = __( 'Select', 'mycred' );
220
  );
221
  }
222
 
223
+ if ( class_exists( 'myCRED_Ranks' ) ) {
224
+ $instances['ranks'] = array(
225
+ 'label' => __( 'Ranks Add-on', 'mycred' ),
226
+ 'negative' => __( 'user is demoted', 'mycred' ),
227
+ 'positive' => __( 'user is promoted', 'mycred' ),
228
+ 'end' => ''
229
+ );
230
+ }
231
+
232
  $this->instances = apply_filters( 'mycred_email_instances', $instances );
233
  }
234
 
345
  /**
346
  * Email Notice Check
347
  * @since 1.1
348
+ * @version 1.1
349
  */
350
  public function email_check( $reply, $request, $mycred ) {
351
+ // Override - something has already determaned that this should not be executed
352
+ if ( $reply === false || $reply === 'done' ) return $reply;
353
+
354
  // Construct events
355
  $event = array( 'all' );
356
  $amount = $request['amount'];
368
  elseif ( $balance-$amount == 0 )
369
  $event[] = 'zero';
370
 
371
+ // Do Ranks first
372
+ if ( function_exists( 'mycred_get_users_rank' ) ) {
373
+ // get users current rank ID
374
+ $current_rank = mycred_get_users_rank( $request['user_id'] );
375
+ $maybe_new_rank = mycred_find_users_rank( $request['user_id'], false, $request['amount'], $request['type'] );
376
+ if ( $current_rank != $maybe_new_rank ) {
377
+ $this->do_email_notices( 'ranks', $event, $request );
378
+ }
379
+ }
380
+
381
  // Before we send a notice, lets execute the request
382
  // so that emails show the correct details
383
  $mycred->update_users_balance( $request['user_id'], $request['amount'] );
addons/gateway/carts/mycred-marketpress.php CHANGED
@@ -3,144 +3,139 @@ if ( !defined( 'WP_PLUGIN_DIR' ) ) exit;
3
  /**
4
  * MarketPress Payment Gateway
5
  * @since 1.1
6
- * @version 1.0
7
  */
8
- if ( !class_exists( 'MP_Gateway_myCRED' ) ) {
9
- /**
10
- * Locate the MarketPress base gateway file
11
- * @from MarketPress::init_vars()
12
- */
13
- $file = '/marketpress-includes/marketpress-gateways.php';
14
- // Light
15
- if ( file_exists( WP_PLUGIN_DIR . '/wordpress-ecommerce' . $file ) )
16
- include_once( WP_PLUGIN_DIR . '/wordpress-ecommerce' . $file );
17
- // Pro
18
- elseif ( file_exists( WP_PLUGIN_DIR . '/marketpress' . $file ) )
19
- include_once( WP_PLUGIN_DIR . '/marketpress' . $file );
20
- elseif ( file_exists( WP_PLUGIN_DIR . $file ) )
21
- include_once( WP_PLUGIN_DIR . $file );
22
- elseif ( is_multisite() && file_exists( WPMU_PLUGIN_DIR . $file ) )
23
- include_once( WPMU_PLUGIN_DIR . $file );
24
- else
25
- return;
26
-
27
- /**
28
- * myCRED Custom Gateway
29
- */
30
- class MP_Gateway_myCRED extends MP_Gateway_API {
31
-
32
- var $plugin_name = 'mycred';
33
- var $admin_name = 'myCRED';
34
- var $public_name = 'myCRED';
35
- var $method_img_url = '';
36
- var $method_button_img_url = '';
37
- var $force_ssl = false;
38
- var $ipn_url;
39
- var $skip_form = false;
40
-
41
- /**
42
- * Runs when your class is instantiated. Use to setup your plugin instead of __construct()
43
- */
44
- function on_creation() {
45
- global $mp;
46
- $settings = get_option( 'mp_settings' );
47
-
48
- //set names here to be able to translate
49
- $this->admin_name = 'myCRED';
50
- $this->public_name = ( !empty( $settings['gateways']['mycred']['name'] ) ) ? $settings['gateways']['mycred']['name'] : apply_filters( 'mycred_label', myCRED_NAME );
51
- $this->method_img_url = plugins_url( 'assets/images/cred-icon32.png', myCRED_THIS );
52
- $this->method_button_img_url = $settings['gateways']['mycred']['name'];
53
- $this->mycred = mycred_get_settings();
54
- }
55
 
56
- /**
57
- * Use Exchange
58
- * Checks to see if exchange is needed.
59
- * @since 1.1
60
- * @version 1.0
61
- */
62
- function use_exchange() {
63
- global $mp;
64
-
65
- $settings = get_option( 'mp_settings' );
66
- if ( $settings['currency'] == 'POINTS' ) return false;
67
- return true;
68
- }
69
 
70
- /**
71
- * Returns the current carts total.
72
- * @since 1.2
73
- * @version 1.0
74
- */
75
- function get_cart_total( $cart = NULL ) {
76
- global $mp;
77
-
78
- // Get total
79
- $totals = array();
80
- foreach ( $cart as $product_id => $variations ) {
81
- foreach ( $variations as $data ) {
82
- $totals[] = $mp->before_tax_price( $data['price'], $product_id ) * $data['quantity'];
 
83
  }
84
- }
85
- $total = array_sum( $totals );
86
 
87
- // Apply Coupons
88
- if ( $coupon = $mp->coupon_value( $mp->get_coupon_code(), $total ) ) {
89
- $total = $coupon['new_total'];
90
- }
91
 
92
- // Shipping Cost
93
- if ( ( $shipping_price = $mp->shipping_price() ) !== false ) {
94
- $total = $total + $shipping_price;
95
- }
96
 
97
- // Tax
98
- if ( ( $tax_price = $mp->tax_price() ) !== false ) {
99
- $total = $total + $tax_price;
100
- }
101
 
102
- $settings = get_option( 'mp_settings' );
103
- if ( $this->use_exchange() )
104
- return $this->mycred->apply_exchange_rate( $total, $settings['gateways']['mycred']['exchange'] );
105
- else
106
- return $this->mycred->number( $total );
107
- }
108
 
109
- /**
110
- * Return fields you need to add to the payment screen, like your credit card info fields
111
- *
112
- * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
113
- * @param array $shipping_info. Contains shipping info and email in case you need it
114
- * @since 1.1
115
- * @version 1.1
116
- */
117
- function payment_form( $cart, $shipping_info ) {
118
- global $mp;
119
 
120
- $settings = get_option( 'mp_settings' );
121
 
122
- if ( !is_user_logged_in() ) {
123
- $message = str_replace( '%login_url_here%', wp_login_url( mp_checkout_step_url( 'checkout' ) ), $settings['gateways']['mycred']['visitors'] );
124
- $message = $this->mycred->template_tags_general( $message );
125
- return '<div id="mp-mycred-balance">' . $message . '</div>';
126
- }
127
 
128
- $balance = $this->mycred->get_users_cred( get_current_user_id() );
129
- $total = $this->get_cart_total( $cart );
130
 
131
- // Low balance
132
- if ( $balance-$total < 0 ) {
133
- $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
134
- $instructions = '<div id="mp-mycred-balance">' . $message . '</div>';
135
- $red = ' style="color: red;"';
136
- }
137
- else {
138
- $instructions = $this->mycred->template_tags_general( $settings['gateways']['mycred']['instructions'] );
139
- $red = '';
140
- }
141
 
142
- // Return Cost
143
- return '
144
  <div id="mp-mycred-balance">' . $instructions . '</div>
145
  <div id="mp-mycred-cost">
146
  <table style="width:100%;">
@@ -158,184 +153,184 @@ if ( !class_exists( 'MP_Gateway_myCRED' ) ) {
158
  </tr>
159
  </table>
160
  </div>';
161
- }
162
 
163
- /**
164
- * Return the chosen payment details here for final confirmation. You probably don't need
165
- * to post anything in the form as it should be in your $_SESSION var already.
166
- *
167
- * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
168
- * @param array $shipping_info. Contains shipping info and email in case you need it
169
- * @since 1.1
170
- * @version 1.1
171
- */
172
- function confirm_payment_form( $cart, $shipping_info ) {
173
- global $mp;
174
-
175
- $settings = get_option( 'mp_settings' );
176
- $user_id = get_current_user_id();
177
- $balance = $this->mycred->get_users_cred( get_current_user_id() );
178
- $total = $this->get_cart_total( $cart );
179
 
180
- $table = '<table class="mycred-cart-cost"><thead><tr><th>' . __( 'Payment', 'mycred' ) . '</th></tr></thead>';
181
- if ( $balance-$total < 0 ) {
182
- $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
183
- $table .= '<tr><td id="mp-mycred-cost" style="color: red; font-weight: bold;"><p>' . $message . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) ) . '</td></tr>';
184
- }
185
- else
186
- $table .= '<tr><td id="mp-mycred-cost" class="mycred-ok">' . $this->mycred->format_creds( $total ) . ' ' . __( 'will be deducted from your account.', 'mycred' ) . '</td></tr>';
187
 
188
- return $table . '</table>';
189
- }
190
 
191
- function process_payment_form( $cart, $shipping_info ) { }
192
-
193
- /**
194
- * Use this to do the final payment. Create the order then process the payment. If
195
- * you know the payment is successful right away go ahead and change the order status
196
- * as well.
197
- * Call $mp->cart_checkout_error($msg, $context); to handle errors. If no errors
198
- * it will redirect to the next step.
199
- *
200
- * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
201
- * @param array $shipping_info. Contains shipping info and email in case you need it
202
- * @since 1.1
203
- * @version 1.2
204
- */
205
- function process_payment( $cart, $shipping_info ) {
206
- global $mp;
207
 
208
- $settings = get_option('mp_settings');
209
- $user_id = get_current_user_id();
210
- $insolvent = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
211
- $timestamp = time();
212
-
213
- // This gateway requires buyer to be logged in
214
- if ( !is_user_logged_in() ) {
215
- $message = str_replace( '%login_url_here%', wp_login_url( mp_checkout_step_url( 'checkout' ) ), $settings['gateways']['mycred']['visitors'] );
216
- $mp->cart_checkout_error( $this->mycred->template_tags_general( $message ) );
217
- }
218
 
219
- // Make sure current user is not excluded from using myCRED
220
- if ( $this->mycred->exclude_user( $user_id ) )
221
- $mp->cart_checkout_error(
222
- sprintf( __( 'Sorry, but you can not use this gateway as your account is excluded. Please <a href="%s">select a different payment method</a>.', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
223
- );
224
 
225
- // Get users balance
226
- $balance = $this->mycred->get_users_cred( $user_id );
227
- $total = $this->get_cart_total( $cart );
228
 
229
- // Low balance or Insolvent
230
- if ( $balance <= 0 || $balance-$total < 0 ) {
231
- $mp->cart_checkout_error(
232
- $insolvent . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
233
- );
234
- return;
235
- }
236
 
237
- // Create MarketPress order
238
- $order_id = $mp->generate_order_id();
239
- $payment_info['gateway_public_name'] = $this->public_name;
240
- $payment_info['gateway_private_name'] = $this->admin_name;
241
- $payment_info['status'][$timestamp] = __( 'Paid', 'mycred' );
242
- $payment_info['total'] = $total;
243
- $payment_info['currency'] = $settings['currency'];
244
- $payment_info['method'] = __( 'myCRED', 'mycred' );
245
- $payment_info['transaction_id'] = $order_id;
246
- $paid = true;
247
- $result = $mp->create_order( $order_id, $cart, $shipping_info, $payment_info, $paid );
248
 
249
- $order = get_page_by_title( $result, 'OBJECT', 'mp_order' );
250
- // Deduct cost
251
- $this->mycred->add_creds(
252
- 'marketpress_payment',
253
- $user_id,
254
- 0-$total,
255
- $settings['gateways']['mycred']['log_template'],
256
- $order->ID,
257
- array( 'ref_type' => 'post' )
258
- );
259
- }
260
 
261
- function order_confirmation( $order ) { }
262
-
263
- /**
264
- * Filters the order confirmation email message body. You may want to append something to
265
- * the message. Optional
266
- * @since 1.1
267
- * @version 1.0
268
- */
269
- function order_confirmation_email( $msg, $order ) {
270
- global $mp;
271
- $settings = get_option('mp_settings');
272
-
273
- if ( isset( $settings['gateways']['mycred']['email'] ) )
274
- $msg = $mp->filter_email( $order, $settings['gateways']['mycred']['email'] );
275
- else
276
- $msg = $settings['email']['new_order_txt'];
277
-
278
- return $msg;
279
- }
280
 
281
- /**
282
- * Return any html you want to show on the confirmation screen after checkout. This
283
- * should be a payment details box and message.
284
- * @since 1.1
285
- * @version 1.1
286
- */
287
- function order_confirmation_msg( $content, $order ) {
288
- global $mp;
289
- $settings = get_option('mp_settings');
290
-
291
- $mycred = mycred_get_settings();
292
- $user_id = get_current_user_id();
293
 
294
- return $content . str_replace(
295
- 'TOTAL',
296
- $mp->format_currency( $order->mp_payment_info['currency'], $order->mp_payment_info['total'] ),
297
- $mycred->template_tags_user( $settings['gateways']['mycred']['confirmation'], false, wp_get_current_user() )
298
- );
299
- }
300
 
301
- /**
302
- * myCRED Gateway Settings
303
- * @since 1.1
304
- * @version 1.1
305
- */
306
- function gateway_settings_box( $settings ) {
307
- global $mp;
308
- $settings = get_option( 'mp_settings' );
309
- $mycred = mycred_get_settings();
310
 
311
- $name = apply_filters( 'mycred_label', myCRED_NAME );
312
 
313
- if ( empty( $settings['gateways']['mycred']['name'] ) )
314
- $settings['gateways']['mycred']['name'] = strip_tags( $name ) . ' ' . $mycred->template_tags_general( __( '%_singular% Balance', 'mycred' ) );
315
 
316
- if ( !isset( $settings['gateways']['mycred']['logo'] ) )
317
- $settings['gateways']['mycred']['logo'] = $this->method_button_img_url;
318
 
319
- if ( !isset( $settings['gateways']['mycred']['log_template'] ) )
320
- $settings['gateways']['mycred']['log_template'] = 'Payment for Order: #%order_id%';
321
 
322
- if ( !isset( $settings['gateways']['mycred']['exchange'] ) )
323
- $settings['gateways']['mycred']['exchange'] = 1;
324
 
325
- if ( !isset( $settings['gateways']['mycred']['instructions'] ) )
326
- $settings['gateways']['mycred']['instructions'] = 'Pay using your account balance.';
327
 
328
- if ( !isset( $settings['gateways']['mycred']['confirmation'] ) )
329
- $settings['gateways']['mycred']['confirmation'] = 'TOTAL amount has been deducted from your account. Your current balance is: %balance_f%';
330
 
331
- if ( !isset( $settings['gateways']['mycred']['lowfunds'] ) )
332
- $settings['gateways']['mycred']['lowfunds'] = 'Insufficient funds. Please select another form of payment. Your current balance is: %balance_f%';
333
 
334
- if ( !isset( $settings['gateways']['mycred']['visitors'] ) )
335
- $settings['gateways']['mycred']['visitors'] = 'You must be logged in to pay with %_plural%. Please <a href="%login_url_here%">login</a>.';
336
 
337
- if ( !isset( $settings['gateways']['mycred']['email'] ) )
338
- $settings['gateways']['mycred']['email'] = $settings['email']['new_order_txt']; ?>
339
 
340
  <div id="mp_cubepoints_payments" class="postbox mp-pages-msgs">
341
  <h3 class="handle"><span><?php echo $name . ' ' . __( 'Settings', 'mycred' ); ?></span></h3>
@@ -363,11 +358,11 @@ if ( !class_exists( 'MP_Gateway_myCRED' ) ) {
363
  </td>
364
  </tr>
365
  <?php
366
- // Exchange rate
367
- if ( $this->use_exchange() ) :
368
- $exchange_desc = __( 'How much is 1 %_singular% worth in %currency%?', 'mycred' );
369
- $exchange_desc = $mycred->template_tags_general( $exchange_desc );
370
- $exchange_desc = str_replace( '%currency%', $settings['currency'], $exchange_desc ); ?>
371
 
372
  <tr>
373
  <th scope="row"><label for="mycred-exchange-rate"><?php _e( 'Exchange Rate', 'mycred' ); ?></label></th>
@@ -422,42 +417,43 @@ if ( !class_exists( 'MP_Gateway_myCRED' ) ) {
422
  </div>
423
  </div>
424
  <?php
425
- }
426
 
427
- /**
428
- * Filter Gateway Settings
429
- * @since 1.1
430
- * @version 1.1
431
- */
432
- function process_gateway_settings( $settings ) {
433
- // Name (no html)
434
- $settings['gateways']['mycred']['name'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['name'] ) );
435
-
436
- // Log Template (no html)
437
- $settings['gateways']['mycred']['log_template'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['log_template'] ) );
438
- $settings['gateways']['mycred']['logo'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['logo'] ) );
439
-
440
- // Exchange rate (if used)
441
- if ( $this->use_exchange() ) {
442
- // Decimals must start with a zero
443
- if ( $settings['gateways']['mycred']['exchange'] != 1 && substr( $settings['gateways']['mycred']['exchange'], 0, 1 ) != '0' ) {
444
- $settings['gateways']['mycred']['exchange'] = (float) '0' . $settings['gateways']['mycred']['exchange'];
 
 
 
445
  }
446
- // Decimal seperator must be punctuation and not comma
447
- $settings['gateways']['mycred']['exchange'] = str_replace( ',', '.', $settings['gateways']['mycred']['exchange'] );
448
- }
449
- else
450
- $settings['gateways']['mycred']['exchange'] = 1;
451
 
452
- $settings['gateways']['mycred']['lowfunds'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['lowfunds'] ) );
453
- $settings['gateways']['mycred']['visitors'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['visitors'] ) );
454
- $settings['gateways']['mycred']['instructions'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['instructions'] ) );
455
- $settings['gateways']['mycred']['confirmation'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['confirmation'] ) );
456
 
457
- // Email (no html)
458
- $settings['gateways']['mycred']['email'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['email'] ) );
459
 
460
- return $settings;
 
461
  }
462
  }
463
  }
3
  /**
4
  * MarketPress Payment Gateway
5
  * @since 1.1
6
+ * @version 1.1
7
  */
8
+ if ( !function_exists( 'mycred_init_marketpress_gateway' ) ) {
9
+ add_action( 'plugins_loaded', 'mycred_init_marketpress_gateway' );
10
+ function mycred_init_marketpress_gateway()
11
+ {
12
+ if ( !function_exists( 'is_plugin_active' ) )
13
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
14
+
15
+ $file = '/marketpress-includes/marketpress-gateways.php';
16
+ // Pro
17
+ if ( is_plugin_active( 'marketpress/marketpress.php' ) )
18
+ include_once( WP_PLUGIN_DIR . '/marketpress' . $file );
19
+ // Light
20
+ elseif ( is_plugin_active( 'wordpress-ecommerce/marketpress.php' ) )
21
+ include_once( WP_PLUGIN_DIR . '/wordpress-ecommerce' . $file );
22
+ else
23
+ return;
24
+
25
+ class MP_Gateway_myCRED extends MP_Gateway_API {
26
+
27
+ var $plugin_name = 'mycred';
28
+ var $admin_name = 'myCRED';
29
+ var $public_name = 'myCRED';
30
+ var $method_img_url = '';
31
+ var $method_button_img_url = '';
32
+ var $force_ssl = false;
33
+ var $ipn_url;
34
+ var $skip_form = false;
35
+
36
+ /**
37
+ * Runs when your class is instantiated. Use to setup your plugin instead of __construct()
38
+ */
39
+ function on_creation() {
40
+ global $mp;
41
+ $settings = get_option( 'mp_settings' );
42
+
43
+ //set names here to be able to translate
44
+ $this->admin_name = 'myCRED';
45
+ $this->public_name = ( !empty( $settings['gateways']['mycred']['name'] ) ) ? $settings['gateways']['mycred']['name'] : apply_filters( 'mycred_label', myCRED_NAME );
46
+ $this->method_img_url = plugins_url( 'assets/images/cred-icon32.png', myCRED_THIS );
47
+ $this->method_button_img_url = $settings['gateways']['mycred']['name'];
48
+ $this->mycred = mycred_get_settings();
49
+ }
 
 
 
 
 
50
 
51
+ /**
52
+ * Use Exchange
53
+ * Checks to see if exchange is needed.
54
+ * @since 1.1
55
+ * @version 1.0
56
+ */
57
+ function use_exchange() {
58
+ global $mp;
59
+
60
+ $settings = get_option( 'mp_settings' );
61
+ if ( $settings['currency'] == 'POINTS' ) return false;
62
+ return true;
63
+ }
64
 
65
+ /**
66
+ * Returns the current carts total.
67
+ * @since 1.2
68
+ * @version 1.0
69
+ */
70
+ function get_cart_total( $cart = NULL ) {
71
+ global $mp;
72
+
73
+ // Get total
74
+ $totals = array();
75
+ foreach ( $cart as $product_id => $variations ) {
76
+ foreach ( $variations as $data ) {
77
+ $totals[] = $mp->before_tax_price( $data['price'], $product_id ) * $data['quantity'];
78
+ }
79
  }
80
+ $total = array_sum( $totals );
 
81
 
82
+ // Apply Coupons
83
+ if ( $coupon = $mp->coupon_value( $mp->get_coupon_code(), $total ) ) {
84
+ $total = $coupon['new_total'];
85
+ }
86
 
87
+ // Shipping Cost
88
+ if ( ( $shipping_price = $mp->shipping_price() ) !== false ) {
89
+ $total = $total + $shipping_price;
90
+ }
91
 
92
+ // Tax
93
+ if ( ( $tax_price = $mp->tax_price() ) !== false ) {
94
+ $total = $total + $tax_price;
95
+ }
96
 
97
+ $settings = get_option( 'mp_settings' );
98
+ if ( $this->use_exchange() )
99
+ return $this->mycred->apply_exchange_rate( $total, $settings['gateways']['mycred']['exchange'] );
100
+ else
101
+ return $this->mycred->number( $total );
102
+ }
103
 
104
+ /**
105
+ * Return fields you need to add to the payment screen, like your credit card info fields
106
+ *
107
+ * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
108
+ * @param array $shipping_info. Contains shipping info and email in case you need it
109
+ * @since 1.1
110
+ * @version 1.1
111
+ */
112
+ function payment_form( $cart, $shipping_info ) {
113
+ global $mp;
114
 
115
+ $settings = get_option( 'mp_settings' );
116
 
117
+ if ( !is_user_logged_in() ) {
118
+ $message = str_replace( '%login_url_here%', wp_login_url( mp_checkout_step_url( 'checkout' ) ), $settings['gateways']['mycred']['visitors'] );
119
+ $message = $this->mycred->template_tags_general( $message );
120
+ return '<div id="mp-mycred-balance">' . $message . '</div>';
121
+ }
122
 
123
+ $balance = $this->mycred->get_users_cred( get_current_user_id() );
124
+ $total = $this->get_cart_total( $cart );
125
 
126
+ // Low balance
127
+ if ( $balance-$total < 0 ) {
128
+ $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
129
+ $instructions = '<div id="mp-mycred-balance">' . $message . '</div>';
130
+ $red = ' style="color: red;"';
131
+ }
132
+ else {
133
+ $instructions = $this->mycred->template_tags_general( $settings['gateways']['mycred']['instructions'] );
134
+ $red = '';
135
+ }
136
 
137
+ // Return Cost
138
+ return '
139
  <div id="mp-mycred-balance">' . $instructions . '</div>
140
  <div id="mp-mycred-cost">
141
  <table style="width:100%;">
153
  </tr>
154
  </table>
155
  </div>';
156
+ }
157
 
158
+ /**
159
+ * Return the chosen payment details here for final confirmation. You probably don't need
160
+ * to post anything in the form as it should be in your $_SESSION var already.
161
+ *
162
+ * @param array $cart. Contains the cart contents for the current blog, global cart if $mp->global_cart is true
163
+ * @param array $shipping_info. Contains shipping info and email in case you need it
164
+ * @since 1.1
165
+ * @version 1.1
166
+ */
167
+ function confirm_payment_form( $cart, $shipping_info ) {
168
+ global $mp;
169
+
170
+ $settings = get_option( 'mp_settings' );
171
+ $user_id = get_current_user_id();
172
+ $balance = $this->mycred->get_users_cred( get_current_user_id() );
173
+ $total = $this->get_cart_total( $cart );
174
 
175
+ $table = '<table class="mycred-cart-cost"><thead><tr><th>' . __( 'Payment', 'mycred' ) . '</th></tr></thead>';
176
+ if ( $balance-$total < 0 ) {
177
+ $message = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
178
+ $table .= '<tr><td id="mp-mycred-cost" style="color: red; font-weight: bold;"><p>' . $message . ' ' . sprintf( __( '<a href="%s">Go Back</a>', 'mycred' ), mp_checkout_step_url( 'checkout' ) ) . '</td></tr>';
179
+ }
180
+ else
181
+ $table .= '<tr><td id="mp-mycred-cost" class="mycred-ok">' . $this->mycred->format_creds( $total ) . ' ' . __( 'will be deducted from your account.', 'mycred' ) . '</td></tr>';
182
 
183
+ return $table . '</table>';
184
+ }
185
 
186
+ function process_payment_form( $cart, $shipping_info ) { }
187
+
188
+ /**
189
+ * Use this to do the final payment. Create the order then process the payment. If
190
+ * you know the payment is successful right away go ahead and change the order status
191
+ * as well.
192
+ * Call $mp->cart_checkout_error($msg, $context); to handle errors. If no errors
193
+ * it will redirect to the next step.
194
+ *
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;
202
 
203
+ $settings = get_option('mp_settings');
204
+ $user_id = get_current_user_id();
205
+ $insolvent = $this->mycred->template_tags_user( $settings['gateways']['mycred']['lowfunds'], false, wp_get_current_user() );
206
+ $timestamp = time();
207
+
208
+ // This gateway requires buyer to be logged in
209
+ if ( !is_user_logged_in() ) {
210
+ $message = str_replace( '%login_url_here%', wp_login_url( mp_checkout_step_url( 'checkout' ) ), $settings['gateways']['mycred']['visitors'] );
211
+ $mp->cart_checkout_error( $this->mycred->template_tags_general( $message ) );
212
+ }
213
 
214
+ // Make sure current user is not excluded from using myCRED
215
+ if ( $this->mycred->exclude_user( $user_id ) )
216
+ $mp->cart_checkout_error(
217
+ sprintf( __( 'Sorry, but you can not use this gateway as your account is excluded. Please <a href="%s">select a different payment method</a>.', 'mycred' ), mp_checkout_step_url( 'checkout' ) )
218
+ );
219
 
220
+ // Get users balance
221
+ $balance = $this->mycred->get_users_cred( $user_id );
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
+ );
229
+ return;
230
+ }
231
 
232
+ // Create MarketPress order
233
+ $order_id = $mp->generate_order_id();
234
+ $payment_info['gateway_public_name'] = $this->public_name;
235
+ $payment_info['gateway_private_name'] = $this->admin_name;
236
+ $payment_info['status'][$timestamp] = __( 'Paid', 'mycred' );
237
+ $payment_info['total'] = $total;
238
+ $payment_info['currency'] = $settings['currency'];
239
+ $payment_info['method'] = __( 'myCRED', 'mycred' );
240
+ $payment_info['transaction_id'] = $order_id;
241
+ $paid = true;
242
+ $result = $mp->create_order( $order_id, $cart, $shipping_info, $payment_info, $paid );
243
 
244
+ $order = get_page_by_title( $result, 'OBJECT', 'mp_order' );
245
+ // Deduct cost
246
+ $this->mycred->add_creds(
247
+ 'marketpress_payment',
248
+ $user_id,
249
+ 0-$total,
250
+ $settings['gateways']['mycred']['log_template'],
251
+ $order->ID,
252
+ array( 'ref_type' => 'post' )
253
+ );
254
+ }
255
 
256
+ function order_confirmation( $order ) { }
257
+
258
+ /**
259
+ * Filters the order confirmation email message body. You may want to append something to
260
+ * the message. Optional
261
+ * @since 1.1
262
+ * @version 1.0
263
+ */
264
+ function order_confirmation_email( $msg, $order ) {
265
+ global $mp;
266
+ $settings = get_option('mp_settings');
267
+
268
+ if ( isset( $settings['gateways']['mycred']['email'] ) )
269
+ $msg = $mp->filter_email( $order, $settings['gateways']['mycred']['email'] );
270
+ else
271
+ $msg = $settings['email']['new_order_txt'];
272
+
273
+ return $msg;
274
+ }
275
 
276
+ /**
277
+ * Return any html you want to show on the confirmation screen after checkout. This
278
+ * should be a payment details box and message.
279
+ * @since 1.1
280
+ * @version 1.1
281
+ */
282
+ function order_confirmation_msg( $content, $order ) {
283
+ global $mp;
284
+ $settings = get_option('mp_settings');
285
+
286
+ $mycred = mycred_get_settings();
287
+ $user_id = get_current_user_id();
288
 
289
+ return $content . str_replace(
290
+ 'TOTAL',
291
+ $mp->format_currency( $order->mp_payment_info['currency'], $order->mp_payment_info['total'] ),
292
+ $mycred->template_tags_user( $settings['gateways']['mycred']['confirmation'], false, wp_get_current_user() )
293
+ );
294
+ }
295
 
296
+ /**
297
+ * myCRED Gateway Settings
298
+ * @since 1.1
299
+ * @version 1.1
300
+ */
301
+ function gateway_settings_box( $settings ) {
302
+ global $mp;
303
+ $settings = get_option( 'mp_settings' );
304
+ $mycred = mycred_get_settings();
305
 
306
+ $name = apply_filters( 'mycred_label', myCRED_NAME );
307
 
308
+ if ( empty( $settings['gateways']['mycred']['name'] ) )
309
+ $settings['gateways']['mycred']['name'] = strip_tags( $name ) . ' ' . $mycred->template_tags_general( __( '%_singular% Balance', 'mycred' ) );
310
 
311
+ if ( !isset( $settings['gateways']['mycred']['logo'] ) )
312
+ $settings['gateways']['mycred']['logo'] = $this->method_button_img_url;
313
 
314
+ if ( !isset( $settings['gateways']['mycred']['log_template'] ) )
315
+ $settings['gateways']['mycred']['log_template'] = 'Payment for Order: #%order_id%';
316
 
317
+ if ( !isset( $settings['gateways']['mycred']['exchange'] ) )
318
+ $settings['gateways']['mycred']['exchange'] = 1;
319
 
320
+ if ( !isset( $settings['gateways']['mycred']['instructions'] ) )
321
+ $settings['gateways']['mycred']['instructions'] = 'Pay using your account balance.';
322
 
323
+ if ( !isset( $settings['gateways']['mycred']['confirmation'] ) )
324
+ $settings['gateways']['mycred']['confirmation'] = 'TOTAL amount has been deducted from your account. Your current balance is: %balance_f%';
325
 
326
+ if ( !isset( $settings['gateways']['mycred']['lowfunds'] ) )
327
+ $settings['gateways']['mycred']['lowfunds'] = 'Insufficient funds. Please select another form of payment. Your current balance is: %balance_f%';
328
 
329
+ if ( !isset( $settings['gateways']['mycred']['visitors'] ) )
330
+ $settings['gateways']['mycred']['visitors'] = 'You must be logged in to pay with %_plural%. Please <a href="%login_url_here%">login</a>.';
331
 
332
+ if ( !isset( $settings['gateways']['mycred']['email'] ) )
333
+ $settings['gateways']['mycred']['email'] = $settings['email']['new_order_txt']; ?>
334
 
335
  <div id="mp_cubepoints_payments" class="postbox mp-pages-msgs">
336
  <h3 class="handle"><span><?php echo $name . ' ' . __( 'Settings', 'mycred' ); ?></span></h3>
358
  </td>
359
  </tr>
360
  <?php
361
+ // Exchange rate
362
+ if ( $this->use_exchange() ) :
363
+ $exchange_desc = __( 'How much is 1 %_singular% worth in %currency%?', 'mycred' );
364
+ $exchange_desc = $mycred->template_tags_general( $exchange_desc );
365
+ $exchange_desc = str_replace( '%currency%', $settings['currency'], $exchange_desc ); ?>
366
 
367
  <tr>
368
  <th scope="row"><label for="mycred-exchange-rate"><?php _e( 'Exchange Rate', 'mycred' ); ?></label></th>
417
  </div>
418
  </div>
419
  <?php
420
+ }
421
 
422
+ /**
423
+ * Filter Gateway Settings
424
+ * @since 1.1
425
+ * @version 1.1
426
+ */
427
+ function process_gateway_settings( $settings ) {
428
+ // Name (no html)
429
+ $settings['gateways']['mycred']['name'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['name'] ) );
430
+
431
+ // Log Template (no html)
432
+ $settings['gateways']['mycred']['log_template'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['log_template'] ) );
433
+ $settings['gateways']['mycred']['logo'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['logo'] ) );
434
+
435
+ // Exchange rate (if used)
436
+ if ( $this->use_exchange() ) {
437
+ // Decimals must start with a zero
438
+ if ( $settings['gateways']['mycred']['exchange'] != 1 && substr( $settings['gateways']['mycred']['exchange'], 0, 1 ) != '0' ) {
439
+ $settings['gateways']['mycred']['exchange'] = (float) '0' . $settings['gateways']['mycred']['exchange'];
440
+ }
441
+ // Decimal seperator must be punctuation and not comma
442
+ $settings['gateways']['mycred']['exchange'] = str_replace( ',', '.', $settings['gateways']['mycred']['exchange'] );
443
  }
444
+ else
445
+ $settings['gateways']['mycred']['exchange'] = 1;
 
 
 
446
 
447
+ $settings['gateways']['mycred']['lowfunds'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['lowfunds'] ) );
448
+ $settings['gateways']['mycred']['visitors'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['visitors'] ) );
449
+ $settings['gateways']['mycred']['instructions'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['instructions'] ) );
450
+ $settings['gateways']['mycred']['confirmation'] = stripslashes( wp_filter_post_kses( $settings['gateways']['mycred']['confirmation'] ) );
451
 
452
+ // Email (no html)
453
+ $settings['gateways']['mycred']['email'] = stripslashes( wp_filter_nohtml_kses( $settings['gateways']['mycred']['email'] ) );
454
 
455
+ return $settings;
456
+ }
457
  }
458
  }
459
  }
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -193,6 +193,9 @@ if ( !function_exists( 'mycred_init_woo_gateway' ) ) {
193
  $this->mycred->add_creds( 'woocommerce_payment', $cui, 0-$cost, $this->log_template, $order_id, array( 'ref_type' => 'post' ) );
194
  $order->payment_complete();
195
 
 
 
 
196
  // Return the good news
197
  return array(
198
  'result' => 'success',
193
  $this->mycred->add_creds( 'woocommerce_payment', $cui, 0-$cost, $this->log_template, $order_id, array( 'ref_type' => 'post' ) );
194
  $order->payment_complete();
195
 
196
+ // Let others play
197
+ do_action( 'mycred_paid_for_woo', $order, $cui );
198
+
199
  // Return the good news
200
  return array(
201
  'result' => 'success',
addons/notifications/css/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ ?>
addons/notifications/css/notify.css ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .notice-wrap {
2
+ position: fixed;
3
+ top: 50px;
4
+ right: 50px;
5
+ z-index: 9999;
6
+ opacity: 0.8;
7
+ }
8
+
9
+ * html .notice-wrap {
10
+ position: absolute;
11
+ }
12
+
13
+ .notice-item {
14
+ position: relative;
15
+ display: block;
16
+ width: auto;
17
+ height: auto;
18
+ margin: 0 0 24px 0;
19
+ padding: 12px;
20
+
21
+ line-height: 22px;
22
+ font-size: 12px;
23
+
24
+ border-radius: 5px;
25
+ background-color: #dedede;
26
+ color: #333;
27
+ }
28
+ .notice-item p { display: block; float: right; margin: 0; padding: 0; }
29
+ .notice-item h1 { margin: 0 !important; padding: 0; }
30
+
31
+ .notice-item-close{
32
+ display: block;
33
+ float: left;
34
+ width: 22px;
35
+ height: 22px;
36
+ line-height: 22px;
37
+ font-size: 20px;
38
+ text-align: center;
39
+ cursor: pointer;
40
+ }
addons/notifications/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ ?>
addons/notifications/js/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ // Silence is golden.
3
+ ?>
addons/notifications/js/notify.js ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * jQuery.noticeAdd() and jQuery.noticeRemove()
3
+ * These functions create and remove growl-like notices
4
+ *
5
+ * Copyright © 2009 Tim Benniks
6
+ *
7
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ * of this software and associated documentation files (the "Software"), to deal
9
+ * in the Software without restriction, including without limitation the rights
10
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ * copies of the Software, and to permit persons to whom the Software is
12
+ * furnished to do so, subject to the following conditions:
13
+ *
14
+ * The above copyright notice and this permission notice shall be included in
15
+ * all copies or substantial portions of the Software.
16
+ *
17
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ * THE SOFTWARE.
24
+ *
25
+ * @author Tim Benniks <tim@timbenniks.com>
26
+ * @copyright 2009 timbenniks.com
27
+ * @version $Id: jquery.notice.js 1 2009-01-24 12:24:18Z timbenniks $
28
+ **/
29
+ (function(jQuery)
30
+ {
31
+ jQuery.extend({
32
+ noticeAdd: function(options)
33
+ {
34
+ var defaults = {
35
+ inEffect: {opacity: 'show'}, // in effect
36
+ inEffectDuration: 600, // in effect duration in miliseconds
37
+ stayTime: parseInt( myCRED_Notice.duration, 10 ), // time in miliseconds before the item has to disappear
38
+ text: '', // content of the item
39
+ stay: true, // should the notice item stay or not?
40
+ type: 'succes' // could also be error, succes
41
+ }
42
+
43
+ // declare varaibles
44
+ var options, noticeWrapAll, noticeItemOuter, noticeItemInner, noticeItemClose;
45
+
46
+ options = jQuery.extend({}, defaults, options);
47
+ noticeWrapAll = (!jQuery('.notice-wrap').length) ? jQuery('<div></div>').addClass('notice-wrap').appendTo('body') : jQuery('.notice-wrap');
48
+ noticeItemOuter = jQuery('<div></div>').addClass('notice-item-wrapper');
49
+ noticeItemInner = jQuery('<div></div>').hide().addClass('notice-item ' + options.type).appendTo(noticeWrapAll).html( options.text ).animate(options.inEffect, options.inEffectDuration).wrap(noticeItemOuter);
50
+ noticeItemClose = jQuery('<div></div>').addClass('notice-item-close').prependTo(noticeItemInner).html('&times;').click(function() { jQuery.noticeRemove(noticeItemInner) });
51
+
52
+ // hmmmz, zucht
53
+ if(navigator.userAgent.match(/MSIE 6/i))
54
+ {
55
+ noticeWrapAll.css({top: document.documentElement.scrollTop});
56
+ }
57
+
58
+ if(!options.stay)
59
+ {
60
+ setTimeout(function()
61
+ {
62
+ jQuery.noticeRemove(noticeItemInner);
63
+ },
64
+ options.stayTime);
65
+ }
66
+
67
+ },
68
+
69
+ noticeRemove: function(obj)
70
+ {
71
+ obj.animate({opacity: '0'}, 200, function()
72
+ {
73
+ obj.parent().animate({height: '0px'}, 100, function()
74
+ {
75
+ obj.parent().remove();
76
+ });
77
+ });
78
+ }
79
+ });
80
+ })(jQuery);
addons/notifications/myCRED-addon-notifications.php ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Addon: Notifications
4
+ * Addon URI: http://mycred.me/add-ons/notifications/
5
+ * Version: 1.0.1
6
+ * Description: Notify your users when their balances changes.
7
+ * Author: Gabriel S Merovingi
8
+ * Author URI: http://www.merovingi.com
9
+ */
10
+ // Translate Header (by Dan bp-fr)
11
+ $mycred_addon_header_translate = array(
12
+ __( 'Notifications', 'mycred' ),
13
+ __( 'Notify your users when their balances changes.', 'mycred' )
14
+ );
15
+
16
+ if ( !defined( 'myCRED_VERSION' ) ) exit;
17
+
18
+ define( 'myCRED_NOTE', __FILE__ );
19
+ define( 'myCRED_NOTE_VERSION', myCRED_VERSION . '.1' );
20
+ /**
21
+ * myCRED_Notifications class
22
+ *
23
+ * @since 1.2.3
24
+ * @version 1.0
25
+ */
26
+ if ( !class_exists( 'myCRED_Notifications' ) ) {
27
+ class myCRED_Notifications extends myCRED_Module {
28
+
29
+ /**
30
+ * Construct
31
+ */
32
+ function __construct() {
33
+ parent::__construct( 'myCRED_Notifications', array(
34
+ 'module_name' => 'notifications',
35
+ 'defaults' => array(
36
+ 'life' => 7,
37
+ 'template' => '<p>%entry%</p><h1>%cred_f%</h1>',
38
+ 'use_css' => 1,
39
+ 'duration' => 3000
40
+ ),
41
+ 'register' => false,
42
+ 'add_to_core' => true
43
+ ) );
44
+ add_filter( 'mycred_add', array( $this, 'mycred_add' ), 1, 3 );
45
+ }
46
+
47
+ /**
48
+ * Module Init
49
+ * @since 1.2.3
50
+ * @version 1.0
51
+ */
52
+ public function module_init() {
53
+ if ( !is_user_logged_in() ) return;
54
+
55
+ add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ) );
56
+ add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
57
+ add_action( 'wp_footer', array( $this, 'wp_footer' ), 99 );
58
+ }
59
+
60
+ /**
61
+ * Load Notice in Footer
62
+ * @since 1.2.3
63
+ * @version 1.0
64
+ */
65
+ public function wp_footer() {
66
+ $notices = apply_filters( 'mycred_notifications', array() );
67
+ if ( $this->notifications['duration'] == 0 ) $stay = 'true';
68
+ else {
69
+ echo '<style type="text/css">.notice-item-close{ display: none; display: none !important; }</style>';
70
+ $stay = 'false';
71
+ }
72
+
73
+ do_action( 'mycred_before_notifications', $notices );
74
+ foreach ( $notices as $notice ) {
75
+ $notice = $this->core->template_tags_general( $notice );
76
+ echo '<script type="text/javascript">(function(jQuery){jQuery.noticeAdd({ text: "' . $notice . '",stay: ' . $stay . '});})(jQuery);</script>';
77
+ }
78
+ do_action( 'mycred_after_notifications', $notices );
79
+ }
80
+
81
+ /**
82
+ * Register Assets
83
+ * @since 1.2.3
84
+ * @version 1.0
85
+ */
86
+ public function register_assets() {
87
+ // Register script
88
+ wp_register_script(
89
+ 'mycred-notifications',
90
+ plugins_url( 'js/notify.js', myCRED_NOTE ),
91
+ array( 'jquery' ),
92
+ myCRED_NOTE_VERSION . '.1',
93
+ true
94
+ );
95
+ if ( (bool) $this->notifications['use_css'] )
96
+ wp_register_style(
97
+ 'mycred-notifications',
98
+ plugins_url( 'css/notify.css', myCRED_NOTE ),
99
+ false,
100
+ myCRED_NOTE_VERSION . '.2',
101
+ 'all',
102
+ true
103
+ );
104
+ }
105
+
106
+ /**
107
+ * myCRED Add
108
+ * @since 1.2.3
109
+ * @version 1.0.1
110
+ */
111
+ public function mycred_add( $reply, $request, $mycred ) {
112
+ $template = $this->notifications['template'];
113
+ $template = str_replace( '%entry%', $request['entry'], $template );
114
+ $template = str_replace( '%amount%', $request['amount'], $template );
115
+ $template = $this->core->template_tags_amount( $template, $request['amount'] );
116
+ $template = $this->core->parse_template_tags( $template, (object) $request );
117
+ $template = apply_filters( 'mycred_notifications_note', $template, $request, $mycred );
118
+
119
+ $this->add_notice( array( 'user_id' => $request['user_id'], 'message' => $template ) );
120
+ return $reply;
121
+ }
122
+
123
+ /**
124
+ * Add Notice
125
+ * @since 1.2.3
126
+ * @version 1.0
127
+ */
128
+ public function add_notice( $notice ) {
129
+ // Get transient
130
+ $data = get_transient( 'mycred_notice_' . $notice['user_id'] );
131
+
132
+ // If none exists create a new array
133
+ if ( $data === false || !is_array( $data ) )
134
+ $notices = array();
135
+ else
136
+ $notices = $data;
137
+
138
+ // Add new notice
139
+ $notices[] = $notice['message'];
140
+ // Save as a transient
141
+ set_transient( 'mycred_notice_' . $notice['user_id'], $notices, DAY_IN_SECONDS*$this->notifications['life'] );
142
+ }
143
+
144
+ /**
145
+ * Get Notices
146
+ * @since 1.2.3
147
+ * @version 1.0
148
+ */
149
+ public function get_notices() {
150
+ $user_id = get_current_user_id();
151
+ $data = get_transient( 'mycred_notice_' . $user_id );
152
+
153
+ if ( $data === false || !is_array( $data ) ) return;
154
+
155
+ if ( (bool) $this->notifications['use_css'] )
156
+ wp_enqueue_style( 'mycred-notifications' );
157
+
158
+ wp_enqueue_script( 'mycred-notifications' );
159
+ wp_localize_script(
160
+ 'mycred-notifications',
161
+ 'myCRED_Notice',
162
+ array(
163
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
164
+ 'duration' => $this->notifications['duration']
165
+ )
166
+ );
167
+
168
+ foreach ( $data as $notice ) {
169
+ add_filter( 'mycred_notifications', create_function( '$query', '$query[]="' . $notice . '"; return $query;' ) );
170
+ }
171
+
172
+ delete_transient( 'mycred_notice_' . $user_id );
173
+ }
174
+
175
+ /**
176
+ * Settings Page
177
+ * @since 1.2.3
178
+ * @version 1.0
179
+ */
180
+ public function after_general_settings() {
181
+ $settings = $this->notifications; ?>
182
+
183
+ <h4 style="color:#BBD865;"><?php _e( 'Notifications', 'mycred' ); ?></h4>
184
+ <div class="body" style="display:none;">
185
+ <label class="subheader"><?php _e( 'Styling', 'mycred' ); ?></label>
186
+ <ol>
187
+ <li>
188
+ <input type="checkbox" name="mycred_pref_core[notifications][use_css]" id="myCRED-notifications-use-css" <?php checked( $settings['use_css'], 1 ); ?> value="1" />
189
+ <label for="myCRED-notifications-use-css"><?php _e( 'Use the included CSS Styling for notifications.', 'mycred' ); ?></label>
190
+ </li>
191
+ </ol>
192
+ <label class="subheader"><?php _e( 'Template', 'mycred' ); ?></label>
193
+ <ol id="myCRED-transfer-logging-send">
194
+ <li>
195
+ <div class="h2"><input type="text" name="mycred_pref_core[notifications][template]" id="myCRED-notifications-template" value="<?php echo $settings['template']; ?>" class="long" /></div>
196
+ <span class="description"><?php _e( 'Use %entry% to show the log entry in the notice and %amount% for the amount.', 'mycred' ); ?></span>
197
+ </li>
198
+ </ol>
199
+ <label class="subheader"><?php _e( 'Transient Lifespan', 'mycred' ); ?></label>
200
+ <ol id="myCRED-transfer-logging-send">
201
+ <li>
202
+ <div class="h2"><input type="text" name="mycred_pref_core[notifications][life]" id="myCRED-notifications-life" value="<?php echo $settings['life']; ?>" class="short" /></div>
203
+ <span class="description"><?php _e( 'The number of days a users notification is saved before being automatically deleted.', 'mycred' ); ?></span>
204
+ </li>
205
+ </ol>
206
+ <label class="subheader"><?php _e( 'Duration', 'mycred' ); ?></label>
207
+ <ol id="myCRED-transfer-logging-send">
208
+ <li>
209
+ <div class="h2"><input type="text" name="mycred_pref_core[notifications][duration]" id="myCRED-notifications-duration" value="<?php echo $settings['duration']; ?>" class="short" /></div>
210
+ <span class="description"><?php _e( 'The number of milliseconds a notice should be visible.<br />Use zero to require that the user closes the notice manually. 1000 milliseconds = 1 second.', 'mycred' ); ?></span>
211
+ </li>
212
+ </ol>
213
+ </div>
214
+ <?php
215
+ }
216
+
217
+ /**
218
+ * Sanitize & Save Settings
219
+ * @since 1.2.3
220
+ * @version 1.0
221
+ */
222
+ public function sanitize_extra_settings( $new_data, $data, $general ) {
223
+ $new_data['notifications']['use_css'] = ( isset( $data['notifications']['use_css'] ) ) ? 1: 0;
224
+ $new_data['notifications']['template'] = trim( $data['notifications']['template'] );
225
+ $new_data['notifications']['life'] = abs( $data['notifications']['life'] );
226
+ $new_data['notifications']['duration'] = abs( $data['notifications']['duration'] );
227
+ return $new_data;
228
+ }
229
+ }
230
+ $notice = new myCRED_Notifications();
231
+ $notice->load();
232
+ }
233
+ ?>
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -68,8 +68,9 @@ if ( !class_exists( 'myCRED_Ranks' ) ) {
68
  'custom-fields' => 0
69
  );
70
 
71
- add_action( 'mycred_help', array( $this, 'help' ), 10, 2 );
72
- add_action( 'mycred_parse_tags_user', array( $this, 'parse_rank' ), 10, 3 );
 
73
  }
74
 
75
  /**
@@ -198,6 +199,16 @@ if ( !class_exists( 'myCRED_Ranks' ) ) {
198
  register_post_type( 'mycred_rank', apply_filters( 'mycred_register_ranks', $args ) );
199
  }
200
 
 
 
 
 
 
 
 
 
 
 
201
  /**
202
  * AJAX: Calculate Totals
203
  * @since 1.2
68
  'custom-fields' => 0
69
  );
70
 
71
+ add_action( 'mycred_help', array( $this, 'help' ), 10, 2 );
72
+ add_action( 'mycred_parse_tags_user', array( $this, 'parse_rank' ), 10, 3 );
73
+ add_action( 'mycred_post_type_excludes', array( $this, 'exclude_ranks' ) );
74
  }
75
 
76
  /**
199
  register_post_type( 'mycred_rank', apply_filters( 'mycred_register_ranks', $args ) );
200
  }
201
 
202
+ /**
203
+ * Exclude Ranks from Publish Content Hook
204
+ * @since 1.3
205
+ * @version 1.0
206
+ */
207
+ public function exclude_ranks( $excludes ) {
208
+ $excludes[] = 'mycred_rank';
209
+ return $excludes;
210
+ }
211
+
212
  /**
213
  * AJAX: Calculate Totals
214
  * @since 1.2
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -881,7 +881,7 @@ if ( !class_exists( 'myCRED_Sell_Content' ) ) {
881
  *
882
  * @returns (string) content
883
  * @since 0.1
884
- * @version 1.0
885
  */
886
  public function render_ajax_shortcode( $atts, $content ) {
887
  global $mycred_buy_content;
881
  *
882
  * @returns (string) content
883
  * @since 0.1
884
+ * @version 1.0.1
885
  */
886
  public function render_ajax_shortcode( $atts, $content ) {
887
  global $mycred_buy_content;
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -292,7 +292,7 @@ if ( !class_exists( 'myCRED_Transfer_Creds' ) ) {
292
  /**
293
  * AJAX Transfer Creds
294
  * @since 0.1
295
- * @version 1.0
296
  */
297
  public function ajax_call_transfer() {
298
  // Security
@@ -323,6 +323,10 @@ if ( !class_exists( 'myCRED_Transfer_Creds' ) ) {
323
  if ( $this->core->exclude_user( $ruser->ID ) ) die( json_encode( 'error_4' ) );
324
  $recipient_id = $ruser->ID;
325
 
 
 
 
 
326
  // Check amount
327
  $amount = $this->core->number( $amount );
328
  if ( $amount == $this->core->number( 0 ) ) die( json_encode( 'error_5' ) );
@@ -502,7 +506,7 @@ if ( !class_exists( 'myCRED_Transfer_Creds' ) ) {
502
  /**
503
  * Widget: myCRED Transfer
504
  * @since 0.1
505
- * @version 1.0
506
  */
507
  if ( !class_exists( 'myCRED_Widget_Transfer' ) ) {
508
  class myCRED_Widget_Transfer extends WP_Widget {
@@ -524,7 +528,6 @@ if ( !class_exists( 'myCRED_Widget_Transfer' ) ) {
524
  * Widget Output
525
  */
526
  function widget( $args, $instance ) {
527
- ob_start();
528
  extract( $args, EXTR_SKIP );
529
 
530
  // Prep
@@ -586,8 +589,8 @@ if ( !class_exists( 'myCRED_Widget_Transfer' ) ) {
586
  function form( $instance ) {
587
  // Defaults
588
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'Transfer %plural%', 'mycred' );
589
- $show_balance = isset( $instance['show_balance'] ) ? esc_attr( $instance['show_balance'] ) : false;
590
- $show_limit = isset( $instance['show_limit'] ) ? esc_attr( $instance['show_limit'] ) : false; ?>
591
 
592
  <!-- Widget Options -->
593
  <p class="myCRED-widget-field">
@@ -612,8 +615,8 @@ if ( !class_exists( 'myCRED_Widget_Transfer' ) ) {
612
  $instance = $old_instance;
613
  $instance['title'] = trim( $new_instance['title'] );
614
 
615
- $instance['show_balance'] = (bool) $new_instance['show_balance'];
616
- $instance['show_limit'] = (bool) $new_instance['show_limit'];
617
 
618
  mycred_flush_widget_cache( 'mycred_widget_transfer' );
619
  return $instance;
292
  /**
293
  * AJAX Transfer Creds
294
  * @since 0.1
295
+ * @version 1.0.1
296
  */
297
  public function ajax_call_transfer() {
298
  // Security
323
  if ( $this->core->exclude_user( $ruser->ID ) ) die( json_encode( 'error_4' ) );
324
  $recipient_id = $ruser->ID;
325
 
326
+ // Prevent transfers to ourselves
327
+ if ( $recipient_id == $from )
328
+ die( json_encode( 'error_4' ) );
329
+
330
  // Check amount
331
  $amount = $this->core->number( $amount );
332
  if ( $amount == $this->core->number( 0 ) ) die( json_encode( 'error_5' ) );
506
  /**
507
  * Widget: myCRED Transfer
508
  * @since 0.1
509
+ * @version 1.1
510
  */
511
  if ( !class_exists( 'myCRED_Widget_Transfer' ) ) {
512
  class myCRED_Widget_Transfer extends WP_Widget {
528
  * Widget Output
529
  */
530
  function widget( $args, $instance ) {
 
531
  extract( $args, EXTR_SKIP );
532
 
533
  // Prep
589
  function form( $instance ) {
590
  // Defaults
591
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'Transfer %plural%', 'mycred' );
592
+ $show_balance = isset( $instance['show_balance'] ) ? 1 : 0;
593
+ $show_limit = isset( $instance['show_limit'] ) ? 1 : 0; ?>
594
 
595
  <!-- Widget Options -->
596
  <p class="myCRED-widget-field">
615
  $instance = $old_instance;
616
  $instance['title'] = trim( $new_instance['title'] );
617
 
618
+ $instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? 1 : 0;
619
+ $instance['show_limit'] = ( isset( $new_instance['show_limit'] ) ) ? 1 : 0;
620
 
621
  mycred_flush_widget_cache( 'mycred_widget_transfer' );
622
  return $instance;
assets/css/inline-edit.css CHANGED
@@ -1,25 +1 @@
1
- /**
2
- * myCRED Inline Edit
3
- * @since 1.2
4
- * @version 1.0
5
- */
6
- .mycred-update-balance { background-color: white; }
7
- .mycred-update-balance>div { padding: 12px; }
8
- .mycred-update-balance .ui-dialog-titlebar { line-height: 24px; border-bottom: 1px solid #dedede; }
9
- .mycred-update-balance .ui-dialog-titlebar:hover { cursor: move; }
10
- .mycred-update-balance .ui-dialog-titlebar-close { float: right; }
11
-
12
- body.users-php .ui-widget-overlay { position: fixed; top: 0; left: 0; background-color: rgba(51,51,51,0.2); }
13
-
14
- .mycred-adjustment-form { display: block; float: none; clear: both; padding: 0; margin: 0; }
15
- .mycred-adjustment-form .row { line-height: 24px; margin: 0; padding: 0; float: none; margin: 0 0 4px 0; clear: both; }
16
- .mycred-adjustment-form .row.inline { float: left; clear: none; }
17
- .mycred-adjustment-form .row.inline span { font-size: 18px; }
18
-
19
- .mycred-adjustment-form .row label { display: block; margin-bottom: 0; }
20
- .mycred-adjustment-form .row input[type="text"] { width: 90%; }
21
- .mycred-adjustment-form .row input[type="button"] { float: right; }
22
- input#mycred-update-users-balance-amount { width: 25%; }
23
-
24
- #edit-mycred-balance #mycred-current.done { color: green; }
25
- .mycred-adjustment-form .row input.error { border-color: red; }
1
+ .mycred-update-balance { background-color:white; }.mycred-update-balance>div { padding:12px; }.mycred-update-balance .ui-dialog-titlebar { line-height:24px; border-bottom: 1px solid #dedede; }.mycred-update-balance .ui-dialog-titlebar:hover { cursor:move; }.mycred-update-balance .ui-dialog-titlebar-close { float:right; }body.users-php .ui-widget-overlay { position:fixed; top:0; left:0; background-color:rgba(51,51,51,0.2); }.mycred-adjustment-form { display:block; float:none; clear:both; padding:0; margin:0; }.mycred-adjustment-form .row { line-height:24px; margin:0; padding:0; float:none; margin: 0 0 4px 0; clear:both; }.mycred-adjustment-form .row.inline { float:left; clear:none; }.mycred-adjustment-form .row.inline span { font-size:18px; }.mycred-adjustment-form .row label { display:block; margin-bottom:0; }.mycred-adjustment-form .row input[type="text"] { width:90%; }.mycred-adjustment-form .row input[type="button"] { float:right; }input#mycred-update-users-balance-amount { width:25%; }#edit-mycred-balance #mycred-current.done { color:green; }.mycred-adjustment-form .row input.error { border-color:red; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/widget.css CHANGED
@@ -1,15 +1 @@
1
- /**
2
- * myCRED Widget Styling
3
- * @since 0.1
4
- * @version 1.0
5
- */
6
- .widget .myCRED-rank { float: right; }
7
- .widget .myCRED-rank span { padding-right: 4px; color: gray; }
8
-
9
- .widget .myCRED-balance { display: block; margin-bottom: 24px; text-align: center; font-size: larger; }
10
-
11
- .widget .myCRED-leaderboard .cred { float: right; }
12
- .widget .myCRED-leaderboard .first-item { font-size: 110%; }
13
-
14
- .widget .myCRED-history { padding: 0; margin: 0; list-style-type: none; }
15
- .widget .myCRED-history .creds { float: right; padding: 0 0 0 12px; clear: left; }
1
+ .widget .myCRED-rank { float:right; }.widget .myCRED-rank span { padding-right:4px; color:gray; }.widget .myCRED-balance { display:block; margin-bottom:24px; text-align:center; font-size:larger; }.widget .myCRED-leaderboard .cred { float:right; }.widget .myCRED-leaderboard .first-item { font-size:110%; }.widget .myCRED-history { padding:0; margin:0; list-style-type:none; }.widget .myCRED-history .creds { float:right; padding: 0 0 0 12px; clear:left; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/mycred-admin.php CHANGED
@@ -143,18 +143,18 @@ if ( !class_exists( 'myCRED_Admin' ) ) {
143
  /**
144
  * Sort by Points
145
  * @since 1.2
146
- * @version 1.1
147
  */
148
  public function sort_by_points( $query ) {
149
- if ( !is_admin() ) return;
150
  $screen = get_current_screen();
151
  if ( $screen->id != 'users' ) return;
152
 
153
- $orderby = $query->get( 'orderby' );
154
- if ( 'mycred' == $orderby ) {
155
  global $wpdb;
 
156
  $cred_id = $this->core->get_cred_id();
157
- $order = $query->get( 'order' );
158
  $query->query_from .= " LEFT JOIN {$wpdb->usermeta} ON ({$wpdb->users}.ID = {$wpdb->usermeta}.user_id AND {$wpdb->usermeta}.meta_key = '$cred_id')";
159
  $query->query_orderby = "ORDER BY {$wpdb->usermeta}.meta_value+0 $order ";
160
  }
143
  /**
144
  * Sort by Points
145
  * @since 1.2
146
+ * @version 1.2
147
  */
148
  public function sort_by_points( $query ) {
149
+ if ( !is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) return;
150
  $screen = get_current_screen();
151
  if ( $screen->id != 'users' ) return;
152
 
153
+ if ( isset( $query->query_vars['orderby'] ) && isset( $query->query_vars['order'] ) && $query->query_vars['orderby'] == 'mycred' ) {
 
154
  global $wpdb;
155
+
156
  $cred_id = $this->core->get_cred_id();
157
+ $order = $query->query_vars['order'];
158
  $query->query_from .= " LEFT JOIN {$wpdb->usermeta} ON ({$wpdb->users}.ID = {$wpdb->usermeta}.user_id AND {$wpdb->usermeta}.meta_key = '$cred_id')";
159
  $query->query_orderby = "ORDER BY {$wpdb->usermeta}.meta_value+0 $order ";
160
  }
includes/mycred-functions.php CHANGED
@@ -275,12 +275,12 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
275
  * Amount Template Tags
276
  * Replaces the amount template tags in a given string.
277
  * @since 0.1
278
- * @version 1.0.2
279
  */
280
  public function template_tags_amount( $content = '', $amount = 0 ) {
 
281
  if ( !$this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
282
  $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount );
283
- $content = $this->template_tags_general( $content );
284
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
285
  $content = str_replace( '%cred%', $amount, $content );
286
  return $content;
@@ -295,10 +295,11 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
295
  * @param $data (object) Log entry data object
296
  * @return (string) parsed string
297
  * @since 0.1
298
- * @version 1.0.3
299
  */
300
  public function template_tags_post( $content = '', $ref_id = NULL, $data = '' ) {
301
  if ( $ref_id === NULL ) return $content;
 
302
  if ( !$this->has_tags( 'post', 'post_title|post_url|link_with_title|post_type', $content ) ) return $content;
303
 
304
  // Get Post Object
@@ -321,7 +322,6 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
321
 
322
  // Let others play first
323
  $content = apply_filters( 'mycred_parse_tags_post', $content, $post, $data );
324
- $content = $this->template_tags_general( $content );
325
 
326
  // Replace template tags
327
  $content = str_replace( '%post_title%', $post->post_title, $content );
@@ -349,10 +349,11 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
349
  * @param $data (object) Log entry data object
350
  * @return (string) parsed string
351
  * @since 0.1
352
- * @version 1.2
353
  */
354
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
355
  if ( $ref_id === NULL ) return $content;
 
356
  if ( !$this->has_tags( 'user', 'user_id|user_name|user_name_en|display_name|user_profile_url|user_profile_link|user_nicename|user_email|user_url|balance|balance_f', $content ) ) return $content;
357
 
358
  // Get User Object
@@ -375,7 +376,6 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
375
 
376
  // Let others play first
377
  $content = apply_filters( 'mycred_parse_tags_user', $content, $user, $data );
378
- $content = $this->template_tags_general( $content );
379
 
380
  // Replace template tags
381
  $content = str_replace( '%user_id%', $user->ID, $content );
@@ -424,10 +424,11 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
424
  * @param $data (object) Log entry data object
425
  * @return (string) parsed string
426
  * @since 0.1
427
- * @version 1.0.3
428
  */
429
  public function template_tags_comment( $content = '', $ref_id = NULL, $data = '' ) {
430
  if ( $ref_id === NULL ) return $content;
 
431
  if ( !$this->has_tags( 'comment', 'comment_id|c_post_id|c_post_title|c_post_url|c_link_with_title', $content ) ) return $content;
432
 
433
  // Get Comment Object
@@ -453,7 +454,6 @@ if ( !class_exists( 'myCRED_Settings' ) ) {
453
 
454
  // Let others play first
455
  $content = apply_filters( 'mycred_parse_tags_comment', $content, $comment, $data );
456
- $content = $this->template_tags_general( $content );
457
 
458
  $content = str_replace( '%comment_id%', $comment->comment_ID, $content );
459
 
275
  * Amount Template Tags
276
  * Replaces the amount template tags in a given string.
277
  * @since 0.1
278
+ * @version 1.0.3
279
  */
280
  public function template_tags_amount( $content = '', $amount = 0 ) {
281
+ $content = $this->template_tags_general( $content );
282
  if ( !$this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
283
  $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount );
 
284
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
285
  $content = str_replace( '%cred%', $amount, $content );
286
  return $content;
295
  * @param $data (object) Log entry data object
296
  * @return (string) parsed string
297
  * @since 0.1
298
+ * @version 1.0.4
299
  */
300
  public function template_tags_post( $content = '', $ref_id = NULL, $data = '' ) {
301
  if ( $ref_id === NULL ) return $content;
302
+ $content = $this->template_tags_general( $content );
303
  if ( !$this->has_tags( 'post', 'post_title|post_url|link_with_title|post_type', $content ) ) return $content;
304
 
305
  // Get Post Object
322
 
323
  // Let others play first
324
  $content = apply_filters( 'mycred_parse_tags_post', $content, $post, $data );
 
325
 
326
  // Replace template tags
327
  $content = str_replace( '%post_title%', $post->post_title, $content );
349
  * @param $data (object) Log entry data object
350
  * @return (string) parsed string
351
  * @since 0.1
352
+ * @version 1.2.1
353
  */
354
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
355
  if ( $ref_id === NULL ) return $content;
356
+ $content = $this->template_tags_general( $content );
357
  if ( !$this->has_tags( 'user', 'user_id|user_name|user_name_en|display_name|user_profile_url|user_profile_link|user_nicename|user_email|user_url|balance|balance_f', $content ) ) return $content;
358
 
359
  // Get User Object
376
 
377
  // Let others play first
378
  $content = apply_filters( 'mycred_parse_tags_user', $content, $user, $data );
 
379
 
380
  // Replace template tags
381
  $content = str_replace( '%user_id%', $user->ID, $content );
424
  * @param $data (object) Log entry data object
425
  * @return (string) parsed string
426
  * @since 0.1
427
+ * @version 1.0.4
428
  */
429
  public function template_tags_comment( $content = '', $ref_id = NULL, $data = '' ) {
430
  if ( $ref_id === NULL ) return $content;
431
+ $content = $this->template_tags_general( $content );
432
  if ( !$this->has_tags( 'comment', 'comment_id|c_post_id|c_post_title|c_post_url|c_link_with_title', $content ) ) return $content;
433
 
434
  // Get Comment Object
454
 
455
  // Let others play first
456
  $content = apply_filters( 'mycred_parse_tags_comment', $content, $comment, $data );
 
457
 
458
  $content = str_replace( '%comment_id%', $comment->comment_ID, $content );
459
 
includes/mycred-rankings.php CHANGED
@@ -105,7 +105,7 @@ if ( !class_exists( 'myCRED_Query_Rankings' ) ) {
105
  * If a frequency is set to something other then 'always', then that
106
  * setting is enforced.
107
  * @since 1.1.2
108
- * @version 1.0
109
  */
110
  public function save( $reset = false ) {
111
  // Will not save no results
@@ -114,7 +114,8 @@ if ( !class_exists( 'myCRED_Query_Rankings' ) ) {
114
  // Prep
115
  $mycred = mycred_get_settings();
116
  $save = $reset;
117
- $lifespan = 1 * DAY_IN_SECONDS;
 
118
 
119
  $history = get_option( 'mycred_transients' );
120
  // If history has never been set
@@ -138,14 +139,13 @@ if ( !class_exists( 'myCRED_Query_Rankings' ) ) {
138
  elseif ( $mycred->frequency['rate'] == 'weekly' ) {
139
  $today = date_i18n( 'W' );
140
  if ( $today != $history[ $this->args['type'] ] ) $save = true;
141
- $lifespan = 1 * WEEK_IN_SECONDS;
142
  }
143
  // Update on specific date
144
  elseif ( $mycred->frequency['rate'] == 'date' ) {
145
  $date = $mycred->frequency['date'];
146
  $today = date_i18n( 'Y-m-d' );
147
  if ( $today == $date ) $save = true;
148
- $lifespan = 12 * HOUR_IN_SECONDS;
149
  }
150
 
151
  // Save new transient
105
  * If a frequency is set to something other then 'always', then that
106
  * setting is enforced.
107
  * @since 1.1.2
108
+ * @version 1.1
109
  */
110
  public function save( $reset = false ) {
111
  // Will not save no results
114
  // Prep
115
  $mycred = mycred_get_settings();
116
  $save = $reset;
117
+
118
+ $lifespan = 86400;
119
 
120
  $history = get_option( 'mycred_transients' );
121
  // If history has never been set
139
  elseif ( $mycred->frequency['rate'] == 'weekly' ) {
140
  $today = date_i18n( 'W' );
141
  if ( $today != $history[ $this->args['type'] ] ) $save = true;
142
+ $lifespan = 604800;
143
  }
144
  // Update on specific date
145
  elseif ( $mycred->frequency['rate'] == 'date' ) {
146
  $date = $mycred->frequency['date'];
147
  $today = date_i18n( 'Y-m-d' );
148
  if ( $today == $date ) $save = true;
 
149
  }
150
 
151
  // Save new transient
includes/mycred-widgets.php CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'myCRED_VERSION' ) ) exit;
3
  /**
4
  * Widget: myCRED Balance
5
  * @since 0.1
6
- * @version 1.1
7
  */
8
  if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
9
  class myCRED_Widget_Balance extends WP_Widget {
@@ -26,7 +26,6 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
26
  * Widget Output
27
  */
28
  function widget( $args, $instance ) {
29
- ob_start();
30
  extract( $args, EXTR_SKIP );
31
 
32
  // If we are logged in
@@ -155,14 +154,14 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
155
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'My Balance', 'mycred' );
156
  $cred_format = isset( $instance['cred_format'] ) ? esc_attr( $instance['cred_format'] ) : '%cred_f%';
157
 
158
- $show_history = isset( $instance['show_history'] ) ? $instance['show_history'] : 0;
159
  $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : __( '%plural% History', 'mycred' );
160
  $history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
161
  $history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
162
 
163
- $show_rank = isset( $instance['show_rank'] ) ? $instance['show_rank'] : 0;
164
  $rank_format = isset( $instance['rank_format'] ) ? $instance['rank_format'] : '#%ranking%';
165
- $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
166
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
167
 
168
  // CSS to help with show/hide
@@ -255,7 +254,7 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
255
  $instance['title'] = trim( $new_instance['title'] );
256
  $instance['cred_format'] = trim( $new_instance['cred_format'] );
257
 
258
- $instance['show_rank'] = (bool) $new_instance['show_rank'];
259
  $rank_format = trim( $new_instance['rank_format'] );
260
 
261
  if ( !function_exists( 'mycred_get_users_rank' ) )
@@ -263,12 +262,12 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
263
  else
264
  $instance['rank_format'] = $rank_format;
265
 
266
- $instance['show_history'] = (bool) $new_instance['show_history'];
267
  $instance['history_title'] = trim( $new_instance['history_title'] );
268
  $instance['history_format'] = trim( $new_instance['history_format'] );
269
  $instance['number'] = (int) $new_instance['number'];
270
 
271
- $instance['show_visitors'] = (bool) $new_instance['show_visitors'];
272
  $instance['message'] = $mycred->allowed_tags( trim( $new_instance['message'] ) );
273
 
274
  mycred_flush_widget_cache( 'mycred_widget_list' );
@@ -280,7 +279,7 @@ if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
280
  /**
281
  * Widget: User List
282
  * @since 0.1
283
- * @version 1.0
284
  */
285
  if ( !class_exists( 'myCRED_Widget_List' ) ) {
286
  class myCRED_Widget_List extends WP_Widget {
@@ -303,7 +302,6 @@ if ( !class_exists( 'myCRED_Widget_List' ) ) {
303
  * Widget Output
304
  */
305
  function widget( $args, $instance ) {
306
- ob_start();
307
  extract( $args, EXTR_SKIP );
308
 
309
  // Check if we want to show this to visitors
@@ -405,7 +403,7 @@ if ( !class_exists( 'myCRED_Widget_List' ) ) {
405
  $instance = $old_instance;
406
  $instance['number'] = (int) $new_instance['number'];
407
  $instance['title'] = trim( $new_instance['title'] );
408
- $instance['show_visitors'] = $new_instance['show_visitors'];
409
 
410
  $rank_format = trim( $new_instance['text'] );
411
  $instance['text'] = str_replace( '%rank%', '%ranking%', $rank_format );
3
  /**
4
  * Widget: myCRED Balance
5
  * @since 0.1
6
+ * @version 1.3
7
  */
8
  if ( !class_exists( 'myCRED_Widget_Balance' ) ) {
9
  class myCRED_Widget_Balance extends WP_Widget {
26
  * Widget Output
27
  */
28
  function widget( $args, $instance ) {
 
29
  extract( $args, EXTR_SKIP );
30
 
31
  // If we are logged in
154
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'My Balance', 'mycred' );
155
  $cred_format = isset( $instance['cred_format'] ) ? esc_attr( $instance['cred_format'] ) : '%cred_f%';
156
 
157
+ $show_history = isset( $instance['show_history'] ) ? 1 : 0;
158
  $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : __( '%plural% History', 'mycred' );
159
  $history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
160
  $history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
161
 
162
+ $show_rank = isset( $instance['show_rank'] ) ? 1 : 0;
163
  $rank_format = isset( $instance['rank_format'] ) ? $instance['rank_format'] : '#%ranking%';
164
+ $show_visitors = isset( $instance['show_visitors'] ) ? 1 : 0;
165
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : __( '<a href="%login_url_here%">Login</a> to view your balance.', 'mycred' );
166
 
167
  // CSS to help with show/hide
254
  $instance['title'] = trim( $new_instance['title'] );
255
  $instance['cred_format'] = trim( $new_instance['cred_format'] );
256
 
257
+ $instance['show_rank'] = ( isset( $new_instance['show_rank'] ) ) ? 1 : 0;
258
  $rank_format = trim( $new_instance['rank_format'] );
259
 
260
  if ( !function_exists( 'mycred_get_users_rank' ) )
262
  else
263
  $instance['rank_format'] = $rank_format;
264
 
265
+ $instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
266
  $instance['history_title'] = trim( $new_instance['history_title'] );
267
  $instance['history_format'] = trim( $new_instance['history_format'] );
268
  $instance['number'] = (int) $new_instance['number'];
269
 
270
+ $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
271
  $instance['message'] = $mycred->allowed_tags( trim( $new_instance['message'] ) );
272
 
273
  mycred_flush_widget_cache( 'mycred_widget_list' );
279
  /**
280
  * Widget: User List
281
  * @since 0.1
282
+ * @version 1.1
283
  */
284
  if ( !class_exists( 'myCRED_Widget_List' ) ) {
285
  class myCRED_Widget_List extends WP_Widget {
302
  * Widget Output
303
  */
304
  function widget( $args, $instance ) {
 
305
  extract( $args, EXTR_SKIP );
306
 
307
  // Check if we want to show this to visitors
403
  $instance = $old_instance;
404
  $instance['number'] = (int) $new_instance['number'];
405
  $instance['title'] = trim( $new_instance['title'] );
406
+ $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
407
 
408
  $rank_format = trim( $new_instance['text'] );
409
  $instance['text'] = str_replace( '%rank%', '%ranking%', $rank_format );
lang/mycred-en_US.po DELETED
@@ -1,4763 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED v1.1.1\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-06-27 23:25:33+0000\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: English\n"
15
- "X-Poedit-Country: UNITED STATES\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: \n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: addons/buddypress/hooks/bp-galleries.php:72
24
- #, php-format
25
- #@ mycred
26
- msgid "%plural% for New Gallery"
27
- msgstr ""
28
-
29
- #: addons/buddypress/hooks/bp-galleries.php:79
30
- #: addons/buddypress/hooks/bp-groups.php:433
31
- #: addons/buddypress/hooks/bp-groups.php:446
32
- #: addons/buddypress/hooks/bp-groups.php:459
33
- #: addons/buddypress/hooks/bp-groups.php:472
34
- #: addons/buddypress/hooks/bp-groups.php:485
35
- #: addons/buddypress/hooks/bp-groups.php:498
36
- #: addons/buddypress/hooks/bp-groups.php:512
37
- #: addons/buddypress/hooks/bp-groups.php:525
38
- #: addons/buddypress/hooks/bp-groups.php:538
39
- #: addons/buddypress/hooks/bp-groups.php:551
40
- #: addons/buddypress/hooks/bp-links.php:173
41
- #: addons/buddypress/hooks/bp-links.php:186
42
- #: addons/buddypress/hooks/bp-links.php:199
43
- #: addons/buddypress/hooks/bp-links.php:212
44
- #: addons/buddypress/hooks/bp-profile.php:298
45
- #: addons/buddypress/hooks/bp-profile.php:311
46
- #: addons/buddypress/hooks/bp-profile.php:324
47
- #: addons/buddypress/hooks/bp-profile.php:337
48
- #: addons/buddypress/hooks/bp-profile.php:350
49
- #: addons/buddypress/hooks/bp-profile.php:363
50
- #: addons/buddypress/hooks/bp-profile.php:376
51
- #: addons/buddypress/hooks/bp-profile.php:389
52
- #: modules/mycred-module-hooks.php:364
53
- #: modules/mycred-module-hooks.php:602
54
- #: modules/mycred-module-hooks.php:615
55
- #: modules/mycred-module-hooks.php:650
56
- #: modules/mycred-module-hooks.php:960
57
- #: modules/mycred-module-hooks.php:972
58
- #: modules/mycred-module-hooks.php:984
59
- #: modules/mycred-module-plugins.php:244
60
- #: modules/mycred-module-plugins.php:257
61
- #: modules/mycred-module-plugins.php:275
62
- #: modules/mycred-module-plugins.php:288
63
- #: modules/mycred-module-plugins.php:442
64
- #: modules/mycred-module-plugins.php:463
65
- #: modules/mycred-module-plugins.php:593
66
- #: modules/mycred-module-plugins.php:847
67
- #: modules/mycred-module-subscriptions.php:486
68
- #: modules/mycred-module-subscriptions.php:499
69
- #@ mycred
70
- msgid "Log template"
71
- msgstr ""
72
-
73
- #: addons/buddypress/hooks/bp-groups.php:419
74
- #, php-format
75
- #@ mycred
76
- msgid "%plural% for Creating Groups"
77
- msgstr ""
78
-
79
- #: addons/buddypress/hooks/bp-groups.php:427
80
- #@ mycred
81
- msgid "Number of members before awarding %_plural%"
82
- msgstr ""
83
-
84
- #: addons/buddypress/hooks/bp-groups.php:429
85
- #@ mycred
86
- msgid "Use zero to award %_plural% when group is created."
87
- msgstr ""
88
-
89
- #: addons/buddypress/hooks/bp-groups.php:439
90
- #, php-format
91
- #@ mycred
92
- msgid "%plural% for Deleting Groups"
93
- msgstr ""
94
-
95
- #: addons/buddypress/hooks/bp-groups.php:452
96
- #, php-format
97
- #@ mycred
98
- msgid "%plural% for New Forum Topic"
99
- msgstr ""
100
-
101
- #: addons/buddypress/hooks/bp-groups.php:465
102
- #, php-format
103
- #@ mycred
104
- msgid "%plural% for Editing Forum Topic"
105
- msgstr ""
106
-
107
- #: addons/buddypress/hooks/bp-groups.php:478
108
- #, php-format
109
- #@ mycred
110
- msgid "%plural% for New Forum Post"
111
- msgstr ""
112
-
113
- #: addons/buddypress/hooks/bp-groups.php:491
114
- #, php-format
115
- #@ mycred
116
- msgid "%plural% for Editing Forum Post"
117
- msgstr ""
118
-
119
- #: addons/buddypress/hooks/bp-groups.php:504
120
- #, php-format
121
- #@ mycred
122
- msgid "%plural% for Joining Groups"
123
- msgstr ""
124
-
125
- #: addons/buddypress/hooks/bp-groups.php:518
126
- #, php-format
127
- #@ mycred
128
- msgid "%plural% for Leaving Groups"
129
- msgstr ""
130
-
131
- #: addons/buddypress/hooks/bp-groups.php:531
132
- #, php-format
133
- #@ mycred
134
- msgid "%plural% for New Group Avatar"
135
- msgstr ""
136
-
137
- #: addons/buddypress/hooks/bp-groups.php:544
138
- #, php-format
139
- #@ mycred
140
- msgid "%plural% for New Group Comment"
141
- msgstr ""
142
-
143
- #: addons/buddypress/hooks/bp-links.php:166
144
- #, php-format
145
- #@ mycred
146
- msgid "%plural% for New Links"
147
- msgstr ""
148
-
149
- #: addons/buddypress/hooks/bp-links.php:179
150
- #, php-format
151
- #@ mycred
152
- msgid "%plural% for Vote on Link"
153
- msgstr ""
154
-
155
- #: addons/buddypress/hooks/bp-links.php:192
156
- #, php-format
157
- #@ mycred
158
- msgid "%plural% for Updating Links"
159
- msgstr ""
160
-
161
- #: addons/buddypress/hooks/bp-links.php:205
162
- #, php-format
163
- #@ mycred
164
- msgid "%plural% for Deleting Links"
165
- msgstr ""
166
-
167
- #: modules/mycred-module-plugins.php:250
168
- #, php-format
169
- #@ mycred
170
- msgid "%plural% for New Topic"
171
- msgstr ""
172
-
173
- #: modules/mycred-module-plugins.php:281
174
- #, php-format
175
- #@ mycred
176
- msgid "%plural% for New Reply"
177
- msgstr ""
178
-
179
- #: addons/buddypress/hooks/bp-profile.php:291
180
- #, php-format
181
- #@ mycred
182
- msgid "%plural% for Profile Updates"
183
- msgstr ""
184
-
185
- #: addons/buddypress/hooks/bp-profile.php:304
186
- #, php-format
187
- #@ mycred
188
- msgid "%plural% for New Avatar"
189
- msgstr ""
190
-
191
- #: addons/buddypress/hooks/bp-profile.php:317
192
- #, php-format
193
- #@ mycred
194
- msgid "%plural% for New Friendships"
195
- msgstr ""
196
-
197
- #: addons/buddypress/hooks/bp-profile.php:330
198
- #, php-format
199
- #@ mycred
200
- msgid "%plural% for Leaving Friendship"
201
- msgstr ""
202
-
203
- #: addons/buddypress/hooks/bp-profile.php:343
204
- #, php-format
205
- #@ mycred
206
- msgid "%plural% for New Comment"
207
- msgstr ""
208
-
209
- #: addons/buddypress/hooks/bp-profile.php:356
210
- #, php-format
211
- #@ mycred
212
- msgid "%plural% for Deleting Comment"
213
- msgstr ""
214
-
215
- #: addons/buddypress/hooks/bp-profile.php:369
216
- #, php-format
217
- #@ mycred
218
- msgid "%plural% for New Messages"
219
- msgstr ""
220
-
221
- #: addons/buddypress/hooks/bp-profile.php:382
222
- #, php-format
223
- #@ mycred
224
- msgid "%plural% for Sending Gift"
225
- msgstr ""
226
-
227
- #: addons/buddypress/myCRED-addon-buddypress.php:49
228
- #: modules/mycred-module-log.php:65
229
- #: modules/mycred-module-log.php:424
230
- #@ mycred
231
- msgid "My History"
232
- msgstr ""
233
-
234
- #: addons/buddypress/myCRED-addon-buddypress.php:50
235
- #, php-format
236
- #@ mycred
237
- msgid "%s's History"
238
- msgstr ""
239
-
240
- #: addons/buddypress/myCRED-addon-buddypress.php:353
241
- #, php-format
242
- #@ mycred
243
- msgid "%singular% Balance"
244
- msgstr ""
245
-
246
- #: addons/buddypress/myCRED-addon-buddypress.php:191
247
- #: modules/mycred-module-log.php:207
248
- #@ mycred
249
- msgid "All"
250
- msgstr ""
251
-
252
- #: addons/buddypress/myCRED-addon-buddypress.php:192
253
- #: modules/mycred-module-log.php:208
254
- #@ mycred
255
- msgid "Today"
256
- msgstr ""
257
-
258
- #: addons/buddypress/myCRED-addon-buddypress.php:193
259
- #: modules/mycred-module-log.php:209
260
- #@ mycred
261
- msgid "Yesterday"
262
- msgstr ""
263
-
264
- #: addons/buddypress/myCRED-addon-buddypress.php:194
265
- #: modules/mycred-module-log.php:210
266
- #@ mycred
267
- msgid "This Week"
268
- msgstr ""
269
-
270
- #: addons/buddypress/myCRED-addon-buddypress.php:195
271
- #: modules/mycred-module-log.php:211
272
- #@ mycred
273
- msgid "This Month"
274
- msgstr ""
275
-
276
- #: modules/mycred-module-hooks.php:126
277
- #@ mycred
278
- msgid "Awards %_plural% for bbPress actions."
279
- msgstr ""
280
-
281
- #: addons/buddypress/myCRED-addon-buddypress.php:291
282
- #@ default
283
- msgid "BuddyPress: Groups"
284
- msgstr ""
285
-
286
- #: addons/buddypress/myCRED-addon-buddypress.php:292
287
- #@ mycred
288
- msgid "Awards %_plural% for group related actions. Use minus to deduct %_plural% or zero to disable a specific hook."
289
- msgstr ""
290
-
291
- #: addons/buddypress/myCRED-addon-buddypress.php:296
292
- #@ default
293
- msgid "BuddyPress: Members"
294
- msgstr ""
295
-
296
- #: addons/buddypress/myCRED-addon-buddypress.php:297
297
- #@ mycred
298
- msgid "Awards %_plural% for profile related actions."
299
- msgstr ""
300
-
301
- #: addons/buddypress/myCRED-addon-buddypress.php:303
302
- #@ default
303
- msgid "BuddyPress: Links"
304
- msgstr ""
305
-
306
- #: addons/buddypress/myCRED-addon-buddypress.php:304
307
- #@ mycred
308
- msgid "Awards %_plural% for link related actions."
309
- msgstr ""
310
-
311
- #: addons/buddypress/myCRED-addon-buddypress.php:311
312
- #@ default
313
- msgid "BuddyPress: Gallery Actions"
314
- msgstr ""
315
-
316
- #: addons/buddypress/myCRED-addon-buddypress.php:312
317
- #@ mycred
318
- msgid "Awards %_plural% for creating a new gallery either using BP Album+ or BP Gallery."
319
- msgstr ""
320
-
321
- #: addons/buddypress/myCRED-addon-buddypress.php:332
322
- #: addons/buddypress/myCRED-addon-buddypress.php:339
323
- #: addons/ranks/myCRED-addon-ranks.php:669
324
- #@ mycred
325
- msgid "Do not show."
326
- msgstr ""
327
-
328
- #: addons/buddypress/myCRED-addon-buddypress.php:333
329
- #: addons/ranks/myCRED-addon-ranks.php:670
330
- #@ mycred
331
- msgid "Include in Profile Header."
332
- msgstr ""
333
-
334
- #: addons/buddypress/myCRED-addon-buddypress.php:334
335
- #: addons/ranks/myCRED-addon-ranks.php:671
336
- #@ mycred
337
- msgid "Include under the \"Profile\" tab"
338
- msgstr ""
339
-
340
- #: addons/buddypress/myCRED-addon-buddypress.php:335
341
- #: addons/ranks/myCRED-addon-ranks.php:672
342
- #@ mycred
343
- msgid "Include under the \"Profile\" tab and Profile Header."
344
- msgstr ""
345
-
346
- #: addons/buddypress/myCRED-addon-buddypress.php:340
347
- #@ mycred
348
- msgid "Show in Profile"
349
- msgstr ""
350
-
351
- #: addons/buddypress/myCRED-addon-buddypress.php:351
352
- #@ mycred
353
- msgid "BuddyPress"
354
- msgstr ""
355
-
356
- #: addons/buddypress/myCRED-addon-buddypress.php:369
357
- #@ mycred
358
- msgid "Members can view each others %_singular% balance."
359
- msgstr ""
360
-
361
- #: addons/buddypress/myCRED-addon-buddypress.php:374
362
- #@ mycred
363
- msgid "Template"
364
- msgstr ""
365
-
366
- #: addons/buddypress/myCRED-addon-buddypress.php:381
367
- #: includes/mycred-widgets.php:159
368
- #: modules/mycred-module-log.php:66
369
- #, php-format
370
- #@ mycred
371
- msgid "%plural% History"
372
- msgstr ""
373
-
374
- #: addons/buddypress/myCRED-addon-buddypress.php:397
375
- #@ mycred
376
- msgid "Members can view each others %_plural% history."
377
- msgstr ""
378
-
379
- #: addons/buddypress/myCRED-addon-buddypress.php:402
380
- #@ mycred
381
- msgid "Menu Title"
382
- msgstr ""
383
-
384
- #: addons/buddypress/myCRED-addon-buddypress.php:404
385
- #@ mycred
386
- msgid "Title shown to me"
387
- msgstr ""
388
-
389
- #: addons/buddypress/myCRED-addon-buddypress.php:409
390
- #, php-format
391
- #@ mycred
392
- msgid "Title shown to others. Use %s to show the first name."
393
- msgstr ""
394
-
395
- #: addons/buddypress/myCRED-addon-buddypress.php:414
396
- #@ mycred
397
- msgid "Menu Position"
398
- msgstr ""
399
-
400
- #: addons/buddypress/myCRED-addon-buddypress.php:416
401
- #@ mycred
402
- msgid "Current menu positions:"
403
- msgstr ""
404
-
405
- #: addons/import/myCRED-addon-import.php:451
406
- #: includes/mycred-network.php:115
407
- #: modules/mycred-module-addons.php:249
408
- #: modules/mycred-module-general.php:35
409
- #: modules/mycred-module-hooks.php:216
410
- #: modules/mycred-module-log.php:326
411
- #: modules/mycred-module-log.php:402
412
- #@ mycred
413
- #@ default
414
- msgid "Access Denied"
415
- msgstr ""
416
-
417
- #: addons/buy-creds/gateways/netbilling.php:26
418
- #: addons/buy-creds/gateways/paypal-standard.php:23
419
- #: addons/buy-creds/gateways/skrill.php:28
420
- #, php-format
421
- #@ mycred
422
- msgid "Purchase of myCRED %plural%"
423
- msgstr ""
424
-
425
- #: addons/buy-creds/gateways/netbilling.php:55
426
- #: addons/buy-creds/gateways/netbilling.php:318
427
- #@ mycred
428
- msgid "You have tried too many times. Please contact support."
429
- msgstr ""
430
-
431
- #: addons/buy-creds/gateways/netbilling.php:62
432
- #@ mycred
433
- msgid "This payment gateway has not yet been setup! Exiting."
434
- msgstr ""
435
-
436
- #: addons/buy-creds/gateways/netbilling.php:81
437
- #@ mycred
438
- msgid "First name can not be empty"
439
- msgstr ""
440
-
441
- #: addons/buy-creds/gateways/netbilling.php:87
442
- #@ mycred
443
- msgid "Last name can not be empty"
444
- msgstr ""
445
-
446
- #: addons/buy-creds/gateways/netbilling.php:93
447
- #@ mycred
448
- msgid "Street can not be empty"
449
- msgstr ""
450
-
451
- #: addons/buy-creds/gateways/netbilling.php:99
452
- #@ mycred
453
- msgid "City can not be empty"
454
- msgstr ""
455
-
456
- #: addons/buy-creds/gateways/netbilling.php:105
457
- #@ mycred
458
- msgid "Country can not be empty"
459
- msgstr ""
460
-
461
- #: addons/buy-creds/gateways/netbilling.php:113
462
- #@ mycred
463
- msgid "State can not be empty"
464
- msgstr ""
465
-
466
- #: addons/buy-creds/gateways/netbilling.php:121
467
- #@ mycred
468
- msgid "Zip / Post Code can not be empty"
469
- msgstr ""
470
-
471
- #: addons/buy-creds/gateways/netbilling.php:127
472
- #@ mycred
473
- msgid "Email can not be empty"
474
- msgstr ""
475
-
476
- #: addons/buy-creds/gateways/netbilling.php:143
477
- #@ mycred
478
- msgid "Please enter your credit card number"
479
- msgstr ""
480
-
481
- #: addons/buy-creds/gateways/netbilling.php:149
482
- #@ mycred
483
- msgid "Card Expiration Month must be selected"
484
- msgstr ""
485
-
486
- #: addons/buy-creds/gateways/netbilling.php:155
487
- #@ mycred
488
- msgid "Card Expiration Year must be set"
489
- msgstr ""
490
-
491
- #: addons/buy-creds/gateways/netbilling.php:161
492
- #@ mycred
493
- msgid "Please enter the CVV2 code from the back of your card"
494
- msgstr ""
495
-
496
- #: addons/buy-creds/gateways/netbilling.php:170
497
- #@ mycred
498
- msgid "Account Routing number missing"
499
- msgstr ""
500
-
501
- #: addons/buy-creds/gateways/netbilling.php:176
502
- #@ mycred
503
- msgid "Account Number missing"
504
- msgstr ""
505
-
506
- #: addons/buy-creds/gateways/netbilling.php:184
507
- #@ mycred
508
- msgid "Incorrect Credit Card number"
509
- msgstr ""
510
-
511
- #: addons/buy-creds/gateways/netbilling.php:190
512
- #@ mycred
513
- msgid "The credit card entered is past its expiration date."
514
- msgstr ""
515
-
516
- #: addons/buy-creds/gateways/netbilling.php:196
517
- #@ mycred
518
- msgid "The CVV2 number entered is not valid."
519
- msgstr ""
520
-
521
- #: addons/buy-creds/gateways/netbilling.php:202
522
- #@ mycred
523
- msgid "The bank routing number entered is not valid."
524
- msgstr ""
525
-
526
- #: addons/buy-creds/gateways/netbilling.php:205
527
- #@ mycred
528
- msgid "The bank account number entered is not valid."
529
- msgstr ""
530
-
531
- #: addons/buy-creds/gateways/netbilling.php:312
532
- #: addons/buy-creds/gateways/netbilling.php:333
533
- #@ mycred
534
- msgid "Invalid Address"
535
- msgstr ""
536
-
537
- #: addons/buy-creds/gateways/netbilling.php:315
538
- #@ mycred
539
- msgid "Invalid CVV2"
540
- msgstr ""
541
-
542
- #: addons/buy-creds/gateways/netbilling.php:321
543
- #: addons/buy-creds/gateways/netbilling.php:324
544
- #@ mycred
545
- msgid "Please contact support."
546
- msgstr ""
547
-
548
- #: addons/buy-creds/gateways/netbilling.php:327
549
- #@ mycred
550
- msgid "Your email address is invalid."
551
- msgstr ""
552
-
553
- #: addons/buy-creds/gateways/netbilling.php:330
554
- #@ mycred
555
- msgid "Your information is invalid. Please correct"
556
- msgstr ""
557
-
558
- #: addons/buy-creds/gateways/netbilling.php:336
559
- #@ mycred
560
- msgid "Your card was declined. Please try again."
561
- msgstr ""
562
-
563
- #: addons/buy-creds/gateways/netbilling.php:340
564
- #: addons/buy-creds/gateways/netbilling.php:358
565
- #@ mycred
566
- msgid "Duplicate transaction. Please contact support"
567
- msgstr ""
568
-
569
- #: addons/buy-creds/gateways/netbilling.php:343
570
- #@ mycred
571
- msgid "Your transaction was approved"
572
- msgstr ""
573
-
574
- #: addons/buy-creds/gateways/netbilling.php:350
575
- #@ mycred
576
- msgid " error: "
577
- msgstr ""
578
-
579
- #: addons/buy-creds/gateways/netbilling.php:423
580
- #: addons/buy-creds/myCRED-addon-buy-creds.php:138
581
- #@ mycred
582
- #@ default
583
- msgid "NETbilling"
584
- msgstr ""
585
-
586
- #: addons/buy-creds/gateways/netbilling.php:430
587
- #@ mycred
588
- msgid "Debug"
589
- msgstr ""
590
-
591
- #: addons/buy-creds/gateways/netbilling.php:439
592
- #@ mycred
593
- msgid "Error"
594
- msgstr ""
595
-
596
- #: addons/buy-creds/gateways/netbilling.php:440
597
- #@ mycred
598
- msgid "The following error/s were found: "
599
- msgstr ""
600
-
601
- #: addons/buy-creds/gateways/netbilling.php:448
602
- #@ mycred
603
- msgid "Please update and try again."
604
- msgstr ""
605
-
606
- #: addons/buy-creds/gateways/netbilling.php:454
607
- #@ mycred
608
- msgid "Transaction Approved"
609
- msgstr ""
610
-
611
- #: addons/buy-creds/gateways/netbilling.php:455
612
- #@ mycred
613
- msgid "Your have successfully purchased "
614
- msgstr ""
615
-
616
- #: addons/buy-creds/gateways/netbilling.php:456
617
- #: addons/buy-creds/gateways/netbilling.php:466
618
- #@ mycred
619
- msgid "Click here to continue"
620
- msgstr ""
621
-
622
- #: addons/buy-creds/gateways/netbilling.php:464
623
- #@ mycred
624
- msgid "Transaction Declined"
625
- msgstr ""
626
-
627
- #: addons/buy-creds/gateways/netbilling.php:465
628
- #@ mycred
629
- msgid "I am sorry but your transaction could not be completed due to the following "
630
- msgstr ""
631
-
632
- #: addons/buy-creds/gateways/netbilling.php:474
633
- #@ mycred
634
- msgid "Transaction Error"
635
- msgstr ""
636
-
637
- #: addons/buy-creds/gateways/netbilling.php:475
638
- #@ mycred
639
- msgid "NETbilling returned the following error: "
640
- msgstr ""
641
-
642
- #: addons/buy-creds/gateways/netbilling.php:476
643
- #@ mycred
644
- msgid "Please try again."
645
- msgstr ""
646
-
647
- #: addons/buy-creds/gateways/netbilling.php:480
648
- #@ mycred
649
- msgid "Purchase of"
650
- msgstr ""
651
-
652
- #: addons/buy-creds/gateways/netbilling.php:480
653
- #@ mycred
654
- msgid "for"
655
- msgstr ""
656
-
657
- #: addons/buy-creds/gateways/netbilling.php:481
658
- #@ mycred
659
- msgid "Fields marked * are required!"
660
- msgstr ""
661
-
662
- #: addons/buy-creds/gateways/netbilling.php:491
663
- #@ mycred
664
- msgid "Billing Details"
665
- msgstr ""
666
-
667
- #: abstracts/mycred-abstract-hook.php:136
668
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:515
669
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:538
670
- #: addons/buy-creds/gateways/netbilling.php:514
671
- #: addons/buy-creds/gateways/zombaio.php:382
672
- #: addons/buy-creds/myCRED-addon-buy-creds.php:231
673
- #: addons/buy-creds/myCRED-addon-buy-creds.php:252
674
- #: addons/email-notices/myCRED-addon-email-notices.php:179
675
- #: addons/email-notices/myCRED-addon-email-notices.php:738
676
- #@ mycred
677
- msgid "Select"
678
- msgstr ""
679
-
680
- #: addons/buy-creds/gateways/netbilling.php:560
681
- #@ mycred
682
- msgid "Month"
683
- msgstr ""
684
-
685
- #: addons/buy-creds/gateways/netbilling.php:566
686
- #@ mycred
687
- msgid "Year"
688
- msgstr ""
689
-
690
- #: addons/buy-creds/gateways/netbilling.php:607
691
- #: addons/buy-creds/gateways/paypal-standard.php:321
692
- #: addons/buy-creds/gateways/skrill.php:338
693
- #: addons/buy-creds/gateways/zombaio.php:290
694
- #: addons/buy-creds/myCRED-addon-buy-creds.php:777
695
- #@ mycred
696
- msgid "Sandbox Mode"
697
- msgstr ""
698
-
699
- #: addons/buy-creds/gateways/netbilling.php:613
700
- #@ mycred
701
- msgid "Account ID"
702
- msgstr ""
703
-
704
- #: addons/buy-creds/gateways/netbilling.php:619
705
- #@ mycred
706
- msgid "Site Tag"
707
- msgstr ""
708
-
709
- #: addons/buy-creds/gateways/netbilling.php:625
710
- #@ mycred
711
- msgid "Dynamic IP Security Code"
712
- msgstr ""
713
-
714
- #: addons/buy-creds/gateways/netbilling.php:631
715
- #: addons/buy-creds/gateways/paypal-standard.php:341
716
- #: addons/buy-creds/gateways/skrill.php:364
717
- #@ mycred
718
- msgid "Item Name"
719
- msgstr ""
720
-
721
- #: addons/buy-creds/gateways/netbilling.php:637
722
- #: addons/buy-creds/gateways/paypal-standard.php:348
723
- #: addons/buy-creds/gateways/skrill.php:371
724
- #, php-format
725
- #@ mycred
726
- msgid "%plural% Exchange Rate"
727
- msgstr ""
728
-
729
- #: addons/buy-creds/gateways/netbilling.php:643
730
- #@ mycred
731
- msgid "Allowed Attempts"
732
- msgstr ""
733
-
734
- #: addons/buy-creds/gateways/netbilling.php:647
735
- #@ mycred
736
- msgid "Maximum number of attempts allowed for purchases."
737
- msgstr ""
738
-
739
- #: addons/buy-creds/gateways/netbilling.php:650
740
- #@ mycred
741
- msgid "Advanced"
742
- msgstr ""
743
-
744
- #: addons/buy-creds/gateways/paypal-standard.php:225
745
- #: addons/buy-creds/gateways/skrill.php:211
746
- #@ mycred
747
- msgid "Success"
748
- msgstr ""
749
-
750
- #: addons/buy-creds/gateways/paypal-standard.php:226
751
- #: addons/buy-creds/gateways/skrill.php:212
752
- #@ mycred
753
- msgid "Thank you for your purchase"
754
- msgstr ""
755
-
756
- #: addons/buy-creds/gateways/paypal-standard.php:299
757
- #: addons/buy-creds/gateways/skrill.php:266
758
- #@ mycred
759
- msgid "Return to "
760
- msgstr ""
761
-
762
- #: addons/buy-creds/gateways/paypal-standard.php:304
763
- #: addons/buy-creds/gateways/skrill.php:320
764
- #: addons/buy-creds/gateways/zombaio.php:271
765
- #@ mycred
766
- msgid "Processing payment &hellip;"
767
- msgstr ""
768
-
769
- #: addons/buy-creds/gateways/paypal-standard.php:327
770
- #: addons/buy-creds/gateways/skrill.php:344
771
- #: addons/buy-creds/myCRED-addon-buy-creds.php:768
772
- #@ mycred
773
- msgid "Currency"
774
- msgstr ""
775
-
776
- #: addons/buy-creds/gateways/paypal-standard.php:332
777
- #: addons/buy-creds/gateways/skrill.php:401
778
- #@ mycred
779
- msgid "Important!"
780
- msgstr ""
781
-
782
- #: addons/buy-creds/gateways/paypal-standard.php:332
783
- #@ mycred
784
- msgid "Make sure you select a currency that your PayPal account supports. Otherwise transactions will not be approved until you login to your PayPal account and Accept each transaction!"
785
- msgstr ""
786
-
787
- #: addons/buy-creds/gateways/paypal-standard.php:335
788
- #@ mycred
789
- msgid "Account Email"
790
- msgstr ""
791
-
792
- #: addons/buy-creds/gateways/paypal-standard.php:345
793
- #: addons/buy-creds/gateways/skrill.php:368
794
- #@ mycred
795
- msgid "Description of the item being purchased by the user."
796
- msgstr ""
797
-
798
- #: addons/buy-creds/gateways/paypal-standard.php:351
799
- #: addons/buy-creds/gateways/skrill.php:374
800
- #@ mycred
801
- msgid "Your selected currency"
802
- msgstr ""
803
-
804
- #: addons/buy-creds/gateways/paypal-standard.php:354
805
- #@ mycred
806
- msgid "IPN Address"
807
- msgstr ""
808
-
809
- #: addons/buy-creds/gateways/skrill.php:303
810
- #@ mycred
811
- msgid "Product:"
812
- msgstr ""
813
-
814
- #: addons/buy-creds/gateways/skrill.php:312
815
- #@ mycred
816
- msgid "Gift to:"
817
- msgstr ""
818
-
819
- #: addons/buy-creds/gateways/skrill.php:313
820
- #@ mycred
821
- msgid "(author)"
822
- msgstr ""
823
-
824
- #: addons/buy-creds/gateways/skrill.php:341
825
- #@ mycred
826
- msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
827
- msgstr ""
828
-
829
- #: addons/buy-creds/gateways/skrill.php:351
830
- #@ mycred
831
- msgid "Merchant Account Email"
832
- msgstr ""
833
-
834
- #: addons/buy-creds/gateways/skrill.php:357
835
- #@ mycred
836
- msgid "Secret Word"
837
- msgstr ""
838
-
839
- #: addons/buy-creds/gateways/skrill.php:361
840
- #@ mycred
841
- msgid "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
842
- msgstr ""
843
-
844
- #: addons/buy-creds/gateways/skrill.php:377
845
- #@ mycred
846
- msgid "Confirmation Email"
847
- msgstr ""
848
-
849
- #: addons/buy-creds/gateways/skrill.php:380
850
- #@ mycred
851
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
852
- msgstr ""
853
-
854
- #: addons/buy-creds/gateways/skrill.php:383
855
- #: addons/buy-creds/myCRED-addon-buy-creds.php:779
856
- #@ mycred
857
- msgid "Checkout Page"
858
- msgstr ""
859
-
860
- #: addons/buy-creds/gateways/skrill.php:386
861
- #: addons/gateway/carts/mycred-woocommerce.php:75
862
- #: addons/ranks/myCRED-addon-ranks.php:618
863
- #: addons/transfer/myCRED-addon-transfer.php:581
864
- #: includes/mycred-widgets.php:185
865
- #: includes/mycred-widgets.php:356
866
- #@ mycred
867
- msgid "Title"
868
- msgstr ""
869
-
870
- #: addons/buy-creds/gateways/skrill.php:388
871
- #@ mycred
872
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
873
- msgstr ""
874
-
875
- #: addons/buy-creds/gateways/skrill.php:391
876
- #: addons/buy-creds/gateways/zombaio.php:314
877
- #@ mycred
878
- msgid "Logo URL"
879
- msgstr ""
880
-
881
- #: addons/buy-creds/gateways/skrill.php:393
882
- #@ mycred
883
- msgid "The URL to the image you want to use on the top of the gateway. For best integration results we recommend you use logos with dimensions up to 200px in width and 50px in height."
884
- msgstr ""
885
-
886
- #: addons/buy-creds/gateways/skrill.php:396
887
- #@ mycred
888
- msgid "Confirmation Note"
889
- msgstr ""
890
-
891
- #: addons/buy-creds/gateways/skrill.php:398
892
- #@ mycred
893
- msgid "Optional text to show user once a transaction has been successfully completed. This text is shown by Skrill."
894
- msgstr ""
895
-
896
- #: addons/buy-creds/gateways/skrill.php:402
897
- #@ mycred
898
- msgid "By default all Skrill Merchant account accept payments via Bank Transfers. When a user selects this option, no %_plural% are awarded! You will need to manually award these once the bank transfer is completed."
899
- msgstr ""
900
-
901
- #: addons/buy-creds/myCRED-addon-buy-creds.php:48
902
- #: addons/buy-creds/myCRED-addon-buy-creds.php:49
903
- #: addons/buy-creds/myCRED-addon-buy-creds.php:50
904
- #: addons/buy-creds/myCRED-addon-buy-creds.php:315
905
- #@ mycred
906
- msgid "Payment Gateways"
907
- msgstr ""
908
-
909
- #: addons/buy-creds/myCRED-addon-buy-creds.php:134
910
- #: addons/buy-creds/myCRED-addon-buy-creds.php:766
911
- #@ default
912
- #@ mycred
913
- msgid "PayPal Payments Standard"
914
- msgstr ""
915
-
916
- #: addons/buy-creds/myCRED-addon-buy-creds.php:142
917
- #@ default
918
- msgid "Skrill (Moneybookers)"
919
- msgstr ""
920
-
921
- #: addons/buy-creds/myCRED-addon-buy-creds.php:168
922
- #@ mycred
923
- msgid "Please login to purchase %_plural%"
924
- msgstr ""
925
-
926
- #: addons/buy-creds/myCRED-addon-buy-creds.php:182
927
- #, php-format
928
- #@ mycred
929
- msgid "Gift purchase from %display_name%."
930
- msgstr ""
931
-
932
- #: addons/buy-creds/myCRED-addon-buy-creds.php:195
933
- #: addons/ranks/myCRED-addon-ranks.php:479
934
- #, php-format
935
- #@ mycred
936
- msgid "Minimum %plural%"
937
- msgstr ""
938
-
939
- #: addons/buy-creds/myCRED-addon-buy-creds.php:199
940
- #, php-format
941
- #@ mycred
942
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
943
- msgstr ""
944
-
945
- #: addons/buy-creds/myCRED-addon-buy-creds.php:216
946
- #@ mycred
947
- msgid "Thank You Page"
948
- msgstr ""
949
-
950
- #: addons/buy-creds/myCRED-addon-buy-creds.php:219
951
- #: addons/buy-creds/myCRED-addon-buy-creds.php:240
952
- #@ mycred
953
- msgid "Custom URL"
954
- msgstr ""
955
-
956
- #: addons/buy-creds/myCRED-addon-buy-creds.php:224
957
- #: addons/buy-creds/myCRED-addon-buy-creds.php:245
958
- #@ mycred
959
- msgid "Page"
960
- msgstr ""
961
-
962
- #: addons/buy-creds/myCRED-addon-buy-creds.php:237
963
- #@ mycred
964
- msgid "Cancellation Page"
965
- msgstr ""
966
-
967
- #: addons/buy-creds/myCRED-addon-buy-creds.php:258
968
- #@ mycred
969
- msgid "Gifting"
970
- msgstr ""
971
-
972
- #: addons/buy-creds/myCRED-addon-buy-creds.php:260
973
- #@ mycred
974
- msgid "Allow users to buy %_plural% for other users."
975
- msgstr ""
976
-
977
- #: addons/buy-creds/myCRED-addon-buy-creds.php:261
978
- #@ mycred
979
- msgid "Allow users to buy %_plural% for content authors."
980
- msgstr ""
981
-
982
- #: addons/buy-creds/myCRED-addon-buy-creds.php:209
983
- #: addons/buy-creds/myCRED-addon-buy-creds.php:264
984
- #: addons/gateway/carts/mycred-marketpress.php:298
985
- #: addons/gateway/carts/mycred-woocommerce.php:87
986
- #: modules/mycred-module-hooks.php:496
987
- #: modules/mycred-module-hooks.php:1222
988
- #: modules/mycred-module-plugins.php:681
989
- #: modules/mycred-module-plugins.php:683
990
- #: modules/mycred-module-plugins.php:692
991
- #: modules/mycred-module-plugins.php:971
992
- #: modules/mycred-module-plugins.php:1091
993
- #: modules/mycred-module-plugins.php:1104
994
- #: modules/mycred-module-plugins.php:1251
995
- #: modules/mycred-module-plugins.php:1264
996
- #@ mycred
997
- msgid "Log Template"
998
- msgstr ""
999
-
1000
- #: addons/buy-creds/myCRED-addon-buy-creds.php:266
1001
- #, php-format
1002
- #@ default
1003
- msgid "Available template tags: %singular%, %plural% and %display_name%"
1004
- msgstr ""
1005
-
1006
- #: addons/buy-creds/myCRED-addon-buy-creds.php:310
1007
- #: modules/mycred-module-general.php:42
1008
- #: modules/mycred-module-hooks.php:223
1009
- #@ mycred
1010
- msgid "Settings Updated"
1011
- msgstr ""
1012
-
1013
- #: addons/buy-creds/myCRED-addon-buy-creds.php:316
1014
- #, php-format
1015
- #@ mycred
1016
- msgid "Select the payment gateways you want to offer your users to buy %plural%."
1017
- msgstr ""
1018
-
1019
- #: addons/buy-creds/myCRED-addon-buy-creds.php:339
1020
- #: modules/mycred-module-hooks.php:241
1021
- #@ mycred
1022
- msgid "Enable"
1023
- msgstr ""
1024
-
1025
- #: addons/buy-creds/myCRED-addon-buy-creds.php:357
1026
- #@ mycred
1027
- msgid "Update Gateway Settings"
1028
- msgstr ""
1029
-
1030
- #: addons/buy-creds/myCRED-addon-buy-creds.php:421
1031
- #: addons/buy-creds/myCRED-addon-buy-creds.php:531
1032
- #@ mycred
1033
- msgid "No gateways installed."
1034
- msgstr ""
1035
-
1036
- #: addons/buy-creds/myCRED-addon-buy-creds.php:422
1037
- #: addons/buy-creds/myCRED-addon-buy-creds.php:532
1038
- #@ mycred
1039
- msgid "Gateway does not exist."
1040
- msgstr ""
1041
-
1042
- #: addons/buy-creds/myCRED-addon-buy-creds.php:458
1043
- #@ mycred
1044
- msgid "Yourself"
1045
- msgstr ""
1046
-
1047
- #: addons/buy-creds/myCRED-addon-buy-creds.php:533
1048
- #@ mycred
1049
- msgid "No active gateways found."
1050
- msgstr ""
1051
-
1052
- #: addons/buy-creds/myCRED-addon-buy-creds.php:534
1053
- #@ mycred
1054
- msgid "The selected gateway is not active."
1055
- msgstr ""
1056
-
1057
- #: addons/buy-creds/myCRED-addon-buy-creds.php:574
1058
- #@ mycred
1059
- msgid "Buy with"
1060
- msgstr ""
1061
-
1062
- #: addons/buy-creds/myCRED-addon-buy-creds.php:578
1063
- #: addons/sell-content/myCRED-addon-sell-content.php:42
1064
- #@ mycred
1065
- msgid "Buy Now"
1066
- msgstr ""
1067
-
1068
- #: addons/buy-creds/myCRED-addon-buy-creds.php:611
1069
- #@ mycred
1070
- msgid "No users found"
1071
- msgstr ""
1072
-
1073
- #: addons/buy-creds/myCRED-addon-buy-creds.php:621
1074
- #@ mycred
1075
- msgid "To"
1076
- msgstr ""
1077
-
1078
- #: addons/buy-creds/myCRED-addon-buy-creds.php:638
1079
- #@ mycred
1080
- msgid "Select Amount"
1081
- msgstr ""
1082
-
1083
- #: addons/buy-creds/myCRED-addon-buy-creds.php:660
1084
- #@ mycred
1085
- msgid "Amount"
1086
- msgstr ""
1087
-
1088
- #: addons/buy-creds/myCRED-addon-buy-creds.php:662
1089
- #@ mycred
1090
- msgid "min."
1091
- msgstr ""
1092
-
1093
- #: addons/buy-creds/myCRED-addon-buy-creds.php:670
1094
- #@ mycred
1095
- msgid "Select Gateway"
1096
- msgstr ""
1097
-
1098
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:86
1099
- #@ default
1100
- msgid "This Payment Gateway has no settings"
1101
- msgstr ""
1102
-
1103
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:235
1104
- #@ mycred
1105
- msgid "Go to "
1106
- msgstr ""
1107
-
1108
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:256
1109
- #@ mycred
1110
- msgid "Payment Gateway Logo"
1111
- msgstr ""
1112
-
1113
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:269
1114
- #@ mycred
1115
- msgid "Click here if you are not automatically redirected"
1116
- msgstr ""
1117
-
1118
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:866
1119
- #@ mycred
1120
- msgid "Outside US"
1121
- msgstr ""
1122
-
1123
- #: addons/import/myCRED-addon-import.php:33
1124
- #: addons/import/myCRED-addon-import.php:34
1125
- #: addons/import/myCRED-addon-import.php:35
1126
- #: addons/import/myCRED-addon-import.php:459
1127
- #: addons/import/myCRED-addon-import.php:735
1128
- #@ mycred
1129
- msgid "Import"
1130
- msgstr ""
1131
-
1132
- #: addons/import/myCRED-addon-import.php:84
1133
- #: addons/import/myCRED-addon-import.php:741
1134
- #@ default
1135
- #@ mycred
1136
- msgid "CSV File"
1137
- msgstr ""
1138
-
1139
- #: addons/import/myCRED-addon-import.php:85
1140
- #@ mycred
1141
- msgid "Import %_plural% from a comma-separated values (CSV) file."
1142
- msgstr ""
1143
-
1144
- #: addons/import/myCRED-addon-import.php:88
1145
- #@ default
1146
- msgid "CubePoints"
1147
- msgstr ""
1148
-
1149
- #: addons/import/myCRED-addon-import.php:89
1150
- #@ mycred
1151
- msgid "Import CubePoints"
1152
- msgstr ""
1153
-
1154
- #: addons/import/myCRED-addon-import.php:92
1155
- #: addons/import/myCRED-addon-import.php:761
1156
- #@ default
1157
- #@ mycred
1158
- msgid "Custom User Meta"
1159
- msgstr ""
1160
-
1161
- #: addons/import/myCRED-addon-import.php:93
1162
- #@ mycred
1163
- msgid "Import %_plural% from pre-existing custom user meta."
1164
- msgstr ""
1165
-
1166
- #: addons/import/myCRED-addon-import.php:210
1167
- #@ mycred
1168
- msgid "No file selected. Please select your CSV file and try again."
1169
- msgstr ""
1170
-
1171
- #: addons/import/myCRED-addon-import.php:225
1172
- #@ mycred
1173
- msgid "Failed to load file."
1174
- msgstr ""
1175
-
1176
- #: addons/import/myCRED-addon-import.php:246
1177
- #: addons/import/myCRED-addon-import.php:416
1178
- #, php-format
1179
- #@ mycred
1180
- msgid "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
1181
- msgstr ""
1182
-
1183
- #: addons/import/myCRED-addon-import.php:255
1184
- #@ mycred
1185
- msgid "No valid records found in file. Make sure you have selected the correct way to identify users in the mycred_user column!"
1186
- msgstr ""
1187
-
1188
- #: addons/import/myCRED-addon-import.php:261
1189
- #: addons/import/myCRED-addon-import.php:344
1190
- #: addons/import/myCRED-addon-import.php:431
1191
- #, php-format
1192
- #@ mycred
1193
- msgid "Import successfully completed. A total of %d users were effected and %d entires were skipped. Import completed in %.2f seconds."
1194
- msgstr ""
1195
-
1196
- #: addons/import/myCRED-addon-import.php:295
1197
- #: addons/import/myCRED-addon-import.php:580
1198
- #@ mycred
1199
- msgid "No CubePoints found."
1200
- msgstr ""
1201
-
1202
- #: addons/import/myCRED-addon-import.php:329
1203
- #, php-format
1204
- #@ mycred
1205
- msgid "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f seconds."
1206
- msgstr ""
1207
-
1208
- #: addons/import/myCRED-addon-import.php:338
1209
- #@ mycred
1210
- msgid "No valid CubePoints founds."
1211
- msgstr ""
1212
-
1213
- #: addons/import/myCRED-addon-import.php:364
1214
- #@ mycred
1215
- msgid "Missing meta key. Not sure what I should be looking for."
1216
- msgstr ""
1217
-
1218
- #: addons/import/myCRED-addon-import.php:383
1219
- #, php-format
1220
- #@ mycred
1221
- msgid "No rows found for the <strong>%s</strong> meta key."
1222
- msgstr ""
1223
-
1224
- #: addons/import/myCRED-addon-import.php:425
1225
- #@ mycred
1226
- msgid "No valid records founds."
1227
- msgstr ""
1228
-
1229
- #: addons/import/myCRED-addon-import.php:471
1230
- #@ mycred
1231
- msgid "Remember to de-activate this add-on once you are done importing!"
1232
- msgstr ""
1233
-
1234
- #: addons/import/myCRED-addon-import.php:503
1235
- #@ mycred
1236
- msgid "File"
1237
- msgstr ""
1238
-
1239
- #: addons/import/myCRED-addon-import.php:507
1240
- #@ mycred
1241
- msgid "Maximum allowed upload size is "
1242
- msgstr ""
1243
-
1244
- #: addons/import/myCRED-addon-import.php:507
1245
- #@ mycred
1246
- msgid "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. Optional columns: <code>mycred_log</code>."
1247
- msgstr ""
1248
-
1249
- #: addons/import/myCRED-addon-import.php:510
1250
- #@ mycred
1251
- msgid "Identify Users By"
1252
- msgstr ""
1253
-
1254
- #: addons/import/myCRED-addon-import.php:513
1255
- #@ mycred
1256
- msgid "ID"
1257
- msgstr ""
1258
-
1259
- #: addons/import/myCRED-addon-import.php:514
1260
- #@ mycred
1261
- msgid "Username"
1262
- msgstr ""
1263
-
1264
- #: addons/import/myCRED-addon-import.php:515
1265
- #@ mycred
1266
- msgid "Email"
1267
- msgstr ""
1268
-
1269
- #: addons/gateway/carts/mycred-marketpress.php:312
1270
- #: addons/gateway/carts/mycred-woocommerce.php:100
1271
- #: addons/import/myCRED-addon-import.php:518
1272
- #: addons/import/myCRED-addon-import.php:587
1273
- #: addons/import/myCRED-addon-import.php:651
1274
- #@ mycred
1275
- msgid "Exchange Rate"
1276
- msgstr ""
1277
-
1278
- #: addons/import/myCRED-addon-import.php:522
1279
- #@ mycred
1280
- msgid "How much is 1 imported value worth?"
1281
- msgstr ""
1282
-
1283
- #: addons/import/myCRED-addon-import.php:527
1284
- #: addons/import/myCRED-addon-import.php:595
1285
- #: addons/import/myCRED-addon-import.php:659
1286
- #@ mycred
1287
- msgid "Round"
1288
- msgstr ""
1289
-
1290
- #: addons/import/myCRED-addon-import.php:528
1291
- #@ mycred
1292
- msgid "None"
1293
- msgstr ""
1294
-
1295
- #: addons/import/myCRED-addon-import.php:529
1296
- #: addons/import/myCRED-addon-import.php:597
1297
- #: addons/import/myCRED-addon-import.php:661
1298
- #@ mycred
1299
- msgid "Round Up"
1300
- msgstr ""
1301
-
1302
- #: addons/import/myCRED-addon-import.php:530
1303
- #: addons/import/myCRED-addon-import.php:598
1304
- #: addons/import/myCRED-addon-import.php:662
1305
- #@ mycred
1306
- msgid "Round Down"
1307
- msgstr ""
1308
-
1309
- #: addons/import/myCRED-addon-import.php:535
1310
- #: addons/import/myCRED-addon-import.php:603
1311
- #: addons/import/myCRED-addon-import.php:667
1312
- #@ mycred
1313
- msgid "Precision"
1314
- msgstr ""
1315
-
1316
- #: addons/import/myCRED-addon-import.php:537
1317
- #: addons/import/myCRED-addon-import.php:605
1318
- #: addons/import/myCRED-addon-import.php:669
1319
- #@ mycred
1320
- msgid "The optional number of decimal digits to round to. Use zero to round the nearest whole number."
1321
- msgstr ""
1322
-
1323
- #: addons/import/myCRED-addon-import.php:542
1324
- #: addons/import/myCRED-addon-import.php:616
1325
- #: addons/import/myCRED-addon-import.php:674
1326
- #@ mycred
1327
- msgid "Log Entry"
1328
- msgstr ""
1329
-
1330
- #: addons/import/myCRED-addon-import.php:551
1331
- #: addons/import/myCRED-addon-import.php:625
1332
- #: addons/import/myCRED-addon-import.php:689
1333
- #@ mycred
1334
- msgid "Run Import"
1335
- msgstr ""
1336
-
1337
- #: addons/import/myCRED-addon-import.php:578
1338
- #, php-format
1339
- #@ mycred
1340
- msgid "Found %d users with CubePoints."
1341
- msgstr ""
1342
-
1343
- #: addons/import/myCRED-addon-import.php:581
1344
- #: addons/import/myCRED-addon-import.php:645
1345
- #@ mycred
1346
- msgid "Meta Key"
1347
- msgstr ""
1348
-
1349
- #: addons/import/myCRED-addon-import.php:596
1350
- #: addons/import/myCRED-addon-import.php:660
1351
- #@ mycred
1352
- msgid "Do not round"
1353
- msgstr ""
1354
-
1355
- #: addons/import/myCRED-addon-import.php:610
1356
- #: addons/import/myCRED-addon-import.php:681
1357
- #@ mycred
1358
- msgid "After Import"
1359
- msgstr ""
1360
-
1361
- #: addons/import/myCRED-addon-import.php:613
1362
- #@ mycred
1363
- msgid "Delete users CubePoints balance."
1364
- msgstr ""
1365
-
1366
- #: addons/import/myCRED-addon-import.php:684
1367
- #@ mycred
1368
- msgid "Delete the old value."
1369
- msgstr ""
1370
-
1371
- #: addons/sell-content/myCRED-addon-sell-content.php:35
1372
- #, php-format
1373
- #@ mycred
1374
- msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
1375
- msgstr ""
1376
-
1377
- #: addons/sell-content/myCRED-addon-sell-content.php:36
1378
- #, php-format
1379
- #@ mycred
1380
- msgid "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%.</p>"
1381
- msgstr ""
1382
-
1383
- #: addons/sell-content/myCRED-addon-sell-content.php:37
1384
- #, php-format
1385
- #@ mycred
1386
- msgid ""
1387
- "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
1388
- "<p><strong>Price</strong>: %price%</p>"
1389
- msgstr ""
1390
-
1391
- #: addons/sell-content/myCRED-addon-sell-content.php:47
1392
- #, php-format
1393
- #@ mycred
1394
- msgid "Purchase of %link_with_title%"
1395
- msgstr ""
1396
-
1397
- #: addons/sell-content/myCRED-addon-sell-content.php:48
1398
- #, php-format
1399
- #@ mycred
1400
- msgid "Sale of %link_with_title%"
1401
- msgstr ""
1402
-
1403
- #: addons/sell-content/myCRED-addon-sell-content.php:292
1404
- #@ default
1405
- msgid "No Payout. Just charge."
1406
- msgstr ""
1407
-
1408
- #: addons/sell-content/myCRED-addon-sell-content.php:293
1409
- #@ default
1410
- msgid "Pay Content Author."
1411
- msgstr ""
1412
-
1413
- #: addons/sell-content/myCRED-addon-sell-content.php:297
1414
- #: addons/sell-content/myCRED-addon-sell-content.php:1045
1415
- #@ mycred
1416
- msgid "Sell Content"
1417
- msgstr ""
1418
-
1419
- #: addons/sell-content/myCRED-addon-sell-content.php:299
1420
- #@ mycred
1421
- msgid "Post Types"
1422
- msgstr ""
1423
-
1424
- #: addons/sell-content/myCRED-addon-sell-content.php:303
1425
- #@ mycred
1426
- msgid "Comma separated list of post types that can be sold."
1427
- msgstr ""
1428
-
1429
- #: addons/sell-content/myCRED-addon-sell-content.php:306
1430
- #@ mycred
1431
- msgid "Payments"
1432
- msgstr ""
1433
-
1434
- #: addons/sell-content/myCRED-addon-sell-content.php:320
1435
- #@ mycred
1436
- msgid "Percentage to pay Author"
1437
- msgstr ""
1438
-
1439
- #: addons/sell-content/myCRED-addon-sell-content.php:322
1440
- #@ mycred
1441
- msgid "Percentage of the price to pay the author. Can not be zero and is ignored if authors are not paid."
1442
- msgstr ""
1443
-
1444
- #: addons/sell-content/myCRED-addon-sell-content.php:330
1445
- #: addons/sell-content/myCRED-addon-sell-content.php:1048
1446
- #@ mycred
1447
- msgid "Defaults"
1448
- msgstr ""
1449
-
1450
- #: addons/sell-content/myCRED-addon-sell-content.php:333
1451
- #: addons/sell-content/myCRED-addon-sell-content.php:530
1452
- #@ mycred
1453
- msgid "Price"
1454
- msgstr ""
1455
-
1456
- #: addons/sell-content/myCRED-addon-sell-content.php:338
1457
- #@ mycred
1458
- msgid "Allow authors to change price."
1459
- msgstr ""
1460
-
1461
- #: addons/sell-content/myCRED-addon-sell-content.php:342
1462
- #: addons/sell-content/myCRED-addon-sell-content.php:534
1463
- #@ mycred
1464
- msgid "Button Label"
1465
- msgstr ""
1466
-
1467
- #: addons/sell-content/myCRED-addon-sell-content.php:347
1468
- #@ mycred
1469
- msgid "Allow authors to change button label."
1470
- msgstr ""
1471
-
1472
- #: addons/sell-content/myCRED-addon-sell-content.php:356
1473
- #@ mycred
1474
- msgid "Sale Template for non members"
1475
- msgstr ""
1476
-
1477
- #: addons/sell-content/myCRED-addon-sell-content.php:360
1478
- #, php-format
1479
- #@ mycred
1480
- msgid "Do <strong>not</strong> use the %buy_button% in this template as a user must be logged in to buy content!"
1481
- msgstr ""
1482
-
1483
- #: addons/sell-content/myCRED-addon-sell-content.php:361
1484
- #, php-format
1485
- #@ mycred
1486
- msgid "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %price%"
1487
- msgstr ""
1488
-
1489
- #: addons/sell-content/myCRED-addon-sell-content.php:364
1490
- #@ mycred
1491
- msgid "Sale Template for members"
1492
- msgstr ""
1493
-
1494
- #: addons/sell-content/myCRED-addon-sell-content.php:368
1495
- #: addons/sell-content/myCRED-addon-sell-content.php:376
1496
- #, php-format
1497
- #@ mycred
1498
- msgid "Your template must contain the %buy_button% tag for purchases to work!"
1499
- msgstr ""
1500
-
1501
- #: addons/sell-content/myCRED-addon-sell-content.php:369
1502
- #: addons/sell-content/myCRED-addon-sell-content.php:377
1503
- #, php-format
1504
- #@ mycred
1505
- msgid "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, %link_with_title%, %buy_button%, %price%"
1506
- msgstr ""
1507
-
1508
- #: addons/sell-content/myCRED-addon-sell-content.php:372
1509
- #@ mycred
1510
- msgid "Insufficient funds template"
1511
- msgstr ""
1512
-
1513
- #: addons/sell-content/myCRED-addon-sell-content.php:380
1514
- #@ mycred
1515
- msgid "Log template for Purchases"
1516
- msgstr ""
1517
-
1518
- #: addons/sell-content/myCRED-addon-sell-content.php:384
1519
- #: addons/sell-content/myCRED-addon-sell-content.php:391
1520
- #, php-format
1521
- #@ mycred
1522
- msgid "Available template tags are: %singular%, %plural%, %post_title%, %post_url% or %link_with_title%"
1523
- msgstr ""
1524
-
1525
- #: addons/sell-content/myCRED-addon-sell-content.php:387
1526
- #@ mycred
1527
- msgid "Log template for Sales"
1528
- msgstr ""
1529
-
1530
- #: addons/sell-content/myCRED-addon-sell-content.php:495
1531
- #@ mycred
1532
- msgid "Setup add-on"
1533
- msgstr ""
1534
-
1535
- #: addons/sell-content/myCRED-addon-sell-content.php:495
1536
- #@ mycred
1537
- msgid "Lets do it"
1538
- msgstr ""
1539
-
1540
- #: addons/sell-content/myCRED-addon-sell-content.php:524
1541
- #@ mycred
1542
- msgid "Enable sale of this "
1543
- msgstr ""
1544
-
1545
- #: addons/sell-content/myCRED-addon-sell-content.php:784
1546
- #@ mycred
1547
- msgid "Thank you for your purchase!"
1548
- msgstr ""
1549
-
1550
- #: addons/transfer/myCRED-addon-transfer.php:36
1551
- #, php-format
1552
- #@ mycred
1553
- msgid "You do not have enough %plural% to send."
1554
- msgstr ""
1555
-
1556
- #: addons/transfer/myCRED-addon-transfer.php:37
1557
- #, php-format
1558
- #@ mycred
1559
- msgid "You have exceeded your %limit% transfer limit."
1560
- msgstr ""
1561
-
1562
- #: addons/transfer/myCRED-addon-transfer.php:43
1563
- #: addons/transfer/myCRED-addon-transfer.php:478
1564
- #@ mycred
1565
- msgid "Transfer"
1566
- msgstr ""
1567
-
1568
- #: addons/transfer/myCRED-addon-transfer.php:136
1569
- #@ mycred
1570
- msgid "Transaction completed."
1571
- msgstr ""
1572
-
1573
- #: addons/transfer/myCRED-addon-transfer.php:137
1574
- #@ mycred
1575
- msgid "Security token could not be verified. Please contact your site administrator!"
1576
- msgstr ""
1577
-
1578
- #: addons/transfer/myCRED-addon-transfer.php:138
1579
- #@ mycred
1580
- msgid "Communications error. Please try again later."
1581
- msgstr ""
1582
-
1583
- #: addons/transfer/myCRED-addon-transfer.php:139
1584
- #@ mycred
1585
- msgid "Recipient not found. Please try again."
1586
- msgstr ""
1587
-
1588
- #: addons/transfer/myCRED-addon-transfer.php:140
1589
- #@ mycred
1590
- msgid "Transaction declined by recipient."
1591
- msgstr ""
1592
-
1593
- #: addons/transfer/myCRED-addon-transfer.php:141
1594
- #@ mycred
1595
- msgid "Incorrect amount. Please try again."
1596
- msgstr ""
1597
-
1598
- #: addons/transfer/myCRED-addon-transfer.php:142
1599
- #@ mycred
1600
- msgid "This myCRED Add-on has not yet been setup! No transfers are allowed until this has been done!"
1601
- msgstr ""
1602
-
1603
- #: addons/transfer/myCRED-addon-transfer.php:143
1604
- #@ mycred
1605
- msgid "Insufficient funds. Please enter a lower amount."
1606
- msgstr ""
1607
-
1608
- #: addons/transfer/myCRED-addon-transfer.php:144
1609
- #@ mycred
1610
- msgid "Transfer Limit exceeded."
1611
- msgstr ""
1612
-
1613
- #: addons/transfer/myCRED-addon-transfer.php:145
1614
- #@ mycred
1615
- msgid "The request amount will exceed your transfer limit. Please try again with a lower amount!"
1616
- msgstr ""
1617
-
1618
- #: addons/transfer/myCRED-addon-transfer.php:170
1619
- #@ mycred
1620
- msgid "No limits."
1621
- msgstr ""
1622
-
1623
- #: addons/transfer/myCRED-addon-transfer.php:171
1624
- #@ mycred
1625
- msgid "Impose daily limit."
1626
- msgstr ""
1627
-
1628
- #: addons/transfer/myCRED-addon-transfer.php:172
1629
- #@ mycred
1630
- msgid "Impose weekly limit."
1631
- msgstr ""
1632
-
1633
- #: addons/transfer/myCRED-addon-transfer.php:176
1634
- #@ mycred
1635
- msgid "Transfer CREDs"
1636
- msgstr ""
1637
-
1638
- #: addons/transfer/myCRED-addon-transfer.php:178
1639
- #@ mycred
1640
- msgid "Log template for sending"
1641
- msgstr ""
1642
-
1643
- #: addons/transfer/myCRED-addon-transfer.php:185
1644
- #@ mycred
1645
- msgid "Log template for receiving"
1646
- msgstr ""
1647
-
1648
- #: addons/transfer/myCRED-addon-transfer.php:192
1649
- #: modules/mycred-module-hooks.php:989
1650
- #: modules/mycred-module-hooks.php:1229
1651
- #@ mycred
1652
- msgid "Limits"
1653
- msgstr ""
1654
-
1655
- #: addons/transfer/myCRED-addon-transfer.php:209
1656
- #@ mycred
1657
- msgid "Maximum Amount"
1658
- msgstr ""
1659
-
1660
- #: addons/transfer/myCRED-addon-transfer.php:211
1661
- #@ mycred
1662
- msgid "This amount is ignored if no limits are imposed."
1663
- msgstr ""
1664
-
1665
- #: addons/transfer/myCRED-addon-transfer.php:214
1666
- #@ mycred
1667
- msgid "Form Templates"
1668
- msgstr ""
1669
-
1670
- #: addons/transfer/myCRED-addon-transfer.php:217
1671
- #@ mycred
1672
- msgid "Not logged in Template"
1673
- msgstr ""
1674
-
1675
- #: addons/transfer/myCRED-addon-transfer.php:223
1676
- #@ mycred
1677
- msgid "Balance Template"
1678
- msgstr ""
1679
-
1680
- #: addons/transfer/myCRED-addon-transfer.php:229
1681
- #@ mycred
1682
- msgid "Limit Template"
1683
- msgstr ""
1684
-
1685
- #: addons/transfer/myCRED-addon-transfer.php:235
1686
- #@ mycred
1687
- msgid "Button Template"
1688
- msgstr ""
1689
-
1690
- #: addons/transfer/myCRED-addon-transfer.php:240
1691
- #@ mycred
1692
- msgid "Error Messages"
1693
- msgstr ""
1694
-
1695
- #: addons/transfer/myCRED-addon-transfer.php:243
1696
- #@ mycred
1697
- msgid "Balance to low to send."
1698
- msgstr ""
1699
-
1700
- #: addons/transfer/myCRED-addon-transfer.php:249
1701
- #@ mycred
1702
- msgid "Transfer Limit Reached."
1703
- msgstr ""
1704
-
1705
- #: addons/transfer/myCRED-addon-transfer.php:575
1706
- #, php-format
1707
- #@ mycred
1708
- msgid "Transfer %plural%"
1709
- msgstr ""
1710
-
1711
- #: addons/transfer/myCRED-addon-transfer.php:586
1712
- #@ mycred
1713
- msgid "Show users balance"
1714
- msgstr ""
1715
-
1716
- #: addons/transfer/myCRED-addon-transfer.php:590
1717
- #@ mycred
1718
- msgid "Show users limit"
1719
- msgstr ""
1720
-
1721
- #: addons/transfer/myCRED-addon-transfer.php:713
1722
- #@ mycred
1723
- msgid "To:"
1724
- msgstr ""
1725
-
1726
- #: addons/transfer/myCRED-addon-transfer.php:717
1727
- #@ mycred
1728
- msgid "Amount:"
1729
- msgstr ""
1730
-
1731
- #: includes/mycred-admin.php:77
1732
- #@ mycred
1733
- msgid "Excluded"
1734
- msgstr ""
1735
-
1736
- #: includes/mycred-admin.php:84
1737
- #@ mycred
1738
- msgid "History"
1739
- msgstr ""
1740
-
1741
- #: includes/mycred-admin.php:86
1742
- #@ mycred
1743
- msgid "Adjust"
1744
- msgstr ""
1745
-
1746
- #: includes/mycred-admin.php:137
1747
- #, php-format
1748
- #@ mycred
1749
- msgid "My current %singular% balance"
1750
- msgstr ""
1751
-
1752
- #: includes/mycred-admin.php:162
1753
- #@ mycred
1754
- msgid "Adjust Users Balance"
1755
- msgstr ""
1756
-
1757
- #: includes/mycred-admin.php:177
1758
- #@ mycred
1759
- msgid "Log description for adjustment"
1760
- msgstr ""
1761
-
1762
- #: includes/mycred-admin.php:169
1763
- #@ mycred
1764
- msgid "required"
1765
- msgstr ""
1766
-
1767
- #: includes/mycred-admin.php:178
1768
- #@ mycred
1769
- msgid "Update"
1770
- msgstr ""
1771
-
1772
- #: includes/mycred-admin.php:184
1773
- #@ mycred
1774
- msgid "Users Current Balance"
1775
- msgstr ""
1776
-
1777
- #: includes/mycred-install.php:50
1778
- #@ mycred
1779
- msgid "Sorry but your WordPress installation does not reach the minimum requirements for running myCRED. The following errors were given:\n"
1780
- msgstr ""
1781
-
1782
- #: includes/mycred-install.php:248
1783
- #@ mycred
1784
- msgid "CRED needs your attention."
1785
- msgstr ""
1786
-
1787
- #: includes/mycred-install.php:248
1788
- #@ mycred
1789
- msgid "Run Setup"
1790
- msgstr ""
1791
-
1792
- #: includes/mycred-install.php:260
1793
- #: includes/mycred-install.php:261
1794
- #@ mycred
1795
- msgid "myCRED Setup"
1796
- msgstr ""
1797
-
1798
- #: addons/email-notices/myCRED-addon-email-notices.php:589
1799
- #: includes/mycred-install.php:398
1800
- #: mycred.php:112
1801
- #@ mycred
1802
- msgid "Setup"
1803
- msgstr ""
1804
-
1805
- #: includes/mycred-install.php:424
1806
- #@ mycred
1807
- msgid "Begin Setup"
1808
- msgstr ""
1809
-
1810
- #: includes/mycred-install.php:482
1811
- #: includes/mycred-widgets.php:199
1812
- #@ mycred
1813
- msgid "Format"
1814
- msgstr ""
1815
-
1816
- #: includes/mycred-install.php:485
1817
- #@ mycred
1818
- msgid "Separators"
1819
- msgstr ""
1820
-
1821
- #: includes/mycred-install.php:495
1822
- #@ mycred
1823
- msgid "Decimals"
1824
- msgstr ""
1825
-
1826
- #: includes/mycred-install.php:497
1827
- #@ mycred
1828
- msgid "Use zero for no decimals."
1829
- msgstr ""
1830
-
1831
- #: includes/mycred-install.php:526
1832
- #@ default
1833
- msgid "Cancel Setup"
1834
- msgstr ""
1835
-
1836
- #: includes/mycred-install.php:526
1837
- #@ default
1838
- msgid "Cancel"
1839
- msgstr ""
1840
-
1841
- #: includes/mycred-install.php:526
1842
- #: includes/mycred-install.php:606
1843
- #@ mycred
1844
- msgid "Next"
1845
- msgstr ""
1846
-
1847
- #: includes/mycred-install.php:503
1848
- #: modules/mycred-module-general.php:61
1849
- #@ mycred
1850
- msgid "Name (Singular)"
1851
- msgstr ""
1852
-
1853
- #: includes/mycred-install.php:507
1854
- #: modules/mycred-module-general.php:66
1855
- #@ mycred
1856
- msgid "Name (Plural)"
1857
- msgstr ""
1858
-
1859
- #: includes/mycred-install.php:513
1860
- #: modules/mycred-module-general.php:77
1861
- #@ mycred
1862
- msgid "Prefix"
1863
- msgstr ""
1864
-
1865
- #: includes/mycred-install.php:521
1866
- #: modules/mycred-module-general.php:85
1867
- #@ mycred
1868
- msgid "Suffix"
1869
- msgstr ""
1870
-
1871
- #: includes/mycred-install.php:555
1872
- #: modules/mycred-module-general.php:93
1873
- #@ mycred
1874
- msgid "Security"
1875
- msgstr ""
1876
-
1877
- #: includes/mycred-install.php:558
1878
- #@ mycred
1879
- msgid "Edit Settings Capability"
1880
- msgstr ""
1881
-
1882
- #: includes/mycred-install.php:566
1883
- #: modules/mycred-module-general.php:106
1884
- #@ mycred
1885
- msgid "Excludes"
1886
- msgstr ""
1887
-
1888
- #: includes/mycred-install.php:570
1889
- #: modules/mycred-module-general.php:110
1890
- #@ mycred
1891
- msgid "Exclude those who can \"Edit Settings\"."
1892
- msgstr ""
1893
-
1894
- #: includes/mycred-install.php:577
1895
- #: modules/mycred-module-general.php:118
1896
- #@ mycred
1897
- msgid "Exclude the following user IDs:"
1898
- msgstr ""
1899
-
1900
- #: includes/mycred-install.php:581
1901
- #: modules/mycred-module-general.php:123
1902
- #@ mycred
1903
- msgid "Rankings"
1904
- msgstr ""
1905
-
1906
- #: includes/mycred-install.php:585
1907
- #: modules/mycred-module-general.php:127
1908
- #@ mycred
1909
- msgid "Update rankings each time a users balance changes."
1910
- msgstr ""
1911
-
1912
- #: includes/mycred-install.php:589
1913
- #: modules/mycred-module-general.php:131
1914
- #@ mycred
1915
- msgid "Update rankings once a day."
1916
- msgstr ""
1917
-
1918
- #: includes/mycred-install.php:593
1919
- #: modules/mycred-module-general.php:135
1920
- #@ mycred
1921
- msgid "Update rankings once a week."
1922
- msgstr ""
1923
-
1924
- #: includes/mycred-install.php:597
1925
- #: modules/mycred-module-general.php:139
1926
- #@ mycred
1927
- msgid "Update rankings on a specific date."
1928
- msgstr ""
1929
-
1930
- #: includes/mycred-install.php:601
1931
- #: modules/mycred-module-general.php:143
1932
- #: modules/mycred-module-log.php:828
1933
- #@ mycred
1934
- msgid "Date"
1935
- msgstr ""
1936
-
1937
- #: includes/mycred-network.php:149
1938
- #@ mycred
1939
- msgid "No"
1940
- msgstr ""
1941
-
1942
- #: includes/mycred-network.php:145
1943
- #@ mycred
1944
- msgid "Yes"
1945
- msgstr ""
1946
-
1947
- #: includes/mycred-install.php:625
1948
- #@ mycred
1949
- msgid "Ready"
1950
- msgstr ""
1951
-
1952
- #: includes/mycred-install.php:627
1953
- #@ mycred
1954
- msgid "Install & Run"
1955
- msgstr ""
1956
-
1957
- #: includes/mycred-widgets.php:155
1958
- #@ mycred
1959
- msgid "My Balance"
1960
- msgstr ""
1961
-
1962
- #: includes/mycred-widgets.php:166
1963
- #, php-format
1964
- #@ mycred
1965
- msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
1966
- msgstr ""
1967
-
1968
- #: includes/mycred-widgets.php:190
1969
- #@ mycred
1970
- msgid "Layout"
1971
- msgstr ""
1972
-
1973
- #: includes/mycred-widgets.php:197
1974
- #@ mycred
1975
- msgid "Include users ranking"
1976
- msgstr ""
1977
-
1978
- #: includes/mycred-widgets.php:207
1979
- #@ mycred
1980
- msgid "Include history"
1981
- msgstr ""
1982
-
1983
- #: includes/mycred-widgets.php:211
1984
- #@ mycred
1985
- msgid "Number of entires"
1986
- msgstr ""
1987
-
1988
- #: includes/mycred-widgets.php:213
1989
- #: includes/mycred-widgets.php:368
1990
- #@ mycred
1991
- msgid "Row layout"
1992
- msgstr ""
1993
-
1994
- #: includes/mycred-widgets.php:221
1995
- #@ mycred
1996
- msgid "Show message when not logged in"
1997
- msgstr ""
1998
-
1999
- #: includes/mycred-widgets.php:223
2000
- #@ mycred
2001
- msgid "Message"
2002
- msgstr ""
2003
-
2004
- #: includes/mycred-widgets.php:348
2005
- #@ mycred
2006
- msgid "Leaderboard"
2007
- msgstr ""
2008
-
2009
- #: includes/mycred-widgets.php:361
2010
- #@ mycred
2011
- msgid "Visible to non-members"
2012
- msgstr ""
2013
-
2014
- #: includes/mycred-widgets.php:364
2015
- #@ mycred
2016
- msgid "Number of users"
2017
- msgstr ""
2018
-
2019
- #: modules/mycred-module-help.php:179
2020
- #@ mycred
2021
- msgid "Users display name."
2022
- msgstr ""
2023
-
2024
- #: modules/mycred-module-help.php:180
2025
- #@ mycred
2026
- msgid "Users profile URL."
2027
- msgstr ""
2028
-
2029
- #: abstracts/mycred-abstract-hook.php:58
2030
- #@ default
2031
- msgid "This Hook does no settings"
2032
- msgstr ""
2033
-
2034
- #: abstracts/mycred-abstract-hook.php:125
2035
- #: modules/mycred-module-hooks.php:1071
2036
- #@ mycred
2037
- msgid "No limit"
2038
- msgstr ""
2039
-
2040
- #: abstracts/mycred-abstract-hook.php:126
2041
- #@ mycred
2042
- msgid "Once every 24 hours"
2043
- msgstr ""
2044
-
2045
- #: abstracts/mycred-abstract-hook.php:127
2046
- #@ mycred
2047
- msgid "Once every 12 hours"
2048
- msgstr ""
2049
-
2050
- #: abstracts/mycred-abstract-hook.php:128
2051
- #@ mycred
2052
- msgid "Once every 7 days"
2053
- msgstr ""
2054
-
2055
- #: abstracts/mycred-abstract-hook.php:129
2056
- #@ mycred
2057
- msgid "Once per day (reset at midnight)"
2058
- msgstr ""
2059
-
2060
- #: modules/mycred-module-addons.php:23
2061
- #: modules/mycred-module-addons.php:24
2062
- #: modules/mycred-module-addons.php:25
2063
- #: modules/mycred-module-addons.php:264
2064
- #@ mycred
2065
- msgid "Add-ons"
2066
- msgstr ""
2067
-
2068
- #: modules/mycred-module-addons.php:257
2069
- #@ mycred
2070
- msgid "Add-on Activated"
2071
- msgstr ""
2072
-
2073
- #: modules/mycred-module-addons.php:259
2074
- #@ mycred
2075
- msgid "Add-on Deactivated"
2076
- msgstr ""
2077
-
2078
- #: modules/mycred-module-addons.php:265
2079
- #@ mycred
2080
- msgid "Add-ons can expand your current installation with further features."
2081
- msgstr ""
2082
-
2083
- #: modules/mycred-module-addons.php:303
2084
- #@ mycred
2085
- msgid "Deactivate Add-on"
2086
- msgstr ""
2087
-
2088
- #: modules/mycred-module-addons.php:304
2089
- #@ mycred
2090
- msgid "Deactivate"
2091
- msgstr ""
2092
-
2093
- #: modules/mycred-module-addons.php:309
2094
- #@ mycred
2095
- msgid "Activate Add-on"
2096
- msgstr ""
2097
-
2098
- #: modules/mycred-module-addons.php:310
2099
- #@ mycred
2100
- msgid "Activate"
2101
- msgstr ""
2102
-
2103
- #: modules/mycred-module-addons.php:327
2104
- #@ mycred
2105
- msgid "Version"
2106
- msgstr ""
2107
-
2108
- #: modules/mycred-module-addons.php:330
2109
- #@ mycred
2110
- msgid "By"
2111
- msgstr ""
2112
-
2113
- #: modules/mycred-module-addons.php:330
2114
- #@ mycred
2115
- msgid "View Authors Website"
2116
- msgstr ""
2117
-
2118
- #: modules/mycred-module-addons.php:333
2119
- #@ mycred
2120
- msgid "View Add-ons Website"
2121
- msgstr ""
2122
-
2123
- #: modules/mycred-module-addons.php:333
2124
- #@ mycred
2125
- msgid "Visit Website"
2126
- msgstr ""
2127
-
2128
- #: addons/gateway/carts/mycred-marketpress.php:280
2129
- #: includes/mycred-network.php:139
2130
- #: modules/mycred-module-general.php:19
2131
- #: modules/mycred-module-general.php:20
2132
- #: modules/mycred-module-general.php:21
2133
- #: modules/mycred-module-general.php:47
2134
- #: modules/mycred-module-log.php:306
2135
- #: mycred.php:119
2136
- #@ mycred
2137
- msgid "Settings"
2138
- msgstr ""
2139
-
2140
- #: modules/mycred-module-general.php:56
2141
- #: modules/mycred-module-help.php:213
2142
- #@ mycred
2143
- msgid "Core Settings"
2144
- msgstr ""
2145
-
2146
- #: modules/mycred-module-general.php:58
2147
- #@ mycred
2148
- msgid "Name"
2149
- msgstr ""
2150
-
2151
- #: modules/mycred-module-general.php:63
2152
- #, php-format
2153
- #@ default
2154
- msgid "Accessible though the %singular% template tag."
2155
- msgstr ""
2156
-
2157
- #: modules/mycred-module-general.php:68
2158
- #, php-format
2159
- #@ default
2160
- msgid "Accessible though the %plural% template tag."
2161
- msgstr ""
2162
-
2163
- #: modules/mycred-module-general.php:71
2164
- #@ mycred
2165
- msgid "Tip"
2166
- msgstr ""
2167
-
2168
- #: modules/mycred-module-general.php:71
2169
- #@ mycred
2170
- msgid "Adding an underscore at the beginning of template tag for names will return them in lowercase. i.e. %_singular%"
2171
- msgstr ""
2172
-
2173
- #: includes/mycred-install.php:500
2174
- #: modules/mycred-module-general.php:74
2175
- #@ mycred
2176
- msgid "Presentation"
2177
- msgstr ""
2178
-
2179
- #: modules/mycred-module-general.php:89
2180
- #@ mycred
2181
- msgid "Separator"
2182
- msgid_plural "Separators"
2183
- msgstr[0] ""
2184
- msgstr[1] ""
2185
-
2186
- #: modules/mycred-module-general.php:96
2187
- #@ mycred
2188
- msgid "Edit Settings"
2189
- msgstr ""
2190
-
2191
- #: modules/mycred-module-general.php:98
2192
- #: modules/mycred-module-general.php:103
2193
- #@ default
2194
- msgid "Capability to check for."
2195
- msgstr ""
2196
-
2197
- #: modules/mycred-module-general.php:120
2198
- #@ default
2199
- msgid "Comma separated list of user ids to exclude. No spaces allowed!"
2200
- msgstr ""
2201
-
2202
- #: modules/mycred-module-general.php:153
2203
- #@ mycred
2204
- msgid "Update Settings"
2205
- msgstr ""
2206
-
2207
- #: modules/mycred-module-help.php:88
2208
- #: modules/mycred-module-hooks.php:28
2209
- #: modules/mycred-module-hooks.php:29
2210
- #: modules/mycred-module-hooks.php:30
2211
- #: modules/mycred-module-hooks.php:228
2212
- #@ mycred
2213
- msgid "Hooks"
2214
- msgstr ""
2215
-
2216
- #: modules/mycred-module-hooks.php:89
2217
- #, php-format
2218
- #@ mycred
2219
- msgid "%plural% for registrations"
2220
- msgstr ""
2221
-
2222
- #: modules/mycred-module-hooks.php:90
2223
- #@ mycred
2224
- msgid "Award %_plural% for users joining your website."
2225
- msgstr ""
2226
-
2227
- #: modules/mycred-module-hooks.php:96
2228
- #, php-format
2229
- #@ mycred
2230
- msgid "%plural% for logins"
2231
- msgstr ""
2232
-
2233
- #: modules/mycred-module-hooks.php:97
2234
- #@ mycred
2235
- msgid "Award %_plural% for logging in to your website. You can also set an optional limit."
2236
- msgstr ""
2237
-
2238
- #: modules/mycred-module-hooks.php:103
2239
- #, php-format
2240
- #@ mycred
2241
- msgid "%plural% for publishing content"
2242
- msgstr ""
2243
-
2244
- #: modules/mycred-module-hooks.php:104
2245
- #@ mycred
2246
- msgid "Award %_plural% for publishing content on your website. If your custom post type is not shown bellow, make sure it is set to \"Public\"."
2247
- msgstr ""
2248
-
2249
- #: modules/mycred-module-hooks.php:110
2250
- #, php-format
2251
- #@ mycred
2252
- msgid "%plural% for comments"
2253
- msgstr ""
2254
-
2255
- #: modules/mycred-module-hooks.php:111
2256
- #@ mycred
2257
- msgid "Award %_plural% for making comments."
2258
- msgstr ""
2259
-
2260
- #: modules/mycred-module-hooks.php:134
2261
- #@ mycred
2262
- msgid "Invite Anyone Plugin"
2263
- msgstr ""
2264
-
2265
- #: modules/mycred-module-hooks.php:135
2266
- #@ mycred
2267
- msgid "Awards %_plural% for sending invitations and/or %_plural% if the invite is accepted."
2268
- msgstr ""
2269
-
2270
- #: modules/mycred-module-hooks.php:143
2271
- #@ mycred
2272
- msgid "Contact Form 7 Form Submissions"
2273
- msgstr ""
2274
-
2275
- #: modules/mycred-module-hooks.php:144
2276
- #@ mycred
2277
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
2278
- msgstr ""
2279
-
2280
- #: modules/mycred-module-hooks.php:229
2281
- #@ mycred
2282
- msgid "Hooks are instances where %_plural% are awarded or deducted from a user, depending on their actions around your website."
2283
- msgstr ""
2284
-
2285
- #: modules/mycred-module-hooks.php:254
2286
- #@ mycred
2287
- msgid "Update Changes"
2288
- msgstr ""
2289
-
2290
- #: modules/mycred-module-hooks.php:503
2291
- #: modules/mycred-module-plugins.php:447
2292
- #: modules/mycred-module-plugins.php:468
2293
- #@ mycred
2294
- msgid "Limit"
2295
- msgstr ""
2296
-
2297
- #: modules/mycred-module-hooks.php:596
2298
- #, php-format
2299
- #@ mycred
2300
- msgid "%plural% for Posts"
2301
- msgstr ""
2302
-
2303
- #: modules/mycred-module-hooks.php:609
2304
- #, php-format
2305
- #@ mycred
2306
- msgid "%plural% for Pages"
2307
- msgstr ""
2308
-
2309
- #: modules/mycred-module-hooks.php:644
2310
- #, php-format
2311
- #@ mycred
2312
- msgid "%plural% for %s"
2313
- msgstr ""
2314
-
2315
- #: modules/mycred-module-plugins.php:435
2316
- #, php-format
2317
- #@ mycred
2318
- msgid "%plural% for Sending An Invite"
2319
- msgstr ""
2320
-
2321
- #: modules/mycred-module-plugins.php:451
2322
- #@ mycred
2323
- msgid "Maximum number of invites that grants %_plural%. User zero for unlimited."
2324
- msgstr ""
2325
-
2326
- #: modules/mycred-module-plugins.php:455
2327
- #, php-format
2328
- #@ mycred
2329
- msgid "%plural% for Accepting An Invite"
2330
- msgstr ""
2331
-
2332
- #: modules/mycred-module-plugins.php:459
2333
- #, php-format
2334
- #@ mycred
2335
- msgid "%plural% for each invited user that accepts an invitation."
2336
- msgstr ""
2337
-
2338
- #: modules/mycred-module-plugins.php:472
2339
- #@ mycred
2340
- msgid "Maximum number of accepted invitations that grants %_plural%. User zero for unlimited."
2341
- msgstr ""
2342
-
2343
- #: modules/mycred-module-plugins.php:565
2344
- #@ mycred
2345
- msgid "No forms found."
2346
- msgstr ""
2347
-
2348
- #: modules/mycred-module-log.php:21
2349
- #: modules/mycred-module-log.php:22
2350
- #@ mycred
2351
- msgid "Log"
2352
- msgstr ""
2353
-
2354
- #: modules/mycred-module-log.php:23
2355
- #@ mycred
2356
- msgid "Activity Log"
2357
- msgstr ""
2358
-
2359
- #: modules/mycred-module-log.php:88
2360
- #@ mycred
2361
- msgid "Entries"
2362
- msgstr ""
2363
-
2364
- #: modules/mycred-module-log.php:170
2365
- #@ mycred
2366
- msgid "Show all references"
2367
- msgstr ""
2368
-
2369
- #: modules/mycred-module-log.php:184
2370
- #@ mycred
2371
- msgid "Show all users"
2372
- msgstr ""
2373
-
2374
- #: modules/mycred-module-log.php:195
2375
- #@ mycred
2376
- msgid "Filter"
2377
- msgstr ""
2378
-
2379
- #: modules/mycred-module-log.php:264
2380
- #: modules/mycred-module-log.php:266
2381
- #@ mycred
2382
- msgid "Search Log"
2383
- msgstr ""
2384
-
2385
- #: modules/mycred-module-log.php:293
2386
- #@ mycred
2387
- msgid "entry"
2388
- msgid_plural "entries"
2389
- msgstr[0] ""
2390
- msgstr[1] ""
2391
-
2392
- #: modules/mycred-module-log.php:312
2393
- #@ mycred
2394
- msgid "Search results for"
2395
- msgstr ""
2396
-
2397
- #: addons/email-notices/myCRED-addon-email-notices.php:636
2398
- #: addons/email-notices/myCRED-addon-email-notices.php:763
2399
- #: modules/mycred-module-log.php:827
2400
- #@ mycred
2401
- msgid "User"
2402
- msgstr ""
2403
-
2404
- #: modules/mycred-module-log.php:830
2405
- #@ mycred
2406
- msgid "Entry"
2407
- msgstr ""
2408
-
2409
- #: modules/mycred-module-log.php:969
2410
- #@ mycred
2411
- msgid "No log entries found"
2412
- msgstr ""
2413
-
2414
- #: abstracts/mycred-abstract-module.php:42
2415
- #@ mycred
2416
- msgid "myCRED_Module() Error. A Module ID is required!"
2417
- msgstr ""
2418
-
2419
- #: abstracts/mycred-abstract-module.php:291
2420
- #: abstracts/mycred-abstract-module.php:299
2421
- #@ mycred
2422
- msgid "Surprise"
2423
- msgstr ""
2424
-
2425
- #: abstracts/mycred-abstract-module.php:347
2426
- #@ mycred
2427
- msgid "click to open"
2428
- msgstr ""
2429
-
2430
- #: abstracts/mycred-abstract-module.php:348
2431
- #@ mycred
2432
- msgid "click to close"
2433
- msgstr ""
2434
-
2435
- #: mycred.php:397
2436
- #@ mycred
2437
- msgid "My Balance: "
2438
- msgstr ""
2439
-
2440
- #: addons/gateway/carts/mycred-marketpress.php:179
2441
- #: addons/gateway/carts/mycred-woocommerce.php:34
2442
- #: includes/mycred-network.php:53
2443
- #: includes/mycred-network.php:54
2444
- #: modules/mycred-module-plugins.php:647
2445
- #@ mycred
2446
- msgid "myCRED"
2447
- msgstr ""
2448
-
2449
- #: addons/buddypress/hooks/bp-groups.php:423
2450
- #@ mycred
2451
- msgid "If you use a negative value and the user does not have enough %_plural% the \"Create Group\" button will be disabled."
2452
- msgstr ""
2453
-
2454
- #: addons/buddypress/hooks/bp-groups.php:508
2455
- #@ mycred
2456
- msgid "If you use a negative value and the user does not have enough %_plural% the \"Join Group\" button will be disabled."
2457
- msgstr ""
2458
-
2459
- #: addons/buy-creds/gateways/netbilling.php:654
2460
- #@ mycred
2461
- msgid "Disable AVS (Address Verification System) for credit card transactions."
2462
- msgstr ""
2463
-
2464
- #: addons/buy-creds/gateways/netbilling.php:658
2465
- #@ mycred
2466
- msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
2467
- msgstr ""
2468
-
2469
- #: addons/buy-creds/gateways/netbilling.php:662
2470
- #@ mycred
2471
- msgid "Disable all fraud protection other than AVS/CVV2. (This implies disable_negative_db)"
2472
- msgstr ""
2473
-
2474
- #: addons/buy-creds/gateways/netbilling.php:666
2475
- #@ mycred
2476
- msgid "Disable only the negative database component of the fraud protection system."
2477
- msgstr ""
2478
-
2479
- #: addons/buy-creds/gateways/netbilling.php:670
2480
- #@ mycred
2481
- msgid "Disable automatic sending of both merchant and customer email receipts."
2482
- msgstr ""
2483
-
2484
- #: addons/buy-creds/gateways/netbilling.php:674
2485
- #@ mycred
2486
- msgid "Disable immediate rejection of expired cards."
2487
- msgstr ""
2488
-
2489
- #: addons/buy-creds/gateways/paypal-standard.php:358
2490
- #: addons/buy-creds/myCRED-addon-buy-creds.php:771
2491
- #@ mycred
2492
- msgid "For this gateway to work, you must login to your PayPal account and under \"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure the \"Notification URL\" is set to the above address and that you have selected \"Receive IPN messages (Enabled)\"."
2493
- msgstr ""
2494
-
2495
- #: addons/buy-creds/myCRED-addon-buy-creds.php:193
2496
- #@ mycred
2497
- msgid "buyCRED"
2498
- msgstr ""
2499
-
2500
- #: addons/buy-creds/myCRED-addon-buy-creds.php:202
2501
- #@ mycred
2502
- msgid "Login Template"
2503
- msgstr ""
2504
-
2505
- #: addons/buy-creds/myCRED-addon-buy-creds.php:206
2506
- #@ mycred
2507
- msgid "Content to show when a user is not logged in."
2508
- msgstr ""
2509
-
2510
- #: addons/transfer/myCRED-addon-transfer.php:219
2511
- #@ mycred
2512
- msgid "Text to show when users are not logged in. Leave empty to hide. No HTML elements allowed!"
2513
- msgstr ""
2514
-
2515
- #: addons/transfer/myCRED-addon-transfer.php:225
2516
- #@ mycred
2517
- msgid "Template to use when displaying the users balance (if included). No HTML elements allowed!"
2518
- msgstr ""
2519
-
2520
- #: addons/transfer/myCRED-addon-transfer.php:231
2521
- #@ mycred
2522
- msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
2523
- msgstr ""
2524
-
2525
- #: addons/transfer/myCRED-addon-transfer.php:237
2526
- #@ mycred
2527
- msgid "Send Transfer button template. No HTML elements allowed!"
2528
- msgstr ""
2529
-
2530
- #: addons/transfer/myCRED-addon-transfer.php:245
2531
- #@ mycred
2532
- msgid "Text to show when a users balance is to low for transfers. Leave empty to hide. No HTML elements allowed!"
2533
- msgstr ""
2534
-
2535
- #: addons/transfer/myCRED-addon-transfer.php:251
2536
- #@ mycred
2537
- msgid "Text to show when a user has reached their transfer limit (if used). Leave empty to hide. No HTML elements allowed!"
2538
- msgstr ""
2539
-
2540
- #: includes/mycred-install.php:400
2541
- #@ mycred
2542
- msgid "Step"
2543
- msgstr ""
2544
-
2545
- #: includes/mycred-install.php:423
2546
- #@ mycred
2547
- msgid "Click \"Begin Setup\" to install myCRED. You will be able to select your points format, layout and security settings."
2548
- msgstr ""
2549
-
2550
- #: includes/mycred-install.php:481
2551
- #@ mycred
2552
- msgid "Select the format you want to use for your points."
2553
- msgstr ""
2554
-
2555
- #: includes/mycred-network.php:62
2556
- #: includes/mycred-network.php:63
2557
- #@ mycred
2558
- msgid "Network Settings"
2559
- msgstr ""
2560
-
2561
- #: includes/mycred-network.php:128
2562
- #@ mycred
2563
- msgid "Network"
2564
- msgstr ""
2565
-
2566
- #: includes/mycred-network.php:133
2567
- #@ mycred
2568
- msgid "Network Settings Updated"
2569
- msgstr ""
2570
-
2571
- #: includes/mycred-network.php:141
2572
- #@ mycred
2573
- msgid "Master Template"
2574
- msgstr ""
2575
-
2576
- #: includes/mycred-network.php:155
2577
- #@ mycred
2578
- msgid "Site Block"
2579
- msgstr ""
2580
-
2581
- #: includes/mycred-network.php:168
2582
- #@ mycred
2583
- msgid "Save Network Settings"
2584
- msgstr ""
2585
-
2586
- #: modules/mycred-module-help.php:106
2587
- #@ mycred
2588
- msgid "Template Tags"
2589
- msgstr ""
2590
-
2591
- #: mycred.php:132
2592
- #@ mycred
2593
- msgid "myCRED is blocked for this site. Please contact your network administrator for further details."
2594
- msgstr ""
2595
-
2596
- #: addons/buddypress/hooks/bp-galleries.php:81
2597
- #: addons/buddypress/hooks/bp-groups.php:435
2598
- #: addons/buddypress/hooks/bp-groups.php:448
2599
- #: addons/buddypress/hooks/bp-groups.php:461
2600
- #: addons/buddypress/hooks/bp-groups.php:474
2601
- #: addons/buddypress/hooks/bp-groups.php:487
2602
- #: addons/buddypress/hooks/bp-groups.php:500
2603
- #: addons/buddypress/hooks/bp-groups.php:514
2604
- #: addons/buddypress/hooks/bp-groups.php:527
2605
- #: addons/buddypress/hooks/bp-groups.php:540
2606
- #: addons/buddypress/hooks/bp-groups.php:553
2607
- #: addons/buddypress/hooks/bp-links.php:175
2608
- #: addons/buddypress/hooks/bp-links.php:188
2609
- #: addons/buddypress/hooks/bp-links.php:201
2610
- #: addons/buddypress/hooks/bp-links.php:214
2611
- #: addons/buddypress/hooks/bp-profile.php:300
2612
- #: addons/buddypress/hooks/bp-profile.php:313
2613
- #: addons/buddypress/hooks/bp-profile.php:352
2614
- #: addons/buddypress/hooks/bp-profile.php:365
2615
- #: addons/buddypress/hooks/bp-profile.php:378
2616
- #: addons/buddypress/hooks/bp-profile.php:391
2617
- #: modules/mycred-module-hooks.php:500
2618
- #: modules/mycred-module-plugins.php:444
2619
- #: modules/mycred-module-plugins.php:465
2620
- #: modules/mycred-module-subscriptions.php:488
2621
- #: modules/mycred-module-subscriptions.php:501
2622
- #@ mycred
2623
- msgid "Available template tags: General"
2624
- msgstr ""
2625
-
2626
- #: modules/mycred-module-hooks.php:606
2627
- #: modules/mycred-module-hooks.php:619
2628
- #: modules/mycred-module-hooks.php:654
2629
- #: modules/mycred-module-plugins.php:246
2630
- #: modules/mycred-module-plugins.php:259
2631
- #: modules/mycred-module-plugins.php:277
2632
- #: modules/mycred-module-plugins.php:290
2633
- #: modules/mycred-module-plugins.php:595
2634
- #: modules/mycred-module-plugins.php:839
2635
- #: modules/mycred-module-plugins.php:849
2636
- #@ mycred
2637
- msgid "Available template tags: General, Post"
2638
- msgstr ""
2639
-
2640
- #: addons/buddypress/hooks/bp-profile.php:326
2641
- #: addons/buddypress/hooks/bp-profile.php:339
2642
- #: addons/transfer/myCRED-addon-transfer.php:182
2643
- #: addons/transfer/myCRED-addon-transfer.php:189
2644
- #: modules/mycred-module-hooks.php:368
2645
- #@ mycred
2646
- msgid "Available template tags: General, User"
2647
- msgstr ""
2648
-
2649
- #: addons/buddypress/myCRED-addon-buddypress.php:376
2650
- #, php-format
2651
- #@ mycred
2652
- msgid "Available template tags are: %creds%, %number%, %rank%"
2653
- msgstr ""
2654
-
2655
- #: addons/gateway/carts/mycred-woocommerce.php:35
2656
- #@ mycred
2657
- msgid "Let users pay using their myCRED balance."
2658
- msgstr ""
2659
-
2660
- #: addons/gateway/carts/mycred-woocommerce.php:68
2661
- #@ mycred
2662
- msgid "Enable/Disable"
2663
- msgstr ""
2664
-
2665
- #: addons/gateway/carts/mycred-woocommerce.php:70
2666
- #@ mycred
2667
- msgid "Enable myCRED Payment"
2668
- msgstr ""
2669
-
2670
- #: addons/gateway/carts/mycred-woocommerce.php:72
2671
- #@ mycred
2672
- msgid "Users who are not logged in or excluded from using myCRED will not have access to this gateway!"
2673
- msgstr ""
2674
-
2675
- #: addons/gateway/carts/mycred-woocommerce.php:77
2676
- #@ mycred
2677
- msgid "Title to show for this payment option."
2678
- msgstr ""
2679
-
2680
- #: addons/gateway/carts/mycred-woocommerce.php:78
2681
- #@ mycred
2682
- msgid "Pay with myCRED"
2683
- msgstr ""
2684
-
2685
- #: addons/gateway/carts/mycred-woocommerce.php:82
2686
- #@ mycred
2687
- msgid "Customer Message"
2688
- msgstr ""
2689
-
2690
- #: addons/gateway/carts/mycred-woocommerce.php:84
2691
- #@ mycred
2692
- msgid "Deduct the amount from your %_plural% balance."
2693
- msgstr ""
2694
-
2695
- #: addons/gateway/carts/mycred-marketpress.php:300
2696
- #: addons/gateway/carts/mycred-woocommerce.php:89
2697
- #, php-format
2698
- #@ mycred
2699
- msgid "Log entry template for successful payments. Available template tags: %order_id%, %order_link%"
2700
- msgstr ""
2701
-
2702
- #: addons/gateway/carts/mycred-woocommerce.php:90
2703
- #, php-format
2704
- #@ mycred
2705
- msgid "Payment for Order: #%order_id%"
2706
- msgstr ""
2707
-
2708
- #: addons/gateway/carts/mycred-marketpress.php:307
2709
- #: addons/gateway/carts/mycred-woocommerce.php:95
2710
- #, php-format
2711
- #@ mycred
2712
- msgid "How much is 1 %_singular% worth in %currency%?"
2713
- msgstr ""
2714
-
2715
- #: addons/gateway/carts/mycred-woocommerce.php:107
2716
- #@ mycred
2717
- msgid "Show Total"
2718
- msgstr ""
2719
-
2720
- #: addons/gateway/carts/mycred-woocommerce.php:109
2721
- #@ mycred
2722
- msgid "Show the final price in %_plural% ."
2723
- msgstr ""
2724
-
2725
- #: addons/gateway/carts/mycred-woocommerce.php:111
2726
- #@ mycred
2727
- msgid "Do not show"
2728
- msgstr ""
2729
-
2730
- #: addons/gateway/carts/mycred-woocommerce.php:112
2731
- #@ mycred
2732
- msgid "Show in Cart"
2733
- msgstr ""
2734
-
2735
- #: addons/gateway/carts/mycred-woocommerce.php:113
2736
- #@ mycred
2737
- msgid "Show on Checkout Page"
2738
- msgstr ""
2739
-
2740
- #: addons/gateway/carts/mycred-woocommerce.php:114
2741
- #@ mycred
2742
- msgid "Show in Cart and on Checkout Page"
2743
- msgstr ""
2744
-
2745
- #: addons/gateway/carts/mycred-woocommerce.php:119
2746
- #@ mycred
2747
- msgid "Label"
2748
- msgstr ""
2749
-
2750
- #: addons/gateway/carts/mycred-woocommerce.php:121
2751
- #@ mycred
2752
- msgid "Order Total in %_plural%"
2753
- msgstr ""
2754
-
2755
- #: addons/gateway/carts/mycred-woocommerce.php:148
2756
- #@ mycred
2757
- msgid "myCRED Payment"
2758
- msgstr ""
2759
-
2760
- #: addons/gateway/carts/mycred-woocommerce.php:149
2761
- #@ mycred
2762
- msgid "Allows users to pay using their myCRED %_singular% balance. Please note that users with insufficient funds and users who are not logged in will not see this payment gateway on the checkout page."
2763
- msgstr ""
2764
-
2765
- #: addons/gateway/carts/mycred-woocommerce.php:170
2766
- #@ mycred
2767
- msgid "You must be logged in to pay with %_plural%"
2768
- msgstr ""
2769
-
2770
- #: addons/gateway/carts/mycred-woocommerce.php:176
2771
- #@ mycred
2772
- msgid "You can not use this gateway. Please try a different payment option."
2773
- msgstr ""
2774
-
2775
- #: addons/gateway/carts/mycred-woocommerce.php:188
2776
- #@ mycred
2777
- msgid "Insufficient funds. Please try a different payment option."
2778
- msgstr ""
2779
-
2780
- #: addons/gateway/carts/mycred-woocommerce.php:209
2781
- #@ mycred
2782
- msgid "Your account has successfully been charged."
2783
- msgstr ""
2784
-
2785
- #: addons/gateway/carts/mycred-woocommerce.php:399
2786
- #@ mycred
2787
- msgid "Your current balance"
2788
- msgstr ""
2789
-
2790
- #: modules/mycred-module-hooks.php:962
2791
- #: modules/mycred-module-hooks.php:974
2792
- #: modules/mycred-module-hooks.php:986
2793
- #@ mycred
2794
- msgid "Available template tags: General, Comment"
2795
- msgstr ""
2796
-
2797
- #: modules/mycred-module-hooks.php:953
2798
- #@ mycred
2799
- msgid "Approved Comment"
2800
- msgstr ""
2801
-
2802
- #: modules/mycred-module-hooks.php:965
2803
- #@ mycred
2804
- msgid "Comment Marked SPAM"
2805
- msgstr ""
2806
-
2807
- #: modules/mycred-module-hooks.php:977
2808
- #@ mycred
2809
- msgid "Trashed / Unapproved Comments"
2810
- msgstr ""
2811
-
2812
- #: addons/buy-creds/myCRED-addon-buy-creds.php:752
2813
- #@ mycred
2814
- msgid "This add-on lets your users buy %_plural% using a payment gateway."
2815
- msgstr ""
2816
-
2817
- #: addons/buy-creds/myCRED-addon-buy-creds.php:753
2818
- #@ mycred
2819
- msgid "Supported Gateways"
2820
- msgstr ""
2821
-
2822
- #: addons/buy-creds/myCRED-addon-buy-creds.php:755
2823
- #: addons/sell-content/myCRED-addon-sell-content.php:1050
2824
- #: addons/transfer/myCRED-addon-transfer.php:483
2825
- #@ mycred
2826
- msgid "Usage"
2827
- msgstr ""
2828
-
2829
- #: addons/buy-creds/myCRED-addon-buy-creds.php:756
2830
- #@ mycred
2831
- msgid "Purchases can be made using one of the following shortcodes:"
2832
- msgstr ""
2833
-
2834
- #: addons/buy-creds/myCRED-addon-buy-creds.php:758
2835
- #@ mycred
2836
- msgid "When you want to sell a pre-set amount, sell to a specific user or use a specific gateway.<br />For more information on how to use the shortcode, please visit the"
2837
- msgstr ""
2838
-
2839
- #: addons/buy-creds/myCRED-addon-buy-creds.php:759
2840
- #@ mycred
2841
- msgid "When you want to give your users the option to select an amount, gateway or recipient.<br />For more information on how to use the shortcode, please visit the"
2842
- msgstr ""
2843
-
2844
- #: addons/buy-creds/myCRED-addon-buy-creds.php:769
2845
- #@ mycred
2846
- msgid "Make sure you select a currency that your PayPal account supports. Otherwise transactions will not be approved until you login to your PayPal account and Accept each transaction! Purchases made in a currency that is not supported will not be applied to the buyer until you have resolved the issue."
2847
- msgstr ""
2848
-
2849
- #: addons/buy-creds/myCRED-addon-buy-creds.php:770
2850
- #@ mycred
2851
- msgid "Instant Payment Notifications"
2852
- msgstr ""
2853
-
2854
- #: addons/buy-creds/myCRED-addon-buy-creds.php:775
2855
- #@ mycred
2856
- msgid "Skrill"
2857
- msgstr ""
2858
-
2859
- #: addons/buy-creds/myCRED-addon-buy-creds.php:778
2860
- #@ mycred
2861
- msgid "Transactions made while Sandbox mode is active are real transactions! Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
2862
- msgstr ""
2863
-
2864
- #: addons/buy-creds/myCRED-addon-buy-creds.php:780
2865
- #@ mycred
2866
- msgid "By default all Skrill Merchant account accept payments via Bank Transfers. When a user selects this option, no points are awarded! You will need to manually award these once the bank transfer is completed."
2867
- msgstr ""
2868
-
2869
- #: addons/buy-creds/gateways/skrill.php:403
2870
- #: addons/buy-creds/myCRED-addon-buy-creds.php:781
2871
- #@ mycred
2872
- msgid "By default purchases made using Skrill will result in users having to signup for a Skrill account (if they do not have one already). You can contact Skrill Merchant Services and request to disable this feature."
2873
- msgstr ""
2874
-
2875
- #: addons/import/myCRED-addon-import.php:546
2876
- #: addons/import/myCRED-addon-import.php:620
2877
- #: addons/import/myCRED-addon-import.php:678
2878
- #@ mycred
2879
- msgid "See the help tab for available template tags. Leave blank to disable."
2880
- msgstr ""
2881
-
2882
- #: addons/import/myCRED-addon-import.php:737
2883
- #@ mycred
2884
- msgid "This add-on lets you import %_plural% either though a CSV-file or from your database. Remember that the import can take time depending on your file size or the number of users being imported."
2885
- msgstr ""
2886
-
2887
- #: addons/import/myCRED-addon-import.php:743
2888
- #@ mycred
2889
- msgid "CSV Import"
2890
- msgstr ""
2891
-
2892
- #: addons/import/myCRED-addon-import.php:744
2893
- #@ mycred
2894
- msgid "Imports using a comma-separated values file requires the following columns:"
2895
- msgstr ""
2896
-
2897
- #: addons/import/myCRED-addon-import.php:745
2898
- #@ mycred
2899
- msgid "Column identifing the user. All rows must identify the user the same way, either using an ID, Username (user_login) or email. Users that can not be found will be ignored."
2900
- msgstr ""
2901
-
2902
- #: addons/import/myCRED-addon-import.php:746
2903
- #@ mycred
2904
- msgid "Column with the amount to be imported. If set, an exchange rate is applied to this value before import."
2905
- msgstr ""
2906
-
2907
- #: addons/import/myCRED-addon-import.php:747
2908
- #@ mycred
2909
- msgid "Optionally you can also use the <code>mycred_log</code> column to pre-define the log entry for each import."
2910
- msgstr ""
2911
-
2912
- #: addons/import/myCRED-addon-import.php:751
2913
- #@ mycred
2914
- msgid "Cubepoints"
2915
- msgstr ""
2916
-
2917
- #: addons/import/myCRED-addon-import.php:753
2918
- #@ mycred
2919
- msgid "Cubepoints Import"
2920
- msgstr ""
2921
-
2922
- #: addons/import/myCRED-addon-import.php:754
2923
- #@ mycred
2924
- msgid "When this page loads, the importer will automatically check if you have been using Cubepoints. If you have, you can import these with the option to delete the original Cubepoints once completed to help keep your database clean."
2925
- msgstr ""
2926
-
2927
- #: addons/import/myCRED-addon-import.php:755
2928
- #: addons/import/myCRED-addon-import.php:765
2929
- #@ mycred
2930
- msgid "Before a value is imported, you can apply an exchange rate. To import without changing the value, use 1 as the exchange rate."
2931
- msgstr ""
2932
-
2933
- #: addons/import/myCRED-addon-import.php:756
2934
- #: addons/import/myCRED-addon-import.php:766
2935
- #@ mycred
2936
- msgid "You can select to add a log entry for each import or leave the template empty to skip."
2937
- msgstr ""
2938
-
2939
- #: addons/import/myCRED-addon-import.php:757
2940
- #@ mycred
2941
- msgid "The Cubepoints importer will automatically disable itself if no Cubepoints installation exists."
2942
- msgstr ""
2943
-
2944
- #: addons/import/myCRED-addon-import.php:763
2945
- #@ mycred
2946
- msgid "Custom User Meta Import"
2947
- msgstr ""
2948
-
2949
- #: addons/import/myCRED-addon-import.php:764
2950
- #@ mycred
2951
- msgid "You can import any type of points that have previously been saved in your database. All you need is the meta key under which it has been saved."
2952
- msgstr ""
2953
-
2954
- #: addons/import/myCRED-addon-import.php:767
2955
- #@ mycred
2956
- msgid "Please note that the meta key is case sensitive and can not contain whitespaces!"
2957
- msgstr ""
2958
-
2959
- #: addons/sell-content/myCRED-addon-sell-content.php:1047
2960
- #@ mycred
2961
- msgid "This add-on lets you sell either entire contents or parts of it. You can select if you want to just charge users or share a percentage of the sale with the post author."
2962
- msgstr ""
2963
-
2964
- #: addons/sell-content/myCRED-addon-sell-content.php:1049
2965
- #@ mycred
2966
- msgid "The default price and button label is applied to all content that is set for sale. You can select if you want to enforce these settings or let the content authors set their own."
2967
- msgstr ""
2968
-
2969
- #: addons/sell-content/myCRED-addon-sell-content.php:1051
2970
- #@ mycred
2971
- msgid "You can either sell entire posts via the Sell Content Meta Box or by using the <code>mycred_sell_this</code> shortcode.<br />For more information on how to use the shortcode, please visit the"
2972
- msgstr ""
2973
-
2974
- #: addons/transfer/myCRED-addon-transfer.php:480
2975
- #@ mycred
2976
- msgid "This add-on lets your users transfer %_plural% to each other. Members who are set to be excluded can neither send or receive %_plural%."
2977
- msgstr ""
2978
-
2979
- #: addons/transfer/myCRED-addon-transfer.php:481
2980
- #@ mycred
2981
- msgid "Transfer Limit"
2982
- msgstr ""
2983
-
2984
- #: addons/transfer/myCRED-addon-transfer.php:482
2985
- #@ mycred
2986
- msgid "You can impose a daily-, weekly- or monthly transfer limit for each user. Note, that this transfer limit is imposed on everyone who are not excluded from using myCRED."
2987
- msgstr ""
2988
-
2989
- #: addons/transfer/myCRED-addon-transfer.php:484
2990
- #@ mycred
2991
- msgid "Transfers can be made by either using the <code>mycred_transfer</code> shortcode or via the myCRED Transfer Widget.<br />For more information on how to use the shortcode, please visit the"
2992
- msgstr ""
2993
-
2994
- #: includes/mycred-admin.php:160
2995
- #@ mycred
2996
- msgid "Adjust Your Balance"
2997
- msgstr ""
2998
-
2999
- #: includes/mycred-install.php:562
3000
- #, php-format
3001
- #@ mycred
3002
- msgid "Edit Users %plural% Capability"
3003
- msgstr ""
3004
-
3005
- #: includes/mycred-install.php:574
3006
- #: modules/mycred-module-general.php:114
3007
- #, php-format
3008
- #@ mycred
3009
- msgid "Exclude those who can \"Edit Users %plural%\"."
3010
- msgstr ""
3011
-
3012
- #: includes/mycred-install.php:626
3013
- #@ mycred
3014
- msgid "Almost done! Click the button below to finish this setup."
3015
- msgstr ""
3016
-
3017
- #: includes/mycred-widgets.php:192
3018
- #: includes/mycred-widgets.php:215
3019
- #: includes/mycred-widgets.php:225
3020
- #: includes/mycred-widgets.php:370
3021
- #@ mycred
3022
- msgid "See the help tab for available template tags."
3023
- msgstr ""
3024
-
3025
- #: includes/mycred-widgets.php:209
3026
- #@ mycred
3027
- msgid "History Title"
3028
- msgstr ""
3029
-
3030
- #: modules/mycred-module-general.php:101
3031
- #, php-format
3032
- #@ mycred
3033
- msgid "Edit Users %plural%"
3034
- msgstr ""
3035
-
3036
- #: modules/mycred-module-help.php:67
3037
- #@ mycred
3038
- msgid "The Log"
3039
- msgstr ""
3040
-
3041
- #: modules/mycred-module-help.php:69
3042
- #@ mycred
3043
- msgid "myCRED logs everything giving you a complete overview of %_plural% awarded or deducted from your users. The Log page can be filtered by user, date or reference and we have included a search function for you."
3044
- msgstr ""
3045
-
3046
- #: modules/mycred-module-help.php:70
3047
- #@ mycred
3048
- msgid "You can select how many log entries you want to show under \"Screen Options\". By default you will be shown 10 entires."
3049
- msgstr ""
3050
-
3051
- #: modules/mycred-module-help.php:71
3052
- #@ mycred
3053
- msgid "Filter by Date"
3054
- msgstr ""
3055
-
3056
- #: modules/mycred-module-help.php:72
3057
- #@ mycred
3058
- msgid "You can select to show log entries for: Today, Yesterday, This Week or This Month."
3059
- msgstr ""
3060
-
3061
- #: modules/mycred-module-help.php:73
3062
- #@ mycred
3063
- msgid "Filter by Reference"
3064
- msgstr ""
3065
-
3066
- #: modules/mycred-module-help.php:74
3067
- #@ mycred
3068
- msgid "Each time a log entry is made a reference is used to identify where or why points were awarded or deducted."
3069
- msgstr ""
3070
-
3071
- #: modules/mycred-module-help.php:75
3072
- #@ mycred
3073
- msgid "Filter by User"
3074
- msgstr ""
3075
-
3076
- #: modules/mycred-module-help.php:76
3077
- #@ mycred
3078
- msgid "You can select to show log entries for a specific user. Users with no log entries are not included."
3079
- msgstr ""
3080
-
3081
- #: modules/mycred-module-help.php:90
3082
- #@ mycred
3083
- msgid "Each instance where users might gain or loose %_plural%, are called hooks. Hooks can relate to WordPress specific actions or any third party plugin action that myCRED supports."
3084
- msgstr ""
3085
-
3086
- #: modules/mycred-module-help.php:91
3087
- #@ mycred
3088
- msgid "A hook can relate to a specific instance or several instances. You can disable specific instances in a hook by awarding zero %_plural%."
3089
- msgstr ""
3090
-
3091
- #: modules/mycred-module-help.php:95
3092
- #@ mycred
3093
- msgid "Third Party Plugins"
3094
- msgstr ""
3095
-
3096
- #: modules/mycred-module-help.php:97
3097
- #@ mycred
3098
- msgid "myCRED supports several third party plugins by default. These hooks are only available / visible if the plugin has been installed and enabled."
3099
- msgstr ""
3100
-
3101
- #: modules/mycred-module-help.php:98
3102
- #@ mycred
3103
- msgid "Supported Plugins:"
3104
- msgstr ""
3105
-
3106
- #: modules/mycred-module-help.php:108
3107
- #@ mycred
3108
- msgid "General:"
3109
- msgstr ""
3110
-
3111
- #: modules/mycred-module-help.php:109
3112
- #: modules/mycred-module-help.php:153
3113
- #: modules/mycred-module-help.php:158
3114
- #: modules/mycred-module-help.php:175
3115
- #, php-format
3116
- #@ mycred
3117
- msgid "Singular %plural% Name."
3118
- msgstr ""
3119
-
3120
- #: modules/mycred-module-help.php:110
3121
- #, php-format
3122
- #@ mycred
3123
- msgid "Singular %plural% Name in lowercase."
3124
- msgstr ""
3125
-
3126
- #: modules/mycred-module-help.php:111
3127
- #: modules/mycred-module-help.php:154
3128
- #: modules/mycred-module-help.php:159
3129
- #: modules/mycred-module-help.php:176
3130
- #, php-format
3131
- #@ mycred
3132
- msgid "Plural %plural% Name."
3133
- msgstr ""
3134
-
3135
- #: modules/mycred-module-help.php:112
3136
- #, php-format
3137
- #@ mycred
3138
- msgid "Plural %plural% Name in lowercase."
3139
- msgstr ""
3140
-
3141
- #: modules/mycred-module-help.php:113
3142
- #: modules/mycred-module-help.php:163
3143
- #@ mycred
3144
- msgid "The login URL without redirection."
3145
- msgstr ""
3146
-
3147
- #: modules/mycred-module-help.php:114
3148
- #: modules/mycred-module-help.php:164
3149
- #@ mycred
3150
- msgid "The login URL with redirection to current page."
3151
- msgstr ""
3152
-
3153
- #: modules/mycred-module-help.php:115
3154
- #@ mycred
3155
- msgid "Post:"
3156
- msgstr ""
3157
-
3158
- #: modules/mycred-module-help.php:116
3159
- #@ mycred
3160
- msgid "The posts title."
3161
- msgstr ""
3162
-
3163
- #: modules/mycred-module-help.php:117
3164
- #@ mycred
3165
- msgid "The posts URL address."
3166
- msgstr ""
3167
-
3168
- #: modules/mycred-module-help.php:118
3169
- #@ mycred
3170
- msgid "The post type."
3171
- msgstr ""
3172
-
3173
- #: modules/mycred-module-help.php:119
3174
- #@ mycred
3175
- msgid "The posts permalink with the post title as title."
3176
- msgstr ""
3177
-
3178
- #: modules/mycred-module-help.php:120
3179
- #@ mycred
3180
- msgid "User:"
3181
- msgstr ""
3182
-
3183
- #: modules/mycred-module-help.php:121
3184
- #@ mycred
3185
- msgid "The users ID."
3186
- msgstr ""
3187
-
3188
- #: modules/mycred-module-help.php:122
3189
- #@ mycred
3190
- msgid "The users \"username\"."
3191
- msgstr ""
3192
-
3193
- #: modules/mycred-module-help.php:123
3194
- #@ mycred
3195
- msgid "The users \"username\" URL encoded."
3196
- msgstr ""
3197
-
3198
- #: modules/mycred-module-help.php:124
3199
- #@ mycred
3200
- msgid "The users display name."
3201
- msgstr ""
3202
-
3203
- #: modules/mycred-module-help.php:125
3204
- #@ mycred
3205
- msgid "The users profile URL."
3206
- msgstr ""
3207
-
3208
- #: modules/mycred-module-help.php:126
3209
- #@ mycred
3210
- msgid "The users profile link with the display name as title."
3211
- msgstr ""
3212
-
3213
- #: modules/mycred-module-help.php:127
3214
- #@ mycred
3215
- msgid "Comment:"
3216
- msgstr ""
3217
-
3218
- #: modules/mycred-module-help.php:128
3219
- #@ mycred
3220
- msgid "The comment ID."
3221
- msgstr ""
3222
-
3223
- #: modules/mycred-module-help.php:129
3224
- #@ mycred
3225
- msgid "The post id where the comment was made."
3226
- msgstr ""
3227
-
3228
- #: modules/mycred-module-help.php:130
3229
- #@ mycred
3230
- msgid "The post title where the comment was made."
3231
- msgstr ""
3232
-
3233
- #: modules/mycred-module-help.php:131
3234
- #@ mycred
3235
- msgid "The post URL address where the comment was made."
3236
- msgstr ""
3237
-
3238
- #: modules/mycred-module-help.php:132
3239
- #@ mycred
3240
- msgid "Link to the post where the comment was made."
3241
- msgstr ""
3242
-
3243
- #: modules/mycred-module-help.php:144
3244
- #@ mycred
3245
- msgid "myCRED Balance Template Tags"
3246
- msgstr ""
3247
-
3248
- #: addons/email-notices/myCRED-addon-email-notices.php:661
3249
- #: modules/mycred-module-help.php:146
3250
- #: modules/mycred-module-help.php:170
3251
- #@ mycred
3252
- msgid "Available Template Tags"
3253
- msgstr ""
3254
-
3255
- #: modules/mycred-module-help.php:147
3256
- #@ mycred
3257
- msgid "Layout:"
3258
- msgstr ""
3259
-
3260
- #: modules/mycred-module-help.php:148
3261
- #: modules/mycred-module-help.php:156
3262
- #: modules/mycred-module-help.php:173
3263
- #@ mycred
3264
- msgid "Balance amount in plain format."
3265
- msgstr ""
3266
-
3267
- #: modules/mycred-module-help.php:149
3268
- #: modules/mycred-module-help.php:157
3269
- #: modules/mycred-module-help.php:174
3270
- #@ mycred
3271
- msgid "Balance amount formatted with prefix and/or suffix."
3272
- msgstr ""
3273
-
3274
- #: modules/mycred-module-help.php:150
3275
- #@ mycred
3276
- msgid "Rank Format:"
3277
- msgstr ""
3278
-
3279
- #: modules/mycred-module-help.php:152
3280
- #@ mycred
3281
- msgid "History Title:"
3282
- msgstr ""
3283
-
3284
- #: modules/mycred-module-help.php:153
3285
- #: modules/mycred-module-help.php:154
3286
- #: modules/mycred-module-help.php:158
3287
- #: modules/mycred-module-help.php:159
3288
- #: modules/mycred-module-help.php:175
3289
- #: modules/mycred-module-help.php:176
3290
- #@ mycred
3291
- msgid "or"
3292
- msgstr ""
3293
-
3294
- #: modules/mycred-module-help.php:155
3295
- #: modules/mycred-module-help.php:171
3296
- #@ mycred
3297
- msgid "Row Layout:"
3298
- msgstr ""
3299
-
3300
- #: modules/mycred-module-help.php:160
3301
- #: modules/mycred-module-help.php:177
3302
- #@ mycred
3303
- msgid "Log entry date."
3304
- msgstr ""
3305
-
3306
- #: modules/mycred-module-help.php:161
3307
- #: modules/mycred-module-help.php:178
3308
- #@ mycred
3309
- msgid "The log entry."
3310
- msgstr ""
3311
-
3312
- #: modules/mycred-module-help.php:162
3313
- #@ mycred
3314
- msgid "Message:"
3315
- msgstr ""
3316
-
3317
- #: modules/mycred-module-help.php:168
3318
- #@ default
3319
- msgid "myCRED List Template Tags"
3320
- msgstr ""
3321
-
3322
- #: modules/mycred-module-help.php:181
3323
- #@ mycred
3324
- msgid "Users \"username\"."
3325
- msgstr ""
3326
-
3327
- #: modules/mycred-module-help.php:182
3328
- #@ mycred
3329
- msgid "Users \"username\" URL encoded."
3330
- msgstr ""
3331
-
3332
- #: modules/mycred-module-help.php:183
3333
- #@ mycred
3334
- msgid "Link to users profile with their display name as title."
3335
- msgstr ""
3336
-
3337
- #: modules/mycred-module-help.php:195
3338
- #, php-format
3339
- #@ mycred
3340
- msgid "Editing %plural%"
3341
- msgstr ""
3342
-
3343
- #: modules/mycred-module-help.php:197
3344
- #@ mycred
3345
- msgid "You can adjust this users %_plural% by giving a positive or negative amount and a log description. Remember that plugin and point editors will always be able to adjust their own balance."
3346
- msgstr ""
3347
-
3348
- #: modules/mycred-module-help.php:198
3349
- #@ mycred
3350
- msgid "If the option to edit a users balance is missing the user is set to be excluded from using myCRED."
3351
- msgstr ""
3352
-
3353
- #: modules/mycred-module-help.php:210
3354
- #@ mycred
3355
- msgid "Core"
3356
- msgstr ""
3357
-
3358
- #: modules/mycred-module-help.php:212
3359
- #@ mycred
3360
- msgid "On this page, you can edit all myCRED settings."
3361
- msgstr ""
3362
-
3363
- #: modules/mycred-module-help.php:214
3364
- #@ mycred
3365
- msgid "Here you can name your installation along with setting your layout and format. You can use any name as long as you set both the singular and plural format and you can change the name at any time."
3366
- msgstr ""
3367
-
3368
- #: modules/mycred-module-hooks.php:152
3369
- #@ mycred
3370
- msgid "Jetpack Subscriptions"
3371
- msgstr ""
3372
-
3373
- #: modules/mycred-module-hooks.php:153
3374
- #@ mycred
3375
- msgid "Awards %_plural% for users signing up for site or comment updates using Jetpack."
3376
- msgstr ""
3377
-
3378
- #: modules/mycred-module-subscriptions.php:479
3379
- #@ mycred
3380
- msgid "Site Subscriptions"
3381
- msgstr ""
3382
-
3383
- #: modules/mycred-module-subscriptions.php:492
3384
- #@ mycred
3385
- msgid "Comment Subscriptions"
3386
- msgstr ""
3387
-
3388
- #: addons/buddypress/myCRED-addon-buddypress.php:377
3389
- #, php-format
3390
- #@ mycred
3391
- msgid "Note that you can also use %rank_logo% to show the feature image of the rank."
3392
- msgstr ""
3393
-
3394
- #: addons/buy-creds/gateways/paypal-standard.php:239
3395
- #: addons/buy-creds/gateways/skrill.php:225
3396
- #: addons/buy-creds/gateways/zombaio.php:232
3397
- #@ mycred
3398
- msgid "Please setup this gateway before attempting to make a purchase!"
3399
- msgstr ""
3400
-
3401
- #: addons/buy-creds/gateways/zombaio.php:296
3402
- #@ mycred
3403
- msgid "Site ID"
3404
- msgstr ""
3405
-
3406
- #: addons/buy-creds/gateways/zombaio.php:302
3407
- #@ mycred
3408
- msgid "GW Password"
3409
- msgstr ""
3410
-
3411
- #: addons/buy-creds/gateways/zombaio.php:308
3412
- #@ mycred
3413
- msgid "Pricing ID"
3414
- msgstr ""
3415
-
3416
- #: addons/buy-creds/gateways/zombaio.php:320
3417
- #@ mycred
3418
- msgid "IP Verification"
3419
- msgstr ""
3420
-
3421
- #: addons/buy-creds/gateways/zombaio.php:323
3422
- #@ mycred
3423
- msgid "Do not verify that callbacks are coming from Zombaio."
3424
- msgstr ""
3425
-
3426
- #: addons/buy-creds/gateways/zombaio.php:326
3427
- #@ mycred
3428
- msgid "Language"
3429
- msgstr ""
3430
-
3431
- #: addons/buy-creds/gateways/zombaio.php:333
3432
- #@ mycred
3433
- msgid "Postback URL (ZScript)"
3434
- msgstr ""
3435
-
3436
- #: addons/buy-creds/gateways/zombaio.php:337
3437
- #@ mycred
3438
- msgid "For this gateway to work, login to ZOA and set the Postback URL to the above address and click validate."
3439
- msgstr ""
3440
-
3441
- #: addons/buy-creds/myCRED-addon-buy-creds.php:146
3442
- #@ default
3443
- msgid "Zombaio"
3444
- msgstr ""
3445
-
3446
- #: addons/buy-creds/myCRED-addon-buy-creds.php:213
3447
- #, php-format
3448
- #@ mycred
3449
- msgid "Available template tags: General and %gateway% for the payment gateway used."
3450
- msgstr ""
3451
-
3452
- #: addons/buy-creds/myCRED-addon-buy-creds.php:404
3453
- #: addons/buy-creds/myCRED-addon-buy-creds.php:514
3454
- #@ mycred
3455
- msgid "This Add-on needs to setup before you can use this shortcode."
3456
- msgstr ""
3457
-
3458
- #: addons/buy-creds/myCRED-addon-buy-creds.php:750
3459
- #, php-format
3460
- #@ mycred
3461
- msgid "Buy %plural%"
3462
- msgstr ""
3463
-
3464
- #: addons/buy-creds/myCRED-addon-buy-creds.php:754
3465
- #@ mycred
3466
- msgid "myCRED supports purchases through: PayPal Payments Standard, Skrill (Moneybookers) and NETbilling. Let us know if you want to add other payment gateways."
3467
- msgstr ""
3468
-
3469
- #: addons/email-notices/myCRED-addon-email-notices.php:148
3470
- #: addons/email-notices/myCRED-addon-email-notices.php:154
3471
- #: addons/email-notices/myCRED-addon-email-notices.php:160
3472
- #: addons/email-notices/myCRED-addon-email-notices.php:249
3473
- #@ mycred
3474
- msgid "Email Notices"
3475
- msgstr ""
3476
-
3477
- #: addons/email-notices/myCRED-addon-email-notices.php:149
3478
- #@ mycred
3479
- msgid "Email Notice"
3480
- msgstr ""
3481
-
3482
- #: addons/email-notices/myCRED-addon-email-notices.php:150
3483
- #: addons/ranks/myCRED-addon-ranks.php:147
3484
- #@ mycred
3485
- msgid "Add New"
3486
- msgstr ""
3487
-
3488
- #: addons/email-notices/myCRED-addon-email-notices.php:151
3489
- #@ mycred
3490
- msgid "Add New Notice"
3491
- msgstr ""
3492
-
3493
- #: addons/email-notices/myCRED-addon-email-notices.php:152
3494
- #@ mycred
3495
- msgid "Edit Notice"
3496
- msgstr ""
3497
-
3498
- #: addons/email-notices/myCRED-addon-email-notices.php:153
3499
- #@ mycred
3500
- msgid "New Notice"
3501
- msgstr ""
3502
-
3503
- #: addons/email-notices/myCRED-addon-email-notices.php:155
3504
- #@ mycred
3505
- msgid "View Notice"
3506
- msgstr ""
3507
-
3508
- #: addons/email-notices/myCRED-addon-email-notices.php:156
3509
- #@ mycred
3510
- msgid "Search Email Notices"
3511
- msgstr ""
3512
-
3513
- #: addons/email-notices/myCRED-addon-email-notices.php:157
3514
- #@ mycred
3515
- msgid "No email notices found"
3516
- msgstr ""
3517
-
3518
- #: addons/email-notices/myCRED-addon-email-notices.php:158
3519
- #@ mycred
3520
- msgid "No email notices found in Trash"
3521
- msgstr ""
3522
-
3523
- #: addons/email-notices/myCRED-addon-email-notices.php:181
3524
- #: addons/email-notices/myCRED-addon-email-notices.php:813
3525
- #@ mycred
3526
- msgid "General"
3527
- msgstr ""
3528
-
3529
- #: addons/email-notices/myCRED-addon-email-notices.php:182
3530
- #@ mycred
3531
- msgid "users balance changes"
3532
- msgstr ""
3533
-
3534
- #: addons/email-notices/myCRED-addon-email-notices.php:183
3535
- #@ mycred
3536
- msgid "user gains %_plural%"
3537
- msgstr ""
3538
-
3539
- #: addons/email-notices/myCRED-addon-email-notices.php:184
3540
- #@ mycred
3541
- msgid "user lose %_plural%"
3542
- msgstr ""
3543
-
3544
- #: addons/email-notices/myCRED-addon-email-notices.php:185
3545
- #@ mycred
3546
- msgid "users balance reaches zero"
3547
- msgstr ""
3548
-
3549
- #: addons/email-notices/myCRED-addon-email-notices.php:186
3550
- #@ mycred
3551
- msgid "users balance goes minus"
3552
- msgstr ""
3553
-
3554
- #: addons/email-notices/myCRED-addon-email-notices.php:192
3555
- #@ mycred
3556
- msgid "Sell Content Add-on"
3557
- msgstr ""
3558
-
3559
- #: addons/email-notices/myCRED-addon-email-notices.php:193
3560
- #@ mycred
3561
- msgid "user buys content"
3562
- msgstr ""
3563
-
3564
- #: addons/email-notices/myCRED-addon-email-notices.php:194
3565
- #@ mycred
3566
- msgid "authors content gets sold"
3567
- msgstr ""
3568
-
3569
- #: addons/email-notices/myCRED-addon-email-notices.php:201
3570
- #@ mycred
3571
- msgid "buyCREDs Add-on"
3572
- msgstr ""
3573
-
3574
- #: addons/email-notices/myCRED-addon-email-notices.php:202
3575
- #@ mycred
3576
- msgid "user buys %_plural%"
3577
- msgstr ""
3578
-
3579
- #: addons/email-notices/myCRED-addon-email-notices.php:209
3580
- #@ mycred
3581
- msgid "Transfer Add-on"
3582
- msgstr ""
3583
-
3584
- #: addons/email-notices/myCRED-addon-email-notices.php:210
3585
- #@ mycred
3586
- msgid "user sends %_plural%"
3587
- msgstr ""
3588
-
3589
- #: addons/email-notices/myCRED-addon-email-notices.php:211
3590
- #@ mycred
3591
- msgid "user receives %_plural%"
3592
- msgstr ""
3593
-
3594
- #: addons/email-notices/myCRED-addon-email-notices.php:251
3595
- #@ mycred
3596
- msgid "Settings that apply to all email notices and can not be overridden for individual emails."
3597
- msgstr ""
3598
-
3599
- #: addons/email-notices/myCRED-addon-email-notices.php:252
3600
- #@ mycred
3601
- msgid "Email Format"
3602
- msgstr ""
3603
-
3604
- #: addons/email-notices/myCRED-addon-email-notices.php:256
3605
- #@ mycred
3606
- msgid "Plain text emails only."
3607
- msgstr ""
3608
-
3609
- #: addons/email-notices/myCRED-addon-email-notices.php:260
3610
- #@ mycred
3611
- msgid "HTML or Plain text emails."
3612
- msgstr ""
3613
-
3614
- #: addons/email-notices/myCRED-addon-email-notices.php:263
3615
- #@ mycred
3616
- msgid "Filters"
3617
- msgstr ""
3618
-
3619
- #: addons/email-notices/myCRED-addon-email-notices.php:267
3620
- #@ mycred
3621
- msgid "Allow WordPress and Third Party Plugins to filter the email subject before an email is sent."
3622
- msgstr ""
3623
-
3624
- #: addons/email-notices/myCRED-addon-email-notices.php:271
3625
- #@ mycred
3626
- msgid "Allow WordPress and Third Party Plugins to filter the email content before an email is sent."
3627
- msgstr ""
3628
-
3629
- #: addons/email-notices/myCRED-addon-email-notices.php:274
3630
- #@ mycred
3631
- msgid "Default email settings. These settings can be individually overridden when editing emails."
3632
- msgstr ""
3633
-
3634
- #: addons/email-notices/myCRED-addon-email-notices.php:275
3635
- #: addons/email-notices/myCRED-addon-email-notices.php:652
3636
- #@ mycred
3637
- msgid "Email Settings"
3638
- msgstr ""
3639
-
3640
- #: addons/email-notices/myCRED-addon-email-notices.php:278
3641
- #: addons/email-notices/myCRED-addon-email-notices.php:769
3642
- #@ mycred
3643
- msgid "Senders Name:"
3644
- msgstr ""
3645
-
3646
- #: addons/email-notices/myCRED-addon-email-notices.php:282
3647
- #: addons/email-notices/myCRED-addon-email-notices.php:771
3648
- #@ mycred
3649
- msgid "Senders Email:"
3650
- msgstr ""
3651
-
3652
- #: addons/email-notices/myCRED-addon-email-notices.php:286
3653
- #@ mycred
3654
- msgid "Reply-To:"
3655
- msgstr ""
3656
-
3657
- #: addons/email-notices/myCRED-addon-email-notices.php:290
3658
- #@ mycred
3659
- msgid "Default Email Content"
3660
- msgstr ""
3661
-
3662
- #: addons/email-notices/myCRED-addon-email-notices.php:294
3663
- #@ mycred
3664
- msgid "Default email content."
3665
- msgstr ""
3666
-
3667
- #: addons/email-notices/myCRED-addon-email-notices.php:297
3668
- #@ mycred
3669
- msgid "Default Email Styling"
3670
- msgstr ""
3671
-
3672
- #: addons/email-notices/myCRED-addon-email-notices.php:301
3673
- #@ mycred
3674
- msgid "Ignored if HTML is not allowed in emails."
3675
- msgstr ""
3676
-
3677
- #: addons/email-notices/myCRED-addon-email-notices.php:587
3678
- #: addons/email-notices/myCRED-addon-email-notices.php:701
3679
- #@ mycred
3680
- msgid "Email Subject"
3681
- msgstr ""
3682
-
3683
- #: addons/email-notices/myCRED-addon-email-notices.php:588
3684
- #@ mycred
3685
- msgid "Status"
3686
- msgstr ""
3687
-
3688
- #: addons/email-notices/myCRED-addon-email-notices.php:608
3689
- #@ mycred
3690
- msgid "Not Active"
3691
- msgstr ""
3692
-
3693
- #: addons/email-notices/myCRED-addon-email-notices.php:610
3694
- #, php-format
3695
- #@ mycred
3696
- msgid "Scheduled:<br /><strong>%1$s</strong>"
3697
- msgstr ""
3698
-
3699
- #: addons/email-notices/myCRED-addon-email-notices.php:614
3700
- #@ mycred
3701
- msgid "Active"
3702
- msgstr ""
3703
-
3704
- #: addons/email-notices/myCRED-addon-email-notices.php:616
3705
- #, php-format
3706
- #@ mycred
3707
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
3708
- msgstr ""
3709
-
3710
- #: addons/email-notices/myCRED-addon-email-notices.php:625
3711
- #@ mycred
3712
- msgid "Email is sent when"
3713
- msgstr ""
3714
-
3715
- #: addons/email-notices/myCRED-addon-email-notices.php:627
3716
- #@ mycred
3717
- msgid "Missing instance for this notice!"
3718
- msgstr ""
3719
-
3720
- #: addons/email-notices/myCRED-addon-email-notices.php:636
3721
- #: addons/email-notices/myCRED-addon-email-notices.php:638
3722
- #: addons/email-notices/myCRED-addon-email-notices.php:640
3723
- #@ mycred
3724
- msgid "Sent To"
3725
- msgstr ""
3726
-
3727
- #: addons/email-notices/myCRED-addon-email-notices.php:638
3728
- #: addons/email-notices/myCRED-addon-email-notices.php:764
3729
- #@ mycred
3730
- msgid "Administrator"
3731
- msgstr ""
3732
-
3733
- #: addons/email-notices/myCRED-addon-email-notices.php:640
3734
- #@ mycred
3735
- msgid "Both Administrator and User"
3736
- msgstr ""
3737
-
3738
- #: addons/email-notices/myCRED-addon-email-notices.php:672
3739
- #@ mycred
3740
- msgid "Email Header"
3741
- msgstr ""
3742
-
3743
- #: addons/email-notices/myCRED-addon-email-notices.php:732
3744
- #@ mycred
3745
- msgid "Send this email notice when..."
3746
- msgstr ""
3747
-
3748
- #: addons/email-notices/myCRED-addon-email-notices.php:761
3749
- #@ mycred
3750
- msgid "Recipient:"
3751
- msgstr ""
3752
-
3753
- #: addons/email-notices/myCRED-addon-email-notices.php:765
3754
- #@ mycred
3755
- msgid "Both"
3756
- msgstr ""
3757
-
3758
- #: addons/email-notices/myCRED-addon-email-notices.php:773
3759
- #@ mycred
3760
- msgid "Reply-To Email:"
3761
- msgstr ""
3762
-
3763
- #: addons/email-notices/myCRED-addon-email-notices.php:779
3764
- #@ mycred
3765
- msgid "Save"
3766
- msgstr ""
3767
-
3768
- #: addons/email-notices/myCRED-addon-email-notices.php:791
3769
- #@ mycred
3770
- msgid "CSS Styling"
3771
- msgstr ""
3772
-
3773
- #: addons/email-notices/myCRED-addon-email-notices.php:806
3774
- #@ mycred
3775
- msgid "Site Related"
3776
- msgstr ""
3777
-
3778
- #: addons/email-notices/myCRED-addon-email-notices.php:807
3779
- #@ mycred
3780
- msgid "Your websites title"
3781
- msgstr ""
3782
-
3783
- #: addons/email-notices/myCRED-addon-email-notices.php:808
3784
- #@ mycred
3785
- msgid "Your websites address"
3786
- msgstr ""
3787
-
3788
- #: addons/email-notices/myCRED-addon-email-notices.php:809
3789
- #@ mycred
3790
- msgid "Your websites tagline (description)"
3791
- msgstr ""
3792
-
3793
- #: addons/email-notices/myCRED-addon-email-notices.php:810
3794
- #@ mycred
3795
- msgid "Your websites admin email"
3796
- msgstr ""
3797
-
3798
- #: addons/email-notices/myCRED-addon-email-notices.php:811
3799
- #@ mycred
3800
- msgid "Total number of blog members"
3801
- msgstr ""
3802
-
3803
- #: addons/email-notices/myCRED-addon-email-notices.php:814
3804
- #@ mycred
3805
- msgid "Points name in singular format"
3806
- msgstr ""
3807
-
3808
- #: addons/email-notices/myCRED-addon-email-notices.php:815
3809
- #@ mycred
3810
- msgid "Points name in plural"
3811
- msgstr ""
3812
-
3813
- #: addons/email-notices/myCRED-addon-email-notices.php:816
3814
- #@ mycred
3815
- msgid "Login URL"
3816
- msgstr ""
3817
-
3818
- #: addons/email-notices/myCRED-addon-email-notices.php:819
3819
- #@ mycred
3820
- msgid "User Related"
3821
- msgstr ""
3822
-
3823
- #: addons/email-notices/myCRED-addon-email-notices.php:820
3824
- #@ mycred
3825
- msgid "The users ID"
3826
- msgstr ""
3827
-
3828
- #: addons/email-notices/myCRED-addon-email-notices.php:821
3829
- #@ mycred
3830
- msgid "The users login name (username)"
3831
- msgstr ""
3832
-
3833
- #: addons/email-notices/myCRED-addon-email-notices.php:822
3834
- #@ mycred
3835
- msgid "The users display name"
3836
- msgstr ""
3837
-
3838
- #: addons/email-notices/myCRED-addon-email-notices.php:823
3839
- #@ mycred
3840
- msgid "The users profile address"
3841
- msgstr ""
3842
-
3843
- #: addons/email-notices/myCRED-addon-email-notices.php:824
3844
- #@ mycred
3845
- msgid "Link to the users profile address with their display name as title"
3846
- msgstr ""
3847
-
3848
- #: addons/email-notices/myCRED-addon-email-notices.php:825
3849
- #@ mycred
3850
- msgid "The users current balance unformated"
3851
- msgstr ""
3852
-
3853
- #: addons/email-notices/myCRED-addon-email-notices.php:826
3854
- #@ mycred
3855
- msgid "The users current balance formated"
3856
- msgstr ""
3857
-
3858
- #: addons/email-notices/myCRED-addon-email-notices.php:828
3859
- #@ mycred
3860
- msgid "Post Related"
3861
- msgstr ""
3862
-
3863
- #: addons/email-notices/myCRED-addon-email-notices.php:829
3864
- #@ mycred
3865
- msgid "Post Title"
3866
- msgstr ""
3867
-
3868
- #: addons/email-notices/myCRED-addon-email-notices.php:830
3869
- #@ mycred
3870
- msgid "Post URL address"
3871
- msgstr ""
3872
-
3873
- #: addons/email-notices/myCRED-addon-email-notices.php:831
3874
- #@ mycred
3875
- msgid "Link to post Post title"
3876
- msgstr ""
3877
-
3878
- #: addons/email-notices/myCRED-addon-email-notices.php:832
3879
- #@ mycred
3880
- msgid "The post type"
3881
- msgstr ""
3882
-
3883
- #: addons/email-notices/myCRED-addon-email-notices.php:908
3884
- #: addons/email-notices/myCRED-addon-email-notices.php:911
3885
- #, php-format
3886
- #@ mycred
3887
- msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
3888
- msgstr ""
3889
-
3890
- #: addons/email-notices/myCRED-addon-email-notices.php:909
3891
- #: addons/ranks/myCRED-addon-ranks.php:384
3892
- #@ mycred
3893
- msgid "Custom field updated"
3894
- msgstr ""
3895
-
3896
- #: addons/email-notices/myCRED-addon-email-notices.php:910
3897
- #: addons/ranks/myCRED-addon-ranks.php:385
3898
- #@ mycred
3899
- msgid "Custom filed updated"
3900
- msgstr ""
3901
-
3902
- #: addons/email-notices/myCRED-addon-email-notices.php:913
3903
- #@ mycred
3904
- msgid "Email Notice Activated"
3905
- msgstr ""
3906
-
3907
- #: addons/email-notices/myCRED-addon-email-notices.php:914
3908
- #@ mycred
3909
- msgid "Email Notice Saved"
3910
- msgstr ""
3911
-
3912
- #: addons/email-notices/myCRED-addon-email-notices.php:915
3913
- #, php-format
3914
- #@ mycred
3915
- msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
3916
- msgstr ""
3917
-
3918
- #: addons/email-notices/myCRED-addon-email-notices.php:917
3919
- #, php-format
3920
- #@ mycred
3921
- msgid "Email Notice scheduled for: <strong>%1$s</strong>."
3922
- msgstr ""
3923
-
3924
- #: addons/email-notices/myCRED-addon-email-notices.php:936
3925
- #@ mycred
3926
- msgid "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are not yet ready to use this email notice!"
3927
- msgstr ""
3928
-
3929
- #: addons/email-notices/myCRED-addon-email-notices.php:938
3930
- #, php-format
3931
- #@ mycred
3932
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
3933
- msgstr ""
3934
-
3935
- #: addons/email-notices/myCRED-addon-email-notices.php:940
3936
- #@ mycred
3937
- msgid "This email notice is active."
3938
- msgstr ""
3939
-
3940
- #: addons/gateway/carts/mycred-marketpress.php:127
3941
- #, php-format
3942
- #@ mycred
3943
- msgid "Sorry, but you must be logged in to use this gateway. Please <a href=\"%s\">Login</a> or <a href=\"%s\">select a different payment method</a>."
3944
- msgstr ""
3945
-
3946
- #: addons/gateway/carts/mycred-marketpress.php:139
3947
- #, php-format
3948
- #@ mycred
3949
- msgid "Sorry, but you can not use this gateway as your account is excluded. Please <a href=\"%s\">select a different payment method</a>."
3950
- msgstr ""
3951
-
3952
- #: addons/gateway/carts/mycred-marketpress.php:176
3953
- #@ mycred
3954
- msgid "Paid"
3955
- msgstr ""
3956
-
3957
- #: addons/gateway/carts/mycred-marketpress.php:201
3958
- #, php-format
3959
- #@ mycred
3960
- msgid "Insufficient Funds Please select a different payment method. <a href=\"%s\">Go Back</a>"
3961
- msgstr ""
3962
-
3963
- #: addons/gateway/carts/mycred-marketpress.php:259
3964
- #@ mycred
3965
- msgid "%_singular% Balance"
3966
- msgstr ""
3967
-
3968
- #: addons/gateway/carts/mycred-marketpress.php:282
3969
- #, php-format
3970
- #@ mycred
3971
- msgid "Let your users pay for items in their shopping cart using their %s Account. Note! This gateway requires your users to be logged in when making a purchase!"
3972
- msgstr ""
3973
-
3974
- #: addons/gateway/carts/mycred-marketpress.php:285
3975
- #@ mycred
3976
- msgid "Method Name"
3977
- msgstr ""
3978
-
3979
- #: addons/gateway/carts/mycred-marketpress.php:287
3980
- #@ mycred
3981
- msgid "Enter a public name for this payment method that is displayed to users - No HTML"
3982
- msgstr ""
3983
-
3984
- #: addons/gateway/carts/mycred-marketpress.php:292
3985
- #@ mycred
3986
- msgid "Gateway Logo URL"
3987
- msgstr ""
3988
-
3989
- #: addons/gateway/carts/mycred-marketpress.php:321
3990
- #@ mycred
3991
- msgid "User Instructions"
3992
- msgstr ""
3993
-
3994
- #: addons/gateway/carts/mycred-marketpress.php:323
3995
- #@ mycred
3996
- msgid "Information to show users before payment."
3997
- msgstr ""
3998
-
3999
- #: addons/gateway/carts/mycred-marketpress.php:325
4000
- #, php-format
4001
- #@ mycred
4002
- msgid "Available template tags are: %balance% and %balance_f% for users current balance."
4003
- msgstr ""
4004
-
4005
- #: addons/gateway/carts/mycred-marketpress.php:329
4006
- #@ mycred
4007
- msgid "Confirmation Information"
4008
- msgstr ""
4009
-
4010
- #: addons/gateway/carts/mycred-marketpress.php:331
4011
- #@ mycred
4012
- msgid "Information to display on the order confirmation page. - HTML allowed"
4013
- msgstr ""
4014
-
4015
- #: addons/gateway/carts/mycred-marketpress.php:333
4016
- #, php-format
4017
- #@ mycred
4018
- msgid "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% - users current balance."
4019
- msgstr ""
4020
-
4021
- #: addons/gateway/carts/mycred-marketpress.php:337
4022
- #@ mycred
4023
- msgid "Order Confirmation Email"
4024
- msgstr ""
4025
-
4026
- #: addons/gateway/carts/mycred-marketpress.php:339
4027
- #, php-format
4028
- #@ mycred
4029
- msgid "This is the email text to send to those who have made %s checkouts. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
4030
- msgstr ""
4031
-
4032
- #: addons/gateway/carts/mycred-marketpress.php:341
4033
- #, php-format
4034
- #@ mycred
4035
- msgid "Available template tags: %balance% or %balance_f% for users balance."
4036
- msgstr ""
4037
-
4038
- #: addons/ranks/includes/mycred-rank-functions.php:137
4039
- #: addons/ranks/includes/mycred-rank-functions.php:143
4040
- #@ mycred
4041
- msgid "No Rank"
4042
- msgstr ""
4043
-
4044
- #: addons/ranks/includes/mycred-rank-shortcodes.php:57
4045
- #: addons/ranks/includes/mycred-rank-shortcodes.php:132
4046
- #@ mycred
4047
- msgid "No users found with this rank"
4048
- msgstr ""
4049
-
4050
- #: addons/ranks/includes/mycred-rank-shortcodes.php:62
4051
- #: includes/mycred-shortcodes.php:139
4052
- #: includes/mycred-shortcodes.php:142
4053
- #: includes/mycred-shortcodes.php:201
4054
- #: includes/mycred-shortcodes.php:250
4055
- #: includes/mycred-shortcodes.php:254
4056
- #: includes/mycred-shortcodes.php:258
4057
- #@ mycred
4058
- msgid "error"
4059
- msgstr ""
4060
-
4061
- #: addons/ranks/includes/mycred-rank-shortcodes.php:62
4062
- #@ mycred
4063
- msgid "Rank ID is required!"
4064
- msgstr ""
4065
-
4066
- #: addons/ranks/myCRED-addon-ranks.php:145
4067
- #: addons/ranks/myCRED-addon-ranks.php:151
4068
- #: addons/ranks/myCRED-addon-ranks.php:157
4069
- #: addons/ranks/myCRED-addon-ranks.php:613
4070
- #: addons/ranks/myCRED-addon-ranks.php:728
4071
- #@ mycred
4072
- msgid "Ranks"
4073
- msgstr ""
4074
-
4075
- #: addons/ranks/myCRED-addon-ranks.php:146
4076
- #: addons/ranks/myCRED-addon-ranks.php:315
4077
- #: addons/ranks/myCRED-addon-ranks.php:330
4078
- #: addons/ranks/myCRED-addon-ranks.php:423
4079
- #@ mycred
4080
- msgid "Rank"
4081
- msgstr ""
4082
-
4083
- #: addons/ranks/myCRED-addon-ranks.php:148
4084
- #@ mycred
4085
- msgid "Add New Rank"
4086
- msgstr ""
4087
-
4088
- #: addons/ranks/myCRED-addon-ranks.php:149
4089
- #@ mycred
4090
- msgid "Edit Rank"
4091
- msgstr ""
4092
-
4093
- #: addons/ranks/myCRED-addon-ranks.php:150
4094
- #@ mycred
4095
- msgid "New Rank"
4096
- msgstr ""
4097
-
4098
- #: addons/ranks/myCRED-addon-ranks.php:152
4099
- #@ mycred
4100
- msgid "View Rank"
4101
- msgstr ""
4102
-
4103
- #: addons/ranks/myCRED-addon-ranks.php:153
4104
- #@ mycred
4105
- msgid "Search Ranks"
4106
- msgstr ""
4107
-
4108
- #: addons/ranks/myCRED-addon-ranks.php:154
4109
- #@ mycred
4110
- msgid "No ranks found"
4111
- msgstr ""
4112
-
4113
- #: addons/ranks/myCRED-addon-ranks.php:155
4114
- #@ mycred
4115
- msgid "No ranks found in Trash"
4116
- msgstr ""
4117
-
4118
- #: addons/ranks/myCRED-addon-ranks.php:352
4119
- #@ mycred
4120
- msgid "Newbie"
4121
- msgstr ""
4122
-
4123
- #: addons/ranks/myCRED-addon-ranks.php:383
4124
- #: addons/ranks/myCRED-addon-ranks.php:386
4125
- #, php-format
4126
- #@ mycred
4127
- msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
4128
- msgstr ""
4129
-
4130
- #: addons/ranks/myCRED-addon-ranks.php:388
4131
- #@ mycred
4132
- msgid "Rank Activated"
4133
- msgstr ""
4134
-
4135
- #: addons/ranks/myCRED-addon-ranks.php:389
4136
- #@ mycred
4137
- msgid "Rank Saved"
4138
- msgstr ""
4139
-
4140
- #: addons/ranks/myCRED-addon-ranks.php:390
4141
- #, php-format
4142
- #@ mycred
4143
- msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
4144
- msgstr ""
4145
-
4146
- #: addons/ranks/myCRED-addon-ranks.php:392
4147
- #, php-format
4148
- #@ mycred
4149
- msgid "Rank scheduled for: <strong>%1$s</strong>."
4150
- msgstr ""
4151
-
4152
- #: addons/ranks/myCRED-addon-ranks.php:449
4153
- #: addons/ranks/myCRED-addon-ranks.php:504
4154
- #@ mycred
4155
- msgid "Rank Title"
4156
- msgstr ""
4157
-
4158
- #: addons/ranks/myCRED-addon-ranks.php:450
4159
- #@ mycred
4160
- msgid "Logo"
4161
- msgstr ""
4162
-
4163
- #: addons/ranks/myCRED-addon-ranks.php:451
4164
- #@ mycred
4165
- msgid "Requirement"
4166
- msgstr ""
4167
-
4168
- #: addons/ranks/myCRED-addon-ranks.php:452
4169
- #@ mycred
4170
- msgid "Users"
4171
- msgstr ""
4172
-
4173
- #: addons/ranks/myCRED-addon-ranks.php:468
4174
- #@ mycred
4175
- msgid "No Logo Set"
4176
- msgstr ""
4177
-
4178
- #: addons/ranks/myCRED-addon-ranks.php:477
4179
- #: addons/ranks/myCRED-addon-ranks.php:482
4180
- #@ mycred
4181
- msgid "Any Value"
4182
- msgstr ""
4183
-
4184
- #: addons/ranks/myCRED-addon-ranks.php:484
4185
- #, php-format
4186
- #@ mycred
4187
- msgid "Maximum %plural%"
4188
- msgstr ""
4189
-
4190
- #: addons/ranks/myCRED-addon-ranks.php:517
4191
- #@ mycred
4192
- msgid "Rank Settings"
4193
- msgstr ""
4194
-
4195
- #: addons/ranks/myCRED-addon-ranks.php:539
4196
- #, php-format
4197
- #@ mycred
4198
- msgid "Minimum %plural% to reach this rank"
4199
- msgstr ""
4200
-
4201
- #: addons/ranks/myCRED-addon-ranks.php:543
4202
- #, php-format
4203
- #@ mycred
4204
- msgid "Maximum %plural% to be included in this rank"
4205
- msgstr ""
4206
-
4207
- #: addons/ranks/myCRED-addon-ranks.php:548
4208
- #@ mycred
4209
- msgid "All Published Ranks"
4210
- msgstr ""
4211
-
4212
- #: addons/ranks/myCRED-addon-ranks.php:555
4213
- #: addons/ranks/myCRED-addon-ranks.php:557
4214
- #@ mycred
4215
- msgid "Not Set"
4216
- msgstr ""
4217
-
4218
- #: addons/ranks/myCRED-addon-ranks.php:562
4219
- #@ mycred
4220
- msgid "No Ranks found"
4221
- msgstr ""
4222
-
4223
- #: addons/ranks/myCRED-addon-ranks.php:628
4224
- #@ mycred
4225
- msgid "Public"
4226
- msgstr ""
4227
-
4228
- #: addons/ranks/myCRED-addon-ranks.php:632
4229
- #@ mycred
4230
- msgid "If you want to create a template archive for each rank, you must select to have ranks public. Defaults to disabled."
4231
- msgstr ""
4232
-
4233
- #: addons/ranks/myCRED-addon-ranks.php:736
4234
- #@ mycred
4235
- msgid "If you are using a custom permalink structure and you make ranks public or change the slug, you will need to visit your permalink settings page and click \"Save Changes\" to flush your re-write rules! Otherwise you will get a 404 error message when trying to view a rank archive page."
4236
- msgstr ""
4237
-
4238
- #: addons/ranks/myCRED-addon-ranks.php:733
4239
- #, php-format
4240
- #@ mycred
4241
- msgid "For more information on Templates for Custom Post Types visit the <a href=\"%s\">WordPress Codex</a>."
4242
- msgstr ""
4243
-
4244
- #: addons/ranks/myCRED-addon-ranks.php:675
4245
- #@ mycred
4246
- msgid "Rank in BuddyPress"
4247
- msgstr ""
4248
-
4249
- #: addons/ranks/myCRED-addon-ranks.php:730
4250
- #@ mycred
4251
- msgid "You can create ranks according to the amount of points a user has. By default, ranks are only visible in widgets and shortcodes however it is possible for you to also create archive pages in your theme for all ranks or specific ones."
4252
- msgstr ""
4253
-
4254
- #: addons/ranks/myCRED-addon-ranks.php:731
4255
- #@ mycred
4256
- msgid "Templates"
4257
- msgstr ""
4258
-
4259
- #: addons/ranks/myCRED-addon-ranks.php:732
4260
- #@ mycred
4261
- msgid "Ranks are just another custom post type which means that you can, if you select to make Ranks Public, create custom template files for ranks in your theme folder."
4262
- msgstr ""
4263
-
4264
- #: addons/ranks/myCRED-addon-ranks.php:734
4265
- #@ mycred
4266
- msgid "Changing URL Slug"
4267
- msgstr ""
4268
-
4269
- #: addons/ranks/myCRED-addon-ranks.php:735
4270
- #@ mycred
4271
- msgid "You can change the URL slug used for ranks to any URL friendly value."
4272
- msgstr ""
4273
-
4274
- #: addons/sell-content/myCRED-addon-sell-content.php:65
4275
- #@ mycred
4276
- msgid "Hours"
4277
- msgstr ""
4278
-
4279
- #: addons/sell-content/myCRED-addon-sell-content.php:207
4280
- #@ mycred
4281
- msgid "You can not buy this content."
4282
- msgstr ""
4283
-
4284
- #: addons/sell-content/myCRED-addon-sell-content.php:269
4285
- #: addons/transfer/myCRED-addon-transfer.php:129
4286
- #: mycred.php:525
4287
- #@ mycred
4288
- msgid "Processing..."
4289
- msgstr ""
4290
-
4291
- #: addons/sell-content/myCRED-addon-sell-content.php:270
4292
- #@ mycred
4293
- msgid "Error. Try Again"
4294
- msgstr ""
4295
-
4296
- #: addons/sell-content/myCRED-addon-sell-content.php:351
4297
- #@ mycred
4298
- msgid "Purchases expire after"
4299
- msgstr ""
4300
-
4301
- #: addons/sell-content/myCRED-addon-sell-content.php:353
4302
- #@ mycred
4303
- msgid "Use zero for permanent sales."
4304
- msgstr ""
4305
-
4306
- #: addons/sell-content/myCRED-addon-sell-content.php:443
4307
- #@ mycred
4308
- msgid "Sell This"
4309
- msgstr ""
4310
-
4311
- #: addons/sell-content/myCRED-addon-sell-content.php:492
4312
- #@ mycred
4313
- msgid " Sell Content needs to be setup before you can use this feature."
4314
- msgstr ""
4315
-
4316
- #: addons/sell-content/myCRED-addon-sell-content.php:538
4317
- #@ mycred
4318
- msgid "Purchase expires after"
4319
- msgstr ""
4320
-
4321
- #: addons/sell-content/myCRED-addon-sell-content.php:865
4322
- #: addons/sell-content/myCRED-addon-sell-content.php:945
4323
- #@ mycred
4324
- msgid "The following content is set for sale:"
4325
- msgstr ""
4326
-
4327
- #: addons/sell-content/myCRED-addon-sell-content.php:963
4328
- #@ mycred
4329
- msgid "No purchases found"
4330
- msgstr ""
4331
-
4332
- #: addons/sell-content/myCRED-addon-sell-content.php:1000
4333
- #@ mycred
4334
- msgid "Purchased"
4335
- msgstr ""
4336
-
4337
- #: addons/transfer/myCRED-addon-transfer.php:507
4338
- #@ mycred
4339
- msgid "Allow transfers between users."
4340
- msgstr ""
4341
-
4342
- #: addons/transfer/myCRED-addon-transfer.php:509
4343
- #, php-format
4344
- #@ mycred
4345
- msgid "%s Transfer"
4346
- msgstr ""
4347
-
4348
- #: includes/mycred-functions.php:310
4349
- #@ mycred
4350
- msgid "Deleted"
4351
- msgstr ""
4352
-
4353
- #: includes/mycred-functions.php:441
4354
- #@ mycred
4355
- msgid "Deleted Item"
4356
- msgstr ""
4357
-
4358
- #: includes/mycred-network.php:135
4359
- #, php-format
4360
- #@ mycred
4361
- msgid "Configure network settings for %s."
4362
- msgstr ""
4363
-
4364
- #: includes/mycred-network.php:152
4365
- #, php-format
4366
- #@ mycred
4367
- msgid "If enabled, your main site's %s setup will be used for all other sites."
4368
- msgstr ""
4369
-
4370
- #: includes/mycred-network.php:159
4371
- #, php-format
4372
- #@ mycred
4373
- msgid "Comma separated list of blog ids where %s is to be disabled."
4374
- msgstr ""
4375
-
4376
- #: includes/mycred-shortcodes.php:139
4377
- #: includes/mycred-shortcodes.php:250
4378
- #@ mycred
4379
- msgid "Amount missing!"
4380
- msgstr ""
4381
-
4382
- #: includes/mycred-shortcodes.php:142
4383
- #: includes/mycred-shortcodes.php:258
4384
- #@ mycred
4385
- msgid "Log Template Missing!"
4386
- msgstr ""
4387
-
4388
- #: includes/mycred-shortcodes.php:201
4389
- #@ mycred
4390
- msgid "Anchor missing URL!"
4391
- msgstr ""
4392
-
4393
- #: includes/mycred-shortcodes.php:254
4394
- #@ mycred
4395
- msgid "User ID missing for recipient."
4396
- msgstr ""
4397
-
4398
- #: includes/mycred-widgets.php:19
4399
- #, php-format
4400
- #@ mycred
4401
- msgid "Show the current users %s balance"
4402
- msgstr ""
4403
-
4404
- #: includes/mycred-widgets.php:21
4405
- #, php-format
4406
- #@ mycred
4407
- msgid "%s Balance"
4408
- msgstr ""
4409
-
4410
- #: includes/mycred-widgets.php:201
4411
- #@ mycred
4412
- msgid "This will be appended after the balance. See the help tab for available template tags."
4413
- msgstr ""
4414
-
4415
- #: includes/mycred-widgets.php:292
4416
- #, php-format
4417
- #@ mycred
4418
- msgid "Show a list of users sorted by their %s balance"
4419
- msgstr ""
4420
-
4421
- #: includes/mycred-widgets.php:294
4422
- #, php-format
4423
- #@ mycred
4424
- msgid "%s List"
4425
- msgstr ""
4426
-
4427
- #: includes/mycred-widgets.php:373
4428
- #@ mycred
4429
- msgid "Offset"
4430
- msgstr ""
4431
-
4432
- #: includes/mycred-widgets.php:375
4433
- #@ mycred
4434
- msgid "Optional offset of order. Use zero to return the first in the list."
4435
- msgstr ""
4436
-
4437
- #: includes/mycred-widgets.php:378
4438
- #@ mycred
4439
- msgid "Order"
4440
- msgstr ""
4441
-
4442
- #: includes/mycred-widgets.php:382
4443
- #@ mycred
4444
- msgid "Ascending"
4445
- msgstr ""
4446
-
4447
- #: includes/mycred-widgets.php:383
4448
- #@ mycred
4449
- msgid "Descending"
4450
- msgstr ""
4451
-
4452
- #: modules/mycred-module-hooks.php:117
4453
- #, php-format
4454
- #@ mycred
4455
- msgid "%plural% for clicking on links"
4456
- msgstr ""
4457
-
4458
- #: modules/mycred-module-hooks.php:118
4459
- #@ mycred
4460
- msgid "Award %_plural% to users who clicks on links generated by the [mycred_link] shortcode."
4461
- msgstr ""
4462
-
4463
- #: modules/mycred-module-hooks.php:161
4464
- #@ mycred
4465
- msgid "BadgeOS"
4466
- msgstr ""
4467
-
4468
- #: modules/mycred-module-hooks.php:162
4469
- #@ mycred
4470
- msgid "Default settings for each BadgeOS Achievement type. These settings may be overridden for individual achievement type."
4471
- msgstr ""
4472
-
4473
- #: modules/mycred-module-hooks.php:170
4474
- #@ mycred
4475
- msgid "WP-Polls"
4476
- msgstr ""
4477
-
4478
- #: modules/mycred-module-hooks.php:171
4479
- #@ mycred
4480
- msgid "Awards %_plural% for users voting in polls."
4481
- msgstr ""
4482
-
4483
- #: modules/mycred-module-hooks.php:179
4484
- #@ mycred
4485
- msgid "WP Favorite Posts"
4486
- msgstr ""
4487
-
4488
- #: modules/mycred-module-hooks.php:180
4489
- #@ mycred
4490
- msgid "Awards %_plural% for users adding posts to their favorites."
4491
- msgstr ""
4492
-
4493
- #: modules/mycred-module-hooks.php:188
4494
- #@ mycred
4495
- msgid "Events Manager"
4496
- msgstr ""
4497
-
4498
- #: modules/mycred-module-hooks.php:189
4499
- #@ mycred
4500
- msgid "Awards %_plural% for users attending events."
4501
- msgstr ""
4502
-
4503
- #: modules/mycred-module-hooks.php:1072
4504
- #@ mycred
4505
- msgid "Once for each unique URL"
4506
- msgstr ""
4507
-
4508
- #: modules/mycred-module-hooks.php:1073
4509
- #@ mycred
4510
- msgid "Once for each unique link id"
4511
- msgstr ""
4512
-
4513
- #: modules/mycred-module-hooks.php:1219
4514
- #@ mycred
4515
- msgid "The default amount to award for clicking on links. You can override this in the shortcode."
4516
- msgstr ""
4517
-
4518
- #: modules/mycred-module-hooks.php:1226
4519
- #, php-format
4520
- #@ mycred
4521
- msgid "Available template tags: General and custom tags: %url% or %id%."
4522
- msgstr ""
4523
-
4524
- #: modules/mycred-module-hooks.php:1237
4525
- #@ mycred
4526
- msgid "Remember!"
4527
- msgstr ""
4528
-
4529
- #: modules/mycred-module-hooks.php:1237
4530
- #@ mycred
4531
- msgid "If you select to limit by id and you do not include the id attribute in the shortcode, no %_plural% will be awarded!"
4532
- msgstr ""
4533
-
4534
- #: modules/mycred-module-log.php:930
4535
- #@ mycred
4536
- msgid "User Missing"
4537
- msgstr ""
4538
-
4539
- #: modules/mycred-module-plugins.php:664
4540
- #, php-format
4541
- #@ mycred
4542
- msgid "Please setup your <a href=\"%s\">default settings</a> before using this feature."
4543
- msgstr ""
4544
-
4545
- #: modules/mycred-module-plugins.php:675
4546
- #: modules/mycred-module-plugins.php:677
4547
- #, php-format
4548
- #@ mycred
4549
- msgid "%plural% to Award"
4550
- msgstr ""
4551
-
4552
- #: modules/mycred-module-plugins.php:679
4553
- #@ mycred
4554
- msgid "Use zero to disable"
4555
- msgstr ""
4556
-
4557
- #: modules/mycred-module-plugins.php:690
4558
- #@ mycred
4559
- msgid "Deduction Log Template"
4560
- msgstr ""
4561
-
4562
- #: modules/mycred-module-plugins.php:826
4563
- #, php-format
4564
- #@ mycred
4565
- msgid "Default %s for %s"
4566
- msgstr ""
4567
-
4568
- #: modules/mycred-module-plugins.php:833
4569
- #@ mycred
4570
- msgid "User zero to disable users gaining %_plural%"
4571
- msgstr ""
4572
-
4573
- #: modules/mycred-module-plugins.php:837
4574
- #@ mycred
4575
- msgid "Default Log template"
4576
- msgstr ""
4577
-
4578
- #: modules/mycred-module-plugins.php:975
4579
- #, php-format
4580
- #@ mycred
4581
- msgid "Available template tags: General. You can also use %poll_id% and %poll_question%."
4582
- msgstr ""
4583
-
4584
- #: modules/mycred-module-plugins.php:1085
4585
- #@ mycred
4586
- msgid "Adding Content to Favorites"
4587
- msgstr ""
4588
-
4589
- #: modules/mycred-module-plugins.php:1095
4590
- #: modules/mycred-module-plugins.php:1108
4591
- #: modules/mycred-module-plugins.php:1255
4592
- #: modules/mycred-module-plugins.php:1268
4593
- #@ mycred
4594
- msgid "Available template tags: General and Post Related"
4595
- msgstr ""
4596
-
4597
- #: modules/mycred-module-plugins.php:1098
4598
- #@ mycred
4599
- msgid "Removing Content from Favorites"
4600
- msgstr ""
4601
-
4602
- #: modules/mycred-module-plugins.php:1245
4603
- #@ mycred
4604
- msgid "Attending Event"
4605
- msgstr ""
4606
-
4607
- #: modules/mycred-module-plugins.php:1258
4608
- #@ mycred
4609
- msgid "Cancelling Attendance"
4610
- msgstr ""
4611
-
4612
- #: mycred.php:526
4613
- #@ mycred
4614
- msgid "Sent"
4615
- msgstr ""
4616
-
4617
- #: mycred.php:527
4618
- #@ mycred
4619
- msgid "Error - Try Again"
4620
- msgstr ""
4621
-
4622
- #: includes/mycred-shortcodes.php:66
4623
- #@ mycred
4624
- msgid "Leaderboard is empty."
4625
- msgstr ""
4626
-
4627
- #: modules/mycred-module-help.php:151
4628
- #: modules/mycred-module-help.php:172
4629
- #, php-format
4630
- #@ mycred
4631
- msgid "The users ranking. Was \"%rank%\" before version 1.1"
4632
- msgstr ""
4633
-
4634
- #: addons/ranks/myCRED-addon-ranks.php:615
4635
- #@ mycred
4636
- msgid "Rank Features"
4637
- msgstr ""
4638
-
4639
- #: addons/ranks/myCRED-addon-ranks.php:619
4640
- #, php-format
4641
- #@ mycred
4642
- msgid "%plural% requirement"
4643
- msgstr ""
4644
-
4645
- #: addons/ranks/myCRED-addon-ranks.php:620
4646
- #@ mycred
4647
- msgid "Featured Image (Logo)"
4648
- msgstr ""
4649
-
4650
- #: addons/ranks/myCRED-addon-ranks.php:621
4651
- #@ mycred
4652
- msgid "Content"
4653
- msgstr ""
4654
-
4655
- #: addons/ranks/myCRED-addon-ranks.php:622
4656
- #@ mycred
4657
- msgid "Excerpt"
4658
- msgstr ""
4659
-
4660
- #: addons/ranks/myCRED-addon-ranks.php:623
4661
- #@ mycred
4662
- msgid "Comments"
4663
- msgstr ""
4664
-
4665
- #: addons/ranks/myCRED-addon-ranks.php:624
4666
- #@ mycred
4667
- msgid "Page Attributes"
4668
- msgstr ""
4669
-
4670
- #: addons/ranks/myCRED-addon-ranks.php:625
4671
- #@ mycred
4672
- msgid "Custom Fields"
4673
- msgstr ""
4674
-
4675
- #: addons/ranks/myCRED-addon-ranks.php:635
4676
- #@ mycred
4677
- msgid "Archive URL"
4678
- msgstr ""
4679
-
4680
- #: addons/ranks/myCRED-addon-ranks.php:639
4681
- #@ mycred
4682
- msgid "Ignored if Ranks are not public"
4683
- msgstr ""
4684
-
4685
- #: addons/ranks/myCRED-addon-ranks.php:642
4686
- #@ mycred
4687
- msgid "Display Order"
4688
- msgstr ""
4689
-
4690
- #: addons/ranks/myCRED-addon-ranks.php:659
4691
- #@ mycred
4692
- msgid "Select in what order ranks should be displayed in your admin area and/or front if ranks are \"Public\""
4693
- msgstr ""
4694
-
4695
- #: includes/mycred-admin.php:179
4696
- #@ mycred
4697
- msgid "Description is required!"
4698
- msgstr ""
4699
-
4700
- #: modules/mycred-module-hooks.php:125
4701
- #@ default
4702
- msgid "bbPress"
4703
- msgstr ""
4704
-
4705
- #: modules/mycred-module-hooks.php:992
4706
- #@ mycred
4707
- msgid "Limit per post"
4708
- msgstr ""
4709
-
4710
- #: modules/mycred-module-hooks.php:994
4711
- #@ mycred
4712
- msgid "The number of comments per post that grants %_plural%. User zero for unlimited."
4713
- msgstr ""
4714
-
4715
- #: modules/mycred-module-hooks.php:998
4716
- #@ mycred
4717
- msgid "Limit per day"
4718
- msgstr ""
4719
-
4720
- #: modules/mycred-module-hooks.php:1000
4721
- #@ mycred
4722
- msgid "Number of comments per day that grants %_plural%. User zero for unlimited."
4723
- msgstr ""
4724
-
4725
- #: modules/mycred-module-hooks.php:1005
4726
- #, php-format
4727
- #@ mycred
4728
- msgid "%plural% is to be awarded even when comment authors reply to their own comment."
4729
- msgstr ""
4730
-
4731
- #: modules/mycred-module-plugins.php:237
4732
- #, php-format
4733
- #@ mycred
4734
- msgid "%plural% for New Forum"
4735
- msgstr ""
4736
-
4737
- #: modules/mycred-module-plugins.php:264
4738
- #@ mycred
4739
- msgid "Forum authors can receive %_plural% for creating new topics."
4740
- msgstr ""
4741
-
4742
- #: modules/mycred-module-plugins.php:268
4743
- #, php-format
4744
- #@ mycred
4745
- msgid "%plural% for Favorited Topic"
4746
- msgstr ""
4747
-
4748
- #: modules/mycred-module-plugins.php:295
4749
- #@ mycred
4750
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
4751
- msgstr ""
4752
-
4753
- #: modules/mycred-module-plugins.php:299
4754
- #@ mycred
4755
- msgid "Show users %_plural% balance in replies"
4756
- msgstr ""
4757
-
4758
- #: mycred.php:95
4759
- #: mycred.php:102
4760
- #@ mycred
4761
- msgid "Cheatin&#8217; huh?"
4762
- msgstr ""
4763
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/mycred-fr_FR.mo ADDED
Binary file
lang/mycred.pot CHANGED
@@ -1,143 +1,159 @@
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: myCRED 1.2.2\n"
4
- "POT-Creation-Date: 2013-08-24 19:04+0100\n"
5
- "PO-Revision-Date: 2013-08-24 19:04+0100\n"
 
6
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
7
- "Language-Team: mycred.me <support@mycred.me>\n"
8
- "Language: English\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Generator: Poedit 1.5.7\n"
13
- "X-Poedit-KeywordsList: __;_e;_n\n"
14
  "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-SearchPath-0: .\n"
 
17
 
18
- #: mycred.php:97 mycred.php:104
 
19
  msgid "Cheatin&#8217; huh?"
20
  msgstr ""
21
 
22
- #: mycred.php:114 addons/email-notices/myCRED-addon-email-notices.php:602
23
- #: addons/gateway/event-booking/mycred-eventsmanager.php:476
24
- #: includes/mycred-install.php:419
 
25
  msgid "Setup"
26
  msgstr ""
27
 
28
- #: mycred.php:121 addons/gateway/carts/mycred-marketpress.php:341
29
- #: includes/mycred-network.php:139 modules/mycred-module-general.php:19
30
- #: modules/mycred-module-general.php:20 modules/mycred-module-general.php:21
31
- #: modules/mycred-module-general.php:47 modules/mycred-module-log.php:246
32
- msgid "Settings"
 
33
  msgstr ""
34
 
35
- #: mycred.php:135
 
 
 
 
36
  msgid ""
37
  "myCRED is blocked for this site. Please contact your network administrator "
38
  "for further details."
39
  msgstr ""
40
 
41
- #: mycred.php:405
42
  msgid "My Balance: "
43
  msgstr ""
44
 
45
- #: mycred.php:509
46
  #, php-format
47
  msgid "Edit Users %s balance"
48
  msgstr ""
49
 
50
- #: mycred.php:510
51
  msgid "Close"
52
  msgstr ""
53
 
54
- #: mycred.php:511 mycred.php:559 addons/ranks/myCRED-addon-ranks.php:827
55
- #: addons/sell-content/myCRED-addon-sell-content.php:276
56
- #: addons/transfer/myCRED-addon-transfer.php:136
 
 
57
  msgid "Processing..."
58
  msgstr ""
59
 
60
- #: mycred.php:560
61
  msgid "Sent"
62
  msgstr ""
63
 
64
- #: mycred.php:561
65
  msgid "Error - Try Again"
66
  msgstr ""
67
 
68
- #: abstracts/mycred-abstract-hook.php:57
69
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
70
  msgstr ""
71
 
72
- #: abstracts/mycred-abstract-hook.php:66
73
  msgid "This Hook has no settings"
74
  msgstr ""
75
 
76
- #: abstracts/mycred-abstract-hook.php:133 modules/mycred-module-hooks.php:1074
 
77
  msgid "No limit"
78
  msgstr ""
79
 
80
- #: abstracts/mycred-abstract-hook.php:134
81
  msgid "Once every 24 hours"
82
  msgstr ""
83
 
84
- #: abstracts/mycred-abstract-hook.php:135
85
  msgid "Once every 12 hours"
86
  msgstr ""
87
 
88
- #: abstracts/mycred-abstract-hook.php:136
89
  msgid "Once every 7 days"
90
  msgstr ""
91
 
92
- #: abstracts/mycred-abstract-hook.php:137
93
  msgid "Once per day (reset at midnight)"
94
  msgstr ""
95
 
96
- #: abstracts/mycred-abstract-hook.php:144
97
- #: addons/banking/abstracts/mycred-abstract-service.php:283
98
- #: addons/buy-creds/myCRED-addon-buy-creds.php:238
99
- #: addons/buy-creds/myCRED-addon-buy-creds.php:259
100
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:515
101
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:538
102
- #: addons/buy-creds/gateways/netbilling.php:514
103
- #: addons/buy-creds/gateways/zombaio.php:382
104
- #: addons/email-notices/myCRED-addon-email-notices.php:186
105
- #: addons/email-notices/myCRED-addon-email-notices.php:751
106
  msgid "Select"
107
  msgstr ""
108
 
109
- #: abstracts/mycred-abstract-module.php:303
110
- #: abstracts/mycred-abstract-module.php:311
 
 
 
 
111
  msgid "Surprise"
112
  msgstr ""
113
 
114
- #: abstracts/mycred-abstract-module.php:359
115
  msgid "click to open"
116
  msgstr ""
117
 
118
- #: abstracts/mycred-abstract-module.php:360
119
  msgid "click to close"
120
  msgstr ""
121
 
122
- #: addons/banking/myCRED-addon-banking.php:12
123
- #: addons/banking/myCRED-addon-banking.php:49
124
- #: addons/banking/myCRED-addon-banking.php:50
125
- #: addons/banking/myCRED-addon-banking.php:51
126
- #: addons/banking/myCRED-addon-banking.php:155
127
  msgid "Banking"
128
  msgstr ""
129
 
130
- #: addons/banking/myCRED-addon-banking.php:13
131
  msgid ""
132
- "This add-on allows you to offer interest on your users %_plural% balances or "
133
  "setup recurring payouts."
134
  msgstr ""
135
 
136
- #: addons/banking/myCRED-addon-banking.php:110
137
  msgid "Compound Interest"
138
  msgstr ""
139
 
140
- #: addons/banking/myCRED-addon-banking.php:111
141
  msgid ""
142
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
143
  "annual and is compounded daily as long as this service is enabled. Positive "
@@ -145,182 +161,189 @@ msgid ""
145
  "rate will to users loosing %_plural%."
146
  msgstr ""
147
 
148
- #: addons/banking/myCRED-addon-banking.php:117
149
  msgid "Recurring Payouts"
150
  msgstr ""
151
 
152
- #: addons/banking/myCRED-addon-banking.php:118
153
  msgid ""
154
  "Give your users %_plural% on a regular basis with the option to set the "
155
  "number of times you want this payout to run (cycles)."
156
  msgstr ""
157
 
158
- #: addons/banking/myCRED-addon-banking.php:143
159
- #: addons/import/myCRED-addon-import.php:458 includes/mycred-network.php:115
160
- #: modules/mycred-module-addons.php:249 modules/mycred-module-general.php:35
161
- #: modules/mycred-module-hooks.php:232 modules/mycred-module-log.php:266
162
- #: modules/mycred-module-log.php:348
 
 
 
163
  msgid "Access Denied"
164
  msgstr ""
165
 
166
- #: addons/banking/myCRED-addon-banking.php:150
167
- #: addons/buy-creds/myCRED-addon-buy-creds.php:317
168
- #: modules/mycred-module-general.php:42 modules/mycred-module-hooks.php:239
 
169
  msgid "Settings Updated"
170
  msgstr ""
171
 
172
- #: addons/banking/myCRED-addon-banking.php:156
173
  msgid ""
174
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
175
  "purchases or payments using the Gateway add-on, along with offering interest "
176
  "on %_plural% balances."
177
  msgstr ""
178
 
179
- #: addons/banking/myCRED-addon-banking.php:159
180
  msgid "WP-Cron deactivation detected!"
181
  msgstr ""
182
 
183
- #: addons/banking/myCRED-addon-banking.php:160
184
  msgid "Warning! This add-on requires WP - Cron to work."
185
  msgstr ""
186
 
187
- #: addons/banking/myCRED-addon-banking.php:173
188
- #: addons/buy-creds/myCRED-addon-buy-creds.php:346
189
- #: modules/mycred-module-hooks.php:257
190
  msgid "Enable"
191
  msgstr ""
192
 
193
- #: addons/banking/myCRED-addon-banking.php:186
194
- #: modules/mycred-module-hooks.php:270
195
  msgid "Update Changes"
196
  msgstr ""
197
 
198
- #: addons/banking/abstracts/mycred-abstract-service.php:57
199
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
200
  msgstr ""
201
 
202
- #: addons/banking/abstracts/mycred-abstract-service.php:66
203
  msgid "This Service has no settings"
204
  msgstr ""
205
 
206
- #: addons/banking/abstracts/mycred-abstract-service.php:143
207
  msgid "Hourly"
208
  msgstr ""
209
 
210
- #: addons/banking/abstracts/mycred-abstract-service.php:147
211
  msgid "Daily"
212
  msgstr ""
213
 
214
- #: addons/banking/abstracts/mycred-abstract-service.php:151
215
  msgid "Weekly"
216
  msgstr ""
217
 
218
- #: addons/banking/abstracts/mycred-abstract-service.php:155
219
  msgid "Monthly"
220
  msgstr ""
221
 
222
- #: addons/banking/abstracts/mycred-abstract-service.php:159
223
  msgid "Quarterly"
224
  msgstr ""
225
 
226
- #: addons/banking/abstracts/mycred-abstract-service.php:163
227
  msgid "Semiannually"
228
  msgstr ""
229
 
230
- #: addons/banking/abstracts/mycred-abstract-service.php:167
231
  msgid "Annually"
232
  msgstr ""
233
 
234
- #: addons/banking/services/mycred-bank-service-interest.php:25
235
  msgid "%plural% interest rate payment"
236
  msgstr ""
237
 
238
- #: addons/banking/services/mycred-bank-service-interest.php:288
239
  msgid "Interest Rate"
240
  msgstr ""
241
 
242
- #: addons/banking/services/mycred-bank-service-interest.php:295
243
  msgid "Payed / Charged"
244
  msgstr ""
245
 
246
- #: addons/banking/services/mycred-bank-service-interest.php:301
247
  msgid ""
248
  "The interest rate can be either positive or negative and is compounded daily."
249
  msgstr ""
250
 
251
- #: addons/banking/services/mycred-bank-service-interest.php:304
252
  msgid "Minimum Balance"
253
  msgstr ""
254
 
255
- #: addons/banking/services/mycred-bank-service-interest.php:308
256
  msgid "The minimum requires balance for interest to apply."
257
  msgstr ""
258
 
259
- #: addons/banking/services/mycred-bank-service-interest.php:311
260
- #: addons/banking/services/mycred-bank-service-payouts.php:242
261
- #: addons/buy-creds/myCRED-addon-buy-creds.php:216
262
- #: addons/buy-creds/myCRED-addon-buy-creds.php:271
263
- #: addons/gateway/carts/mycred-marketpress.php:359
264
- #: addons/gateway/carts/mycred-woocommerce.php:87
265
- #: modules/mycred-module-hooks.php:519 modules/mycred-module-hooks.php:1228
266
- #: modules/mycred-module-hooks.php:1505 modules/mycred-module-plugins.php:878
267
- #: modules/mycred-module-plugins.php:880 modules/mycred-module-plugins.php:889
268
- #: modules/mycred-module-plugins.php:1168
269
- #: modules/mycred-module-plugins.php:1288
270
- #: modules/mycred-module-plugins.php:1301
271
- #: modules/mycred-module-plugins.php:1439
272
- #: modules/mycred-module-plugins.php:1452
273
- #: modules/mycred-module-plugins.php:1548
274
- #: modules/mycred-module-plugins.php:1561
 
 
 
275
  msgid "Log Template"
276
  msgstr ""
277
 
278
- #: addons/banking/services/mycred-bank-service-interest.php:315
279
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
280
  msgstr ""
281
 
282
- #: addons/banking/services/mycred-bank-service-payouts.php:21
283
  msgid "Daily %_plural%"
284
  msgstr ""
285
 
286
- #: addons/banking/services/mycred-bank-service-payouts.php:204
287
  msgid "Not yet run"
288
  msgstr ""
289
 
290
- #: addons/banking/services/mycred-bank-service-payouts.php:209
291
  msgid "Pay Users"
292
  msgstr ""
293
 
294
- #: addons/banking/services/mycred-bank-service-payouts.php:212
295
- #: addons/buy-creds/myCRED-addon-buy-creds.php:667
296
- #: includes/mycred-admin.php:336
297
  msgid "Amount"
298
  msgstr ""
299
 
300
- #: addons/banking/services/mycred-bank-service-payouts.php:214
301
  msgid "Can not be zero."
302
  msgstr ""
303
 
304
- #: addons/banking/services/mycred-bank-service-payouts.php:218
305
- #: addons/banking/services/mycred-bank-service-payouts.php:231
306
- #: modules/mycred-module-hooks.php:1520
307
  msgid "Interval"
308
  msgstr ""
309
 
310
- #: addons/banking/services/mycred-bank-service-payouts.php:223
311
- #: addons/banking/services/mycred-bank-service-payouts.php:232
312
  msgid "Cycles"
313
  msgstr ""
314
 
315
- #: addons/banking/services/mycred-bank-service-payouts.php:225
316
  msgid "Set to -1 for unlimited"
317
  msgstr ""
318
 
319
- #: addons/banking/services/mycred-bank-service-payouts.php:228
320
  msgid "Last Run / Activated"
321
  msgstr ""
322
 
323
- #: addons/banking/services/mycred-bank-service-payouts.php:231
324
  msgid ""
325
  "Select how often you want to award %_plural%. Note that when this service is "
326
  "enabled, the first payout will be in the beginning of the next period. So "
@@ -328,611 +351,625 @@ msgid ""
328
  "morning."
329
  msgstr ""
330
 
331
- #: addons/banking/services/mycred-bank-service-payouts.php:232
332
  msgid ""
333
  "Cycles let you choose how many intervals this service should run. Each time "
334
  "a cycle runs, the value will decrease until it hits zero, in which case this "
335
  "service will deactivate itself. Use -1 to run unlimited times."
336
  msgstr ""
337
 
338
- #: addons/banking/services/mycred-bank-service-payouts.php:233
339
  msgid "Important"
340
  msgstr ""
341
 
342
- #: addons/banking/services/mycred-bank-service-payouts.php:233
343
  msgid ""
344
  "You can always stop payouts by deactivating this service. Just remember that "
345
  "if you deactivate while there are cycles left, this service will continue on "
346
  "when it gets re-activated. Set cycles to zero to reset."
347
  msgstr ""
348
 
349
- #: addons/banking/services/mycred-bank-service-payouts.php:235
350
- #: includes/mycred-install.php:587 modules/mycred-module-general.php:107
 
351
  msgid "Excludes"
352
  msgstr ""
353
 
354
- #: addons/banking/services/mycred-bank-service-payouts.php:239
355
  msgid ""
356
  "Comma separated list of user IDs to exclude from this service. No spaces "
357
  "allowed!"
358
  msgstr ""
359
 
360
- #: addons/banking/services/mycred-bank-service-payouts.php:246
361
- #: addons/buddypress/hooks/bp-galleries.php:81
362
- #: addons/buddypress/hooks/bp-groups.php:435
363
- #: addons/buddypress/hooks/bp-groups.php:448
364
- #: addons/buddypress/hooks/bp-groups.php:461
365
- #: addons/buddypress/hooks/bp-groups.php:474
366
- #: addons/buddypress/hooks/bp-groups.php:487
367
- #: addons/buddypress/hooks/bp-groups.php:500
368
- #: addons/buddypress/hooks/bp-groups.php:514
369
- #: addons/buddypress/hooks/bp-groups.php:527
370
- #: addons/buddypress/hooks/bp-groups.php:540
371
- #: addons/buddypress/hooks/bp-groups.php:553
372
- #: addons/buddypress/hooks/bp-links.php:175
373
- #: addons/buddypress/hooks/bp-links.php:188
374
- #: addons/buddypress/hooks/bp-links.php:201
375
- #: addons/buddypress/hooks/bp-links.php:214
376
- #: addons/buddypress/hooks/bp-profile.php:320
377
- #: addons/buddypress/hooks/bp-profile.php:333
378
- #: addons/buddypress/hooks/bp-profile.php:372
379
- #: addons/buddypress/hooks/bp-profile.php:385
380
- #: addons/buddypress/hooks/bp-profile.php:398
381
- #: addons/buddypress/hooks/bp-profile.php:411
382
- #: addons/gateway/event-booking/mycred-eventespresso3.php:428
383
- #: modules/mycred-module-hooks.php:523 modules/mycred-module-hooks.php:1509
384
- #: modules/mycred-module-plugins.php:639 modules/mycred-module-plugins.php:660
385
- #: modules/mycred-module-plugins.php:1552
386
- #: modules/mycred-module-plugins.php:1565
387
- #: modules/mycred-module-subscriptions.php:488
388
- #: modules/mycred-module-subscriptions.php:501
 
 
389
  msgid "Available template tags: General"
390
  msgstr ""
391
 
392
- #: addons/buddypress/myCRED-addon-buddypress.php:13
393
- #: addons/buddypress/myCRED-addon-buddypress.php:379
394
  msgid "BuddyPress"
395
  msgstr ""
396
 
397
- #: addons/buddypress/myCRED-addon-buddypress.php:14
398
  msgid ""
399
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
400
  "BuddyPress allowing you to hook into most BuddyPress related actions."
401
  msgstr ""
402
 
403
- #: addons/buddypress/myCRED-addon-buddypress.php:56
404
- #: modules/mycred-module-log.php:69 modules/mycred-module-log.php:373
 
405
  msgid "My History"
406
  msgstr ""
407
 
408
- #: addons/buddypress/myCRED-addon-buddypress.php:57
409
  #, php-format
410
  msgid "%s's History"
411
  msgstr ""
412
 
413
- #: addons/buddypress/myCRED-addon-buddypress.php:219
414
- #: addons/buddypress/myCRED-addon-buddypress.php:227
415
- #: modules/mycred-module-log.php:980
416
  msgid "All"
417
  msgstr ""
418
 
419
- #: addons/buddypress/myCRED-addon-buddypress.php:220
420
- #: modules/mycred-module-log.php:981
421
  msgid "Today"
422
  msgstr ""
423
 
424
- #: addons/buddypress/myCRED-addon-buddypress.php:221
425
- #: modules/mycred-module-log.php:982
426
  msgid "Yesterday"
427
  msgstr ""
428
 
429
- #: addons/buddypress/myCRED-addon-buddypress.php:222
430
- #: modules/mycred-module-log.php:983
431
  msgid "This Week"
432
  msgstr ""
433
 
434
- #: addons/buddypress/myCRED-addon-buddypress.php:223
435
- #: modules/mycred-module-log.php:984
436
  msgid "This Month"
437
  msgstr ""
438
 
439
- #: addons/buddypress/myCRED-addon-buddypress.php:319
440
  msgid "BuddyPress: Groups"
441
  msgstr ""
442
 
443
- #: addons/buddypress/myCRED-addon-buddypress.php:320
444
  msgid ""
445
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
446
  "zero to disable a specific hook."
447
  msgstr ""
448
 
449
- #: addons/buddypress/myCRED-addon-buddypress.php:324
450
  msgid "BuddyPress: Members"
451
  msgstr ""
452
 
453
- #: addons/buddypress/myCRED-addon-buddypress.php:325
454
  msgid "Awards %_plural% for profile related actions."
455
  msgstr ""
456
 
457
- #: addons/buddypress/myCRED-addon-buddypress.php:331
458
  msgid "BuddyPress: Links"
459
  msgstr ""
460
 
461
- #: addons/buddypress/myCRED-addon-buddypress.php:332
462
  msgid "Awards %_plural% for link related actions."
463
  msgstr ""
464
 
465
- #: addons/buddypress/myCRED-addon-buddypress.php:339
466
  msgid "BuddyPress: Gallery Actions"
467
  msgstr ""
468
 
469
- #: addons/buddypress/myCRED-addon-buddypress.php:340
470
  msgid ""
471
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
472
  "Gallery."
473
  msgstr ""
474
 
475
- #: addons/buddypress/myCRED-addon-buddypress.php:360
476
- #: addons/buddypress/myCRED-addon-buddypress.php:367
477
- #: addons/ranks/myCRED-addon-ranks.php:766
478
  msgid "Do not show."
479
  msgstr ""
480
 
481
- #: addons/buddypress/myCRED-addon-buddypress.php:361
482
- #: addons/ranks/myCRED-addon-ranks.php:767
483
  msgid "Include in Profile Header."
484
  msgstr ""
485
 
486
- #: addons/buddypress/myCRED-addon-buddypress.php:362
487
- #: addons/ranks/myCRED-addon-ranks.php:768
488
  msgid "Include under the \"Profile\" tab"
489
  msgstr ""
490
 
491
- #: addons/buddypress/myCRED-addon-buddypress.php:363
492
- #: addons/ranks/myCRED-addon-ranks.php:769
493
  msgid "Include under the \"Profile\" tab and Profile Header."
494
  msgstr ""
495
 
496
- #: addons/buddypress/myCRED-addon-buddypress.php:368
497
  msgid "Show in Profile"
498
  msgstr ""
499
 
500
- #: addons/buddypress/myCRED-addon-buddypress.php:381
501
  msgid "%singular% Balance"
502
  msgstr ""
503
 
504
- #: addons/buddypress/myCRED-addon-buddypress.php:397
505
  msgid "Members can view each others %_singular% balance."
506
  msgstr ""
507
 
508
- #: addons/buddypress/myCRED-addon-buddypress.php:402
 
509
  msgid "Template"
510
  msgstr ""
511
 
512
- #: addons/buddypress/myCRED-addon-buddypress.php:404
513
  msgid "Available template tags are: %creds%, %number%, %rank%"
514
  msgstr ""
515
 
516
- #: addons/buddypress/myCRED-addon-buddypress.php:405
517
  msgid ""
518
  "Note that you can also use %rank_logo% to show the feature image of the rank."
519
  msgstr ""
520
 
521
- #: addons/buddypress/myCRED-addon-buddypress.php:409
522
- #: includes/mycred-widgets.php:159 modules/mycred-module-log.php:70
 
523
  msgid "%plural% History"
524
  msgstr ""
525
 
526
- #: addons/buddypress/myCRED-addon-buddypress.php:425
527
  msgid "Members can view each others %_plural% history."
528
  msgstr ""
529
 
530
- #: addons/buddypress/myCRED-addon-buddypress.php:430
531
  msgid "Menu Title"
532
  msgstr ""
533
 
534
- #: addons/buddypress/myCRED-addon-buddypress.php:432
535
  msgid "Title shown to me"
536
  msgstr ""
537
 
538
- #: addons/buddypress/myCRED-addon-buddypress.php:437
539
  #, php-format
540
  msgid "Title shown to others. Use %s to show the first name."
541
  msgstr ""
542
 
543
- #: addons/buddypress/myCRED-addon-buddypress.php:442
544
  msgid "Menu Position"
545
  msgstr ""
546
 
547
- #: addons/buddypress/myCRED-addon-buddypress.php:444
548
  msgid "Current menu positions:"
549
  msgstr ""
550
 
551
- #: addons/buddypress/myCRED-addon-buddypress.php:449
552
  msgid "History URL slug"
553
  msgstr ""
554
 
555
- #: addons/buddypress/myCRED-addon-buddypress.php:451
556
  msgid "Do not use empty spaces!"
557
  msgstr ""
558
 
559
- #: addons/buddypress/myCRED-addon-buddypress.php:456
560
  msgid "Number of history entries to show"
561
  msgstr ""
562
 
563
- #: addons/buddypress/hooks/bp-galleries.php:72
564
  msgid "%plural% for New Gallery"
565
  msgstr ""
566
 
567
- #: addons/buddypress/hooks/bp-galleries.php:79
568
- #: addons/buddypress/hooks/bp-groups.php:433
569
- #: addons/buddypress/hooks/bp-groups.php:446
570
- #: addons/buddypress/hooks/bp-groups.php:459
571
- #: addons/buddypress/hooks/bp-groups.php:472
572
- #: addons/buddypress/hooks/bp-groups.php:485
573
- #: addons/buddypress/hooks/bp-groups.php:498
574
- #: addons/buddypress/hooks/bp-groups.php:512
575
- #: addons/buddypress/hooks/bp-groups.php:525
576
- #: addons/buddypress/hooks/bp-groups.php:538
577
- #: addons/buddypress/hooks/bp-groups.php:551
578
- #: addons/buddypress/hooks/bp-links.php:173
579
- #: addons/buddypress/hooks/bp-links.php:186
580
- #: addons/buddypress/hooks/bp-links.php:199
581
- #: addons/buddypress/hooks/bp-links.php:212
582
- #: addons/buddypress/hooks/bp-profile.php:318
583
- #: addons/buddypress/hooks/bp-profile.php:331
584
- #: addons/buddypress/hooks/bp-profile.php:344
585
- #: addons/buddypress/hooks/bp-profile.php:357
586
- #: addons/buddypress/hooks/bp-profile.php:370
587
- #: addons/buddypress/hooks/bp-profile.php:383
588
- #: addons/buddypress/hooks/bp-profile.php:396
589
- #: addons/buddypress/hooks/bp-profile.php:409
590
- #: modules/mycred-module-hooks.php:381 modules/mycred-module-hooks.php:625
591
- #: modules/mycred-module-hooks.php:638 modules/mycred-module-hooks.php:673
592
- #: modules/mycred-module-hooks.php:963 modules/mycred-module-hooks.php:975
593
- #: modules/mycred-module-hooks.php:987 modules/mycred-module-plugins.php:401
594
- #: modules/mycred-module-plugins.php:414 modules/mycred-module-plugins.php:427
595
- #: modules/mycred-module-plugins.php:445 modules/mycred-module-plugins.php:458
596
- #: modules/mycred-module-plugins.php:477 modules/mycred-module-plugins.php:637
597
- #: modules/mycred-module-plugins.php:658 modules/mycred-module-plugins.php:790
598
- #: modules/mycred-module-plugins.php:1044
599
- #: modules/mycred-module-subscriptions.php:486
600
- #: modules/mycred-module-subscriptions.php:499
 
 
 
 
 
 
 
 
601
  msgid "Log template"
602
  msgstr ""
603
 
604
- #: addons/buddypress/hooks/bp-groups.php:419
605
  msgid "%plural% for Creating Groups"
606
  msgstr ""
607
 
608
- #: addons/buddypress/hooks/bp-groups.php:423
609
  msgid ""
610
  "If you use a negative value and the user does not have enough %_plural% the "
611
  "\"Create Group\" button will be disabled."
612
  msgstr ""
613
 
614
- #: addons/buddypress/hooks/bp-groups.php:427
615
  msgid "Number of members before awarding %_plural%"
616
  msgstr ""
617
 
618
- #: addons/buddypress/hooks/bp-groups.php:429
619
  msgid "Use zero to award %_plural% when group is created."
620
  msgstr ""
621
 
622
- #: addons/buddypress/hooks/bp-groups.php:439
623
  msgid "%plural% for Deleting Groups"
624
  msgstr ""
625
 
626
- #: addons/buddypress/hooks/bp-groups.php:452
627
  msgid "%plural% for New Forum Topic"
628
  msgstr ""
629
 
630
- #: addons/buddypress/hooks/bp-groups.php:465
631
  msgid "%plural% for Editing Forum Topic"
632
  msgstr ""
633
 
634
- #: addons/buddypress/hooks/bp-groups.php:478
635
  msgid "%plural% for New Forum Post"
636
  msgstr ""
637
 
638
- #: addons/buddypress/hooks/bp-groups.php:491
639
  msgid "%plural% for Editing Forum Post"
640
  msgstr ""
641
 
642
- #: addons/buddypress/hooks/bp-groups.php:504
643
  msgid "%plural% for Joining Groups"
644
  msgstr ""
645
 
646
- #: addons/buddypress/hooks/bp-groups.php:508
647
  msgid ""
648
  "If you use a negative value and the user does not have enough %_plural% the "
649
  "\"Join Group\" button will be disabled."
650
  msgstr ""
651
 
652
- #: addons/buddypress/hooks/bp-groups.php:518
653
  msgid "%plural% for Leaving Groups"
654
  msgstr ""
655
 
656
- #: addons/buddypress/hooks/bp-groups.php:531
657
  msgid "%plural% for New Group Avatar"
658
  msgstr ""
659
 
660
- #: addons/buddypress/hooks/bp-groups.php:544
661
  msgid "%plural% for New Group Comment"
662
  msgstr ""
663
 
664
- #: addons/buddypress/hooks/bp-links.php:166
665
  msgid "%plural% for New Links"
666
  msgstr ""
667
 
668
- #: addons/buddypress/hooks/bp-links.php:179
669
  msgid "%plural% for Vote on Link"
670
  msgstr ""
671
 
672
- #: addons/buddypress/hooks/bp-links.php:192
673
  msgid "%plural% for Updating Links"
674
  msgstr ""
675
 
676
- #: addons/buddypress/hooks/bp-links.php:205
677
  msgid "%plural% for Deleting Links"
678
  msgstr ""
679
 
680
- #: addons/buddypress/hooks/bp-profile.php:311
681
  msgid "%plural% for Profile Updates"
682
  msgstr ""
683
 
684
- #: addons/buddypress/hooks/bp-profile.php:324
685
  msgid "%plural% for New Avatar"
686
  msgstr ""
687
 
688
- #: addons/buddypress/hooks/bp-profile.php:337
689
  msgid "%plural% for New Friendships"
690
  msgstr ""
691
 
692
- #: addons/buddypress/hooks/bp-profile.php:346
693
- #: addons/buddypress/hooks/bp-profile.php:359
694
- #: addons/transfer/myCRED-addon-transfer.php:189
695
- #: addons/transfer/myCRED-addon-transfer.php:196
696
- #: modules/mycred-module-hooks.php:385
697
  msgid "Available template tags: General, User"
698
  msgstr ""
699
 
700
- #: addons/buddypress/hooks/bp-profile.php:350
701
  msgid "%plural% for Leaving Friendship"
702
  msgstr ""
703
 
704
- #: addons/buddypress/hooks/bp-profile.php:363
705
  msgid "%plural% for New Comment"
706
  msgstr ""
707
 
708
- #: addons/buddypress/hooks/bp-profile.php:376
709
  msgid "%plural% for Deleting Comment"
710
  msgstr ""
711
 
712
- #: addons/buddypress/hooks/bp-profile.php:389
713
  msgid "%plural% for New Messages"
714
  msgstr ""
715
 
716
- #: addons/buddypress/hooks/bp-profile.php:402
717
  msgid "%plural% for Sending Gift"
718
  msgstr ""
719
 
720
- #: addons/buy-creds/myCRED-addon-buy-creds.php:12
721
- #: addons/buy-creds/myCRED-addon-buy-creds.php:200
722
  msgid "buyCRED"
723
  msgstr ""
724
 
725
- #: addons/buy-creds/myCRED-addon-buy-creds.php:13
726
  msgid ""
727
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
728
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
729
  "also let your users buy points for other members."
730
  msgstr ""
731
 
732
- #: addons/buy-creds/myCRED-addon-buy-creds.php:55
733
- #: addons/buy-creds/myCRED-addon-buy-creds.php:56
734
- #: addons/buy-creds/myCRED-addon-buy-creds.php:57
735
- #: addons/buy-creds/myCRED-addon-buy-creds.php:322
736
  msgid "Payment Gateways"
737
  msgstr ""
738
 
739
- #: addons/buy-creds/myCRED-addon-buy-creds.php:141
740
- #: addons/buy-creds/myCRED-addon-buy-creds.php:773
741
  msgid "PayPal Payments Standard"
742
  msgstr ""
743
 
744
- #: addons/buy-creds/myCRED-addon-buy-creds.php:145
745
- #: addons/buy-creds/gateways/netbilling.php:423
746
  msgid "NETbilling"
747
  msgstr ""
748
 
749
- #: addons/buy-creds/myCRED-addon-buy-creds.php:149
750
  msgid "Skrill (Moneybookers)"
751
  msgstr ""
752
 
753
- #: addons/buy-creds/myCRED-addon-buy-creds.php:153
754
  msgid "Zombaio"
755
  msgstr ""
756
 
757
- #: addons/buy-creds/myCRED-addon-buy-creds.php:175
758
  msgid "Please login to purchase %_plural%"
759
  msgstr ""
760
 
761
- #: addons/buy-creds/myCRED-addon-buy-creds.php:189
762
  msgid "Gift purchase from %display_name%."
763
  msgstr ""
764
 
765
- #: addons/buy-creds/myCRED-addon-buy-creds.php:202
766
- #: addons/ranks/myCRED-addon-ranks.php:555
767
  msgid "Minimum %plural%"
768
  msgstr ""
769
 
770
- #: addons/buy-creds/myCRED-addon-buy-creds.php:206
771
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
772
  msgstr ""
773
 
774
- #: addons/buy-creds/myCRED-addon-buy-creds.php:209
775
  msgid "Login Template"
776
  msgstr ""
777
 
778
- #: addons/buy-creds/myCRED-addon-buy-creds.php:213
779
  msgid "Content to show when a user is not logged in."
780
  msgstr ""
781
 
782
- #: addons/buy-creds/myCRED-addon-buy-creds.php:220
783
  msgid ""
784
  "Available template tags: General and %gateway% for the payment gateway used."
785
  msgstr ""
786
 
787
- #: addons/buy-creds/myCRED-addon-buy-creds.php:223
788
  msgid "Thank You Page"
789
  msgstr ""
790
 
791
- #: addons/buy-creds/myCRED-addon-buy-creds.php:226
792
- #: addons/buy-creds/myCRED-addon-buy-creds.php:247
793
  msgid "Custom URL"
794
  msgstr ""
795
 
796
- #: addons/buy-creds/myCRED-addon-buy-creds.php:231
797
- #: addons/buy-creds/myCRED-addon-buy-creds.php:252
798
  msgid "Page"
799
  msgstr ""
800
 
801
- #: addons/buy-creds/myCRED-addon-buy-creds.php:244
802
  msgid "Cancellation Page"
803
  msgstr ""
804
 
805
- #: addons/buy-creds/myCRED-addon-buy-creds.php:265
806
  msgid "Gifting"
807
  msgstr ""
808
 
809
- #: addons/buy-creds/myCRED-addon-buy-creds.php:267
810
  msgid "Allow users to buy %_plural% for other users."
811
  msgstr ""
812
 
813
- #: addons/buy-creds/myCRED-addon-buy-creds.php:268
814
  msgid "Allow users to buy %_plural% for content authors."
815
  msgstr ""
816
 
817
- #: addons/buy-creds/myCRED-addon-buy-creds.php:273
818
  msgid "Available template tags: %singular%, %plural% and %display_name%"
819
  msgstr ""
820
 
821
- #: addons/buy-creds/myCRED-addon-buy-creds.php:323
822
  msgid ""
823
  "Select the payment gateways you want to offer your users to buy %plural%."
824
  msgstr ""
825
 
826
- #: addons/buy-creds/myCRED-addon-buy-creds.php:364
827
  msgid "Update Gateway Settings"
828
  msgstr ""
829
 
830
- #: addons/buy-creds/myCRED-addon-buy-creds.php:411
831
- #: addons/buy-creds/myCRED-addon-buy-creds.php:521
832
  msgid "This Add-on needs to setup before you can use this shortcode."
833
  msgstr ""
834
 
835
- #: addons/buy-creds/myCRED-addon-buy-creds.php:428
836
- #: addons/buy-creds/myCRED-addon-buy-creds.php:538
837
  msgid "No gateways installed."
838
  msgstr ""
839
 
840
- #: addons/buy-creds/myCRED-addon-buy-creds.php:429
841
- #: addons/buy-creds/myCRED-addon-buy-creds.php:539
842
  msgid "Gateway does not exist."
843
  msgstr ""
844
 
845
- #: addons/buy-creds/myCRED-addon-buy-creds.php:465
846
  msgid "Yourself"
847
  msgstr ""
848
 
849
- #: addons/buy-creds/myCRED-addon-buy-creds.php:540
850
  msgid "No active gateways found."
851
  msgstr ""
852
 
853
- #: addons/buy-creds/myCRED-addon-buy-creds.php:541
854
  msgid "The selected gateway is not active."
855
  msgstr ""
856
 
857
- #: addons/buy-creds/myCRED-addon-buy-creds.php:581
858
  msgid "Buy with"
859
  msgstr ""
860
 
861
- #: addons/buy-creds/myCRED-addon-buy-creds.php:585
862
- #: addons/sell-content/myCRED-addon-sell-content.php:49
863
  msgid "Buy Now"
864
  msgstr ""
865
 
866
- #: addons/buy-creds/myCRED-addon-buy-creds.php:618
867
  msgid "No users found"
868
  msgstr ""
869
 
870
- #: addons/buy-creds/myCRED-addon-buy-creds.php:628
871
  msgid "To"
872
  msgstr ""
873
 
874
- #: addons/buy-creds/myCRED-addon-buy-creds.php:645
875
  msgid "Select Amount"
876
  msgstr ""
877
 
878
- #: addons/buy-creds/myCRED-addon-buy-creds.php:669
879
  msgid "min."
880
  msgstr ""
881
 
882
- #: addons/buy-creds/myCRED-addon-buy-creds.php:677
883
  msgid "Select Gateway"
884
  msgstr ""
885
 
886
- #: addons/buy-creds/myCRED-addon-buy-creds.php:757
887
  msgid "Buy %plural%"
888
  msgstr ""
889
 
890
- #: addons/buy-creds/myCRED-addon-buy-creds.php:759
891
  msgid "This add-on lets your users buy %_plural% using a payment gateway."
892
  msgstr ""
893
 
894
- #: addons/buy-creds/myCRED-addon-buy-creds.php:760
895
  msgid "Supported Gateways"
896
  msgstr ""
897
 
898
- #: addons/buy-creds/myCRED-addon-buy-creds.php:761
899
  msgid ""
900
  "myCRED supports purchases through: PayPal Payments Standard, Skrill "
901
  "(Moneybookers) and NETbilling. Let us know if you want to add other payment "
902
  "gateways."
903
  msgstr ""
904
 
905
- #: addons/buy-creds/myCRED-addon-buy-creds.php:762
906
- #: addons/sell-content/myCRED-addon-sell-content.php:1057
907
- #: addons/transfer/myCRED-addon-transfer.php:493
908
  msgid "Usage"
909
  msgstr ""
910
 
911
- #: addons/buy-creds/myCRED-addon-buy-creds.php:763
912
  msgid "Purchases can be made using one of the following shortcodes:"
913
  msgstr ""
914
 
915
- #: addons/buy-creds/myCRED-addon-buy-creds.php:765
916
  msgid ""
917
  "When you want to sell a pre-set amount, sell to a specific user or use a "
918
  "specific gateway.<br />For more information on how to use the shortcode, "
919
  "please visit the"
920
  msgstr ""
921
 
922
- #: addons/buy-creds/myCRED-addon-buy-creds.php:766
923
  msgid ""
924
  "When you want to give your users the option to select an amount, gateway or "
925
  "recipient.<br />For more information on how to use the shortcode, please "
926
  "visit the"
927
  msgstr ""
928
 
929
- #: addons/buy-creds/myCRED-addon-buy-creds.php:775
930
- #: addons/buy-creds/gateways/paypal-standard.php:327
931
- #: addons/buy-creds/gateways/skrill.php:344
932
  msgid "Currency"
933
  msgstr ""
934
 
935
- #: addons/buy-creds/myCRED-addon-buy-creds.php:776
936
  msgid ""
937
  "Make sure you select a currency that your PayPal account supports. Otherwise "
938
  "transactions will not be approved until you login to your PayPal account and "
@@ -940,12 +977,12 @@ msgid ""
940
  "will not be applied to the buyer until you have resolved the issue."
941
  msgstr ""
942
 
943
- #: addons/buy-creds/myCRED-addon-buy-creds.php:777
944
  msgid "Instant Payment Notifications"
945
  msgstr ""
946
 
947
- #: addons/buy-creds/myCRED-addon-buy-creds.php:778
948
- #: addons/buy-creds/gateways/paypal-standard.php:358
949
  msgid ""
950
  "For this gateway to work, you must login to your PayPal account and under "
951
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
@@ -953,991 +990,1017 @@ msgid ""
953
  "have selected \"Receive IPN messages (Enabled)\"."
954
  msgstr ""
955
 
956
- #: addons/buy-creds/myCRED-addon-buy-creds.php:782
957
  msgid "Skrill"
958
  msgstr ""
959
 
960
- #: addons/buy-creds/myCRED-addon-buy-creds.php:784
961
- #: addons/buy-creds/gateways/netbilling.php:607
962
- #: addons/buy-creds/gateways/paypal-standard.php:321
963
- #: addons/buy-creds/gateways/skrill.php:338
964
- #: addons/buy-creds/gateways/zombaio.php:290
965
  msgid "Sandbox Mode"
966
  msgstr ""
967
 
968
- #: addons/buy-creds/myCRED-addon-buy-creds.php:785
969
  msgid ""
970
  "Transactions made while Sandbox mode is active are real transactions! "
971
  "Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
972
  msgstr ""
973
 
974
- #: addons/buy-creds/myCRED-addon-buy-creds.php:786
975
- #: addons/buy-creds/gateways/skrill.php:383
976
  msgid "Checkout Page"
977
  msgstr ""
978
 
979
- #: addons/buy-creds/myCRED-addon-buy-creds.php:787
980
  msgid ""
981
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
982
  "When a user selects this option, no points are awarded! You will need to "
983
  "manually award these once the bank transfer is completed."
984
  msgstr ""
985
 
986
- #: addons/buy-creds/myCRED-addon-buy-creds.php:788
987
- #: addons/buy-creds/gateways/skrill.php:403
988
  msgid ""
989
  "By default purchases made using Skrill will result in users having to signup "
990
  "for a Skrill account (if they do not have one already). You can contact "
991
  "Skrill Merchant Services and request to disable this feature."
992
  msgstr ""
993
 
994
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:61
995
  msgid ""
996
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
997
  "class."
998
  msgstr ""
999
 
1000
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:70
1001
  msgid ""
1002
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1003
  msgstr ""
1004
 
1005
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:86
1006
  msgid "This Payment Gateway has no settings"
1007
  msgstr ""
1008
 
1009
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:235
1010
  msgid "Go to "
1011
  msgstr ""
1012
 
1013
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:256
1014
  msgid "Payment Gateway Logo"
1015
  msgstr ""
1016
 
1017
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:269
1018
  msgid "Click here if you are not automatically redirected"
1019
  msgstr ""
1020
 
1021
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:866
1022
  msgid "Outside US"
1023
  msgstr ""
1024
 
1025
- #: addons/buy-creds/gateways/netbilling.php:26
1026
- #: addons/buy-creds/gateways/paypal-standard.php:23
1027
- #: addons/buy-creds/gateways/skrill.php:28
1028
  msgid "Purchase of myCRED %plural%"
1029
  msgstr ""
1030
 
1031
- #: addons/buy-creds/gateways/netbilling.php:55
1032
- #: addons/buy-creds/gateways/netbilling.php:318
1033
  msgid "You have tried too many times. Please contact support."
1034
  msgstr ""
1035
 
1036
- #: addons/buy-creds/gateways/netbilling.php:62
1037
  msgid "This payment gateway has not yet been setup! Exiting."
1038
  msgstr ""
1039
 
1040
- #: addons/buy-creds/gateways/netbilling.php:81
1041
  msgid "First name can not be empty"
1042
  msgstr ""
1043
 
1044
- #: addons/buy-creds/gateways/netbilling.php:87
1045
  msgid "Last name can not be empty"
1046
  msgstr ""
1047
 
1048
- #: addons/buy-creds/gateways/netbilling.php:93
1049
  msgid "Street can not be empty"
1050
  msgstr ""
1051
 
1052
- #: addons/buy-creds/gateways/netbilling.php:99
1053
  msgid "City can not be empty"
1054
  msgstr ""
1055
 
1056
- #: addons/buy-creds/gateways/netbilling.php:105
1057
  msgid "Country can not be empty"
1058
  msgstr ""
1059
 
1060
- #: addons/buy-creds/gateways/netbilling.php:113
1061
  msgid "State can not be empty"
1062
  msgstr ""
1063
 
1064
- #: addons/buy-creds/gateways/netbilling.php:121
1065
  msgid "Zip / Post Code can not be empty"
1066
  msgstr ""
1067
 
1068
- #: addons/buy-creds/gateways/netbilling.php:127
1069
  msgid "Email can not be empty"
1070
  msgstr ""
1071
 
1072
- #: addons/buy-creds/gateways/netbilling.php:143
1073
  msgid "Please enter your credit card number"
1074
  msgstr ""
1075
 
1076
- #: addons/buy-creds/gateways/netbilling.php:149
1077
  msgid "Card Expiration Month must be selected"
1078
  msgstr ""
1079
 
1080
- #: addons/buy-creds/gateways/netbilling.php:155
1081
  msgid "Card Expiration Year must be set"
1082
  msgstr ""
1083
 
1084
- #: addons/buy-creds/gateways/netbilling.php:161
1085
  msgid "Please enter the CVV2 code from the back of your card"
1086
  msgstr ""
1087
 
1088
- #: addons/buy-creds/gateways/netbilling.php:170
1089
  msgid "Account Routing number missing"
1090
  msgstr ""
1091
 
1092
- #: addons/buy-creds/gateways/netbilling.php:176
1093
  msgid "Account Number missing"
1094
  msgstr ""
1095
 
1096
- #: addons/buy-creds/gateways/netbilling.php:184
1097
  msgid "Incorrect Credit Card number"
1098
  msgstr ""
1099
 
1100
- #: addons/buy-creds/gateways/netbilling.php:190
1101
  msgid "The credit card entered is past its expiration date."
1102
  msgstr ""
1103
 
1104
- #: addons/buy-creds/gateways/netbilling.php:196
1105
  msgid "The CVV2 number entered is not valid."
1106
  msgstr ""
1107
 
1108
- #: addons/buy-creds/gateways/netbilling.php:202
1109
  msgid "The bank routing number entered is not valid."
1110
  msgstr ""
1111
 
1112
- #: addons/buy-creds/gateways/netbilling.php:205
1113
  msgid "The bank account number entered is not valid."
1114
  msgstr ""
1115
 
1116
- #: addons/buy-creds/gateways/netbilling.php:312
1117
- #: addons/buy-creds/gateways/netbilling.php:333
1118
  msgid "Invalid Address"
1119
  msgstr ""
1120
 
1121
- #: addons/buy-creds/gateways/netbilling.php:315
1122
  msgid "Invalid CVV2"
1123
  msgstr ""
1124
 
1125
- #: addons/buy-creds/gateways/netbilling.php:321
1126
- #: addons/buy-creds/gateways/netbilling.php:324
1127
  msgid "Please contact support."
1128
  msgstr ""
1129
 
1130
- #: addons/buy-creds/gateways/netbilling.php:327
1131
  msgid "Your email address is invalid."
1132
  msgstr ""
1133
 
1134
- #: addons/buy-creds/gateways/netbilling.php:330
1135
  msgid "Your information is invalid. Please correct"
1136
  msgstr ""
1137
 
1138
- #: addons/buy-creds/gateways/netbilling.php:336
1139
  msgid "Your card was declined. Please try again."
1140
  msgstr ""
1141
 
1142
- #: addons/buy-creds/gateways/netbilling.php:340
1143
- #: addons/buy-creds/gateways/netbilling.php:358
1144
  msgid "Duplicate transaction. Please contact support"
1145
  msgstr ""
1146
 
1147
- #: addons/buy-creds/gateways/netbilling.php:343
1148
  msgid "Your transaction was approved"
1149
  msgstr ""
1150
 
1151
- #: addons/buy-creds/gateways/netbilling.php:350
1152
  msgid " error: "
1153
  msgstr ""
1154
 
1155
- #: addons/buy-creds/gateways/netbilling.php:430
1156
  msgid "Debug"
1157
  msgstr ""
1158
 
1159
- #: addons/buy-creds/gateways/netbilling.php:439
1160
  msgid "Error"
1161
  msgstr ""
1162
 
1163
- #: addons/buy-creds/gateways/netbilling.php:440
1164
  msgid "The following error/s were found: "
1165
  msgstr ""
1166
 
1167
- #: addons/buy-creds/gateways/netbilling.php:448
1168
  msgid "Please update and try again."
1169
  msgstr ""
1170
 
1171
- #: addons/buy-creds/gateways/netbilling.php:454
1172
  msgid "Transaction Approved"
1173
  msgstr ""
1174
 
1175
- #: addons/buy-creds/gateways/netbilling.php:455
1176
  msgid "Your have successfully purchased "
1177
  msgstr ""
1178
 
1179
- #: addons/buy-creds/gateways/netbilling.php:456
1180
- #: addons/buy-creds/gateways/netbilling.php:466
1181
  msgid "Click here to continue"
1182
  msgstr ""
1183
 
1184
- #: addons/buy-creds/gateways/netbilling.php:464
1185
  msgid "Transaction Declined"
1186
  msgstr ""
1187
 
1188
- #: addons/buy-creds/gateways/netbilling.php:465
1189
  msgid ""
1190
  "I am sorry but your transaction could not be completed due to the following "
1191
  msgstr ""
1192
 
1193
- #: addons/buy-creds/gateways/netbilling.php:474
1194
  msgid "Transaction Error"
1195
  msgstr ""
1196
 
1197
- #: addons/buy-creds/gateways/netbilling.php:475
1198
  msgid "NETbilling returned the following error: "
1199
  msgstr ""
1200
 
1201
- #: addons/buy-creds/gateways/netbilling.php:476
1202
  msgid "Please try again."
1203
  msgstr ""
1204
 
1205
- #: addons/buy-creds/gateways/netbilling.php:480
1206
  msgid "Purchase of"
1207
  msgstr ""
1208
 
1209
- #: addons/buy-creds/gateways/netbilling.php:480
1210
  msgid "for"
1211
  msgstr ""
1212
 
1213
- #: addons/buy-creds/gateways/netbilling.php:481
1214
  msgid "Fields marked * are required!"
1215
  msgstr ""
1216
 
1217
- #: addons/buy-creds/gateways/netbilling.php:491
1218
  msgid "Billing Details"
1219
  msgstr ""
1220
 
1221
- #: addons/buy-creds/gateways/netbilling.php:560
1222
  msgid "Month"
1223
  msgstr ""
1224
 
1225
- #: addons/buy-creds/gateways/netbilling.php:566
1226
  msgid "Year"
1227
  msgstr ""
1228
 
1229
- #: addons/buy-creds/gateways/netbilling.php:613
1230
  msgid "Account ID"
1231
  msgstr ""
1232
 
1233
- #: addons/buy-creds/gateways/netbilling.php:619
1234
  msgid "Site Tag"
1235
  msgstr ""
1236
 
1237
- #: addons/buy-creds/gateways/netbilling.php:625
1238
  msgid "Dynamic IP Security Code"
1239
  msgstr ""
1240
 
1241
- #: addons/buy-creds/gateways/netbilling.php:631
1242
- #: addons/buy-creds/gateways/paypal-standard.php:341
1243
- #: addons/buy-creds/gateways/skrill.php:364
1244
  msgid "Item Name"
1245
  msgstr ""
1246
 
1247
- #: addons/buy-creds/gateways/netbilling.php:637
1248
- #: addons/buy-creds/gateways/paypal-standard.php:348
1249
- #: addons/buy-creds/gateways/skrill.php:371
1250
  msgid "%plural% Exchange Rate"
1251
  msgstr ""
1252
 
1253
- #: addons/buy-creds/gateways/netbilling.php:643
1254
  msgid "Allowed Attempts"
1255
  msgstr ""
1256
 
1257
- #: addons/buy-creds/gateways/netbilling.php:647
1258
  msgid "Maximum number of attempts allowed for purchases."
1259
  msgstr ""
1260
 
1261
- #: addons/buy-creds/gateways/netbilling.php:650
1262
  msgid "Advanced"
1263
  msgstr ""
1264
 
1265
- #: addons/buy-creds/gateways/netbilling.php:654
1266
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1267
  msgstr ""
1268
 
1269
- #: addons/buy-creds/gateways/netbilling.php:658
1270
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1271
  msgstr ""
1272
 
1273
- #: addons/buy-creds/gateways/netbilling.php:662
1274
  msgid ""
1275
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1276
  "disable_negative_db)"
1277
  msgstr ""
1278
 
1279
- #: addons/buy-creds/gateways/netbilling.php:666
1280
  msgid ""
1281
  "Disable only the negative database component of the fraud protection system."
1282
  msgstr ""
1283
 
1284
- #: addons/buy-creds/gateways/netbilling.php:670
1285
  msgid "Disable automatic sending of both merchant and customer email receipts."
1286
  msgstr ""
1287
 
1288
- #: addons/buy-creds/gateways/netbilling.php:674
1289
  msgid "Disable immediate rejection of expired cards."
1290
  msgstr ""
1291
 
1292
- #: addons/buy-creds/gateways/paypal-standard.php:225
1293
- #: addons/buy-creds/gateways/skrill.php:211
1294
  msgid "Success"
1295
  msgstr ""
1296
 
1297
- #: addons/buy-creds/gateways/paypal-standard.php:226
1298
- #: addons/buy-creds/gateways/skrill.php:212
1299
  msgid "Thank you for your purchase"
1300
  msgstr ""
1301
 
1302
- #: addons/buy-creds/gateways/paypal-standard.php:239
1303
- #: addons/buy-creds/gateways/skrill.php:225
1304
- #: addons/buy-creds/gateways/zombaio.php:232
1305
  msgid "Please setup this gateway before attempting to make a purchase!"
1306
  msgstr ""
1307
 
1308
- #: addons/buy-creds/gateways/paypal-standard.php:299
1309
- #: addons/buy-creds/gateways/skrill.php:266
1310
  msgid "Return to "
1311
  msgstr ""
1312
 
1313
- #: addons/buy-creds/gateways/paypal-standard.php:304
1314
- #: addons/buy-creds/gateways/skrill.php:320
1315
- #: addons/buy-creds/gateways/zombaio.php:271
1316
  msgid "Processing payment &hellip;"
1317
  msgstr ""
1318
 
1319
- #: addons/buy-creds/gateways/paypal-standard.php:332
1320
- #: addons/buy-creds/gateways/skrill.php:401
1321
- #: addons/gateway/event-booking/mycred-eventespresso3.php:416
1322
  msgid "Important!"
1323
  msgstr ""
1324
 
1325
- #: addons/buy-creds/gateways/paypal-standard.php:332
1326
  msgid ""
1327
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1328
  "transactions will not be approved until you login to your PayPal account and "
1329
  "Accept each transaction!"
1330
  msgstr ""
1331
 
1332
- #: addons/buy-creds/gateways/paypal-standard.php:335
1333
  msgid "Account Email"
1334
  msgstr ""
1335
 
1336
- #: addons/buy-creds/gateways/paypal-standard.php:345
1337
- #: addons/buy-creds/gateways/skrill.php:368
1338
  msgid "Description of the item being purchased by the user."
1339
  msgstr ""
1340
 
1341
- #: addons/buy-creds/gateways/paypal-standard.php:351
1342
- #: addons/buy-creds/gateways/skrill.php:374
1343
  msgid "Your selected currency"
1344
  msgstr ""
1345
 
1346
- #: addons/buy-creds/gateways/paypal-standard.php:354
1347
  msgid "IPN Address"
1348
  msgstr ""
1349
 
1350
- #: addons/buy-creds/gateways/skrill.php:303
1351
  msgid "Product:"
1352
  msgstr ""
1353
 
1354
- #: addons/buy-creds/gateways/skrill.php:312
1355
  msgid "Gift to:"
1356
  msgstr ""
1357
 
1358
- #: addons/buy-creds/gateways/skrill.php:313
1359
  msgid "(author)"
1360
  msgstr ""
1361
 
1362
- #: addons/buy-creds/gateways/skrill.php:341
1363
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1364
  msgstr ""
1365
 
1366
- #: addons/buy-creds/gateways/skrill.php:351
1367
  msgid "Merchant Account Email"
1368
  msgstr ""
1369
 
1370
- #: addons/buy-creds/gateways/skrill.php:357
1371
  msgid "Secret Word"
1372
  msgstr ""
1373
 
1374
- #: addons/buy-creds/gateways/skrill.php:361
1375
  msgid ""
1376
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1377
  msgstr ""
1378
 
1379
- #: addons/buy-creds/gateways/skrill.php:377
1380
  msgid "Confirmation Email"
1381
  msgstr ""
1382
 
1383
- #: addons/buy-creds/gateways/skrill.php:380
1384
  msgid ""
1385
  "Ask Skrill to send me a confirmation email for each successful purchase."
1386
  msgstr ""
1387
 
1388
- #: addons/buy-creds/gateways/skrill.php:386
1389
- #: addons/gateway/carts/mycred-woocommerce.php:75
1390
- #: addons/ranks/myCRED-addon-ranks.php:696
1391
- #: addons/transfer/myCRED-addon-transfer.php:594
1392
- #: includes/mycred-widgets.php:185 includes/mycred-widgets.php:360
 
1393
  msgid "Title"
1394
  msgstr ""
1395
 
1396
- #: addons/buy-creds/gateways/skrill.php:388
1397
  msgid ""
1398
  "If left empty, your account email is used as title on the Skill Payment Page."
1399
  msgstr ""
1400
 
1401
- #: addons/buy-creds/gateways/skrill.php:391
1402
- #: addons/buy-creds/gateways/zombaio.php:314
1403
  msgid "Logo URL"
1404
  msgstr ""
1405
 
1406
- #: addons/buy-creds/gateways/skrill.php:393
1407
  msgid ""
1408
  "The URL to the image you want to use on the top of the gateway. For best "
1409
  "integration results we recommend you use logos with dimensions up to 200px "
1410
  "in width and 50px in height."
1411
  msgstr ""
1412
 
1413
- #: addons/buy-creds/gateways/skrill.php:396
1414
  msgid "Confirmation Note"
1415
  msgstr ""
1416
 
1417
- #: addons/buy-creds/gateways/skrill.php:398
1418
  msgid ""
1419
  "Optional text to show user once a transaction has been successfully "
1420
  "completed. This text is shown by Skrill."
1421
  msgstr ""
1422
 
1423
- #: addons/buy-creds/gateways/skrill.php:402
1424
  msgid ""
1425
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1426
  "When a user selects this option, no %_plural% are awarded! You will need to "
1427
  "manually award these once the bank transfer is completed."
1428
  msgstr ""
1429
 
1430
- #: addons/buy-creds/gateways/zombaio.php:296
1431
  msgid "Site ID"
1432
  msgstr ""
1433
 
1434
- #: addons/buy-creds/gateways/zombaio.php:302
1435
  msgid "GW Password"
1436
  msgstr ""
1437
 
1438
- #: addons/buy-creds/gateways/zombaio.php:308
1439
  msgid "Pricing ID"
1440
  msgstr ""
1441
 
1442
- #: addons/buy-creds/gateways/zombaio.php:320
1443
  msgid "IP Verification"
1444
  msgstr ""
1445
 
1446
- #: addons/buy-creds/gateways/zombaio.php:323
1447
  msgid "Do not verify that callbacks are coming from Zombaio."
1448
  msgstr ""
1449
 
1450
- #: addons/buy-creds/gateways/zombaio.php:326
1451
  msgid "Language"
1452
  msgstr ""
1453
 
1454
- #: addons/buy-creds/gateways/zombaio.php:333
1455
  msgid "Postback URL (ZScript)"
1456
  msgstr ""
1457
 
1458
- #: addons/buy-creds/gateways/zombaio.php:337
1459
  msgid ""
1460
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1461
  "address and click validate."
1462
  msgstr ""
1463
 
1464
- #: addons/email-notices/myCRED-addon-email-notices.php:12
1465
- #: addons/email-notices/myCRED-addon-email-notices.php:155
1466
- #: addons/email-notices/myCRED-addon-email-notices.php:161
1467
- #: addons/email-notices/myCRED-addon-email-notices.php:167
1468
- #: addons/email-notices/myCRED-addon-email-notices.php:256
1469
  msgid "Email Notices"
1470
  msgstr ""
1471
 
1472
- #: addons/email-notices/myCRED-addon-email-notices.php:13
1473
  msgid "Create email notices for any type of myCRED instance."
1474
  msgstr ""
1475
 
1476
- #: addons/email-notices/myCRED-addon-email-notices.php:156
1477
  msgid "Email Notice"
1478
  msgstr ""
1479
 
1480
- #: addons/email-notices/myCRED-addon-email-notices.php:157
1481
- #: addons/ranks/myCRED-addon-ranks.php:158
1482
  msgid "Add New"
1483
  msgstr ""
1484
 
1485
- #: addons/email-notices/myCRED-addon-email-notices.php:158
1486
  msgid "Add New Notice"
1487
  msgstr ""
1488
 
1489
- #: addons/email-notices/myCRED-addon-email-notices.php:159
1490
  msgid "Edit Notice"
1491
  msgstr ""
1492
 
1493
- #: addons/email-notices/myCRED-addon-email-notices.php:160
1494
  msgid "New Notice"
1495
  msgstr ""
1496
 
1497
- #: addons/email-notices/myCRED-addon-email-notices.php:162
1498
  msgid "View Notice"
1499
  msgstr ""
1500
 
1501
- #: addons/email-notices/myCRED-addon-email-notices.php:163
1502
  msgid "Search Email Notices"
1503
  msgstr ""
1504
 
1505
- #: addons/email-notices/myCRED-addon-email-notices.php:164
1506
  msgid "No email notices found"
1507
  msgstr ""
1508
 
1509
- #: addons/email-notices/myCRED-addon-email-notices.php:165
1510
  msgid "No email notices found in Trash"
1511
  msgstr ""
1512
 
1513
- #: addons/email-notices/myCRED-addon-email-notices.php:188
1514
- #: addons/email-notices/myCRED-addon-email-notices.php:826
1515
  msgid "General"
1516
  msgstr ""
1517
 
1518
- #: addons/email-notices/myCRED-addon-email-notices.php:189
1519
  msgid "users balance changes"
1520
  msgstr ""
1521
 
1522
- #: addons/email-notices/myCRED-addon-email-notices.php:190
1523
  msgid "user gains %_plural%"
1524
  msgstr ""
1525
 
1526
- #: addons/email-notices/myCRED-addon-email-notices.php:191
1527
  msgid "user lose %_plural%"
1528
  msgstr ""
1529
 
1530
- #: addons/email-notices/myCRED-addon-email-notices.php:192
1531
  msgid "users balance reaches zero"
1532
  msgstr ""
1533
 
1534
- #: addons/email-notices/myCRED-addon-email-notices.php:193
1535
  msgid "users balance goes minus"
1536
  msgstr ""
1537
 
1538
- #: addons/email-notices/myCRED-addon-email-notices.php:199
1539
  msgid "Sell Content Add-on"
1540
  msgstr ""
1541
 
1542
- #: addons/email-notices/myCRED-addon-email-notices.php:200
1543
  msgid "user buys content"
1544
  msgstr ""
1545
 
1546
- #: addons/email-notices/myCRED-addon-email-notices.php:201
1547
  msgid "authors content gets sold"
1548
  msgstr ""
1549
 
1550
- #: addons/email-notices/myCRED-addon-email-notices.php:208
1551
  msgid "buyCREDs Add-on"
1552
  msgstr ""
1553
 
1554
- #: addons/email-notices/myCRED-addon-email-notices.php:209
1555
  msgid "user buys %_plural%"
1556
  msgstr ""
1557
 
1558
- #: addons/email-notices/myCRED-addon-email-notices.php:216
1559
  msgid "Transfer Add-on"
1560
  msgstr ""
1561
 
1562
- #: addons/email-notices/myCRED-addon-email-notices.php:217
1563
  msgid "user sends %_plural%"
1564
  msgstr ""
1565
 
1566
- #: addons/email-notices/myCRED-addon-email-notices.php:218
1567
  msgid "user receives %_plural%"
1568
  msgstr ""
1569
 
1570
- #: addons/email-notices/myCRED-addon-email-notices.php:258
 
 
 
 
 
 
 
 
 
 
 
 
1571
  msgid ""
1572
  "Settings that apply to all email notices and can not be overridden for "
1573
  "individual emails."
1574
  msgstr ""
1575
 
1576
- #: addons/email-notices/myCRED-addon-email-notices.php:259
1577
  msgid "Email Format"
1578
  msgstr ""
1579
 
1580
- #: addons/email-notices/myCRED-addon-email-notices.php:263
1581
  msgid "Plain text emails only."
1582
  msgstr ""
1583
 
1584
- #: addons/email-notices/myCRED-addon-email-notices.php:267
1585
  msgid "HTML or Plain text emails."
1586
  msgstr ""
1587
 
1588
- #: addons/email-notices/myCRED-addon-email-notices.php:270
1589
  msgid "Filters"
1590
  msgstr ""
1591
 
1592
- #: addons/email-notices/myCRED-addon-email-notices.php:274
1593
  msgid ""
1594
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1595
  "an email is sent."
1596
  msgstr ""
1597
 
1598
- #: addons/email-notices/myCRED-addon-email-notices.php:278
1599
  msgid ""
1600
  "Allow WordPress and Third Party Plugins to filter the email content before "
1601
  "an email is sent."
1602
  msgstr ""
1603
 
1604
- #: addons/email-notices/myCRED-addon-email-notices.php:281
1605
  msgid ""
1606
  "Default email settings. These settings can be individually overridden when "
1607
  "editing emails."
1608
  msgstr ""
1609
 
1610
- #: addons/email-notices/myCRED-addon-email-notices.php:282
1611
- #: addons/email-notices/myCRED-addon-email-notices.php:665
1612
  msgid "Email Settings"
1613
  msgstr ""
1614
 
1615
- #: addons/email-notices/myCRED-addon-email-notices.php:285
1616
- #: addons/email-notices/myCRED-addon-email-notices.php:782
1617
  msgid "Senders Name:"
1618
  msgstr ""
1619
 
1620
- #: addons/email-notices/myCRED-addon-email-notices.php:289
1621
- #: addons/email-notices/myCRED-addon-email-notices.php:784
1622
  msgid "Senders Email:"
1623
  msgstr ""
1624
 
1625
- #: addons/email-notices/myCRED-addon-email-notices.php:293
1626
  msgid "Reply-To:"
1627
  msgstr ""
1628
 
1629
- #: addons/email-notices/myCRED-addon-email-notices.php:297
1630
  msgid "Default Email Content"
1631
  msgstr ""
1632
 
1633
- #: addons/email-notices/myCRED-addon-email-notices.php:301
1634
  msgid "Default email content."
1635
  msgstr ""
1636
 
1637
- #: addons/email-notices/myCRED-addon-email-notices.php:304
1638
  msgid "Default Email Styling"
1639
  msgstr ""
1640
 
1641
- #: addons/email-notices/myCRED-addon-email-notices.php:308
1642
  msgid "Ignored if HTML is not allowed in emails."
1643
  msgstr ""
1644
 
1645
- #: addons/email-notices/myCRED-addon-email-notices.php:600
1646
- #: addons/email-notices/myCRED-addon-email-notices.php:714
1647
  msgid "Email Subject"
1648
  msgstr ""
1649
 
1650
- #: addons/email-notices/myCRED-addon-email-notices.php:601
1651
  msgid "Status"
1652
  msgstr ""
1653
 
1654
- #: addons/email-notices/myCRED-addon-email-notices.php:621
1655
  msgid "Not Active"
1656
  msgstr ""
1657
 
1658
- #: addons/email-notices/myCRED-addon-email-notices.php:623
1659
  #, php-format
1660
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1661
  msgstr ""
1662
 
1663
- #: addons/email-notices/myCRED-addon-email-notices.php:627
1664
  msgid "Active"
1665
  msgstr ""
1666
 
1667
- #: addons/email-notices/myCRED-addon-email-notices.php:629
1668
  #, php-format
1669
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1670
  msgstr ""
1671
 
1672
- #: addons/email-notices/myCRED-addon-email-notices.php:638
1673
  msgid "Email is sent when"
1674
  msgstr ""
1675
 
1676
- #: addons/email-notices/myCRED-addon-email-notices.php:640
1677
  msgid "Missing instance for this notice!"
1678
  msgstr ""
1679
 
1680
- #: addons/email-notices/myCRED-addon-email-notices.php:649
1681
- #: addons/email-notices/myCRED-addon-email-notices.php:651
1682
- #: addons/email-notices/myCRED-addon-email-notices.php:653
1683
  msgid "Sent To"
1684
  msgstr ""
1685
 
1686
- #: addons/email-notices/myCRED-addon-email-notices.php:649
1687
- #: addons/email-notices/myCRED-addon-email-notices.php:776
1688
- #: includes/mycred-admin.php:332 modules/mycred-module-log.php:809
 
1689
  msgid "User"
1690
  msgstr ""
1691
 
1692
- #: addons/email-notices/myCRED-addon-email-notices.php:651
1693
- #: addons/email-notices/myCRED-addon-email-notices.php:777
1694
  msgid "Administrator"
1695
  msgstr ""
1696
 
1697
- #: addons/email-notices/myCRED-addon-email-notices.php:653
1698
  msgid "Both Administrator and User"
1699
  msgstr ""
1700
 
1701
- #: addons/email-notices/myCRED-addon-email-notices.php:674
1702
- #: modules/mycred-module-help.php:145 modules/mycred-module-help.php:169
 
1703
  msgid "Available Template Tags"
1704
  msgstr ""
1705
 
1706
- #: addons/email-notices/myCRED-addon-email-notices.php:685
1707
  msgid "Email Header"
1708
  msgstr ""
1709
 
1710
- #: addons/email-notices/myCRED-addon-email-notices.php:745
1711
  msgid "Send this email notice when..."
1712
  msgstr ""
1713
 
1714
- #: addons/email-notices/myCRED-addon-email-notices.php:774
1715
  msgid "Recipient:"
1716
  msgstr ""
1717
 
1718
- #: addons/email-notices/myCRED-addon-email-notices.php:778
1719
  msgid "Both"
1720
  msgstr ""
1721
 
1722
- #: addons/email-notices/myCRED-addon-email-notices.php:786
1723
  msgid "Reply-To Email:"
1724
  msgstr ""
1725
 
1726
- #: addons/email-notices/myCRED-addon-email-notices.php:792
1727
  msgid "Save"
1728
  msgstr ""
1729
 
1730
- #: addons/email-notices/myCRED-addon-email-notices.php:804
1731
  msgid "CSS Styling"
1732
  msgstr ""
1733
 
1734
- #: addons/email-notices/myCRED-addon-email-notices.php:819
1735
  msgid "Site Related"
1736
  msgstr ""
1737
 
1738
- #: addons/email-notices/myCRED-addon-email-notices.php:820
1739
  msgid "Your websites title"
1740
  msgstr ""
1741
 
1742
- #: addons/email-notices/myCRED-addon-email-notices.php:821
1743
  msgid "Your websites address"
1744
  msgstr ""
1745
 
1746
- #: addons/email-notices/myCRED-addon-email-notices.php:822
1747
  msgid "Your websites tagline (description)"
1748
  msgstr ""
1749
 
1750
- #: addons/email-notices/myCRED-addon-email-notices.php:823
1751
  msgid "Your websites admin email"
1752
  msgstr ""
1753
 
1754
- #: addons/email-notices/myCRED-addon-email-notices.php:824
1755
  msgid "Total number of blog members"
1756
  msgstr ""
1757
 
1758
- #: addons/email-notices/myCRED-addon-email-notices.php:827
1759
  msgid "Points name in singular format"
1760
  msgstr ""
1761
 
1762
- #: addons/email-notices/myCRED-addon-email-notices.php:828
1763
  msgid "Points name in plural"
1764
  msgstr ""
1765
 
1766
- #: addons/email-notices/myCRED-addon-email-notices.php:829
1767
  msgid "Login URL"
1768
  msgstr ""
1769
 
1770
- #: addons/email-notices/myCRED-addon-email-notices.php:832
1771
  msgid "User Related"
1772
  msgstr ""
1773
 
1774
- #: addons/email-notices/myCRED-addon-email-notices.php:833
1775
  msgid "The users ID"
1776
  msgstr ""
1777
 
1778
- #: addons/email-notices/myCRED-addon-email-notices.php:834
1779
  msgid "The users login name (username)"
1780
  msgstr ""
1781
 
1782
- #: addons/email-notices/myCRED-addon-email-notices.php:835
1783
  msgid "The users display name"
1784
  msgstr ""
1785
 
1786
- #: addons/email-notices/myCRED-addon-email-notices.php:836
1787
  msgid "The users profile address"
1788
  msgstr ""
1789
 
1790
- #: addons/email-notices/myCRED-addon-email-notices.php:837
1791
  msgid "Link to the users profile address with their display name as title"
1792
  msgstr ""
1793
 
1794
- #: addons/email-notices/myCRED-addon-email-notices.php:838
1795
  msgid "The users current balance unformated"
1796
  msgstr ""
1797
 
1798
- #: addons/email-notices/myCRED-addon-email-notices.php:839
1799
  msgid "The users current balance formated"
1800
  msgstr ""
1801
 
1802
- #: addons/email-notices/myCRED-addon-email-notices.php:841
1803
  msgid "Post Related"
1804
  msgstr ""
1805
 
1806
- #: addons/email-notices/myCRED-addon-email-notices.php:842
1807
  msgid "Post Title"
1808
  msgstr ""
1809
 
1810
- #: addons/email-notices/myCRED-addon-email-notices.php:843
1811
  msgid "Post URL address"
1812
  msgstr ""
1813
 
1814
- #: addons/email-notices/myCRED-addon-email-notices.php:844
1815
  msgid "Link to post Post title"
1816
  msgstr ""
1817
 
1818
- #: addons/email-notices/myCRED-addon-email-notices.php:845
1819
  msgid "The post type"
1820
  msgstr ""
1821
 
1822
- #: addons/email-notices/myCRED-addon-email-notices.php:921
1823
- #: addons/email-notices/myCRED-addon-email-notices.php:924
1824
  #, php-format
1825
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1826
  msgstr ""
1827
 
1828
- #: addons/email-notices/myCRED-addon-email-notices.php:922
1829
- #: addons/ranks/myCRED-addon-ranks.php:460
1830
  msgid "Custom field updated"
1831
  msgstr ""
1832
 
1833
- #: addons/email-notices/myCRED-addon-email-notices.php:923
1834
- #: addons/ranks/myCRED-addon-ranks.php:461
1835
  msgid "Custom filed updated"
1836
  msgstr ""
1837
 
1838
- #: addons/email-notices/myCRED-addon-email-notices.php:926
1839
  msgid "Email Notice Activated"
1840
  msgstr ""
1841
 
1842
- #: addons/email-notices/myCRED-addon-email-notices.php:927
1843
  msgid "Email Notice Saved"
1844
  msgstr ""
1845
 
1846
- #: addons/email-notices/myCRED-addon-email-notices.php:928
1847
  #, php-format
1848
  msgid ""
1849
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1850
  msgstr ""
1851
 
1852
- #: addons/email-notices/myCRED-addon-email-notices.php:930
1853
  #, php-format
1854
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1855
  msgstr ""
1856
 
1857
- #: addons/email-notices/myCRED-addon-email-notices.php:949
1858
  msgid ""
1859
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1860
  "you are not yet ready to use this email notice!"
1861
  msgstr ""
1862
 
1863
- #: addons/email-notices/myCRED-addon-email-notices.php:951
1864
  #, php-format
1865
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1866
  msgstr ""
1867
 
1868
- #: addons/email-notices/myCRED-addon-email-notices.php:953
1869
  msgid "This email notice is active."
1870
  msgstr ""
1871
 
1872
- #: addons/gateway/myCRED-addon-gateway.php:12
1873
  msgid "Gateway"
1874
  msgstr ""
1875
 
1876
- #: addons/gateway/myCRED-addon-gateway.php:13
1877
  msgid ""
1878
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1879
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1880
  "Espresso, Events Manager."
1881
  msgstr ""
1882
 
1883
- #: addons/gateway/carts/mycred-marketpress.php:148
1884
- #: addons/gateway/event-booking/mycred-eventespresso3.php:254
1885
- #: addons/gateway/event-booking/mycred-eventespresso3.php:278
1886
- #: addons/gateway/event-booking/mycred-eventsmanager.php:357
1887
- #: includes/mycred-admin.php:333
1888
  msgid "Current Balance"
1889
  msgstr ""
1890
 
1891
- #: addons/gateway/carts/mycred-marketpress.php:152
1892
- #: addons/gateway/event-booking/mycred-eventespresso3.php:258
1893
- #: addons/gateway/event-booking/mycred-eventespresso3.php:282
1894
- #: addons/gateway/event-booking/mycred-eventsmanager.php:361
1895
  msgid "Total Cost"
1896
  msgstr ""
1897
 
1898
- #: addons/gateway/carts/mycred-marketpress.php:156
1899
- #: addons/gateway/event-booking/mycred-eventespresso3.php:262
1900
- #: addons/gateway/event-booking/mycred-eventespresso3.php:286
1901
  msgid "Balance After Purchase"
1902
  msgstr ""
1903
 
1904
- #: addons/gateway/carts/mycred-marketpress.php:180
1905
  msgid "Payment"
1906
  msgstr ""
1907
 
1908
- #: addons/gateway/carts/mycred-marketpress.php:183
1909
- #: addons/gateway/carts/mycred-marketpress.php:232
1910
  #, php-format
1911
  msgid "<a href=\"%s\">Go Back</a>"
1912
  msgstr ""
1913
 
1914
- #: addons/gateway/carts/mycred-marketpress.php:186
1915
  msgid "will be deducted from your account."
1916
  msgstr ""
1917
 
1918
- #: addons/gateway/carts/mycred-marketpress.php:222
1919
  #, php-format
1920
  msgid ""
1921
  "Sorry, but you can not use this gateway as your account is excluded. Please "
1922
  "<a href=\"%s\">select a different payment method</a>."
1923
  msgstr ""
1924
 
1925
- #: addons/gateway/carts/mycred-marketpress.php:241
1926
  msgid "Paid"
1927
  msgstr ""
1928
 
1929
- #: addons/gateway/carts/mycred-marketpress.php:244
1930
- #: addons/gateway/carts/mycred-woocommerce.php:34
1931
- #: includes/mycred-network.php:53 includes/mycred-network.php:54
1932
- #: modules/mycred-module-plugins.php:844
 
1933
  msgid "myCRED"
1934
  msgstr ""
1935
 
1936
- #: addons/gateway/carts/mycred-marketpress.php:314
1937
  msgid "%_singular% Balance"
1938
  msgstr ""
1939
 
1940
- #: addons/gateway/carts/mycred-marketpress.php:343
 
 
 
 
 
 
 
 
 
 
1941
  #, php-format
1942
  msgid ""
1943
  "Let your users pay for items in their shopping cart using their %s Account. "
@@ -1945,98 +2008,98 @@ msgid ""
1945
  "purchase!"
1946
  msgstr ""
1947
 
1948
- #: addons/gateway/carts/mycred-marketpress.php:346
1949
  msgid "Method Name"
1950
  msgstr ""
1951
 
1952
- #: addons/gateway/carts/mycred-marketpress.php:348
1953
  msgid ""
1954
  "Enter a public name for this payment method that is displayed to users - No "
1955
  "HTML"
1956
  msgstr ""
1957
 
1958
- #: addons/gateway/carts/mycred-marketpress.php:353
1959
  msgid "Gateway Logo URL"
1960
  msgstr ""
1961
 
1962
- #: addons/gateway/carts/mycred-marketpress.php:361
1963
- #: addons/gateway/carts/mycred-woocommerce.php:89
1964
  msgid ""
1965
  "Log entry template for successful payments. Available template tags: "
1966
  "%order_id%, %order_link%"
1967
  msgstr ""
1968
 
1969
- #: addons/gateway/carts/mycred-marketpress.php:368
1970
- #: addons/gateway/carts/mycred-woocommerce.php:95
1971
  msgid "How much is 1 %_singular% worth in %currency%?"
1972
  msgstr ""
1973
 
1974
- #: addons/gateway/carts/mycred-marketpress.php:373
1975
- #: addons/gateway/carts/mycred-woocommerce.php:100
1976
- #: addons/gateway/event-booking/mycred-eventespresso3.php:411
1977
- #: addons/gateway/event-booking/mycred-eventsmanager.php:496
1978
- #: addons/import/myCRED-addon-import.php:525
1979
- #: addons/import/myCRED-addon-import.php:594
1980
- #: addons/import/myCRED-addon-import.php:658
1981
  msgid "Exchange Rate"
1982
  msgstr ""
1983
 
1984
- #: addons/gateway/carts/mycred-marketpress.php:382
1985
- #: addons/gateway/event-booking/mycred-eventsmanager.php:566
1986
  msgid "Insufficient Funds"
1987
  msgstr ""
1988
 
1989
- #: addons/gateway/carts/mycred-marketpress.php:384
1990
  msgid "Message to show when the user can not use this gateway."
1991
  msgstr ""
1992
 
1993
- #: addons/gateway/carts/mycred-marketpress.php:386
1994
- #: addons/gateway/carts/mycred-marketpress.php:394
1995
  msgid "Available template tags are: General."
1996
  msgstr ""
1997
 
1998
- #: addons/gateway/carts/mycred-marketpress.php:390
1999
- #: addons/gateway/event-booking/mycred-eventespresso3.php:446
2000
  msgid "Visitors"
2001
  msgstr ""
2002
 
2003
- #: addons/gateway/carts/mycred-marketpress.php:392
2004
  msgid "Message to show to buyers that are not logged in."
2005
  msgstr ""
2006
 
2007
- #: addons/gateway/carts/mycred-marketpress.php:398
2008
  msgid "User Instructions"
2009
  msgstr ""
2010
 
2011
- #: addons/gateway/carts/mycred-marketpress.php:400
2012
  msgid "Information to show users before payment."
2013
  msgstr ""
2014
 
2015
- #: addons/gateway/carts/mycred-marketpress.php:402
2016
  msgid ""
2017
  "Available template tags are: %balance% and %balance_f% for users current "
2018
  "balance."
2019
  msgstr ""
2020
 
2021
- #: addons/gateway/carts/mycred-marketpress.php:406
2022
  msgid "Confirmation Information"
2023
  msgstr ""
2024
 
2025
- #: addons/gateway/carts/mycred-marketpress.php:408
2026
  msgid "Information to display on the order confirmation page. - HTML allowed"
2027
  msgstr ""
2028
 
2029
- #: addons/gateway/carts/mycred-marketpress.php:410
2030
  msgid ""
2031
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2032
  "- users current balance."
2033
  msgstr ""
2034
 
2035
- #: addons/gateway/carts/mycred-marketpress.php:414
2036
  msgid "Order Confirmation Email"
2037
  msgstr ""
2038
 
2039
- #: addons/gateway/carts/mycred-marketpress.php:416
2040
  #, php-format
2041
  msgid ""
2042
  "This is the email text to send to those who have made %s checkouts. It "
@@ -2045,631 +2108,635 @@ msgid ""
2045
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2046
  msgstr ""
2047
 
2048
- #: addons/gateway/carts/mycred-marketpress.php:418
2049
  #, php-format
2050
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2051
  msgstr ""
2052
 
2053
- #: addons/gateway/carts/mycred-woocommerce.php:35
2054
  msgid "Let users pay using their myCRED balance."
2055
  msgstr ""
2056
 
2057
- #: addons/gateway/carts/mycred-woocommerce.php:68
2058
  msgid "Enable/Disable"
2059
  msgstr ""
2060
 
2061
- #: addons/gateway/carts/mycred-woocommerce.php:70
2062
  msgid "Enable myCRED Payment"
2063
  msgstr ""
2064
 
2065
- #: addons/gateway/carts/mycred-woocommerce.php:72
2066
  msgid ""
2067
  "Users who are not logged in or excluded from using myCRED will not have "
2068
  "access to this gateway!"
2069
  msgstr ""
2070
 
2071
- #: addons/gateway/carts/mycred-woocommerce.php:77
2072
  msgid "Title to show for this payment option."
2073
  msgstr ""
2074
 
2075
- #: addons/gateway/carts/mycred-woocommerce.php:78
2076
  msgid "Pay with myCRED"
2077
  msgstr ""
2078
 
2079
- #: addons/gateway/carts/mycred-woocommerce.php:82
2080
  msgid "Customer Message"
2081
  msgstr ""
2082
 
2083
- #: addons/gateway/carts/mycred-woocommerce.php:84
2084
  msgid "Deduct the amount from your %_plural% balance."
2085
  msgstr ""
2086
 
2087
- #: addons/gateway/carts/mycred-woocommerce.php:90
2088
  msgid "Payment for Order: #%order_id%"
2089
  msgstr ""
2090
 
2091
- #: addons/gateway/carts/mycred-woocommerce.php:107
2092
  msgid "Show Total"
2093
  msgstr ""
2094
 
2095
- #: addons/gateway/carts/mycred-woocommerce.php:109
2096
  msgid "Show the final price in %_plural% ."
2097
  msgstr ""
2098
 
2099
- #: addons/gateway/carts/mycred-woocommerce.php:111
2100
  msgid "Do not show"
2101
  msgstr ""
2102
 
2103
- #: addons/gateway/carts/mycred-woocommerce.php:112
2104
  msgid "Show in Cart"
2105
  msgstr ""
2106
 
2107
- #: addons/gateway/carts/mycred-woocommerce.php:113
2108
  msgid "Show on Checkout Page"
2109
  msgstr ""
2110
 
2111
- #: addons/gateway/carts/mycred-woocommerce.php:114
2112
  msgid "Show in Cart and on Checkout Page"
2113
  msgstr ""
2114
 
2115
- #: addons/gateway/carts/mycred-woocommerce.php:119
2116
  msgid "Label"
2117
  msgstr ""
2118
 
2119
- #: addons/gateway/carts/mycred-woocommerce.php:121
2120
  msgid "Order Total in %_plural%"
2121
  msgstr ""
2122
 
2123
- #: addons/gateway/carts/mycred-woocommerce.php:148
2124
  msgid "myCRED Payment"
2125
  msgstr ""
2126
 
2127
- #: addons/gateway/carts/mycred-woocommerce.php:149
2128
  msgid ""
2129
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2130
  "users with insufficient funds and users who are not logged in will not see "
2131
  "this payment gateway on the checkout page."
2132
  msgstr ""
2133
 
2134
- #: addons/gateway/carts/mycred-woocommerce.php:170
2135
  msgid "You must be logged in to pay with %_plural%"
2136
  msgstr ""
2137
 
2138
- #: addons/gateway/carts/mycred-woocommerce.php:176
2139
  msgid "You can not use this gateway. Please try a different payment option."
2140
  msgstr ""
2141
 
2142
- #: addons/gateway/carts/mycred-woocommerce.php:188
2143
  msgid "Insufficient funds. Please try a different payment option."
2144
  msgstr ""
2145
 
2146
- #: addons/gateway/carts/mycred-woocommerce.php:209
2147
  msgid "Your account has successfully been charged."
2148
  msgstr ""
2149
 
2150
- #: addons/gateway/carts/mycred-woocommerce.php:399
2151
  msgid "Your current balance"
2152
  msgstr ""
2153
 
2154
- #: addons/gateway/event-booking/mycred-eventespresso3.php:24
2155
- #: addons/gateway/event-booking/mycred-eventsmanager.php:479
2156
- #: addons/sell-content/myCRED-addon-sell-content.php:313
2157
  msgid "Payments"
2158
  msgstr ""
2159
 
2160
- #: addons/gateway/event-booking/mycred-eventespresso3.php:25
2161
- #: addons/gateway/event-booking/mycred-eventsmanager.php:31
2162
  msgid "Pay Now"
2163
  msgstr ""
2164
 
2165
- #: addons/gateway/event-booking/mycred-eventespresso3.php:28
2166
  msgid "Payment for Event Registration"
2167
  msgstr ""
2168
 
2169
- #: addons/gateway/event-booking/mycred-eventespresso3.php:320
2170
  #, php-format
2171
  msgid "Activate %s"
2172
  msgstr ""
2173
 
2174
- #: addons/gateway/event-booking/mycred-eventespresso3.php:328
2175
  #, php-format
2176
  msgid "Deactivate %s"
2177
  msgstr ""
2178
 
2179
- #: addons/gateway/event-booking/mycred-eventespresso3.php:344
2180
  msgid "Gateway Settings"
2181
  msgstr ""
2182
 
2183
- #: addons/gateway/event-booking/mycred-eventespresso3.php:376
2184
- #: addons/gateway/event-booking/mycred-eventsmanager.php:466
2185
  #, php-format
2186
  msgid "How many %s is 1 %s worth?"
2187
  msgstr ""
2188
 
2189
- #: addons/gateway/event-booking/mycred-eventespresso3.php:382
2190
  msgid "Gateways Settings Successfully Updated"
2191
  msgstr ""
2192
 
2193
- #: addons/gateway/event-booking/mycred-eventespresso3.php:390
2194
- #: addons/gateway/event-booking/mycred-eventsmanager.php:532
2195
  msgid "Labels"
2196
  msgstr ""
2197
 
2198
- #: addons/gateway/event-booking/mycred-eventespresso3.php:393
2199
  msgid "Gateway Title"
2200
  msgstr ""
2201
 
2202
- #: addons/gateway/event-booking/mycred-eventespresso3.php:395
2203
  msgid "Title to show on Payment page"
2204
  msgstr ""
2205
 
2206
- #: addons/gateway/event-booking/mycred-eventespresso3.php:398
2207
  msgid "Payment Type"
2208
  msgstr ""
2209
 
2210
- #: addons/gateway/event-booking/mycred-eventespresso3.php:400
2211
  msgid "Title to show on receipts and logs"
2212
  msgstr ""
2213
 
2214
- #: addons/gateway/event-booking/mycred-eventespresso3.php:403
2215
- #: addons/gateway/event-booking/mycred-eventsmanager.php:549
2216
- #: addons/sell-content/myCRED-addon-sell-content.php:349
2217
- #: addons/sell-content/myCRED-addon-sell-content.php:541
2218
  msgid "Button Label"
2219
  msgstr ""
2220
 
2221
- #: addons/gateway/event-booking/mycred-eventespresso3.php:405
2222
  msgid "Pay Button"
2223
  msgstr ""
2224
 
2225
- #: addons/gateway/event-booking/mycred-eventespresso3.php:408
2226
- #: addons/gateway/event-booking/mycred-eventsmanager.php:290
2227
- #: addons/gateway/event-booking/mycred-eventsmanager.php:293
2228
- #: addons/sell-content/myCRED-addon-sell-content.php:340
2229
- #: addons/sell-content/myCRED-addon-sell-content.php:537
2230
  msgid "Price"
2231
  msgstr ""
2232
 
2233
- #: addons/gateway/event-booking/mycred-eventespresso3.php:418
2234
  msgid ""
2235
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2236
  "<code>mycred_no_sale</code>"
2237
  msgstr ""
2238
 
2239
- #: addons/gateway/event-booking/mycred-eventespresso3.php:419
2240
  msgid "Users must be logged in to use this gateway!"
2241
  msgstr ""
2242
 
2243
- #: addons/gateway/event-booking/mycred-eventespresso3.php:423
2244
- #: modules/mycred-module-log.php:21 modules/mycred-module-log.php:22
 
2245
  msgid "Log"
2246
  msgstr ""
2247
 
2248
- #: addons/gateway/event-booking/mycred-eventespresso3.php:426
2249
- #: addons/import/myCRED-addon-import.php:549
2250
- #: addons/import/myCRED-addon-import.php:623
2251
- #: addons/import/myCRED-addon-import.php:681 includes/mycred-admin.php:337
 
2252
  msgid "Log Entry"
2253
  msgstr ""
2254
 
2255
- #: addons/gateway/event-booking/mycred-eventespresso3.php:433
2256
- #: addons/ranks/myCRED-addon-ranks.php:888
2257
  msgid "Templates"
2258
  msgstr ""
2259
 
2260
- #: addons/gateway/event-booking/mycred-eventespresso3.php:436
2261
  msgid "Solvent users"
2262
  msgstr ""
2263
 
2264
- #: addons/gateway/event-booking/mycred-eventespresso3.php:438
2265
  msgid ""
2266
  "Message to show users on the payment page before they are charged. Leave "
2267
  "empty to hide.<br />Available template tags: General"
2268
  msgstr ""
2269
 
2270
- #: addons/gateway/event-booking/mycred-eventespresso3.php:441
2271
  msgid "Insolvent users"
2272
  msgstr ""
2273
 
2274
- #: addons/gateway/event-booking/mycred-eventespresso3.php:443
2275
  msgid ""
2276
  "Message to show users who do not have enough points to pay.<br />Available "
2277
  "template tags: General"
2278
  msgstr ""
2279
 
2280
- #: addons/gateway/event-booking/mycred-eventespresso3.php:448
2281
  msgid ""
2282
  "Message to show visitors (users not logged in) on the payment page.<br /"
2283
  ">Available template tags: General"
2284
  msgstr ""
2285
 
2286
- #: addons/gateway/event-booking/mycred-eventespresso3.php:458
2287
- #: modules/mycred-module-general.php:154
2288
  msgid "Update Settings"
2289
  msgstr ""
2290
 
2291
- #: addons/gateway/event-booking/mycred-eventsmanager.php:25
2292
  msgid "Payment for tickets to %link_with_title%"
2293
  msgstr ""
2294
 
2295
- #: addons/gateway/event-booking/mycred-eventsmanager.php:26
2296
  msgid "Ticket refund for %link_with_title%"
2297
  msgstr ""
2298
 
2299
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2300
  msgid "Pay using your %_plural% balance"
2301
  msgstr ""
2302
 
2303
- #: addons/gateway/event-booking/mycred-eventsmanager.php:32
2304
  msgid "Pay"
2305
  msgstr ""
2306
 
2307
- #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2308
  msgid "Thank you for your payment!"
2309
  msgstr ""
2310
 
2311
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2312
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2313
  msgstr ""
2314
 
2315
- #: addons/gateway/event-booking/mycred-eventsmanager.php:287
2316
  msgid "Ticket Type"
2317
  msgstr ""
2318
 
2319
- #: addons/gateway/event-booking/mycred-eventsmanager.php:296
2320
  msgid "Spaces"
2321
  msgstr ""
2322
 
2323
- #: addons/gateway/event-booking/mycred-eventsmanager.php:365
2324
  msgid "Balance After Payment"
2325
  msgstr ""
2326
 
2327
- #: addons/gateway/event-booking/mycred-eventsmanager.php:472
2328
  msgid "Click to toggle"
2329
  msgstr ""
2330
 
2331
- #: addons/gateway/event-booking/mycred-eventsmanager.php:472
2332
  #, php-format
2333
  msgid "%s Payments"
2334
  msgstr ""
2335
 
2336
- #: addons/gateway/event-booking/mycred-eventsmanager.php:481
2337
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2338
  msgstr ""
2339
 
2340
- #: addons/gateway/event-booking/mycred-eventsmanager.php:482
2341
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2342
  msgstr ""
2343
 
2344
- #: addons/gateway/event-booking/mycred-eventsmanager.php:483
2345
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2346
  msgstr ""
2347
 
2348
- #: addons/gateway/event-booking/mycred-eventsmanager.php:487
2349
- #: addons/gateway/event-booking/mycred-eventsmanager.php:513
2350
  msgid "Refunds"
2351
  msgstr ""
2352
 
2353
- #: addons/gateway/event-booking/mycred-eventsmanager.php:490
2354
  msgid ""
2355
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2356
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2357
  msgstr ""
2358
 
2359
- #: addons/gateway/event-booking/mycred-eventsmanager.php:503
2360
  msgid "Log Templates"
2361
  msgstr ""
2362
 
2363
- #: addons/gateway/event-booking/mycred-eventsmanager.php:506
2364
  msgid "Purchases"
2365
  msgstr ""
2366
 
2367
- #: addons/gateway/event-booking/mycred-eventsmanager.php:509
2368
- #: addons/gateway/event-booking/mycred-eventsmanager.php:516
2369
  msgid "Available template tags: General and Post related."
2370
  msgstr ""
2371
 
2372
- #: addons/gateway/event-booking/mycred-eventsmanager.php:535
2373
  msgid "Payment Link Label"
2374
  msgstr ""
2375
 
2376
- #: addons/gateway/event-booking/mycred-eventsmanager.php:538
2377
  msgid ""
2378
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2379
  "HTML allowed."
2380
  msgstr ""
2381
 
2382
- #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2383
  msgid "Payment Header"
2384
  msgstr ""
2385
 
2386
- #: addons/gateway/event-booking/mycred-eventsmanager.php:545
2387
  msgid "Shown on top of the payment form. No HTML allowed."
2388
  msgstr ""
2389
 
2390
- #: addons/gateway/event-booking/mycred-eventsmanager.php:552
2391
  msgid "The button label for payments. No HTML allowed!"
2392
  msgstr ""
2393
 
2394
- #: addons/gateway/event-booking/mycred-eventsmanager.php:556
2395
  msgid "Messages"
2396
  msgstr ""
2397
 
2398
- #: addons/gateway/event-booking/mycred-eventsmanager.php:559
2399
  msgid "Successful Payments"
2400
  msgstr ""
2401
 
2402
- #: addons/gateway/event-booking/mycred-eventsmanager.php:562
2403
- #: addons/gateway/event-booking/mycred-eventsmanager.php:569
2404
  msgid "No HTML allowed! Available template tags: General"
2405
  msgstr ""
2406
 
2407
- #: addons/import/myCRED-addon-import.php:12
2408
- #: addons/import/myCRED-addon-import.php:40
2409
- #: addons/import/myCRED-addon-import.php:41
2410
- #: addons/import/myCRED-addon-import.php:42
2411
- #: addons/import/myCRED-addon-import.php:466
2412
- #: addons/import/myCRED-addon-import.php:742
2413
  msgid "Import"
2414
  msgstr ""
2415
 
2416
- #: addons/import/myCRED-addon-import.php:13
2417
  msgid ""
2418
  "With the Import add-on you can import CSV files, CubePoints or existing "
2419
  "points under any custom user meta values."
2420
  msgstr ""
2421
 
2422
- #: addons/import/myCRED-addon-import.php:91
2423
- #: addons/import/myCRED-addon-import.php:748
2424
  msgid "CSV File"
2425
  msgstr ""
2426
 
2427
- #: addons/import/myCRED-addon-import.php:92
2428
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2429
  msgstr ""
2430
 
2431
- #: addons/import/myCRED-addon-import.php:95
2432
  msgid "CubePoints"
2433
  msgstr ""
2434
 
2435
- #: addons/import/myCRED-addon-import.php:96
2436
  msgid "Import CubePoints"
2437
  msgstr ""
2438
 
2439
- #: addons/import/myCRED-addon-import.php:99
2440
- #: addons/import/myCRED-addon-import.php:768
2441
  msgid "Custom User Meta"
2442
  msgstr ""
2443
 
2444
- #: addons/import/myCRED-addon-import.php:100
2445
  msgid "Import %_plural% from pre-existing custom user meta."
2446
  msgstr ""
2447
 
2448
- #: addons/import/myCRED-addon-import.php:217
2449
  msgid "No file selected. Please select your CSV file and try again."
2450
  msgstr ""
2451
 
2452
- #: addons/import/myCRED-addon-import.php:232
2453
  msgid "Failed to load file."
2454
  msgstr ""
2455
 
2456
- #: addons/import/myCRED-addon-import.php:253
2457
- #: addons/import/myCRED-addon-import.php:423
2458
  #, php-format
2459
  msgid ""
2460
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2461
  msgstr ""
2462
 
2463
- #: addons/import/myCRED-addon-import.php:262
2464
  msgid ""
2465
  "No valid records found in file. Make sure you have selected the correct way "
2466
  "to identify users in the mycred_user column!"
2467
  msgstr ""
2468
 
2469
- #: addons/import/myCRED-addon-import.php:268
2470
- #: addons/import/myCRED-addon-import.php:351
2471
- #: addons/import/myCRED-addon-import.php:438
2472
  #, php-format
2473
  msgid ""
2474
  "Import successfully completed. A total of %d users were effected and %d "
2475
  "entires were skipped. Import completed in %.2f seconds."
2476
  msgstr ""
2477
 
2478
- #: addons/import/myCRED-addon-import.php:302
2479
- #: addons/import/myCRED-addon-import.php:587
2480
  msgid "No CubePoints found."
2481
  msgstr ""
2482
 
2483
- #: addons/import/myCRED-addon-import.php:336
2484
  #, php-format
2485
  msgid ""
2486
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2487
  "seconds."
2488
  msgstr ""
2489
 
2490
- #: addons/import/myCRED-addon-import.php:345
2491
  msgid "No valid CubePoints founds."
2492
  msgstr ""
2493
 
2494
- #: addons/import/myCRED-addon-import.php:371
2495
  msgid "Missing meta key. Not sure what I should be looking for."
2496
  msgstr ""
2497
 
2498
- #: addons/import/myCRED-addon-import.php:390
2499
  #, php-format
2500
  msgid "No rows found for the <strong>%s</strong> meta key."
2501
  msgstr ""
2502
 
2503
- #: addons/import/myCRED-addon-import.php:432
2504
  msgid "No valid records founds."
2505
  msgstr ""
2506
 
2507
- #: addons/import/myCRED-addon-import.php:478
2508
  msgid "Remember to de-activate this add-on once you are done importing!"
2509
  msgstr ""
2510
 
2511
- #: addons/import/myCRED-addon-import.php:510
2512
  msgid "File"
2513
  msgstr ""
2514
 
2515
- #: addons/import/myCRED-addon-import.php:514
2516
  msgid "Maximum allowed upload size is "
2517
  msgstr ""
2518
 
2519
- #: addons/import/myCRED-addon-import.php:514
2520
  msgid ""
2521
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2522
  "Optional columns: <code>mycred_log</code>."
2523
  msgstr ""
2524
 
2525
- #: addons/import/myCRED-addon-import.php:517
2526
  msgid "Identify Users By"
2527
  msgstr ""
2528
 
2529
- #: addons/import/myCRED-addon-import.php:520 includes/mycred-admin.php:331
 
2530
  msgid "ID"
2531
  msgstr ""
2532
 
2533
- #: addons/import/myCRED-addon-import.php:521 modules/mycred-module-log.php:187
 
2534
  msgid "Username"
2535
  msgstr ""
2536
 
2537
- #: addons/import/myCRED-addon-import.php:522
2538
  msgid "Email"
2539
  msgstr ""
2540
 
2541
- #: addons/import/myCRED-addon-import.php:529
2542
  msgid "How much is 1 imported value worth?"
2543
  msgstr ""
2544
 
2545
- #: addons/import/myCRED-addon-import.php:534
2546
- #: addons/import/myCRED-addon-import.php:602
2547
- #: addons/import/myCRED-addon-import.php:666
2548
  msgid "Round"
2549
  msgstr ""
2550
 
2551
- #: addons/import/myCRED-addon-import.php:535
2552
  msgid "None"
2553
  msgstr ""
2554
 
2555
- #: addons/import/myCRED-addon-import.php:536
2556
- #: addons/import/myCRED-addon-import.php:604
2557
- #: addons/import/myCRED-addon-import.php:668
2558
  msgid "Round Up"
2559
  msgstr ""
2560
 
2561
- #: addons/import/myCRED-addon-import.php:537
2562
- #: addons/import/myCRED-addon-import.php:605
2563
- #: addons/import/myCRED-addon-import.php:669
2564
  msgid "Round Down"
2565
  msgstr ""
2566
 
2567
- #: addons/import/myCRED-addon-import.php:542
2568
- #: addons/import/myCRED-addon-import.php:610
2569
- #: addons/import/myCRED-addon-import.php:674
2570
  msgid "Precision"
2571
  msgstr ""
2572
 
2573
- #: addons/import/myCRED-addon-import.php:544
2574
- #: addons/import/myCRED-addon-import.php:612
2575
- #: addons/import/myCRED-addon-import.php:676
2576
  msgid ""
2577
  "The optional number of decimal digits to round to. Use zero to round the "
2578
  "nearest whole number."
2579
  msgstr ""
2580
 
2581
- #: addons/import/myCRED-addon-import.php:553
2582
- #: addons/import/myCRED-addon-import.php:627
2583
- #: addons/import/myCRED-addon-import.php:685
2584
  msgid "See the help tab for available template tags. Leave blank to disable."
2585
  msgstr ""
2586
 
2587
- #: addons/import/myCRED-addon-import.php:558
2588
- #: addons/import/myCRED-addon-import.php:632
2589
- #: addons/import/myCRED-addon-import.php:696
2590
  msgid "Run Import"
2591
  msgstr ""
2592
 
2593
- #: addons/import/myCRED-addon-import.php:585
2594
  #, php-format
2595
  msgid "Found %d users with CubePoints."
2596
  msgstr ""
2597
 
2598
- #: addons/import/myCRED-addon-import.php:588
2599
- #: addons/import/myCRED-addon-import.php:652
2600
  msgid "Meta Key"
2601
  msgstr ""
2602
 
2603
- #: addons/import/myCRED-addon-import.php:603
2604
- #: addons/import/myCRED-addon-import.php:667
2605
  msgid "Do not round"
2606
  msgstr ""
2607
 
2608
- #: addons/import/myCRED-addon-import.php:617
2609
- #: addons/import/myCRED-addon-import.php:688
2610
  msgid "After Import"
2611
  msgstr ""
2612
 
2613
- #: addons/import/myCRED-addon-import.php:620
2614
  msgid "Delete users CubePoints balance."
2615
  msgstr ""
2616
 
2617
- #: addons/import/myCRED-addon-import.php:691
2618
  msgid "Delete the old value."
2619
  msgstr ""
2620
 
2621
- #: addons/import/myCRED-addon-import.php:719
2622
  msgid "Failed to get file contents."
2623
  msgstr ""
2624
 
2625
- #: addons/import/myCRED-addon-import.php:724
2626
  msgid "Failed to put file contents."
2627
  msgstr ""
2628
 
2629
- #: addons/import/myCRED-addon-import.php:744
2630
  msgid ""
2631
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2632
  "database. Remember that the import can take time depending on your file size "
2633
  "or the number of users being imported."
2634
  msgstr ""
2635
 
2636
- #: addons/import/myCRED-addon-import.php:750
2637
  msgid "CSV Import"
2638
  msgstr ""
2639
 
2640
- #: addons/import/myCRED-addon-import.php:751
2641
  msgid ""
2642
  "Imports using a comma-separated values file requires the following columns:"
2643
  msgstr ""
2644
 
2645
- #: addons/import/myCRED-addon-import.php:752
2646
  msgid ""
2647
  "Column identifing the user. All rows must identify the user the same way, "
2648
  "either using an ID, Username (user_login) or email. Users that can not be "
2649
  "found will be ignored."
2650
  msgstr ""
2651
 
2652
- #: addons/import/myCRED-addon-import.php:753
2653
  msgid ""
2654
  "Column with the amount to be imported. If set, an exchange rate is applied "
2655
  "to this value before import."
2656
  msgstr ""
2657
 
2658
- #: addons/import/myCRED-addon-import.php:754
2659
  msgid ""
2660
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2661
  "the log entry for each import."
2662
  msgstr ""
2663
 
2664
- #: addons/import/myCRED-addon-import.php:758
2665
  msgid "Cubepoints"
2666
  msgstr ""
2667
 
2668
- #: addons/import/myCRED-addon-import.php:760
2669
  msgid "Cubepoints Import"
2670
  msgstr ""
2671
 
2672
- #: addons/import/myCRED-addon-import.php:761
2673
  msgid ""
2674
  "When this page loads, the importer will automatically check if you have been "
2675
  "using Cubepoints. If you have, you can import these with the option to "
@@ -2677,301 +2744,344 @@ msgid ""
2677
  "clean."
2678
  msgstr ""
2679
 
2680
- #: addons/import/myCRED-addon-import.php:762
2681
- #: addons/import/myCRED-addon-import.php:772
2682
  msgid ""
2683
  "Before a value is imported, you can apply an exchange rate. To import "
2684
  "without changing the value, use 1 as the exchange rate."
2685
  msgstr ""
2686
 
2687
- #: addons/import/myCRED-addon-import.php:763
2688
- #: addons/import/myCRED-addon-import.php:773
2689
  msgid ""
2690
  "You can select to add a log entry for each import or leave the template "
2691
  "empty to skip."
2692
  msgstr ""
2693
 
2694
- #: addons/import/myCRED-addon-import.php:764
2695
  msgid ""
2696
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
2697
  "installation exists."
2698
  msgstr ""
2699
 
2700
- #: addons/import/myCRED-addon-import.php:770
2701
  msgid "Custom User Meta Import"
2702
  msgstr ""
2703
 
2704
- #: addons/import/myCRED-addon-import.php:771
2705
  msgid ""
2706
  "You can import any type of points that have previously been saved in your "
2707
  "database. All you need is the meta key under which it has been saved."
2708
  msgstr ""
2709
 
2710
- #: addons/import/myCRED-addon-import.php:774
2711
  msgid ""
2712
  "Please note that the meta key is case sensitive and can not contain "
2713
  "whitespaces!"
2714
  msgstr ""
2715
 
2716
- #: addons/ranks/myCRED-addon-ranks.php:12
2717
- #: addons/ranks/myCRED-addon-ranks.php:156
2718
- #: addons/ranks/myCRED-addon-ranks.php:162
2719
- #: addons/ranks/myCRED-addon-ranks.php:168
2720
- #: addons/ranks/myCRED-addon-ranks.php:691
2721
- #: addons/ranks/myCRED-addon-ranks.php:883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2722
  msgid "Ranks"
2723
  msgstr ""
2724
 
2725
- #: addons/ranks/myCRED-addon-ranks.php:13
2726
  msgid ""
2727
- "Create ranks for users reaching a certain number of %_plural% with the "
2728
- "option to add logos for each rank."
2729
  msgstr ""
2730
 
2731
- #: addons/ranks/myCRED-addon-ranks.php:157
2732
- #: addons/ranks/myCRED-addon-ranks.php:387
2733
- #: addons/ranks/myCRED-addon-ranks.php:404
2734
- #: addons/ranks/myCRED-addon-ranks.php:499
2735
  msgid "Rank"
2736
  msgstr ""
2737
 
2738
- #: addons/ranks/myCRED-addon-ranks.php:159
2739
  msgid "Add New Rank"
2740
  msgstr ""
2741
 
2742
- #: addons/ranks/myCRED-addon-ranks.php:160
2743
  msgid "Edit Rank"
2744
  msgstr ""
2745
 
2746
- #: addons/ranks/myCRED-addon-ranks.php:161
2747
  msgid "New Rank"
2748
  msgstr ""
2749
 
2750
- #: addons/ranks/myCRED-addon-ranks.php:163
2751
  msgid "View Rank"
2752
  msgstr ""
2753
 
2754
- #: addons/ranks/myCRED-addon-ranks.php:164
2755
  msgid "Search Ranks"
2756
  msgstr ""
2757
 
2758
- #: addons/ranks/myCRED-addon-ranks.php:165
2759
  msgid "No ranks found"
2760
  msgstr ""
2761
 
2762
- #: addons/ranks/myCRED-addon-ranks.php:166
2763
  msgid "No ranks found in Trash"
2764
  msgstr ""
2765
 
2766
- #: addons/ranks/myCRED-addon-ranks.php:233
2767
  #, php-format
2768
  msgid "Completed - Total of %d users effected"
2769
  msgstr ""
2770
 
2771
- #: addons/ranks/myCRED-addon-ranks.php:235
2772
  msgid "Log is Empty"
2773
  msgstr ""
2774
 
2775
- #: addons/ranks/myCRED-addon-ranks.php:428
2776
  msgid "Newbie"
2777
  msgstr ""
2778
 
2779
- #: addons/ranks/myCRED-addon-ranks.php:459
2780
- #: addons/ranks/myCRED-addon-ranks.php:462
2781
  #, php-format
2782
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2783
  msgstr ""
2784
 
2785
- #: addons/ranks/myCRED-addon-ranks.php:464
2786
  msgid "Rank Activated"
2787
  msgstr ""
2788
 
2789
- #: addons/ranks/myCRED-addon-ranks.php:465
2790
  msgid "Rank Saved"
2791
  msgstr ""
2792
 
2793
- #: addons/ranks/myCRED-addon-ranks.php:466
2794
  #, php-format
2795
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2796
  msgstr ""
2797
 
2798
- #: addons/ranks/myCRED-addon-ranks.php:468
2799
  #, php-format
2800
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2801
  msgstr ""
2802
 
2803
- #: addons/ranks/myCRED-addon-ranks.php:525
2804
- #: addons/ranks/myCRED-addon-ranks.php:580
2805
  msgid "Rank Title"
2806
  msgstr ""
2807
 
2808
- #: addons/ranks/myCRED-addon-ranks.php:526
2809
  msgid "Logo"
2810
  msgstr ""
2811
 
2812
- #: addons/ranks/myCRED-addon-ranks.php:527
2813
  msgid "Requirement"
2814
  msgstr ""
2815
 
2816
- #: addons/ranks/myCRED-addon-ranks.php:528
2817
  msgid "Users"
2818
  msgstr ""
2819
 
2820
- #: addons/ranks/myCRED-addon-ranks.php:544
2821
  msgid "No Logo Set"
2822
  msgstr ""
2823
 
2824
- #: addons/ranks/myCRED-addon-ranks.php:553
2825
- #: addons/ranks/myCRED-addon-ranks.php:558
2826
  msgid "Any Value"
2827
  msgstr ""
2828
 
2829
- #: addons/ranks/myCRED-addon-ranks.php:560
2830
  msgid "Maximum %plural%"
2831
  msgstr ""
2832
 
2833
- #: addons/ranks/myCRED-addon-ranks.php:593
2834
  msgid "Rank Settings"
2835
  msgstr ""
2836
 
2837
- #: addons/ranks/myCRED-addon-ranks.php:615
2838
  msgid "Minimum %plural% to reach this rank"
2839
  msgstr ""
2840
 
2841
- #: addons/ranks/myCRED-addon-ranks.php:619
2842
  msgid "Maximum %plural% to be included in this rank"
2843
  msgstr ""
2844
 
2845
- #: addons/ranks/myCRED-addon-ranks.php:624
2846
  msgid "All Published Ranks"
2847
  msgstr ""
2848
 
2849
- #: addons/ranks/myCRED-addon-ranks.php:631
2850
- #: addons/ranks/myCRED-addon-ranks.php:633
2851
  msgid "Not Set"
2852
  msgstr ""
2853
 
2854
- #: addons/ranks/myCRED-addon-ranks.php:638
2855
  msgid "No Ranks found"
2856
  msgstr ""
2857
 
2858
- #: addons/ranks/myCRED-addon-ranks.php:693
2859
  msgid "Rank Features"
2860
  msgstr ""
2861
 
2862
- #: addons/ranks/myCRED-addon-ranks.php:697
2863
  msgid "%plural% requirement"
2864
  msgstr ""
2865
 
2866
- #: addons/ranks/myCRED-addon-ranks.php:698
2867
  msgid "Featured Image (Logo)"
2868
  msgstr ""
2869
 
2870
- #: addons/ranks/myCRED-addon-ranks.php:699
2871
  msgid "Content"
2872
  msgstr ""
2873
 
2874
- #: addons/ranks/myCRED-addon-ranks.php:700
2875
  msgid "Excerpt"
2876
  msgstr ""
2877
 
2878
- #: addons/ranks/myCRED-addon-ranks.php:701
2879
  msgid "Comments"
2880
  msgstr ""
2881
 
2882
- #: addons/ranks/myCRED-addon-ranks.php:702
2883
  msgid "Page Attributes"
2884
  msgstr ""
2885
 
2886
- #: addons/ranks/myCRED-addon-ranks.php:703
2887
  msgid "Custom Fields"
2888
  msgstr ""
2889
 
2890
- #: addons/ranks/myCRED-addon-ranks.php:706
2891
  msgid "Public"
2892
  msgstr ""
2893
 
2894
- #: addons/ranks/myCRED-addon-ranks.php:710
2895
  msgid ""
2896
  "If you want to create a template archive for each rank, you must select to "
2897
  "have ranks public. Defaults to disabled."
2898
  msgstr ""
2899
 
2900
- #: addons/ranks/myCRED-addon-ranks.php:713
2901
- #: addons/ranks/myCRED-addon-ranks.php:886
2902
  msgid "Rank Basis"
2903
  msgstr ""
2904
 
2905
- #: addons/ranks/myCRED-addon-ranks.php:716
2906
  msgid "Users are ranked according to their current balance."
2907
  msgstr ""
2908
 
2909
- #: addons/ranks/myCRED-addon-ranks.php:719
2910
  msgid ""
2911
  "Users are ranked according to the total amount of %_plural% they have "
2912
  "accumulated."
2913
  msgstr ""
2914
 
2915
- #: addons/ranks/myCRED-addon-ranks.php:723
2916
- #: addons/ranks/myCRED-addon-ranks.php:728
2917
  msgid "Calculate Totals"
2918
  msgstr ""
2919
 
2920
- #: addons/ranks/myCRED-addon-ranks.php:726
2921
  msgid ""
2922
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2923
  "the users current balance will be used as a starting point."
2924
  msgstr ""
2925
 
2926
- #: addons/ranks/myCRED-addon-ranks.php:726
2927
  msgid ""
2928
  "Once a users total has been calculated, they will be assigned to their "
2929
  "appropriate roles. For this reason, it is highly recommended that you first "
2930
  "setup your ranks!"
2931
  msgstr ""
2932
 
2933
- #: addons/ranks/myCRED-addon-ranks.php:727
2934
  msgid ""
2935
  "Depending on your log size and number of users this process may take a "
2936
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
2937
  "until this is completed!"
2938
  msgstr ""
2939
 
2940
- #: addons/ranks/myCRED-addon-ranks.php:732
2941
  msgid "Archive URL"
2942
  msgstr ""
2943
 
2944
- #: addons/ranks/myCRED-addon-ranks.php:736
2945
  msgid "Ignored if Ranks are not public"
2946
  msgstr ""
2947
 
2948
- #: addons/ranks/myCRED-addon-ranks.php:739
2949
  msgid "Display Order"
2950
  msgstr ""
2951
 
2952
- #: addons/ranks/myCRED-addon-ranks.php:746
2953
  msgid "Ascending - Lowest rank to highest"
2954
  msgstr ""
2955
 
2956
- #: addons/ranks/myCRED-addon-ranks.php:747
2957
  msgid "Descending - Highest rank to lowest"
2958
  msgstr ""
2959
 
2960
- #: addons/ranks/myCRED-addon-ranks.php:756
2961
  msgid ""
2962
  "Select in what order ranks should be displayed in your admin area and/or "
2963
  "front if ranks are \"Public\""
2964
  msgstr ""
2965
 
2966
- #: addons/ranks/myCRED-addon-ranks.php:772
2967
  msgid "Rank in BuddyPress"
2968
  msgstr ""
2969
 
2970
- #: addons/ranks/myCRED-addon-ranks.php:840
2971
  msgid "Script Communication Error"
2972
  msgstr ""
2973
 
2974
- #: addons/ranks/myCRED-addon-ranks.php:885
2975
  msgid ""
2976
  "You can create ranks according to the amount of points a user has. By "
2977
  "default, ranks are only visible in widgets and shortcodes however it is "
@@ -2979,7 +3089,7 @@ msgid ""
2979
  "specific ones."
2980
  msgstr ""
2981
 
2982
- #: addons/ranks/myCRED-addon-ranks.php:887
2983
  msgid ""
2984
  "As of version 1.2, you can select to rank users according to their current "
2985
  "balance or the total amount of %_plural% they have accumulated. This is "
@@ -2987,29 +3097,29 @@ msgid ""
2987
  "%_plural% to pay for items in your store or event tickets."
2988
  msgstr ""
2989
 
2990
- #: addons/ranks/myCRED-addon-ranks.php:889
2991
  msgid ""
2992
  "Ranks are just another custom post type which means that you can, if you "
2993
  "select to make Ranks Public, create custom template files for ranks in your "
2994
  "theme folder."
2995
  msgstr ""
2996
 
2997
- #: addons/ranks/myCRED-addon-ranks.php:890
2998
  #, php-format
2999
  msgid ""
3000
  "For more information on Templates for Custom Post Types visit the <a href="
3001
  "\"%s\">WordPress Codex</a>."
3002
  msgstr ""
3003
 
3004
- #: addons/ranks/myCRED-addon-ranks.php:891
3005
  msgid "Changing URL Slug"
3006
  msgstr ""
3007
 
3008
- #: addons/ranks/myCRED-addon-ranks.php:892
3009
  msgid "You can change the URL slug used for ranks to any URL friendly value."
3010
  msgstr ""
3011
 
3012
- #: addons/ranks/myCRED-addon-ranks.php:893
3013
  msgid ""
3014
  "If you are using a custom permalink structure and you make ranks public or "
3015
  "change the slug, you will need to visit your permalink settings page and "
@@ -3017,1758 +3127,1831 @@ msgid ""
3017
  "a 404 error message when trying to view a rank archive page."
3018
  msgstr ""
3019
 
3020
- #: addons/ranks/includes/mycred-rank-functions.php:145
3021
- #: addons/ranks/includes/mycred-rank-functions.php:151
3022
  msgid "No Rank"
3023
  msgstr ""
3024
 
3025
- #: addons/ranks/includes/mycred-rank-shortcodes.php:57
3026
- #: addons/ranks/includes/mycred-rank-shortcodes.php:132
3027
  msgid "No users found with this rank"
3028
  msgstr ""
3029
 
3030
- #: addons/ranks/includes/mycred-rank-shortcodes.php:62
3031
- #: includes/mycred-shortcodes.php:144 includes/mycred-shortcodes.php:147
3032
- #: includes/mycred-shortcodes.php:206 includes/mycred-shortcodes.php:255
3033
- #: includes/mycred-shortcodes.php:259 includes/mycred-shortcodes.php:263
 
 
 
3034
  msgid "error"
3035
  msgstr ""
3036
 
3037
- #: addons/ranks/includes/mycred-rank-shortcodes.php:62
3038
  msgid "Rank ID is required!"
3039
  msgstr ""
3040
 
3041
- #: addons/sell-content/myCRED-addon-sell-content.php:12
3042
- #: addons/sell-content/myCRED-addon-sell-content.php:304
3043
- #: addons/sell-content/myCRED-addon-sell-content.php:1052
3044
  msgid "Sell Content"
3045
  msgstr ""
3046
 
3047
- #: addons/sell-content/myCRED-addon-sell-content.php:13
3048
  msgid ""
3049
  "This add-on allows you to sell posts, pages or any public post types on your "
3050
  "website. You can either sell the entire content or using our shortcode, sell "
3051
  "parts of your content allowing you to offer \"teasers\"."
3052
  msgstr ""
3053
 
3054
- #: addons/sell-content/myCRED-addon-sell-content.php:42
3055
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3056
  msgstr ""
3057
 
3058
- #: addons/sell-content/myCRED-addon-sell-content.php:43
3059
  msgid ""
3060
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3061
  "</p>"
3062
  msgstr ""
3063
 
3064
- #: addons/sell-content/myCRED-addon-sell-content.php:44
3065
  msgid ""
3066
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3067
  "<p><strong>Price</strong>: %price%</p>"
3068
  msgstr ""
3069
 
3070
- #: addons/sell-content/myCRED-addon-sell-content.php:54
3071
  msgid "Purchase of %link_with_title%"
3072
  msgstr ""
3073
 
3074
- #: addons/sell-content/myCRED-addon-sell-content.php:55
3075
  msgid "Sale of %link_with_title%"
3076
  msgstr ""
3077
 
3078
- #: addons/sell-content/myCRED-addon-sell-content.php:72
3079
  msgid "Hours"
3080
  msgstr ""
3081
 
3082
- #: addons/sell-content/myCRED-addon-sell-content.php:214
3083
  msgid "You can not buy this content."
3084
  msgstr ""
3085
 
3086
- #: addons/sell-content/myCRED-addon-sell-content.php:277
3087
  msgid "Error. Try Again"
3088
  msgstr ""
3089
 
3090
- #: addons/sell-content/myCRED-addon-sell-content.php:299
3091
  msgid "No Payout. Just charge."
3092
  msgstr ""
3093
 
3094
- #: addons/sell-content/myCRED-addon-sell-content.php:300
3095
  msgid "Pay Content Author."
3096
  msgstr ""
3097
 
3098
- #: addons/sell-content/myCRED-addon-sell-content.php:306
3099
  msgid "Post Types"
3100
  msgstr ""
3101
 
3102
- #: addons/sell-content/myCRED-addon-sell-content.php:310
3103
  msgid "Comma separated list of post types that can be sold."
3104
  msgstr ""
3105
 
3106
- #: addons/sell-content/myCRED-addon-sell-content.php:327
3107
  msgid "Percentage to pay Author"
3108
  msgstr ""
3109
 
3110
- #: addons/sell-content/myCRED-addon-sell-content.php:329
3111
  msgid ""
3112
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3113
  "authors are not paid."
3114
  msgstr ""
3115
 
3116
- #: addons/sell-content/myCRED-addon-sell-content.php:337
3117
- #: addons/sell-content/myCRED-addon-sell-content.php:1055
3118
  msgid "Defaults"
3119
  msgstr ""
3120
 
3121
- #: addons/sell-content/myCRED-addon-sell-content.php:345
3122
  msgid "Allow authors to change price."
3123
  msgstr ""
3124
 
3125
- #: addons/sell-content/myCRED-addon-sell-content.php:354
3126
  msgid "Allow authors to change button label."
3127
  msgstr ""
3128
 
3129
- #: addons/sell-content/myCRED-addon-sell-content.php:358
3130
  msgid "Purchases expire after"
3131
  msgstr ""
3132
 
3133
- #: addons/sell-content/myCRED-addon-sell-content.php:360
3134
  msgid "Use zero for permanent sales."
3135
  msgstr ""
3136
 
3137
- #: addons/sell-content/myCRED-addon-sell-content.php:363
3138
  msgid "Sale Template for non members"
3139
  msgstr ""
3140
 
3141
- #: addons/sell-content/myCRED-addon-sell-content.php:367
3142
  msgid ""
3143
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3144
  "be logged in to buy content!"
3145
  msgstr ""
3146
 
3147
- #: addons/sell-content/myCRED-addon-sell-content.php:368
3148
  msgid ""
3149
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3150
  "%link_with_title%, %price%"
3151
  msgstr ""
3152
 
3153
- #: addons/sell-content/myCRED-addon-sell-content.php:371
3154
  msgid "Sale Template for members"
3155
  msgstr ""
3156
 
3157
- #: addons/sell-content/myCRED-addon-sell-content.php:375
3158
- #: addons/sell-content/myCRED-addon-sell-content.php:383
3159
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3160
  msgstr ""
3161
 
3162
- #: addons/sell-content/myCRED-addon-sell-content.php:376
3163
- #: addons/sell-content/myCRED-addon-sell-content.php:384
3164
  msgid ""
3165
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3166
  "%link_with_title%, %buy_button%, %price%"
3167
  msgstr ""
3168
 
3169
- #: addons/sell-content/myCRED-addon-sell-content.php:379
3170
  msgid "Insufficient funds template"
3171
  msgstr ""
3172
 
3173
- #: addons/sell-content/myCRED-addon-sell-content.php:387
3174
  msgid "Log template for Purchases"
3175
  msgstr ""
3176
 
3177
- #: addons/sell-content/myCRED-addon-sell-content.php:391
3178
- #: addons/sell-content/myCRED-addon-sell-content.php:398
3179
  msgid ""
3180
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3181
  "or %link_with_title%"
3182
  msgstr ""
3183
 
3184
- #: addons/sell-content/myCRED-addon-sell-content.php:394
3185
  msgid "Log template for Sales"
3186
  msgstr ""
3187
 
3188
- #: addons/sell-content/myCRED-addon-sell-content.php:450
3189
  msgid "Sell This"
3190
  msgstr ""
3191
 
3192
- #: addons/sell-content/myCRED-addon-sell-content.php:499
3193
  msgid " Sell Content needs to be setup before you can use this feature."
3194
  msgstr ""
3195
 
3196
- #: addons/sell-content/myCRED-addon-sell-content.php:502
3197
  msgid "Setup add-on"
3198
  msgstr ""
3199
 
3200
- #: addons/sell-content/myCRED-addon-sell-content.php:502
3201
  msgid "Lets do it"
3202
  msgstr ""
3203
 
3204
- #: addons/sell-content/myCRED-addon-sell-content.php:531
3205
  msgid "Enable sale of this "
3206
  msgstr ""
3207
 
3208
- #: addons/sell-content/myCRED-addon-sell-content.php:545
3209
  msgid "Purchase expires after"
3210
  msgstr ""
3211
 
3212
- #: addons/sell-content/myCRED-addon-sell-content.php:791
3213
  msgid "Thank you for your purchase!"
3214
  msgstr ""
3215
 
3216
- #: addons/sell-content/myCRED-addon-sell-content.php:872
3217
- #: addons/sell-content/myCRED-addon-sell-content.php:952
3218
  msgid "The following content is set for sale:"
3219
  msgstr ""
3220
 
3221
- #: addons/sell-content/myCRED-addon-sell-content.php:970
3222
  msgid "No purchases found"
3223
  msgstr ""
3224
 
3225
- #: addons/sell-content/myCRED-addon-sell-content.php:1007
3226
  msgid "Purchased"
3227
  msgstr ""
3228
 
3229
- #: addons/sell-content/myCRED-addon-sell-content.php:1054
3230
  msgid ""
3231
  "This add-on lets you sell either entire contents or parts of it. You can "
3232
  "select if you want to just charge users or share a percentage of the sale "
3233
  "with the post author."
3234
  msgstr ""
3235
 
3236
- #: addons/sell-content/myCRED-addon-sell-content.php:1056
3237
  msgid ""
3238
  "The default price and button label is applied to all content that is set for "
3239
  "sale. You can select if you want to enforce these settings or let the "
3240
  "content authors set their own."
3241
  msgstr ""
3242
 
3243
- #: addons/sell-content/myCRED-addon-sell-content.php:1058
3244
  msgid ""
3245
  "You can either sell entire posts via the Sell Content Meta Box or by using "
3246
  "the <code>mycred_sell_this</code> shortcode.<br />For more information on "
3247
  "how to use the shortcode, please visit the"
3248
  msgstr ""
3249
 
3250
- #: addons/transfer/myCRED-addon-transfer.php:12
3251
- #: addons/transfer/myCRED-addon-transfer.php:50
3252
- #: addons/transfer/myCRED-addon-transfer.php:488
3253
  msgid "Transfer"
3254
  msgstr ""
3255
 
3256
- #: addons/transfer/myCRED-addon-transfer.php:13
3257
  msgid ""
3258
  "Allow your users to send or \"donate\" points to other members by either "
3259
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3260
  msgstr ""
3261
 
3262
- #: addons/transfer/myCRED-addon-transfer.php:43
3263
  msgid "You do not have enough %plural% to send."
3264
  msgstr ""
3265
 
3266
- #: addons/transfer/myCRED-addon-transfer.php:44
3267
  msgid "You have exceeded your %limit% transfer limit."
3268
  msgstr ""
3269
 
3270
- #: addons/transfer/myCRED-addon-transfer.php:143
3271
  msgid "Transaction completed."
3272
  msgstr ""
3273
 
3274
- #: addons/transfer/myCRED-addon-transfer.php:144
3275
  msgid ""
3276
  "Security token could not be verified. Please contact your site administrator!"
3277
  msgstr ""
3278
 
3279
- #: addons/transfer/myCRED-addon-transfer.php:145
3280
  msgid "Communications error. Please try again later."
3281
  msgstr ""
3282
 
3283
- #: addons/transfer/myCRED-addon-transfer.php:146
3284
  msgid "Recipient not found. Please try again."
3285
  msgstr ""
3286
 
3287
- #: addons/transfer/myCRED-addon-transfer.php:147
3288
  msgid "Transaction declined by recipient."
3289
  msgstr ""
3290
 
3291
- #: addons/transfer/myCRED-addon-transfer.php:148
3292
  msgid "Incorrect amount. Please try again."
3293
  msgstr ""
3294
 
3295
- #: addons/transfer/myCRED-addon-transfer.php:149
3296
  msgid ""
3297
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3298
  "this has been done!"
3299
  msgstr ""
3300
 
3301
- #: addons/transfer/myCRED-addon-transfer.php:150
3302
  msgid "Insufficient funds. Please enter a lower amount."
3303
  msgstr ""
3304
 
3305
- #: addons/transfer/myCRED-addon-transfer.php:151
3306
  msgid "Transfer Limit exceeded."
3307
  msgstr ""
3308
 
3309
- #: addons/transfer/myCRED-addon-transfer.php:152
3310
  msgid ""
3311
  "The request amount will exceed your transfer limit. Please try again with a "
3312
  "lower amount!"
3313
  msgstr ""
3314
 
3315
- #: addons/transfer/myCRED-addon-transfer.php:177
3316
  msgid "No limits."
3317
  msgstr ""
3318
 
3319
- #: addons/transfer/myCRED-addon-transfer.php:178
3320
  msgid "Impose daily limit."
3321
  msgstr ""
3322
 
3323
- #: addons/transfer/myCRED-addon-transfer.php:179
3324
  msgid "Impose weekly limit."
3325
  msgstr ""
3326
 
3327
- #: addons/transfer/myCRED-addon-transfer.php:183
3328
- #: addons/transfer/myCRED-addon-transfer.php:588
3329
  msgid "Transfer %plural%"
3330
  msgstr ""
3331
 
3332
- #: addons/transfer/myCRED-addon-transfer.php:185
3333
  msgid "Log template for sending"
3334
  msgstr ""
3335
 
3336
- #: addons/transfer/myCRED-addon-transfer.php:192
3337
  msgid "Log template for receiving"
3338
  msgstr ""
3339
 
3340
- #: addons/transfer/myCRED-addon-transfer.php:199
3341
- #: modules/mycred-module-hooks.php:992 modules/mycred-module-hooks.php:1235
 
3342
  msgid "Limits"
3343
  msgstr ""
3344
 
3345
- #: addons/transfer/myCRED-addon-transfer.php:216
3346
  msgid "Maximum Amount"
3347
  msgstr ""
3348
 
3349
- #: addons/transfer/myCRED-addon-transfer.php:218
3350
  msgid "This amount is ignored if no limits are imposed."
3351
  msgstr ""
3352
 
3353
- #: addons/transfer/myCRED-addon-transfer.php:221
3354
  msgid "Form Templates"
3355
  msgstr ""
3356
 
3357
- #: addons/transfer/myCRED-addon-transfer.php:224
3358
  msgid "Not logged in Template"
3359
  msgstr ""
3360
 
3361
- #: addons/transfer/myCRED-addon-transfer.php:226
3362
  msgid ""
3363
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3364
  "elements allowed!"
3365
  msgstr ""
3366
 
3367
- #: addons/transfer/myCRED-addon-transfer.php:230
3368
  msgid "Balance Template"
3369
  msgstr ""
3370
 
3371
- #: addons/transfer/myCRED-addon-transfer.php:232
3372
  msgid ""
3373
  "Template to use when displaying the users balance (if included). No HTML "
3374
  "elements allowed!"
3375
  msgstr ""
3376
 
3377
- #: addons/transfer/myCRED-addon-transfer.php:236
3378
  msgid "Limit Template"
3379
  msgstr ""
3380
 
3381
- #: addons/transfer/myCRED-addon-transfer.php:238
3382
  msgid ""
3383
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3384
  msgstr ""
3385
 
3386
- #: addons/transfer/myCRED-addon-transfer.php:242
3387
  msgid "Button Template"
3388
  msgstr ""
3389
 
3390
- #: addons/transfer/myCRED-addon-transfer.php:244
3391
  msgid "Send Transfer button template. No HTML elements allowed!"
3392
  msgstr ""
3393
 
3394
- #: addons/transfer/myCRED-addon-transfer.php:247
3395
  msgid "Error Messages"
3396
  msgstr ""
3397
 
3398
- #: addons/transfer/myCRED-addon-transfer.php:250
3399
  msgid "Balance to low to send."
3400
  msgstr ""
3401
 
3402
- #: addons/transfer/myCRED-addon-transfer.php:252
3403
  msgid ""
3404
  "Text to show when a users balance is to low for transfers. Leave empty to "
3405
  "hide. No HTML elements allowed!"
3406
  msgstr ""
3407
 
3408
- #: addons/transfer/myCRED-addon-transfer.php:256
3409
  msgid "Transfer Limit Reached."
3410
  msgstr ""
3411
 
3412
- #: addons/transfer/myCRED-addon-transfer.php:258
3413
  msgid ""
3414
  "Text to show when a user has reached their transfer limit (if used). Leave "
3415
  "empty to hide. No HTML elements allowed!"
3416
  msgstr ""
3417
 
3418
- #: addons/transfer/myCRED-addon-transfer.php:490
3419
  msgid ""
3420
  "This add-on lets your users transfer %_plural% to each other. Members who "
3421
  "are set to be excluded can neither send or receive %_plural%."
3422
  msgstr ""
3423
 
3424
- #: addons/transfer/myCRED-addon-transfer.php:491
3425
  msgid "Transfer Limit"
3426
  msgstr ""
3427
 
3428
- #: addons/transfer/myCRED-addon-transfer.php:492
3429
  msgid ""
3430
  "You can impose a daily-, weekly- or monthly transfer limit for each user. "
3431
  "Note, that this transfer limit is imposed on everyone who are not excluded "
3432
  "from using myCRED."
3433
  msgstr ""
3434
 
3435
- #: addons/transfer/myCRED-addon-transfer.php:494
3436
  msgid ""
3437
  "Transfers can be made by either using the <code>mycred_transfer</code> "
3438
  "shortcode or via the myCRED Transfer Widget.<br />For more information on "
3439
  "how to use the shortcode, please visit the"
3440
  msgstr ""
3441
 
3442
- #: addons/transfer/myCRED-addon-transfer.php:517
3443
  msgid "Allow transfers between users."
3444
  msgstr ""
3445
 
3446
- #: addons/transfer/myCRED-addon-transfer.php:519
3447
  #, php-format
3448
  msgid "%s Transfer"
3449
  msgstr ""
3450
 
3451
- #: addons/transfer/myCRED-addon-transfer.php:534
3452
  msgid "The myCRED Transfer add-on has not yet been setup!"
3453
  msgstr ""
3454
 
3455
- #: addons/transfer/myCRED-addon-transfer.php:599
3456
  msgid "Show users balance"
3457
  msgstr ""
3458
 
3459
- #: addons/transfer/myCRED-addon-transfer.php:603
3460
  msgid "Show users limit"
3461
  msgstr ""
3462
 
3463
- #: addons/transfer/myCRED-addon-transfer.php:726
3464
  msgid "To:"
3465
  msgstr ""
3466
 
3467
- #: addons/transfer/myCRED-addon-transfer.php:730
3468
  msgid "Amount:"
3469
  msgstr ""
3470
 
3471
- #: includes/mycred-admin.php:68
3472
  msgid "User is excluded"
3473
  msgstr ""
3474
 
3475
- #: includes/mycred-admin.php:73
3476
  msgid "Log Entry can not be empty"
3477
  msgstr ""
3478
 
3479
- #: includes/mycred-admin.php:77
3480
  msgid "Amount can not be zero"
3481
  msgstr ""
3482
 
3483
- #: includes/mycred-admin.php:173
3484
  msgid "Excluded"
3485
  msgstr ""
3486
 
3487
- #: includes/mycred-admin.php:180
3488
  msgid "History"
3489
  msgstr ""
3490
 
3491
- #: includes/mycred-admin.php:182
3492
  msgid "Adjust"
3493
  msgstr ""
3494
 
3495
- #: includes/mycred-admin.php:233
3496
  #, php-format
3497
  msgid "My current %singular% balance"
3498
  msgstr ""
3499
 
3500
- #: includes/mycred-admin.php:256
3501
  msgid "Adjust Your Balance"
3502
  msgstr ""
3503
 
3504
- #: includes/mycred-admin.php:258
3505
  msgid "Adjust Users Balance"
3506
  msgstr ""
3507
 
3508
- #: includes/mycred-admin.php:265 includes/mycred-admin.php:325
 
3509
  msgid "required"
3510
  msgstr ""
3511
 
3512
- #: includes/mycred-admin.php:267 includes/mycred-admin.php:327
 
3513
  msgid "optional"
3514
  msgstr ""
3515
 
3516
- #: includes/mycred-admin.php:273
3517
  msgid "Log description for adjustment"
3518
  msgstr ""
3519
 
3520
- #: includes/mycred-admin.php:274
3521
  msgid "Update"
3522
  msgstr ""
3523
 
3524
- #: includes/mycred-admin.php:275
3525
  msgid "Description is required!"
3526
  msgstr ""
3527
 
3528
- #: includes/mycred-admin.php:280
3529
  msgid "Users Current Balance"
3530
  msgstr ""
3531
 
3532
- #: includes/mycred-admin.php:336
3533
  msgid "A positive or negative value"
3534
  msgstr ""
3535
 
3536
- #: includes/mycred-admin.php:338
3537
  msgid "Update Balance"
3538
  msgstr ""
3539
 
3540
- #: includes/mycred-functions.php:312
3541
  msgid "Deleted"
3542
  msgstr ""
3543
 
3544
- #: includes/mycred-functions.php:447
3545
  msgid "Deleted Item"
3546
  msgstr ""
3547
 
3548
- #: includes/mycred-functions.php:1212
3549
  msgid "ref empty"
3550
  msgstr ""
3551
 
3552
- #: includes/mycred-functions.php:1220
3553
  msgid "incorrect user id format"
3554
  msgstr ""
3555
 
3556
- #: includes/mycred-functions.php:1233
3557
  msgid "incorrect unix timestamp (from):"
3558
  msgstr ""
3559
 
3560
- #: includes/mycred-functions.php:1242
3561
  msgid "incorrect unix timestamp (to):"
3562
  msgstr ""
3563
 
3564
- #: includes/mycred-install.php:35
3565
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
3566
  msgstr ""
3567
 
3568
- #: includes/mycred-install.php:40
3569
  msgid "myCRED requires PHP 5.2.0 or higher. Version detected: "
3570
  msgstr ""
3571
 
3572
- #: includes/mycred-install.php:45
3573
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3574
  msgstr ""
3575
 
3576
- #: includes/mycred-install.php:50
3577
  msgid ""
3578
  "Sorry but your WordPress installation does not reach the minimum "
3579
  "requirements for running myCRED. The following errors were given:"
3580
  msgstr ""
3581
 
3582
- #: includes/mycred-install.php:269
3583
  msgid "myCRED needs your attention."
3584
  msgstr ""
3585
 
3586
- #: includes/mycred-install.php:269
3587
  msgid "Run Setup"
3588
  msgstr ""
3589
 
3590
- #: includes/mycred-install.php:281 includes/mycred-install.php:282
 
3591
  msgid "myCRED Setup"
3592
  msgstr ""
3593
 
3594
- #: includes/mycred-install.php:421
3595
  msgid "Step"
3596
  msgstr ""
3597
 
3598
- #: includes/mycred-install.php:444
3599
  msgid ""
3600
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3601
  "points format, layout and security settings."
3602
  msgstr ""
3603
 
3604
- #: includes/mycred-install.php:445
3605
  msgid "Begin Setup"
3606
  msgstr ""
3607
 
3608
- #: includes/mycred-install.php:502
3609
  msgid "Select the format you want to use for your points."
3610
  msgstr ""
3611
 
3612
- #: includes/mycred-install.php:503 includes/mycred-widgets.php:199
 
3613
  msgid "Format"
3614
  msgstr ""
3615
 
3616
- #: includes/mycred-install.php:506
3617
  msgid "Separators"
3618
  msgstr ""
3619
 
3620
- #: includes/mycred-install.php:516
3621
  msgid "Decimals"
3622
  msgstr ""
3623
 
3624
- #: includes/mycred-install.php:518
3625
  msgid "Use zero for no decimals."
3626
  msgstr ""
3627
 
3628
- #: includes/mycred-install.php:521 modules/mycred-module-general.php:75
 
3629
  msgid "Presentation"
3630
  msgstr ""
3631
 
3632
- #: includes/mycred-install.php:524 modules/mycred-module-general.php:62
 
3633
  msgid "Name (Singular)"
3634
  msgstr ""
3635
 
3636
- #: includes/mycred-install.php:528 modules/mycred-module-general.php:67
 
3637
  msgid "Name (Plural)"
3638
  msgstr ""
3639
 
3640
- #: includes/mycred-install.php:534 modules/mycred-module-general.php:78
 
3641
  msgid "Prefix"
3642
  msgstr ""
3643
 
3644
- #: includes/mycred-install.php:542 modules/mycred-module-general.php:86
 
3645
  msgid "Suffix"
3646
  msgstr ""
3647
 
3648
- #: includes/mycred-install.php:547
3649
  msgid "Cancel Setup"
3650
  msgstr ""
3651
 
3652
- #: includes/mycred-install.php:547
3653
  msgid "Cancel"
3654
  msgstr ""
3655
 
3656
- #: includes/mycred-install.php:547 includes/mycred-install.php:627
 
3657
  msgid "Next"
3658
  msgstr ""
3659
 
3660
- #: includes/mycred-install.php:576 modules/mycred-module-general.php:94
 
3661
  msgid "Security"
3662
  msgstr ""
3663
 
3664
- #: includes/mycred-install.php:579
3665
  msgid "Edit Settings Capability"
3666
  msgstr ""
3667
 
3668
- #: includes/mycred-install.php:583
3669
  msgid "Edit Users %plural% Capability"
3670
  msgstr ""
3671
 
3672
- #: includes/mycred-install.php:591 modules/mycred-module-general.php:111
 
3673
  msgid "Exclude those who can \"Edit Settings\"."
3674
  msgstr ""
3675
 
3676
- #: includes/mycred-install.php:595 modules/mycred-module-general.php:115
 
3677
  msgid "Exclude those who can \"Edit Users %plural%\"."
3678
  msgstr ""
3679
 
3680
- #: includes/mycred-install.php:598 modules/mycred-module-general.php:119
 
3681
  msgid "Exclude the following user IDs:"
3682
  msgstr ""
3683
 
3684
- #: includes/mycred-install.php:602 modules/mycred-module-general.php:124
 
3685
  msgid "Rankings"
3686
  msgstr ""
3687
 
3688
- #: includes/mycred-install.php:606 modules/mycred-module-general.php:128
 
3689
  msgid "Update rankings each time a users balance changes."
3690
  msgstr ""
3691
 
3692
- #: includes/mycred-install.php:610 modules/mycred-module-general.php:132
 
3693
  msgid "Update rankings once a day."
3694
  msgstr ""
3695
 
3696
- #: includes/mycred-install.php:614 modules/mycred-module-general.php:136
 
3697
  msgid "Update rankings once a week."
3698
  msgstr ""
3699
 
3700
- #: includes/mycred-install.php:618 modules/mycred-module-general.php:140
 
3701
  msgid "Update rankings on a specific date."
3702
  msgstr ""
3703
 
3704
- #: includes/mycred-install.php:622 modules/mycred-module-general.php:144
3705
- #: modules/mycred-module-log.php:810
 
3706
  msgid "Date"
3707
  msgstr ""
3708
 
3709
- #: includes/mycred-install.php:646
3710
  msgid "Ready"
3711
  msgstr ""
3712
 
3713
- #: includes/mycred-install.php:647
3714
  msgid "Almost done! Click the button below to finish this setup."
3715
  msgstr ""
3716
 
3717
- #: includes/mycred-install.php:648
3718
  msgid "Install & Run"
3719
  msgstr ""
3720
 
3721
- #: includes/mycred-network.php:62 includes/mycred-network.php:63
 
3722
  msgid "Network Settings"
3723
  msgstr ""
3724
 
3725
- #: includes/mycred-network.php:128
3726
  msgid "Network"
3727
  msgstr ""
3728
 
3729
- #: includes/mycred-network.php:133
3730
  msgid "Network Settings Updated"
3731
  msgstr ""
3732
 
3733
- #: includes/mycred-network.php:135
3734
  #, php-format
3735
  msgid "Configure network settings for %s."
3736
  msgstr ""
3737
 
3738
- #: includes/mycred-network.php:141
3739
  msgid "Master Template"
3740
  msgstr ""
3741
 
3742
- #: includes/mycred-network.php:145
3743
  msgid "Yes"
3744
  msgstr ""
3745
 
3746
- #: includes/mycred-network.php:149
3747
  msgid "No"
3748
  msgstr ""
3749
 
3750
- #: includes/mycred-network.php:152
3751
  #, php-format
3752
  msgid "If enabled, your main site's %s setup will be used for all other sites."
3753
  msgstr ""
3754
 
3755
- #: includes/mycred-network.php:155
3756
  msgid "Site Block"
3757
  msgstr ""
3758
 
3759
- #: includes/mycred-network.php:159
3760
  #, php-format
3761
  msgid "Comma separated list of blog ids where %s is to be disabled."
3762
  msgstr ""
3763
 
3764
- #: includes/mycred-network.php:168
3765
  msgid "Save Network Settings"
3766
  msgstr ""
3767
 
3768
- #: includes/mycred-shortcodes.php:67
3769
  msgid "Leaderboard is empty."
3770
  msgstr ""
3771
 
3772
- #: includes/mycred-shortcodes.php:144 includes/mycred-shortcodes.php:255
 
3773
  msgid "Amount missing!"
3774
  msgstr ""
3775
 
3776
- #: includes/mycred-shortcodes.php:147 includes/mycred-shortcodes.php:263
 
3777
  msgid "Log Template Missing!"
3778
  msgstr ""
3779
 
3780
- #: includes/mycred-shortcodes.php:206
3781
  msgid "Anchor missing URL!"
3782
  msgstr ""
3783
 
3784
- #: includes/mycred-shortcodes.php:259
3785
  msgid "User ID missing for recipient."
3786
  msgstr ""
3787
 
3788
- #: includes/mycred-shortcodes.php:317
3789
  msgid "A video ID is required for this shortcode"
3790
  msgstr ""
3791
 
3792
- #: includes/mycred-widgets.php:19
3793
  #, php-format
3794
  msgid "Show the current users %s balance"
3795
  msgstr ""
3796
 
3797
- #: includes/mycred-widgets.php:21
3798
  #, php-format
3799
  msgid "%s Balance"
3800
  msgstr ""
3801
 
3802
- #: includes/mycred-widgets.php:155
3803
  msgid "My Balance"
3804
  msgstr ""
3805
 
3806
- #: includes/mycred-widgets.php:166
3807
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3808
  msgstr ""
3809
 
3810
- #: includes/mycred-widgets.php:190
3811
  msgid "Layout"
3812
  msgstr ""
3813
 
3814
- #: includes/mycred-widgets.php:192 includes/mycred-widgets.php:215
3815
- #: includes/mycred-widgets.php:225 includes/mycred-widgets.php:374
 
 
3816
  msgid "See the help tab for available template tags."
3817
  msgstr ""
3818
 
3819
- #: includes/mycred-widgets.php:197
3820
  msgid "Include users ranking"
3821
  msgstr ""
3822
 
3823
- #: includes/mycred-widgets.php:201
3824
  msgid ""
3825
  "This will be appended after the balance. See the help tab for available "
3826
  "template tags."
3827
  msgstr ""
3828
 
3829
- #: includes/mycred-widgets.php:207
3830
  msgid "Include history"
3831
  msgstr ""
3832
 
3833
- #: includes/mycred-widgets.php:209
3834
  msgid "History Title"
3835
  msgstr ""
3836
 
3837
- #: includes/mycred-widgets.php:211
3838
  msgid "Number of entires"
3839
  msgstr ""
3840
 
3841
- #: includes/mycred-widgets.php:213 includes/mycred-widgets.php:372
 
3842
  msgid "Row layout"
3843
  msgstr ""
3844
 
3845
- #: includes/mycred-widgets.php:221
3846
  msgid "Show message when not logged in"
3847
  msgstr ""
3848
 
3849
- #: includes/mycred-widgets.php:223
3850
  msgid "Message"
3851
  msgstr ""
3852
 
3853
- #: includes/mycred-widgets.php:296
3854
  #, php-format
3855
  msgid "Show a list of users sorted by their %s balance"
3856
  msgstr ""
3857
 
3858
- #: includes/mycred-widgets.php:298
3859
  #, php-format
3860
  msgid "%s List"
3861
  msgstr ""
3862
 
3863
- #: includes/mycred-widgets.php:352
3864
  msgid "Leaderboard"
3865
  msgstr ""
3866
 
3867
- #: includes/mycred-widgets.php:365
3868
  msgid "Visible to non-members"
3869
  msgstr ""
3870
 
3871
- #: includes/mycred-widgets.php:368
3872
  msgid "Number of users"
3873
  msgstr ""
3874
 
3875
- #: includes/mycred-widgets.php:377
3876
  msgid "Offset"
3877
  msgstr ""
3878
 
3879
- #: includes/mycred-widgets.php:379
3880
  msgid "Optional offset of order. Use zero to return the first in the list."
3881
  msgstr ""
3882
 
3883
- #: includes/mycred-widgets.php:382
3884
  msgid "Order"
3885
  msgstr ""
3886
 
3887
- #: includes/mycred-widgets.php:386 modules/mycred-module-log.php:194
 
3888
  msgid "Ascending"
3889
  msgstr ""
3890
 
3891
- #: includes/mycred-widgets.php:387 modules/mycred-module-log.php:194
 
3892
  msgid "Descending"
3893
  msgstr ""
3894
 
3895
- #: modules/mycred-module-addons.php:23 modules/mycred-module-addons.php:24
3896
- #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:264
 
 
3897
  msgid "Add-ons"
3898
  msgstr ""
3899
 
3900
- #: modules/mycred-module-addons.php:257
3901
  msgid "Add-on Activated"
3902
  msgstr ""
3903
 
3904
- #: modules/mycred-module-addons.php:259
3905
  msgid "Add-on Deactivated"
3906
  msgstr ""
3907
 
3908
- #: modules/mycred-module-addons.php:265
3909
  msgid "Add-ons can expand your current installation with further features."
3910
  msgstr ""
3911
 
3912
- #: modules/mycred-module-addons.php:303
 
 
 
 
 
 
 
 
 
3913
  msgid "Deactivate Add-on"
3914
  msgstr ""
3915
 
3916
- #: modules/mycred-module-addons.php:304
3917
  msgid "Deactivate"
3918
  msgstr ""
3919
 
3920
- #: modules/mycred-module-addons.php:309
3921
  msgid "Activate Add-on"
3922
  msgstr ""
3923
 
3924
- #: modules/mycred-module-addons.php:310
3925
  msgid "Activate"
3926
  msgstr ""
3927
 
3928
- #: modules/mycred-module-addons.php:327
3929
  msgid "Version"
3930
  msgstr ""
3931
 
3932
- #: modules/mycred-module-addons.php:330
3933
  msgid "By"
3934
  msgstr ""
3935
 
3936
- #: modules/mycred-module-addons.php:330
3937
  msgid "View Authors Website"
3938
  msgstr ""
3939
 
3940
- #: modules/mycred-module-addons.php:333
3941
  msgid "View Add-ons Website"
3942
  msgstr ""
3943
 
3944
- #: modules/mycred-module-addons.php:333
3945
  msgid "Visit Website"
3946
  msgstr ""
3947
 
3948
- #: modules/mycred-module-general.php:49
3949
  msgid "Facebook"
3950
  msgstr ""
3951
 
3952
- #: modules/mycred-module-general.php:50
3953
  msgid "Google Plus"
3954
  msgstr ""
3955
 
3956
- #: modules/mycred-module-general.php:51
3957
  msgid "Support Forum"
3958
  msgstr ""
3959
 
3960
- #: modules/mycred-module-general.php:57 modules/mycred-module-help.php:212
 
3961
  msgid "Core Settings"
3962
  msgstr ""
3963
 
3964
- #: modules/mycred-module-general.php:59
3965
  msgid "Name"
3966
  msgstr ""
3967
 
3968
- #: modules/mycred-module-general.php:64
3969
  msgid "Accessible though the %singular% template tag."
3970
  msgstr ""
3971
 
3972
- #: modules/mycred-module-general.php:69
3973
  msgid "Accessible though the %plural% template tag."
3974
  msgstr ""
3975
 
3976
- #: modules/mycred-module-general.php:72
3977
  msgid "Tip"
3978
  msgstr ""
3979
 
3980
- #: modules/mycred-module-general.php:72
3981
  msgid ""
3982
  "Adding an underscore at the beginning of template tag for names will return "
3983
  "them in lowercase. i.e. %_singular%"
3984
  msgstr ""
3985
 
3986
- #: modules/mycred-module-general.php:90
3987
  msgid "Separator"
3988
  msgstr ""
3989
 
3990
- #: modules/mycred-module-general.php:97
3991
  msgid "Edit Settings"
3992
  msgstr ""
3993
 
3994
- #: modules/mycred-module-general.php:99 modules/mycred-module-general.php:104
 
3995
  msgid "Capability to check for."
3996
  msgstr ""
3997
 
3998
- #: modules/mycred-module-general.php:102
3999
  msgid "Edit Users %plural%"
4000
  msgstr ""
4001
 
4002
- #: modules/mycred-module-general.php:121
4003
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4004
  msgstr ""
4005
 
4006
- #: modules/mycred-module-help.php:66
4007
  msgid "The Log"
4008
  msgstr ""
4009
 
4010
- #: modules/mycred-module-help.php:68
4011
  msgid ""
4012
  "myCRED logs everything giving you a complete overview of %_plural% awarded "
4013
  "or deducted from your users. The Log page can be filtered by user, date or "
4014
  "reference and we have included a search function for you."
4015
  msgstr ""
4016
 
4017
- #: modules/mycred-module-help.php:69
4018
  msgid ""
4019
  "You can select how many log entries you want to show under \"Screen Options"
4020
  "\". By default you will be shown 10 entries."
4021
  msgstr ""
4022
 
4023
- #: modules/mycred-module-help.php:70
4024
  msgid "Filter by Date"
4025
  msgstr ""
4026
 
4027
- #: modules/mycred-module-help.php:71
4028
  msgid ""
4029
  "You can select to show log entries for: Today, Yesterday, This Week or This "
4030
  "Month."
4031
  msgstr ""
4032
 
4033
- #: modules/mycred-module-help.php:72
4034
  msgid "Filter by Reference"
4035
  msgstr ""
4036
 
4037
- #: modules/mycred-module-help.php:73
4038
  msgid ""
4039
  "Each time a log entry is made a reference is used to identify where or why "
4040
  "points were awarded or deducted."
4041
  msgstr ""
4042
 
4043
- #: modules/mycred-module-help.php:74
4044
  msgid "Filter by User"
4045
  msgstr ""
4046
 
4047
- #: modules/mycred-module-help.php:75
4048
  msgid "Show log entries for a particular username."
4049
  msgstr ""
4050
 
4051
- #: modules/mycred-module-help.php:87 modules/mycred-module-hooks.php:28
4052
- #: modules/mycred-module-hooks.php:29 modules/mycred-module-hooks.php:30
4053
- #: modules/mycred-module-hooks.php:244
 
 
4054
  msgid "Hooks"
4055
  msgstr ""
4056
 
4057
- #: modules/mycred-module-help.php:89
4058
  msgid ""
4059
  "Each instance where users might gain or loose %_plural%, are called hooks. "
4060
  "Hooks can relate to WordPress specific actions or any third party plugin "
4061
  "action that myCRED supports."
4062
  msgstr ""
4063
 
4064
- #: modules/mycred-module-help.php:90
4065
  msgid ""
4066
  "A hook can relate to a specific instance or several instances. You can "
4067
  "disable specific instances in a hook by awarding zero %_plural%."
4068
  msgstr ""
4069
 
4070
- #: modules/mycred-module-help.php:94
4071
  msgid "Third Party Plugins"
4072
  msgstr ""
4073
 
4074
- #: modules/mycred-module-help.php:96
4075
  msgid ""
4076
  "myCRED supports several third party plugins by default. These hooks are only "
4077
  "available / visible if the plugin has been installed and enabled."
4078
  msgstr ""
4079
 
4080
- #: modules/mycred-module-help.php:97
4081
  msgid "Supported Plugins:"
4082
  msgstr ""
4083
 
4084
- #: modules/mycred-module-help.php:105
4085
  msgid "Template Tags"
4086
  msgstr ""
4087
 
4088
- #: modules/mycred-module-help.php:107
4089
  msgid "General:"
4090
  msgstr ""
4091
 
4092
- #: modules/mycred-module-help.php:108 modules/mycred-module-help.php:152
4093
- #: modules/mycred-module-help.php:157 modules/mycred-module-help.php:174
 
 
4094
  msgid "Singular %plural% Name."
4095
  msgstr ""
4096
 
4097
- #: modules/mycred-module-help.php:109
4098
  msgid "Singular %plural% Name in lowercase."
4099
  msgstr ""
4100
 
4101
- #: modules/mycred-module-help.php:110 modules/mycred-module-help.php:153
4102
- #: modules/mycred-module-help.php:158 modules/mycred-module-help.php:175
 
 
4103
  msgid "Plural %plural% Name."
4104
  msgstr ""
4105
 
4106
- #: modules/mycred-module-help.php:111
4107
  msgid "Plural %plural% Name in lowercase."
4108
  msgstr ""
4109
 
4110
- #: modules/mycred-module-help.php:112 modules/mycred-module-help.php:162
 
4111
  msgid "The login URL without redirection."
4112
  msgstr ""
4113
 
4114
- #: modules/mycred-module-help.php:113 modules/mycred-module-help.php:163
 
4115
  msgid "The login URL with redirection to current page."
4116
  msgstr ""
4117
 
4118
- #: modules/mycred-module-help.php:114
4119
  msgid "Post:"
4120
  msgstr ""
4121
 
4122
- #: modules/mycred-module-help.php:115
4123
  msgid "The posts title."
4124
  msgstr ""
4125
 
4126
- #: modules/mycred-module-help.php:116
4127
  msgid "The posts URL address."
4128
  msgstr ""
4129
 
4130
- #: modules/mycred-module-help.php:117
4131
  msgid "The post type."
4132
  msgstr ""
4133
 
4134
- #: modules/mycred-module-help.php:118
4135
  msgid "The posts permalink with the post title as title."
4136
  msgstr ""
4137
 
4138
- #: modules/mycred-module-help.php:119
4139
  msgid "User:"
4140
  msgstr ""
4141
 
4142
- #: modules/mycred-module-help.php:120
4143
  msgid "The users ID."
4144
  msgstr ""
4145
 
4146
- #: modules/mycred-module-help.php:121
4147
  msgid "The users \"username\"."
4148
  msgstr ""
4149
 
4150
- #: modules/mycred-module-help.php:122
4151
  msgid "The users \"username\" URL encoded."
4152
  msgstr ""
4153
 
4154
- #: modules/mycred-module-help.php:123
4155
  msgid "The users display name."
4156
  msgstr ""
4157
 
4158
- #: modules/mycred-module-help.php:124
4159
  msgid "The users profile URL."
4160
  msgstr ""
4161
 
4162
- #: modules/mycred-module-help.php:125
4163
  msgid "The users profile link with the display name as title."
4164
  msgstr ""
4165
 
4166
- #: modules/mycred-module-help.php:126
4167
  msgid "Comment:"
4168
  msgstr ""
4169
 
4170
- #: modules/mycred-module-help.php:127
4171
  msgid "The comment ID."
4172
  msgstr ""
4173
 
4174
- #: modules/mycred-module-help.php:128
4175
  msgid "The post id where the comment was made."
4176
  msgstr ""
4177
 
4178
- #: modules/mycred-module-help.php:129
4179
  msgid "The post title where the comment was made."
4180
  msgstr ""
4181
 
4182
- #: modules/mycred-module-help.php:130
4183
  msgid "The post URL address where the comment was made."
4184
  msgstr ""
4185
 
4186
- #: modules/mycred-module-help.php:131
4187
  msgid "Link to the post where the comment was made."
4188
  msgstr ""
4189
 
4190
- #: modules/mycred-module-help.php:143
4191
  msgid "myCRED Balance Template Tags"
4192
  msgstr ""
4193
 
4194
- #: modules/mycred-module-help.php:146
4195
  msgid "Layout:"
4196
  msgstr ""
4197
 
4198
- #: modules/mycred-module-help.php:147 modules/mycred-module-help.php:155
4199
- #: modules/mycred-module-help.php:172
 
4200
  msgid "Balance amount in plain format."
4201
  msgstr ""
4202
 
4203
- #: modules/mycred-module-help.php:148 modules/mycred-module-help.php:156
4204
- #: modules/mycred-module-help.php:173
 
4205
  msgid "Balance amount formatted with prefix and/or suffix."
4206
  msgstr ""
4207
 
4208
- #: modules/mycred-module-help.php:149
4209
  msgid "Rank Format:"
4210
  msgstr ""
4211
 
4212
- #: modules/mycred-module-help.php:150 modules/mycred-module-help.php:171
 
4213
  msgid "The users ranking. Was \"%rank%\" before version 1.1"
4214
  msgstr ""
4215
 
4216
- #: modules/mycred-module-help.php:151
4217
  msgid "History Title:"
4218
  msgstr ""
4219
 
4220
- #: modules/mycred-module-help.php:152 modules/mycred-module-help.php:153
4221
- #: modules/mycred-module-help.php:157 modules/mycred-module-help.php:158
4222
- #: modules/mycred-module-help.php:174 modules/mycred-module-help.php:175
 
 
 
4223
  msgid "or"
4224
  msgstr ""
4225
 
4226
- #: modules/mycred-module-help.php:154 modules/mycred-module-help.php:170
 
4227
  msgid "Row Layout:"
4228
  msgstr ""
4229
 
4230
- #: modules/mycred-module-help.php:159 modules/mycred-module-help.php:176
 
4231
  msgid "Log entry date."
4232
  msgstr ""
4233
 
4234
- #: modules/mycred-module-help.php:160 modules/mycred-module-help.php:177
 
4235
  msgid "The log entry."
4236
  msgstr ""
4237
 
4238
- #: modules/mycred-module-help.php:161
4239
  msgid "Message:"
4240
  msgstr ""
4241
 
4242
- #: modules/mycred-module-help.php:167
4243
  msgid "myCRED List Template Tags"
4244
  msgstr ""
4245
 
4246
- #: modules/mycred-module-help.php:178
4247
  msgid "Users display name."
4248
  msgstr ""
4249
 
4250
- #: modules/mycred-module-help.php:179
4251
  msgid "Users profile URL."
4252
  msgstr ""
4253
 
4254
- #: modules/mycred-module-help.php:180
4255
  msgid "Users \"username\"."
4256
  msgstr ""
4257
 
4258
- #: modules/mycred-module-help.php:181
4259
  msgid "Users \"username\" URL encoded."
4260
  msgstr ""
4261
 
4262
- #: modules/mycred-module-help.php:182
4263
  msgid "Link to users profile with their display name as title."
4264
  msgstr ""
4265
 
4266
- #: modules/mycred-module-help.php:194
4267
  msgid "Editing %plural%"
4268
  msgstr ""
4269
 
4270
- #: modules/mycred-module-help.php:196
4271
  msgid ""
4272
  "You can adjust this users %_plural% by giving a positive or negative amount "
4273
  "and a log description. Remember that plugin and point editors will always be "
4274
  "able to adjust their own balance."
4275
  msgstr ""
4276
 
4277
- #: modules/mycred-module-help.php:197
4278
  msgid ""
4279
  "If the option to edit a users balance is missing the user is set to be "
4280
  "excluded from using myCRED."
4281
  msgstr ""
4282
 
4283
- #: modules/mycred-module-help.php:209
4284
  msgid "Core"
4285
  msgstr ""
4286
 
4287
- #: modules/mycred-module-help.php:211
4288
  msgid "On this page, you can edit all myCRED settings."
4289
  msgstr ""
4290
 
4291
- #: modules/mycred-module-help.php:213
4292
  msgid ""
4293
  "Here you can name your installation along with setting your layout and "
4294
  "format. You can use any name as long as you set both the singular and plural "
4295
  "format and you can change the name at any time."
4296
  msgstr ""
4297
 
4298
- #: modules/mycred-module-hooks.php:89
4299
  msgid "%plural% for registrations"
4300
  msgstr ""
4301
 
4302
- #: modules/mycred-module-hooks.php:90
4303
  msgid "Award %_plural% for users joining your website."
4304
  msgstr ""
4305
 
4306
- #: modules/mycred-module-hooks.php:96
4307
  msgid "%plural% for logins"
4308
  msgstr ""
4309
 
4310
- #: modules/mycred-module-hooks.php:97
4311
  msgid ""
4312
  "Award %_plural% for logging in to your website. You can also set an optional "
4313
  "limit."
4314
  msgstr ""
4315
 
4316
- #: modules/mycred-module-hooks.php:103
4317
  msgid "%plural% for publishing content"
4318
  msgstr ""
4319
 
4320
- #: modules/mycred-module-hooks.php:104
4321
  msgid ""
4322
  "Award %_plural% for publishing content on your website. If your custom post "
4323
  "type is not shown bellow, make sure it is set to \"Public\"."
4324
  msgstr ""
4325
 
4326
- #: modules/mycred-module-hooks.php:110
4327
  msgid "%plural% for comments"
4328
  msgstr ""
4329
 
4330
- #: modules/mycred-module-hooks.php:111
4331
  msgid "Award %_plural% for making comments."
4332
  msgstr ""
4333
 
4334
- #: modules/mycred-module-hooks.php:117
4335
  msgid "%plural% for clicking on links"
4336
  msgstr ""
4337
 
4338
- #: modules/mycred-module-hooks.php:118
4339
  msgid ""
4340
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4341
  "shortcode."
4342
  msgstr ""
4343
 
4344
- #: modules/mycred-module-hooks.php:124
4345
  msgid "%plural% for viewing Videos"
4346
  msgstr ""
4347
 
4348
- #: modules/mycred-module-hooks.php:125
4349
  msgid ""
4350
  "Award %_plural% to users who watches videos embedded using the "
4351
  "[mycred_video] shortcode."
4352
  msgstr ""
4353
 
4354
- #: modules/mycred-module-hooks.php:132
4355
  msgid "bbPress"
4356
  msgstr ""
4357
 
4358
- #: modules/mycred-module-hooks.php:133
4359
  msgid "Awards %_plural% for bbPress actions."
4360
  msgstr ""
4361
 
4362
- #: modules/mycred-module-hooks.php:141
4363
  msgid "Invite Anyone Plugin"
4364
  msgstr ""
4365
 
4366
- #: modules/mycred-module-hooks.php:142
4367
  msgid ""
4368
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
4369
  "accepted."
4370
  msgstr ""
4371
 
4372
- #: modules/mycred-module-hooks.php:150
4373
  msgid "Contact Form 7 Form Submissions"
4374
  msgstr ""
4375
 
4376
- #: modules/mycred-module-hooks.php:151
4377
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4378
  msgstr ""
4379
 
4380
- #: modules/mycred-module-hooks.php:159
4381
  msgid "Jetpack Subscriptions"
4382
  msgstr ""
4383
 
4384
- #: modules/mycred-module-hooks.php:160
4385
  msgid ""
4386
  "Awards %_plural% for users signing up for site or comment updates using "
4387
  "Jetpack."
4388
  msgstr ""
4389
 
4390
- #: modules/mycred-module-hooks.php:168
4391
  msgid "BadgeOS"
4392
  msgstr ""
4393
 
4394
- #: modules/mycred-module-hooks.php:169
4395
  msgid ""
4396
  "Default settings for each BadgeOS Achievement type. These settings may be "
4397
  "overridden for individual achievement type."
4398
  msgstr ""
4399
 
4400
- #: modules/mycred-module-hooks.php:177
4401
  msgid "WP-Polls"
4402
  msgstr ""
4403
 
4404
- #: modules/mycred-module-hooks.php:178
4405
  msgid "Awards %_plural% for users voting in polls."
4406
  msgstr ""
4407
 
4408
- #: modules/mycred-module-hooks.php:186
4409
  msgid "WP Favorite Posts"
4410
  msgstr ""
4411
 
4412
- #: modules/mycred-module-hooks.php:187
4413
  msgid "Awards %_plural% for users adding posts to their favorites."
4414
  msgstr ""
4415
 
4416
- #: modules/mycred-module-hooks.php:195
4417
  msgid "Events Manager"
4418
  msgstr ""
4419
 
4420
- #: modules/mycred-module-hooks.php:196
4421
  msgid "Awards %_plural% for users attending events."
4422
  msgstr ""
4423
 
4424
- #: modules/mycred-module-hooks.php:204
4425
  msgid "GD Star Rating"
4426
  msgstr ""
4427
 
4428
- #: modules/mycred-module-hooks.php:205
4429
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
4430
  msgstr ""
4431
 
4432
- #: modules/mycred-module-hooks.php:245
4433
  msgid ""
4434
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4435
  "depending on their actions around your website."
4436
  msgstr ""
4437
 
4438
- #: modules/mycred-module-hooks.php:526 modules/mycred-module-plugins.php:642
4439
- #: modules/mycred-module-plugins.php:663
 
4440
  msgid "Limit"
4441
  msgstr ""
4442
 
4443
- #: modules/mycred-module-hooks.php:619
4444
  msgid "%plural% for Posts"
4445
  msgstr ""
4446
 
4447
- #: modules/mycred-module-hooks.php:629 modules/mycred-module-hooks.php:642
4448
- #: modules/mycred-module-hooks.php:677 modules/mycred-module-plugins.php:403
4449
- #: modules/mycred-module-plugins.php:416 modules/mycred-module-plugins.php:429
4450
- #: modules/mycred-module-plugins.php:447 modules/mycred-module-plugins.php:460
4451
- #: modules/mycred-module-plugins.php:479 modules/mycred-module-plugins.php:792
4452
- #: modules/mycred-module-plugins.php:1036
4453
- #: modules/mycred-module-plugins.php:1046
 
 
 
 
 
4454
  msgid "Available template tags: General, Post"
4455
  msgstr ""
4456
 
4457
- #: modules/mycred-module-hooks.php:632
4458
  msgid "%plural% for Pages"
4459
  msgstr ""
4460
 
4461
- #: modules/mycred-module-hooks.php:667
4462
  msgid "%plural% for %s"
4463
  msgstr ""
4464
 
4465
- #: modules/mycred-module-hooks.php:956
4466
  msgid "Approved Comment"
4467
  msgstr ""
4468
 
4469
- #: modules/mycred-module-hooks.php:965 modules/mycred-module-hooks.php:977
4470
- #: modules/mycred-module-hooks.php:989
 
4471
  msgid "Available template tags: General, Comment"
4472
  msgstr ""
4473
 
4474
- #: modules/mycred-module-hooks.php:968
4475
  msgid "Comment Marked SPAM"
4476
  msgstr ""
4477
 
4478
- #: modules/mycred-module-hooks.php:980
4479
  msgid "Trashed / Unapproved Comments"
4480
  msgstr ""
4481
 
4482
- #: modules/mycred-module-hooks.php:995
4483
  msgid "Limit per post"
4484
  msgstr ""
4485
 
4486
- #: modules/mycred-module-hooks.php:997
4487
  msgid ""
4488
  "The number of comments per post that grants %_plural%. Use zero for "
4489
  "unlimited."
4490
  msgstr ""
4491
 
4492
- #: modules/mycred-module-hooks.php:1001
4493
  msgid "Limit per day"
4494
  msgstr ""
4495
 
4496
- #: modules/mycred-module-hooks.php:1003
4497
  msgid ""
4498
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4499
  msgstr ""
4500
 
4501
- #: modules/mycred-module-hooks.php:1008
4502
  msgid ""
4503
  "%plural% is to be awarded even when comment authors reply to their own "
4504
  "comment."
4505
  msgstr ""
4506
 
4507
- #: modules/mycred-module-hooks.php:1075
4508
  msgid "Once for each unique URL"
4509
  msgstr ""
4510
 
4511
- #: modules/mycred-module-hooks.php:1076
4512
  msgid "Once for each unique link id"
4513
  msgstr ""
4514
 
4515
- #: modules/mycred-module-hooks.php:1225
4516
  msgid ""
4517
  "The default amount to award for clicking on links. You can override this in "
4518
  "the shortcode."
4519
  msgstr ""
4520
 
4521
- #: modules/mycred-module-hooks.php:1232
4522
  msgid "Available template tags: General and custom tags: %url% or %id%."
4523
  msgstr ""
4524
 
4525
- #: modules/mycred-module-hooks.php:1243
4526
  msgid "Remember!"
4527
  msgstr ""
4528
 
4529
- #: modules/mycred-module-hooks.php:1243
4530
  msgid ""
4531
  "If you select to limit by id and you do not include the id attribute in the "
4532
  "shortcode, no %_plural% will be awarded!"
4533
  msgstr ""
4534
 
4535
- #: modules/mycred-module-hooks.php:1502
4536
  msgid "Amount to award for viewing videos."
4537
  msgstr ""
4538
 
4539
- #: modules/mycred-module-hooks.php:1512
4540
  msgid "Award Logic"
4541
  msgstr ""
4542
 
4543
- #: modules/mycred-module-hooks.php:1514
4544
  msgid "Select when %_plural% should be awarded or deducted."
4545
  msgstr ""
4546
 
4547
- #: modules/mycred-module-hooks.php:1515
4548
  msgid "Play - As soon as video starts playing."
4549
  msgstr ""
4550
 
4551
- #: modules/mycred-module-hooks.php:1516
4552
  msgid "Full - First when the entire video has played."
4553
  msgstr ""
4554
 
4555
- #: modules/mycred-module-hooks.php:1517
4556
  msgid "Interval - For each x number of seconds watched."
4557
  msgstr ""
4558
 
4559
- #: modules/mycred-module-hooks.php:1522
4560
  msgid "Number of seconds"
4561
  msgstr ""
4562
 
4563
- #: modules/mycred-module-hooks.php:1529
4564
  msgid "Leniency"
4565
  msgstr ""
4566
 
4567
- #: modules/mycred-module-hooks.php:1531
4568
  msgid ""
4569
  "The maximum percentage a users view of a movie can differ from the actual "
4570
  "length."
4571
  msgstr ""
4572
 
4573
- #: modules/mycred-module-hooks.php:1534
4574
  msgid ""
4575
  "Do not set this value to zero! A lot of thing can happen while a user "
4576
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4577
  "buffering or play back errors."
4578
  msgstr ""
4579
 
4580
- #: modules/mycred-module-log.php:23
4581
  msgid "Activity Log"
4582
  msgstr ""
4583
 
4584
- #: modules/mycred-module-log.php:93
4585
  msgid "Entries"
4586
  msgstr ""
4587
 
4588
- #: modules/mycred-module-log.php:174
4589
  msgid "Show all references"
4590
  msgstr ""
4591
 
4592
- #: modules/mycred-module-log.php:193
4593
  msgid "Show in order"
4594
  msgstr ""
4595
 
4596
- #: modules/mycred-module-log.php:206
4597
  msgid "Filter"
4598
  msgstr ""
4599
 
4600
- #: modules/mycred-module-log.php:233
4601
  msgid "entry"
4602
  msgstr ""
4603
 
4604
- #: modules/mycred-module-log.php:252
4605
  msgid "Search results for"
4606
  msgstr ""
4607
 
4608
- #: modules/mycred-module-log.php:812
4609
  msgid "Entry"
4610
  msgstr ""
4611
 
4612
- #: modules/mycred-module-log.php:912
4613
  msgid "User Missing"
4614
  msgstr ""
4615
 
4616
- #: modules/mycred-module-log.php:951
4617
  msgid "No log entries found"
4618
  msgstr ""
4619
 
4620
- #: modules/mycred-module-log.php:966 modules/mycred-module-log.php:968
 
4621
  msgid "Search Log"
4622
  msgstr ""
4623
 
4624
- #: modules/mycred-module-plugins.php:394
4625
  msgid "%plural% for New Forum"
4626
  msgstr ""
4627
 
4628
- #: modules/mycred-module-plugins.php:407
4629
  msgid "%plural% for Forum Deletion"
4630
  msgstr ""
4631
 
4632
- #: modules/mycred-module-plugins.php:420
4633
  msgid "%plural% for New Topic"
4634
  msgstr ""
4635
 
4636
- #: modules/mycred-module-plugins.php:434
4637
  msgid "Forum authors can receive %_plural% for creating new topics."
4638
  msgstr ""
4639
 
4640
- #: modules/mycred-module-plugins.php:438
4641
  msgid "%plural% for Topic Deletion"
4642
  msgstr ""
4643
 
4644
- #: modules/mycred-module-plugins.php:451
4645
  msgid "%plural% for Favorited Topic"
4646
  msgstr ""
4647
 
4648
- #: modules/mycred-module-plugins.php:464 modules/mycred-module-plugins.php:488
 
4649
  msgid "Daily Limit"
4650
  msgstr ""
4651
 
4652
- #: modules/mycred-module-plugins.php:466 modules/mycred-module-plugins.php:490
 
4653
  msgid "Use zero for unlimited"
4654
  msgstr ""
4655
 
4656
- #: modules/mycred-module-plugins.php:470
4657
  msgid "%plural% for New Reply"
4658
  msgstr ""
4659
 
4660
- #: modules/mycred-module-plugins.php:484
4661
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4662
  msgstr ""
4663
 
4664
- #: modules/mycred-module-plugins.php:494
4665
  msgid "Show users %_plural% balance in replies"
4666
  msgstr ""
4667
 
4668
- #: modules/mycred-module-plugins.php:630
4669
  msgid "%plural% for Sending An Invite"
4670
  msgstr ""
4671
 
4672
- #: modules/mycred-module-plugins.php:646
4673
  msgid ""
4674
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
4675
  msgstr ""
4676
 
4677
- #: modules/mycred-module-plugins.php:650
4678
  msgid "%plural% for Accepting An Invite"
4679
  msgstr ""
4680
 
4681
- #: modules/mycred-module-plugins.php:654
4682
  msgid "%plural% for each invited user that accepts an invitation."
4683
  msgstr ""
4684
 
4685
- #: modules/mycred-module-plugins.php:667
4686
  msgid ""
4687
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
4688
  "unlimited."
4689
  msgstr ""
4690
 
4691
- #: modules/mycred-module-plugins.php:762
4692
  msgid "No forms found."
4693
  msgstr ""
4694
 
4695
- #: modules/mycred-module-plugins.php:861
4696
  #, php-format
4697
  msgid ""
4698
  "Please setup your <a href=\"%s\">default settings</a> before using this "
4699
  "feature."
4700
  msgstr ""
4701
 
4702
- #: modules/mycred-module-plugins.php:872 modules/mycred-module-plugins.php:874
 
4703
  msgid "%plural% to Award"
4704
  msgstr ""
4705
 
4706
- #: modules/mycred-module-plugins.php:876
4707
  msgid "Use zero to disable"
4708
  msgstr ""
4709
 
4710
- #: modules/mycred-module-plugins.php:887
4711
  msgid "Deduction Log Template"
4712
  msgstr ""
4713
 
4714
- #: modules/mycred-module-plugins.php:1023
4715
  #, php-format
4716
  msgid "Default %s for %s"
4717
  msgstr ""
4718
 
4719
- #: modules/mycred-module-plugins.php:1030
4720
  msgid "Use zero to disable users gaining %_plural%"
4721
  msgstr ""
4722
 
4723
- #: modules/mycred-module-plugins.php:1034
4724
  msgid "Default Log template"
4725
  msgstr ""
4726
 
4727
- #: modules/mycred-module-plugins.php:1040
4728
  msgid "Deduct %_plural% if user looses "
4729
  msgstr ""
4730
 
4731
- #: modules/mycred-module-plugins.php:1172
4732
  msgid ""
4733
  "Available template tags: General. You can also use %poll_id% and "
4734
  "%poll_question%."
4735
  msgstr ""
4736
 
4737
- #: modules/mycred-module-plugins.php:1282
4738
  msgid "Adding Content to Favorites"
4739
  msgstr ""
4740
 
4741
- #: modules/mycred-module-plugins.php:1292
4742
- #: modules/mycred-module-plugins.php:1305
4743
- #: modules/mycred-module-plugins.php:1443
4744
- #: modules/mycred-module-plugins.php:1456
4745
  msgid "Available template tags: General and Post Related"
4746
  msgstr ""
4747
 
4748
- #: modules/mycred-module-plugins.php:1295
4749
  msgid "Removing Content from Favorites"
4750
  msgstr ""
4751
 
4752
- #: modules/mycred-module-plugins.php:1433
4753
  msgid "Attending Event"
4754
  msgstr ""
4755
 
4756
- #: modules/mycred-module-plugins.php:1446
4757
  msgid "Cancelling Attendance"
4758
  msgstr ""
4759
 
4760
- #: modules/mycred-module-plugins.php:1542
4761
  msgid "Rating"
4762
  msgstr ""
4763
 
4764
- #: modules/mycred-module-plugins.php:1555
4765
  msgid "Up / Down Vote"
4766
  msgstr ""
4767
 
4768
- #: modules/mycred-module-subscriptions.php:479
4769
  msgid "Site Subscriptions"
4770
  msgstr ""
4771
 
4772
- #: modules/mycred-module-subscriptions.php:492
4773
  msgid "Comment Subscriptions"
4774
  msgstr ""
1
+ # Copyright (C) 2013 myCRED
2
+ # This file is distributed under the same license as the myCRED package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: myCRED\n"
6
+ "Report-Msgid-Bugs-To: http://mycred.me\n"
7
+ "POT-Creation-Date: 2013-09-07 19:44+0100\n"
8
+ "PO-Revision-Date: 2013-09-07 19:44+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"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\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/trunk\n"
18
+ "X-Poedit-SearchPath-1: .\n"
19
 
20
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:98
21
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:105
22
  msgid "Cheatin&#8217; huh?"
23
  msgstr ""
24
 
25
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:115
26
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:624
27
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:476
28
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:419
29
  msgid "Setup"
30
  msgstr ""
31
 
32
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:119
33
+ msgid "Tutorials"
34
+ msgstr ""
35
+
36
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:120
37
+ msgid "Codex"
38
  msgstr ""
39
 
40
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:121
41
+ msgid "Store"
42
+ msgstr ""
43
+
44
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:134
45
  msgid ""
46
  "myCRED is blocked for this site. Please contact your network administrator "
47
  "for further details."
48
  msgstr ""
49
 
50
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:407
51
  msgid "My Balance: "
52
  msgstr ""
53
 
54
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:511
55
  #, php-format
56
  msgid "Edit Users %s balance"
57
  msgstr ""
58
 
59
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:512
60
  msgid "Close"
61
  msgstr ""
62
 
63
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:513
64
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:561
65
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:827
66
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:276
67
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:136
68
  msgid "Processing..."
69
  msgstr ""
70
 
71
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:562
72
  msgid "Sent"
73
  msgstr ""
74
 
75
+ #: /Users/gabriel/Repositories/mycred/trunk/mycred.php:563
76
  msgid "Error - Try Again"
77
  msgstr ""
78
 
79
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:57
80
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
81
  msgstr ""
82
 
83
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:66
84
  msgid "This Hook has no settings"
85
  msgstr ""
86
 
87
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:133
88
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1074
89
  msgid "No limit"
90
  msgstr ""
91
 
92
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:134
93
  msgid "Once every 24 hours"
94
  msgstr ""
95
 
96
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:135
97
  msgid "Once every 12 hours"
98
  msgstr ""
99
 
100
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:136
101
  msgid "Once every 7 days"
102
  msgstr ""
103
 
104
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:137
105
  msgid "Once per day (reset at midnight)"
106
  msgstr ""
107
 
108
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-hook.php:144
109
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:342
110
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:238
111
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:259
112
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:515
113
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:538
114
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:514
115
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:382
116
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:186
117
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:773
118
  msgid "Select"
119
  msgstr ""
120
 
121
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-module.php:42
122
+ msgid "myCRED_Module() Error. A Module ID is required!"
123
+ msgstr ""
124
+
125
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-module.php:303
126
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-module.php:311
127
  msgid "Surprise"
128
  msgstr ""
129
 
130
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-module.php:367
131
  msgid "click to open"
132
  msgstr ""
133
 
134
+ #: /Users/gabriel/Repositories/mycred/trunk/abstracts/mycred-abstract-module.php:368
135
  msgid "click to close"
136
  msgstr ""
137
 
138
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:12
139
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:49
140
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:50
141
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:51
142
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:155
143
  msgid "Banking"
144
  msgstr ""
145
 
146
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:13
147
  msgid ""
148
+ "This add-on allows you to offer interest on your users points balances or "
149
  "setup recurring payouts."
150
  msgstr ""
151
 
152
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:110
153
  msgid "Compound Interest"
154
  msgstr ""
155
 
156
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:111
157
  msgid ""
158
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
159
  "annual and is compounded daily as long as this service is enabled. Positive "
161
  "rate will to users loosing %_plural%."
162
  msgstr ""
163
 
164
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:117
165
  msgid "Recurring Payouts"
166
  msgstr ""
167
 
168
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:118
169
  msgid ""
170
  "Give your users %_plural% on a regular basis with the option to set the "
171
  "number of times you want this payout to run (cycles)."
172
  msgstr ""
173
 
174
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:143
175
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:458
176
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:115
177
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:249
178
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:35
179
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:232
180
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:269
181
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:351
182
  msgid "Access Denied"
183
  msgstr ""
184
 
185
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:150
186
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:317
187
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:42
188
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:239
189
  msgid "Settings Updated"
190
  msgstr ""
191
 
192
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:156
193
  msgid ""
194
  "This add-on allows you to setup transaction fees for %_plural% transfers, "
195
  "purchases or payments using the Gateway add-on, along with offering interest "
196
  "on %_plural% balances."
197
  msgstr ""
198
 
199
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:159
200
  msgid "WP-Cron deactivation detected!"
201
  msgstr ""
202
 
203
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:160
204
  msgid "Warning! This add-on requires WP - Cron to work."
205
  msgstr ""
206
 
207
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:173
208
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:346
209
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:257
210
  msgid "Enable"
211
  msgstr ""
212
 
213
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/myCRED-addon-banking.php:186
214
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:270
215
  msgid "Update Changes"
216
  msgstr ""
217
 
218
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:57
219
  msgid "function myCRED_Service::run() must be over-ridden in a sub-class."
220
  msgstr ""
221
 
222
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:66
223
  msgid "This Service has no settings"
224
  msgstr ""
225
 
226
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:143
227
  msgid "Hourly"
228
  msgstr ""
229
 
230
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:147
231
  msgid "Daily"
232
  msgstr ""
233
 
234
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:151
235
  msgid "Weekly"
236
  msgstr ""
237
 
238
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:155
239
  msgid "Monthly"
240
  msgstr ""
241
 
242
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:159
243
  msgid "Quarterly"
244
  msgstr ""
245
 
246
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:163
247
  msgid "Semiannually"
248
  msgstr ""
249
 
250
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/abstracts/mycred-abstract-service.php:167
251
  msgid "Annually"
252
  msgstr ""
253
 
254
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:25
255
  msgid "%plural% interest rate payment"
256
  msgstr ""
257
 
258
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:274
259
  msgid "Interest Rate"
260
  msgstr ""
261
 
262
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:281
263
  msgid "Payed / Charged"
264
  msgstr ""
265
 
266
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:287
267
  msgid ""
268
  "The interest rate can be either positive or negative and is compounded daily."
269
  msgstr ""
270
 
271
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:290
272
  msgid "Minimum Balance"
273
  msgstr ""
274
 
275
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:294
276
  msgid "The minimum requires balance for interest to apply."
277
  msgstr ""
278
 
279
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:297
280
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:250
281
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:216
282
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:271
283
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:359
284
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:87
285
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:519
286
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1228
287
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1505
288
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:878
289
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:880
290
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:889
291
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1168
292
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1288
293
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1301
294
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1439
295
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1452
296
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1548
297
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1561
298
  msgid "Log Template"
299
  msgstr ""
300
 
301
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-interest.php:301
302
  msgid "Available template tags: General, %timeframe%, %rate%, %base%"
303
  msgstr ""
304
 
305
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:21
306
  msgid "Daily %_plural%"
307
  msgstr ""
308
 
309
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:212
310
  msgid "Not yet run"
311
  msgstr ""
312
 
313
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:217
314
  msgid "Pay Users"
315
  msgstr ""
316
 
317
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:220
318
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:667
319
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:347
320
  msgid "Amount"
321
  msgstr ""
322
 
323
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:222
324
  msgid "Can not be zero."
325
  msgstr ""
326
 
327
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:226
328
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:239
329
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1520
330
  msgid "Interval"
331
  msgstr ""
332
 
333
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:231
334
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:240
335
  msgid "Cycles"
336
  msgstr ""
337
 
338
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:233
339
  msgid "Set to -1 for unlimited"
340
  msgstr ""
341
 
342
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:236
343
  msgid "Last Run / Activated"
344
  msgstr ""
345
 
346
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:239
347
  msgid ""
348
  "Select how often you want to award %_plural%. Note that when this service is "
349
  "enabled, the first payout will be in the beginning of the next period. So "
351
  "morning."
352
  msgstr ""
353
 
354
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:240
355
  msgid ""
356
  "Cycles let you choose how many intervals this service should run. Each time "
357
  "a cycle runs, the value will decrease until it hits zero, in which case this "
358
  "service will deactivate itself. Use -1 to run unlimited times."
359
  msgstr ""
360
 
361
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:241
362
  msgid "Important"
363
  msgstr ""
364
 
365
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:241
366
  msgid ""
367
  "You can always stop payouts by deactivating this service. Just remember that "
368
  "if you deactivate while there are cycles left, this service will continue on "
369
  "when it gets re-activated. Set cycles to zero to reset."
370
  msgstr ""
371
 
372
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:243
373
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:587
374
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:107
375
  msgid "Excludes"
376
  msgstr ""
377
 
378
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:247
379
  msgid ""
380
  "Comma separated list of user IDs to exclude from this service. No spaces "
381
  "allowed!"
382
  msgstr ""
383
 
384
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/banking/services/mycred-bank-service-payouts.php:254
385
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-galleries.php:81
386
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:435
387
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:448
388
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:461
389
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:474
390
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:487
391
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:500
392
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:514
393
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:527
394
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:540
395
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:553
396
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:175
397
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:188
398
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:201
399
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:214
400
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:320
401
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:333
402
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:372
403
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:385
404
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:398
405
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:411
406
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:428
407
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:523
408
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1509
409
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:639
410
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:660
411
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1552
412
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1565
413
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:488
414
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:501
415
  msgid "Available template tags: General"
416
  msgstr ""
417
 
418
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:13
419
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:379
420
  msgid "BuddyPress"
421
  msgstr ""
422
 
423
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:14
424
  msgid ""
425
  "The BuddyPress add-on extends <strong>my</strong>CRED to work with "
426
  "BuddyPress allowing you to hook into most BuddyPress related actions."
427
  msgstr ""
428
 
429
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:56
430
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:69
431
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:376
432
  msgid "My History"
433
  msgstr ""
434
 
435
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:57
436
  #, php-format
437
  msgid "%s's History"
438
  msgstr ""
439
 
440
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:219
441
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:227
442
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:983
443
  msgid "All"
444
  msgstr ""
445
 
446
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:220
447
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:984
448
  msgid "Today"
449
  msgstr ""
450
 
451
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:221
452
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:985
453
  msgid "Yesterday"
454
  msgstr ""
455
 
456
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:222
457
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:986
458
  msgid "This Week"
459
  msgstr ""
460
 
461
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:223
462
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:987
463
  msgid "This Month"
464
  msgstr ""
465
 
466
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:319
467
  msgid "BuddyPress: Groups"
468
  msgstr ""
469
 
470
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:320
471
  msgid ""
472
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
473
  "zero to disable a specific hook."
474
  msgstr ""
475
 
476
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:324
477
  msgid "BuddyPress: Members"
478
  msgstr ""
479
 
480
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:325
481
  msgid "Awards %_plural% for profile related actions."
482
  msgstr ""
483
 
484
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:331
485
  msgid "BuddyPress: Links"
486
  msgstr ""
487
 
488
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:332
489
  msgid "Awards %_plural% for link related actions."
490
  msgstr ""
491
 
492
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:339
493
  msgid "BuddyPress: Gallery Actions"
494
  msgstr ""
495
 
496
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:340
497
  msgid ""
498
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
499
  "Gallery."
500
  msgstr ""
501
 
502
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:360
503
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:367
504
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:766
505
  msgid "Do not show."
506
  msgstr ""
507
 
508
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:361
509
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:767
510
  msgid "Include in Profile Header."
511
  msgstr ""
512
 
513
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:362
514
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:768
515
  msgid "Include under the \"Profile\" tab"
516
  msgstr ""
517
 
518
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:363
519
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:769
520
  msgid "Include under the \"Profile\" tab and Profile Header."
521
  msgstr ""
522
 
523
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:368
524
  msgid "Show in Profile"
525
  msgstr ""
526
 
527
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:381
528
  msgid "%singular% Balance"
529
  msgstr ""
530
 
531
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:397
532
  msgid "Members can view each others %_singular% balance."
533
  msgstr ""
534
 
535
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:402
536
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:192
537
  msgid "Template"
538
  msgstr ""
539
 
540
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:404
541
  msgid "Available template tags are: %creds%, %number%, %rank%"
542
  msgstr ""
543
 
544
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:405
545
  msgid ""
546
  "Note that you can also use %rank_logo% to show the feature image of the rank."
547
  msgstr ""
548
 
549
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:409
550
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:159
551
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:70
552
  msgid "%plural% History"
553
  msgstr ""
554
 
555
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:425
556
  msgid "Members can view each others %_plural% history."
557
  msgstr ""
558
 
559
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:430
560
  msgid "Menu Title"
561
  msgstr ""
562
 
563
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:432
564
  msgid "Title shown to me"
565
  msgstr ""
566
 
567
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:437
568
  #, php-format
569
  msgid "Title shown to others. Use %s to show the first name."
570
  msgstr ""
571
 
572
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:442
573
  msgid "Menu Position"
574
  msgstr ""
575
 
576
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:444
577
  msgid "Current menu positions:"
578
  msgstr ""
579
 
580
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:449
581
  msgid "History URL slug"
582
  msgstr ""
583
 
584
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:451
585
  msgid "Do not use empty spaces!"
586
  msgstr ""
587
 
588
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/myCRED-addon-buddypress.php:456
589
  msgid "Number of history entries to show"
590
  msgstr ""
591
 
592
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-galleries.php:72
593
  msgid "%plural% for New Gallery"
594
  msgstr ""
595
 
596
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-galleries.php:79
597
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:433
598
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:446
599
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:459
600
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:472
601
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:485
602
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:498
603
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:512
604
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:525
605
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:538
606
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:551
607
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:173
608
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:186
609
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:199
610
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:212
611
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:318
612
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:331
613
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:344
614
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:357
615
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:370
616
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:383
617
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:396
618
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:409
619
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:381
620
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:625
621
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:638
622
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:673
623
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:963
624
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:975
625
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:987
626
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:401
627
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:414
628
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:427
629
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:445
630
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:458
631
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:477
632
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:637
633
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:658
634
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:790
635
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1044
636
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:486
637
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:499
638
  msgid "Log template"
639
  msgstr ""
640
 
641
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:419
642
  msgid "%plural% for Creating Groups"
643
  msgstr ""
644
 
645
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:423
646
  msgid ""
647
  "If you use a negative value and the user does not have enough %_plural% the "
648
  "\"Create Group\" button will be disabled."
649
  msgstr ""
650
 
651
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:427
652
  msgid "Number of members before awarding %_plural%"
653
  msgstr ""
654
 
655
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:429
656
  msgid "Use zero to award %_plural% when group is created."
657
  msgstr ""
658
 
659
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:439
660
  msgid "%plural% for Deleting Groups"
661
  msgstr ""
662
 
663
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:452
664
  msgid "%plural% for New Forum Topic"
665
  msgstr ""
666
 
667
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:465
668
  msgid "%plural% for Editing Forum Topic"
669
  msgstr ""
670
 
671
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:478
672
  msgid "%plural% for New Forum Post"
673
  msgstr ""
674
 
675
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:491
676
  msgid "%plural% for Editing Forum Post"
677
  msgstr ""
678
 
679
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:504
680
  msgid "%plural% for Joining Groups"
681
  msgstr ""
682
 
683
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:508
684
  msgid ""
685
  "If you use a negative value and the user does not have enough %_plural% the "
686
  "\"Join Group\" button will be disabled."
687
  msgstr ""
688
 
689
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:518
690
  msgid "%plural% for Leaving Groups"
691
  msgstr ""
692
 
693
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:531
694
  msgid "%plural% for New Group Avatar"
695
  msgstr ""
696
 
697
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-groups.php:544
698
  msgid "%plural% for New Group Comment"
699
  msgstr ""
700
 
701
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:166
702
  msgid "%plural% for New Links"
703
  msgstr ""
704
 
705
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:179
706
  msgid "%plural% for Vote on Link"
707
  msgstr ""
708
 
709
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:192
710
  msgid "%plural% for Updating Links"
711
  msgstr ""
712
 
713
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-links.php:205
714
  msgid "%plural% for Deleting Links"
715
  msgstr ""
716
 
717
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:311
718
  msgid "%plural% for Profile Updates"
719
  msgstr ""
720
 
721
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:324
722
  msgid "%plural% for New Avatar"
723
  msgstr ""
724
 
725
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:337
726
  msgid "%plural% for New Friendships"
727
  msgstr ""
728
 
729
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:346
730
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:359
731
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:189
732
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:196
733
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:385
734
  msgid "Available template tags: General, User"
735
  msgstr ""
736
 
737
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:350
738
  msgid "%plural% for Leaving Friendship"
739
  msgstr ""
740
 
741
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:363
742
  msgid "%plural% for New Comment"
743
  msgstr ""
744
 
745
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:376
746
  msgid "%plural% for Deleting Comment"
747
  msgstr ""
748
 
749
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:389
750
  msgid "%plural% for New Messages"
751
  msgstr ""
752
 
753
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buddypress/hooks/bp-profile.php:402
754
  msgid "%plural% for Sending Gift"
755
  msgstr ""
756
 
757
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:12
758
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:200
759
  msgid "buyCRED"
760
  msgstr ""
761
 
762
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:13
763
  msgid ""
764
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
765
  "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
766
  "also let your users buy points for other members."
767
  msgstr ""
768
 
769
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:55
770
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:56
771
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:57
772
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:322
773
  msgid "Payment Gateways"
774
  msgstr ""
775
 
776
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:141
777
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:773
778
  msgid "PayPal Payments Standard"
779
  msgstr ""
780
 
781
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:145
782
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:423
783
  msgid "NETbilling"
784
  msgstr ""
785
 
786
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:149
787
  msgid "Skrill (Moneybookers)"
788
  msgstr ""
789
 
790
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:153
791
  msgid "Zombaio"
792
  msgstr ""
793
 
794
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:175
795
  msgid "Please login to purchase %_plural%"
796
  msgstr ""
797
 
798
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:189
799
  msgid "Gift purchase from %display_name%."
800
  msgstr ""
801
 
802
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:202
803
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:555
804
  msgid "Minimum %plural%"
805
  msgstr ""
806
 
807
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:206
808
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
809
  msgstr ""
810
 
811
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:209
812
  msgid "Login Template"
813
  msgstr ""
814
 
815
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:213
816
  msgid "Content to show when a user is not logged in."
817
  msgstr ""
818
 
819
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:220
820
  msgid ""
821
  "Available template tags: General and %gateway% for the payment gateway used."
822
  msgstr ""
823
 
824
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:223
825
  msgid "Thank You Page"
826
  msgstr ""
827
 
828
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:226
829
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:247
830
  msgid "Custom URL"
831
  msgstr ""
832
 
833
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:231
834
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:252
835
  msgid "Page"
836
  msgstr ""
837
 
838
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:244
839
  msgid "Cancellation Page"
840
  msgstr ""
841
 
842
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:265
843
  msgid "Gifting"
844
  msgstr ""
845
 
846
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:267
847
  msgid "Allow users to buy %_plural% for other users."
848
  msgstr ""
849
 
850
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:268
851
  msgid "Allow users to buy %_plural% for content authors."
852
  msgstr ""
853
 
854
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:273
855
  msgid "Available template tags: %singular%, %plural% and %display_name%"
856
  msgstr ""
857
 
858
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:323
859
  msgid ""
860
  "Select the payment gateways you want to offer your users to buy %plural%."
861
  msgstr ""
862
 
863
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:364
864
  msgid "Update Gateway Settings"
865
  msgstr ""
866
 
867
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:411
868
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:521
869
  msgid "This Add-on needs to setup before you can use this shortcode."
870
  msgstr ""
871
 
872
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:428
873
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:538
874
  msgid "No gateways installed."
875
  msgstr ""
876
 
877
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:429
878
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:539
879
  msgid "Gateway does not exist."
880
  msgstr ""
881
 
882
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:465
883
  msgid "Yourself"
884
  msgstr ""
885
 
886
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:540
887
  msgid "No active gateways found."
888
  msgstr ""
889
 
890
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:541
891
  msgid "The selected gateway is not active."
892
  msgstr ""
893
 
894
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:581
895
  msgid "Buy with"
896
  msgstr ""
897
 
898
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:585
899
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:49
900
  msgid "Buy Now"
901
  msgstr ""
902
 
903
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:618
904
  msgid "No users found"
905
  msgstr ""
906
 
907
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:628
908
  msgid "To"
909
  msgstr ""
910
 
911
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:645
912
  msgid "Select Amount"
913
  msgstr ""
914
 
915
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:669
916
  msgid "min."
917
  msgstr ""
918
 
919
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:677
920
  msgid "Select Gateway"
921
  msgstr ""
922
 
923
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:757
924
  msgid "Buy %plural%"
925
  msgstr ""
926
 
927
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:759
928
  msgid "This add-on lets your users buy %_plural% using a payment gateway."
929
  msgstr ""
930
 
931
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:760
932
  msgid "Supported Gateways"
933
  msgstr ""
934
 
935
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:761
936
  msgid ""
937
  "myCRED supports purchases through: PayPal Payments Standard, Skrill "
938
  "(Moneybookers) and NETbilling. Let us know if you want to add other payment "
939
  "gateways."
940
  msgstr ""
941
 
942
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:762
943
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1057
944
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:493
945
  msgid "Usage"
946
  msgstr ""
947
 
948
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:763
949
  msgid "Purchases can be made using one of the following shortcodes:"
950
  msgstr ""
951
 
952
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:765
953
  msgid ""
954
  "When you want to sell a pre-set amount, sell to a specific user or use a "
955
  "specific gateway.<br />For more information on how to use the shortcode, "
956
  "please visit the"
957
  msgstr ""
958
 
959
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:766
960
  msgid ""
961
  "When you want to give your users the option to select an amount, gateway or "
962
  "recipient.<br />For more information on how to use the shortcode, please "
963
  "visit the"
964
  msgstr ""
965
 
966
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:775
967
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:327
968
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:344
969
  msgid "Currency"
970
  msgstr ""
971
 
972
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:776
973
  msgid ""
974
  "Make sure you select a currency that your PayPal account supports. Otherwise "
975
  "transactions will not be approved until you login to your PayPal account and "
977
  "will not be applied to the buyer until you have resolved the issue."
978
  msgstr ""
979
 
980
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:777
981
  msgid "Instant Payment Notifications"
982
  msgstr ""
983
 
984
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:778
985
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:358
986
  msgid ""
987
  "For this gateway to work, you must login to your PayPal account and under "
988
  "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". "
990
  "have selected \"Receive IPN messages (Enabled)\"."
991
  msgstr ""
992
 
993
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:782
994
  msgid "Skrill"
995
  msgstr ""
996
 
997
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:784
998
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:607
999
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:321
1000
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:338
1001
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:290
1002
  msgid "Sandbox Mode"
1003
  msgstr ""
1004
 
1005
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:785
1006
  msgid ""
1007
  "Transactions made while Sandbox mode is active are real transactions! "
1008
  "Remember to use your \"Test Merchant Account\" when Sandbox mode is active!"
1009
  msgstr ""
1010
 
1011
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:786
1012
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:383
1013
  msgid "Checkout Page"
1014
  msgstr ""
1015
 
1016
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:787
1017
  msgid ""
1018
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1019
  "When a user selects this option, no points are awarded! You will need to "
1020
  "manually award these once the bank transfer is completed."
1021
  msgstr ""
1022
 
1023
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/myCRED-addon-buy-creds.php:788
1024
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:403
1025
  msgid ""
1026
  "By default purchases made using Skrill will result in users having to signup "
1027
  "for a Skrill account (if they do not have one already). You can contact "
1028
  "Skrill Merchant Services and request to disable this feature."
1029
  msgstr ""
1030
 
1031
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:61
1032
  msgid ""
1033
  "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
1034
  "class."
1035
  msgstr ""
1036
 
1037
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:70
1038
  msgid ""
1039
  "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
1040
  msgstr ""
1041
 
1042
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:86
1043
  msgid "This Payment Gateway has no settings"
1044
  msgstr ""
1045
 
1046
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:235
1047
  msgid "Go to "
1048
  msgstr ""
1049
 
1050
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:256
1051
  msgid "Payment Gateway Logo"
1052
  msgstr ""
1053
 
1054
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:269
1055
  msgid "Click here if you are not automatically redirected"
1056
  msgstr ""
1057
 
1058
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:866
1059
  msgid "Outside US"
1060
  msgstr ""
1061
 
1062
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:26
1063
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:23
1064
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:28
1065
  msgid "Purchase of myCRED %plural%"
1066
  msgstr ""
1067
 
1068
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:55
1069
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:318
1070
  msgid "You have tried too many times. Please contact support."
1071
  msgstr ""
1072
 
1073
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:62
1074
  msgid "This payment gateway has not yet been setup! Exiting."
1075
  msgstr ""
1076
 
1077
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:81
1078
  msgid "First name can not be empty"
1079
  msgstr ""
1080
 
1081
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:87
1082
  msgid "Last name can not be empty"
1083
  msgstr ""
1084
 
1085
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:93
1086
  msgid "Street can not be empty"
1087
  msgstr ""
1088
 
1089
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:99
1090
  msgid "City can not be empty"
1091
  msgstr ""
1092
 
1093
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:105
1094
  msgid "Country can not be empty"
1095
  msgstr ""
1096
 
1097
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:113
1098
  msgid "State can not be empty"
1099
  msgstr ""
1100
 
1101
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:121
1102
  msgid "Zip / Post Code can not be empty"
1103
  msgstr ""
1104
 
1105
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:127
1106
  msgid "Email can not be empty"
1107
  msgstr ""
1108
 
1109
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:143
1110
  msgid "Please enter your credit card number"
1111
  msgstr ""
1112
 
1113
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:149
1114
  msgid "Card Expiration Month must be selected"
1115
  msgstr ""
1116
 
1117
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:155
1118
  msgid "Card Expiration Year must be set"
1119
  msgstr ""
1120
 
1121
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:161
1122
  msgid "Please enter the CVV2 code from the back of your card"
1123
  msgstr ""
1124
 
1125
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:170
1126
  msgid "Account Routing number missing"
1127
  msgstr ""
1128
 
1129
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:176
1130
  msgid "Account Number missing"
1131
  msgstr ""
1132
 
1133
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:184
1134
  msgid "Incorrect Credit Card number"
1135
  msgstr ""
1136
 
1137
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:190
1138
  msgid "The credit card entered is past its expiration date."
1139
  msgstr ""
1140
 
1141
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:196
1142
  msgid "The CVV2 number entered is not valid."
1143
  msgstr ""
1144
 
1145
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:202
1146
  msgid "The bank routing number entered is not valid."
1147
  msgstr ""
1148
 
1149
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:205
1150
  msgid "The bank account number entered is not valid."
1151
  msgstr ""
1152
 
1153
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:312
1154
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:333
1155
  msgid "Invalid Address"
1156
  msgstr ""
1157
 
1158
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:315
1159
  msgid "Invalid CVV2"
1160
  msgstr ""
1161
 
1162
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:321
1163
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:324
1164
  msgid "Please contact support."
1165
  msgstr ""
1166
 
1167
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:327
1168
  msgid "Your email address is invalid."
1169
  msgstr ""
1170
 
1171
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:330
1172
  msgid "Your information is invalid. Please correct"
1173
  msgstr ""
1174
 
1175
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:336
1176
  msgid "Your card was declined. Please try again."
1177
  msgstr ""
1178
 
1179
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:340
1180
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:358
1181
  msgid "Duplicate transaction. Please contact support"
1182
  msgstr ""
1183
 
1184
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:343
1185
  msgid "Your transaction was approved"
1186
  msgstr ""
1187
 
1188
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:350
1189
  msgid " error: "
1190
  msgstr ""
1191
 
1192
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:430
1193
  msgid "Debug"
1194
  msgstr ""
1195
 
1196
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:439
1197
  msgid "Error"
1198
  msgstr ""
1199
 
1200
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:440
1201
  msgid "The following error/s were found: "
1202
  msgstr ""
1203
 
1204
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:448
1205
  msgid "Please update and try again."
1206
  msgstr ""
1207
 
1208
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:454
1209
  msgid "Transaction Approved"
1210
  msgstr ""
1211
 
1212
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:455
1213
  msgid "Your have successfully purchased "
1214
  msgstr ""
1215
 
1216
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:456
1217
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:466
1218
  msgid "Click here to continue"
1219
  msgstr ""
1220
 
1221
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:464
1222
  msgid "Transaction Declined"
1223
  msgstr ""
1224
 
1225
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:465
1226
  msgid ""
1227
  "I am sorry but your transaction could not be completed due to the following "
1228
  msgstr ""
1229
 
1230
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:474
1231
  msgid "Transaction Error"
1232
  msgstr ""
1233
 
1234
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:475
1235
  msgid "NETbilling returned the following error: "
1236
  msgstr ""
1237
 
1238
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:476
1239
  msgid "Please try again."
1240
  msgstr ""
1241
 
1242
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:480
1243
  msgid "Purchase of"
1244
  msgstr ""
1245
 
1246
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:480
1247
  msgid "for"
1248
  msgstr ""
1249
 
1250
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:481
1251
  msgid "Fields marked * are required!"
1252
  msgstr ""
1253
 
1254
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:491
1255
  msgid "Billing Details"
1256
  msgstr ""
1257
 
1258
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:560
1259
  msgid "Month"
1260
  msgstr ""
1261
 
1262
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:566
1263
  msgid "Year"
1264
  msgstr ""
1265
 
1266
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:613
1267
  msgid "Account ID"
1268
  msgstr ""
1269
 
1270
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:619
1271
  msgid "Site Tag"
1272
  msgstr ""
1273
 
1274
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:625
1275
  msgid "Dynamic IP Security Code"
1276
  msgstr ""
1277
 
1278
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:631
1279
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:341
1280
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:364
1281
  msgid "Item Name"
1282
  msgstr ""
1283
 
1284
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:637
1285
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:348
1286
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:371
1287
  msgid "%plural% Exchange Rate"
1288
  msgstr ""
1289
 
1290
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:643
1291
  msgid "Allowed Attempts"
1292
  msgstr ""
1293
 
1294
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:647
1295
  msgid "Maximum number of attempts allowed for purchases."
1296
  msgstr ""
1297
 
1298
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:650
1299
  msgid "Advanced"
1300
  msgstr ""
1301
 
1302
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:654
1303
  msgid "Disable AVS (Address Verification System) for credit card transactions."
1304
  msgstr ""
1305
 
1306
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:658
1307
  msgid "Disable CVV2 (Card Verification Value 2) for credit card transactions."
1308
  msgstr ""
1309
 
1310
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:662
1311
  msgid ""
1312
  "Disable all fraud protection other than AVS/CVV2. (This implies "
1313
  "disable_negative_db)"
1314
  msgstr ""
1315
 
1316
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:666
1317
  msgid ""
1318
  "Disable only the negative database component of the fraud protection system."
1319
  msgstr ""
1320
 
1321
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:670
1322
  msgid "Disable automatic sending of both merchant and customer email receipts."
1323
  msgstr ""
1324
 
1325
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/netbilling.php:674
1326
  msgid "Disable immediate rejection of expired cards."
1327
  msgstr ""
1328
 
1329
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:225
1330
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:211
1331
  msgid "Success"
1332
  msgstr ""
1333
 
1334
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:226
1335
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:212
1336
  msgid "Thank you for your purchase"
1337
  msgstr ""
1338
 
1339
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:239
1340
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:225
1341
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:232
1342
  msgid "Please setup this gateway before attempting to make a purchase!"
1343
  msgstr ""
1344
 
1345
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:299
1346
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:266
1347
  msgid "Return to "
1348
  msgstr ""
1349
 
1350
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:304
1351
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:320
1352
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:271
1353
  msgid "Processing payment &hellip;"
1354
  msgstr ""
1355
 
1356
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:332
1357
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:401
1358
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:416
1359
  msgid "Important!"
1360
  msgstr ""
1361
 
1362
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:332
1363
  msgid ""
1364
  "Make sure you select a currency that your PayPal account supports. Otherwise "
1365
  "transactions will not be approved until you login to your PayPal account and "
1366
  "Accept each transaction!"
1367
  msgstr ""
1368
 
1369
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:335
1370
  msgid "Account Email"
1371
  msgstr ""
1372
 
1373
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:345
1374
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:368
1375
  msgid "Description of the item being purchased by the user."
1376
  msgstr ""
1377
 
1378
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:351
1379
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:374
1380
  msgid "Your selected currency"
1381
  msgstr ""
1382
 
1383
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/paypal-standard.php:354
1384
  msgid "IPN Address"
1385
  msgstr ""
1386
 
1387
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:303
1388
  msgid "Product:"
1389
  msgstr ""
1390
 
1391
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:312
1392
  msgid "Gift to:"
1393
  msgstr ""
1394
 
1395
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:313
1396
  msgid "(author)"
1397
  msgstr ""
1398
 
1399
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:341
1400
  msgid "Remember to use your Test Merchant Account when Sandbox mode is active!"
1401
  msgstr ""
1402
 
1403
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:351
1404
  msgid "Merchant Account Email"
1405
  msgstr ""
1406
 
1407
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:357
1408
  msgid "Secret Word"
1409
  msgstr ""
1410
 
1411
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:361
1412
  msgid ""
1413
  "You can set your secret word under \"Merchant Tools\" in your Skrill Account."
1414
  msgstr ""
1415
 
1416
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:377
1417
  msgid "Confirmation Email"
1418
  msgstr ""
1419
 
1420
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:380
1421
  msgid ""
1422
  "Ask Skrill to send me a confirmation email for each successful purchase."
1423
  msgstr ""
1424
 
1425
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:386
1426
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:75
1427
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:696
1428
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:594
1429
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:185
1430
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:360
1431
  msgid "Title"
1432
  msgstr ""
1433
 
1434
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:388
1435
  msgid ""
1436
  "If left empty, your account email is used as title on the Skill Payment Page."
1437
  msgstr ""
1438
 
1439
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:391
1440
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:314
1441
  msgid "Logo URL"
1442
  msgstr ""
1443
 
1444
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:393
1445
  msgid ""
1446
  "The URL to the image you want to use on the top of the gateway. For best "
1447
  "integration results we recommend you use logos with dimensions up to 200px "
1448
  "in width and 50px in height."
1449
  msgstr ""
1450
 
1451
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:396
1452
  msgid "Confirmation Note"
1453
  msgstr ""
1454
 
1455
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:398
1456
  msgid ""
1457
  "Optional text to show user once a transaction has been successfully "
1458
  "completed. This text is shown by Skrill."
1459
  msgstr ""
1460
 
1461
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/skrill.php:402
1462
  msgid ""
1463
  "By default all Skrill Merchant account accept payments via Bank Transfers. "
1464
  "When a user selects this option, no %_plural% are awarded! You will need to "
1465
  "manually award these once the bank transfer is completed."
1466
  msgstr ""
1467
 
1468
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:296
1469
  msgid "Site ID"
1470
  msgstr ""
1471
 
1472
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:302
1473
  msgid "GW Password"
1474
  msgstr ""
1475
 
1476
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:308
1477
  msgid "Pricing ID"
1478
  msgstr ""
1479
 
1480
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:320
1481
  msgid "IP Verification"
1482
  msgstr ""
1483
 
1484
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:323
1485
  msgid "Do not verify that callbacks are coming from Zombaio."
1486
  msgstr ""
1487
 
1488
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:326
1489
  msgid "Language"
1490
  msgstr ""
1491
 
1492
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:333
1493
  msgid "Postback URL (ZScript)"
1494
  msgstr ""
1495
 
1496
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/buy-creds/gateways/zombaio.php:337
1497
  msgid ""
1498
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1499
  "address and click validate."
1500
  msgstr ""
1501
 
1502
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:12
1503
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:155
1504
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:161
1505
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:167
1506
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:265
1507
  msgid "Email Notices"
1508
  msgstr ""
1509
 
1510
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:13
1511
  msgid "Create email notices for any type of myCRED instance."
1512
  msgstr ""
1513
 
1514
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:156
1515
  msgid "Email Notice"
1516
  msgstr ""
1517
 
1518
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:157
1519
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:157
1520
  msgid "Add New"
1521
  msgstr ""
1522
 
1523
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:158
1524
  msgid "Add New Notice"
1525
  msgstr ""
1526
 
1527
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:159
1528
  msgid "Edit Notice"
1529
  msgstr ""
1530
 
1531
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:160
1532
  msgid "New Notice"
1533
  msgstr ""
1534
 
1535
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:162
1536
  msgid "View Notice"
1537
  msgstr ""
1538
 
1539
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:163
1540
  msgid "Search Email Notices"
1541
  msgstr ""
1542
 
1543
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:164
1544
  msgid "No email notices found"
1545
  msgstr ""
1546
 
1547
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:165
1548
  msgid "No email notices found in Trash"
1549
  msgstr ""
1550
 
1551
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:188
1552
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:848
1553
  msgid "General"
1554
  msgstr ""
1555
 
1556
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:189
1557
  msgid "users balance changes"
1558
  msgstr ""
1559
 
1560
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:190
1561
  msgid "user gains %_plural%"
1562
  msgstr ""
1563
 
1564
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:191
1565
  msgid "user lose %_plural%"
1566
  msgstr ""
1567
 
1568
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:192
1569
  msgid "users balance reaches zero"
1570
  msgstr ""
1571
 
1572
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:193
1573
  msgid "users balance goes minus"
1574
  msgstr ""
1575
 
1576
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:199
1577
  msgid "Sell Content Add-on"
1578
  msgstr ""
1579
 
1580
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:200
1581
  msgid "user buys content"
1582
  msgstr ""
1583
 
1584
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:201
1585
  msgid "authors content gets sold"
1586
  msgstr ""
1587
 
1588
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:208
1589
  msgid "buyCREDs Add-on"
1590
  msgstr ""
1591
 
1592
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:209
1593
  msgid "user buys %_plural%"
1594
  msgstr ""
1595
 
1596
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:216
1597
  msgid "Transfer Add-on"
1598
  msgstr ""
1599
 
1600
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:217
1601
  msgid "user sends %_plural%"
1602
  msgstr ""
1603
 
1604
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:218
1605
  msgid "user receives %_plural%"
1606
  msgstr ""
1607
 
1608
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:225
1609
+ msgid "Ranks Add-on"
1610
+ msgstr ""
1611
+
1612
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:226
1613
+ msgid "user is demoted"
1614
+ msgstr ""
1615
+
1616
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:227
1617
+ msgid "user is promoted"
1618
+ msgstr ""
1619
+
1620
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:267
1621
  msgid ""
1622
  "Settings that apply to all email notices and can not be overridden for "
1623
  "individual emails."
1624
  msgstr ""
1625
 
1626
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:268
1627
  msgid "Email Format"
1628
  msgstr ""
1629
 
1630
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:272
1631
  msgid "Plain text emails only."
1632
  msgstr ""
1633
 
1634
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:276
1635
  msgid "HTML or Plain text emails."
1636
  msgstr ""
1637
 
1638
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:279
1639
  msgid "Filters"
1640
  msgstr ""
1641
 
1642
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:283
1643
  msgid ""
1644
  "Allow WordPress and Third Party Plugins to filter the email subject before "
1645
  "an email is sent."
1646
  msgstr ""
1647
 
1648
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:287
1649
  msgid ""
1650
  "Allow WordPress and Third Party Plugins to filter the email content before "
1651
  "an email is sent."
1652
  msgstr ""
1653
 
1654
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:290
1655
  msgid ""
1656
  "Default email settings. These settings can be individually overridden when "
1657
  "editing emails."
1658
  msgstr ""
1659
 
1660
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:291
1661
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:687
1662
  msgid "Email Settings"
1663
  msgstr ""
1664
 
1665
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:294
1666
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:804
1667
  msgid "Senders Name:"
1668
  msgstr ""
1669
 
1670
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:298
1671
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:806
1672
  msgid "Senders Email:"
1673
  msgstr ""
1674
 
1675
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:302
1676
  msgid "Reply-To:"
1677
  msgstr ""
1678
 
1679
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:306
1680
  msgid "Default Email Content"
1681
  msgstr ""
1682
 
1683
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:310
1684
  msgid "Default email content."
1685
  msgstr ""
1686
 
1687
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:313
1688
  msgid "Default Email Styling"
1689
  msgstr ""
1690
 
1691
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:317
1692
  msgid "Ignored if HTML is not allowed in emails."
1693
  msgstr ""
1694
 
1695
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:622
1696
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:736
1697
  msgid "Email Subject"
1698
  msgstr ""
1699
 
1700
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:623
1701
  msgid "Status"
1702
  msgstr ""
1703
 
1704
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:643
1705
  msgid "Not Active"
1706
  msgstr ""
1707
 
1708
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:645
1709
  #, php-format
1710
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1711
  msgstr ""
1712
 
1713
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:649
1714
  msgid "Active"
1715
  msgstr ""
1716
 
1717
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:651
1718
  #, php-format
1719
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1720
  msgstr ""
1721
 
1722
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:660
1723
  msgid "Email is sent when"
1724
  msgstr ""
1725
 
1726
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:662
1727
  msgid "Missing instance for this notice!"
1728
  msgstr ""
1729
 
1730
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:671
1731
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:673
1732
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:675
1733
  msgid "Sent To"
1734
  msgstr ""
1735
 
1736
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:671
1737
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:798
1738
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:343
1739
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:812
1740
  msgid "User"
1741
  msgstr ""
1742
 
1743
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:673
1744
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:799
1745
  msgid "Administrator"
1746
  msgstr ""
1747
 
1748
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:675
1749
  msgid "Both Administrator and User"
1750
  msgstr ""
1751
 
1752
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:696
1753
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:131
1754
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:155
1755
  msgid "Available Template Tags"
1756
  msgstr ""
1757
 
1758
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:707
1759
  msgid "Email Header"
1760
  msgstr ""
1761
 
1762
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:767
1763
  msgid "Send this email notice when..."
1764
  msgstr ""
1765
 
1766
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:796
1767
  msgid "Recipient:"
1768
  msgstr ""
1769
 
1770
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:800
1771
  msgid "Both"
1772
  msgstr ""
1773
 
1774
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:808
1775
  msgid "Reply-To Email:"
1776
  msgstr ""
1777
 
1778
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:814
1779
  msgid "Save"
1780
  msgstr ""
1781
 
1782
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:826
1783
  msgid "CSS Styling"
1784
  msgstr ""
1785
 
1786
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:841
1787
  msgid "Site Related"
1788
  msgstr ""
1789
 
1790
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:842
1791
  msgid "Your websites title"
1792
  msgstr ""
1793
 
1794
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:843
1795
  msgid "Your websites address"
1796
  msgstr ""
1797
 
1798
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:844
1799
  msgid "Your websites tagline (description)"
1800
  msgstr ""
1801
 
1802
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:845
1803
  msgid "Your websites admin email"
1804
  msgstr ""
1805
 
1806
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:846
1807
  msgid "Total number of blog members"
1808
  msgstr ""
1809
 
1810
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:849
1811
  msgid "Points name in singular format"
1812
  msgstr ""
1813
 
1814
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:850
1815
  msgid "Points name in plural"
1816
  msgstr ""
1817
 
1818
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:851
1819
  msgid "Login URL"
1820
  msgstr ""
1821
 
1822
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:854
1823
  msgid "User Related"
1824
  msgstr ""
1825
 
1826
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:855
1827
  msgid "The users ID"
1828
  msgstr ""
1829
 
1830
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:856
1831
  msgid "The users login name (username)"
1832
  msgstr ""
1833
 
1834
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:857
1835
  msgid "The users display name"
1836
  msgstr ""
1837
 
1838
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:858
1839
  msgid "The users profile address"
1840
  msgstr ""
1841
 
1842
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:859
1843
  msgid "Link to the users profile address with their display name as title"
1844
  msgstr ""
1845
 
1846
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:860
1847
  msgid "The users current balance unformated"
1848
  msgstr ""
1849
 
1850
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:861
1851
  msgid "The users current balance formated"
1852
  msgstr ""
1853
 
1854
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:863
1855
  msgid "Post Related"
1856
  msgstr ""
1857
 
1858
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:864
1859
  msgid "Post Title"
1860
  msgstr ""
1861
 
1862
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:865
1863
  msgid "Post URL address"
1864
  msgstr ""
1865
 
1866
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:866
1867
  msgid "Link to post Post title"
1868
  msgstr ""
1869
 
1870
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:867
1871
  msgid "The post type"
1872
  msgstr ""
1873
 
1874
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:943
1875
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:946
1876
  #, php-format
1877
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1878
  msgstr ""
1879
 
1880
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:944
1881
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:460
1882
  msgid "Custom field updated"
1883
  msgstr ""
1884
 
1885
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:945
1886
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:461
1887
  msgid "Custom filed updated"
1888
  msgstr ""
1889
 
1890
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:948
1891
  msgid "Email Notice Activated"
1892
  msgstr ""
1893
 
1894
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:949
1895
  msgid "Email Notice Saved"
1896
  msgstr ""
1897
 
1898
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:950
1899
  #, php-format
1900
  msgid ""
1901
  "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1902
  msgstr ""
1903
 
1904
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:952
1905
  #, php-format
1906
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1907
  msgstr ""
1908
 
1909
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:971
1910
  msgid ""
1911
  "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
1912
  "you are not yet ready to use this email notice!"
1913
  msgstr ""
1914
 
1915
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:973
1916
  #, php-format
1917
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1918
  msgstr ""
1919
 
1920
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/email-notices/myCRED-addon-email-notices.php:975
1921
  msgid "This email notice is active."
1922
  msgstr ""
1923
 
1924
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/myCRED-addon-gateway.php:12
1925
  msgid "Gateway"
1926
  msgstr ""
1927
 
1928
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/myCRED-addon-gateway.php:13
1929
  msgid ""
1930
  "Let your users pay using their <strong>my</strong>CRED points balance. "
1931
  "Supported Carts: WooCommerce, MarketPress. Supported Event Bookings: Event "
1932
  "Espresso, Events Manager."
1933
  msgstr ""
1934
 
1935
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:148
1936
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:254
1937
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:278
1938
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:357
1939
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:344
1940
  msgid "Current Balance"
1941
  msgstr ""
1942
 
1943
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:152
1944
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:258
1945
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:282
1946
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:361
1947
  msgid "Total Cost"
1948
  msgstr ""
1949
 
1950
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:156
1951
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:262
1952
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:286
1953
  msgid "Balance After Purchase"
1954
  msgstr ""
1955
 
1956
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:180
1957
  msgid "Payment"
1958
  msgstr ""
1959
 
1960
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:183
1961
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:232
1962
  #, php-format
1963
  msgid "<a href=\"%s\">Go Back</a>"
1964
  msgstr ""
1965
 
1966
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:186
1967
  msgid "will be deducted from your account."
1968
  msgstr ""
1969
 
1970
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:222
1971
  #, php-format
1972
  msgid ""
1973
  "Sorry, but you can not use this gateway as your account is excluded. Please "
1974
  "<a href=\"%s\">select a different payment method</a>."
1975
  msgstr ""
1976
 
1977
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:241
1978
  msgid "Paid"
1979
  msgstr ""
1980
 
1981
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:244
1982
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:34
1983
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:53
1984
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:54
1985
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:844
1986
  msgid "myCRED"
1987
  msgstr ""
1988
 
1989
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:314
1990
  msgid "%_singular% Balance"
1991
  msgstr ""
1992
 
1993
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:341
1994
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:139
1995
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:19
1996
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:20
1997
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:21
1998
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:47
1999
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:249
2000
+ msgid "Settings"
2001
+ msgstr ""
2002
+
2003
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:343
2004
  #, php-format
2005
  msgid ""
2006
  "Let your users pay for items in their shopping cart using their %s Account. "
2008
  "purchase!"
2009
  msgstr ""
2010
 
2011
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:346
2012
  msgid "Method Name"
2013
  msgstr ""
2014
 
2015
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:348
2016
  msgid ""
2017
  "Enter a public name for this payment method that is displayed to users - No "
2018
  "HTML"
2019
  msgstr ""
2020
 
2021
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:353
2022
  msgid "Gateway Logo URL"
2023
  msgstr ""
2024
 
2025
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:361
2026
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:89
2027
  msgid ""
2028
  "Log entry template for successful payments. Available template tags: "
2029
  "%order_id%, %order_link%"
2030
  msgstr ""
2031
 
2032
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:368
2033
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:95
2034
  msgid "How much is 1 %_singular% worth in %currency%?"
2035
  msgstr ""
2036
 
2037
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:373
2038
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:100
2039
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:411
2040
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:496
2041
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:525
2042
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:594
2043
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:658
2044
  msgid "Exchange Rate"
2045
  msgstr ""
2046
 
2047
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:382
2048
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:566
2049
  msgid "Insufficient Funds"
2050
  msgstr ""
2051
 
2052
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:384
2053
  msgid "Message to show when the user can not use this gateway."
2054
  msgstr ""
2055
 
2056
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:386
2057
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:394
2058
  msgid "Available template tags are: General."
2059
  msgstr ""
2060
 
2061
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:390
2062
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:446
2063
  msgid "Visitors"
2064
  msgstr ""
2065
 
2066
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:392
2067
  msgid "Message to show to buyers that are not logged in."
2068
  msgstr ""
2069
 
2070
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:398
2071
  msgid "User Instructions"
2072
  msgstr ""
2073
 
2074
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:400
2075
  msgid "Information to show users before payment."
2076
  msgstr ""
2077
 
2078
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:402
2079
  msgid ""
2080
  "Available template tags are: %balance% and %balance_f% for users current "
2081
  "balance."
2082
  msgstr ""
2083
 
2084
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:406
2085
  msgid "Confirmation Information"
2086
  msgstr ""
2087
 
2088
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:408
2089
  msgid "Information to display on the order confirmation page. - HTML allowed"
2090
  msgstr ""
2091
 
2092
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:410
2093
  msgid ""
2094
  "Available template tags: TOTAL - total cart cost, %balance% and %balance_f% "
2095
  "- users current balance."
2096
  msgstr ""
2097
 
2098
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:414
2099
  msgid "Order Confirmation Email"
2100
  msgstr ""
2101
 
2102
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:416
2103
  #, php-format
2104
  msgid ""
2105
  "This is the email text to send to those who have made %s checkouts. It "
2108
  "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2109
  msgstr ""
2110
 
2111
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-marketpress.php:418
2112
  #, php-format
2113
  msgid "Available template tags: %balance% or %balance_f% for users balance."
2114
  msgstr ""
2115
 
2116
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:35
2117
  msgid "Let users pay using their myCRED balance."
2118
  msgstr ""
2119
 
2120
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:68
2121
  msgid "Enable/Disable"
2122
  msgstr ""
2123
 
2124
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:70
2125
  msgid "Enable myCRED Payment"
2126
  msgstr ""
2127
 
2128
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:72
2129
  msgid ""
2130
  "Users who are not logged in or excluded from using myCRED will not have "
2131
  "access to this gateway!"
2132
  msgstr ""
2133
 
2134
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:77
2135
  msgid "Title to show for this payment option."
2136
  msgstr ""
2137
 
2138
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:78
2139
  msgid "Pay with myCRED"
2140
  msgstr ""
2141
 
2142
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:82
2143
  msgid "Customer Message"
2144
  msgstr ""
2145
 
2146
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:84
2147
  msgid "Deduct the amount from your %_plural% balance."
2148
  msgstr ""
2149
 
2150
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:90
2151
  msgid "Payment for Order: #%order_id%"
2152
  msgstr ""
2153
 
2154
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:107
2155
  msgid "Show Total"
2156
  msgstr ""
2157
 
2158
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:109
2159
  msgid "Show the final price in %_plural% ."
2160
  msgstr ""
2161
 
2162
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:111
2163
  msgid "Do not show"
2164
  msgstr ""
2165
 
2166
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:112
2167
  msgid "Show in Cart"
2168
  msgstr ""
2169
 
2170
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:113
2171
  msgid "Show on Checkout Page"
2172
  msgstr ""
2173
 
2174
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:114
2175
  msgid "Show in Cart and on Checkout Page"
2176
  msgstr ""
2177
 
2178
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:119
2179
  msgid "Label"
2180
  msgstr ""
2181
 
2182
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:121
2183
  msgid "Order Total in %_plural%"
2184
  msgstr ""
2185
 
2186
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:148
2187
  msgid "myCRED Payment"
2188
  msgstr ""
2189
 
2190
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:149
2191
  msgid ""
2192
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2193
  "users with insufficient funds and users who are not logged in will not see "
2194
  "this payment gateway on the checkout page."
2195
  msgstr ""
2196
 
2197
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:170
2198
  msgid "You must be logged in to pay with %_plural%"
2199
  msgstr ""
2200
 
2201
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:176
2202
  msgid "You can not use this gateway. Please try a different payment option."
2203
  msgstr ""
2204
 
2205
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:188
2206
  msgid "Insufficient funds. Please try a different payment option."
2207
  msgstr ""
2208
 
2209
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:212
2210
  msgid "Your account has successfully been charged."
2211
  msgstr ""
2212
 
2213
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/carts/mycred-woocommerce.php:422
2214
  msgid "Your current balance"
2215
  msgstr ""
2216
 
2217
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:24
2218
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:479
2219
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:313
2220
  msgid "Payments"
2221
  msgstr ""
2222
 
2223
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:25
2224
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:31
2225
  msgid "Pay Now"
2226
  msgstr ""
2227
 
2228
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:28
2229
  msgid "Payment for Event Registration"
2230
  msgstr ""
2231
 
2232
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:320
2233
  #, php-format
2234
  msgid "Activate %s"
2235
  msgstr ""
2236
 
2237
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:328
2238
  #, php-format
2239
  msgid "Deactivate %s"
2240
  msgstr ""
2241
 
2242
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:344
2243
  msgid "Gateway Settings"
2244
  msgstr ""
2245
 
2246
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:376
2247
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:466
2248
  #, php-format
2249
  msgid "How many %s is 1 %s worth?"
2250
  msgstr ""
2251
 
2252
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:382
2253
  msgid "Gateways Settings Successfully Updated"
2254
  msgstr ""
2255
 
2256
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:390
2257
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:532
2258
  msgid "Labels"
2259
  msgstr ""
2260
 
2261
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:393
2262
  msgid "Gateway Title"
2263
  msgstr ""
2264
 
2265
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:395
2266
  msgid "Title to show on Payment page"
2267
  msgstr ""
2268
 
2269
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:398
2270
  msgid "Payment Type"
2271
  msgstr ""
2272
 
2273
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:400
2274
  msgid "Title to show on receipts and logs"
2275
  msgstr ""
2276
 
2277
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:403
2278
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:549
2279
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:349
2280
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:541
2281
  msgid "Button Label"
2282
  msgstr ""
2283
 
2284
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:405
2285
  msgid "Pay Button"
2286
  msgstr ""
2287
 
2288
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:408
2289
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:290
2290
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:293
2291
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:340
2292
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:537
2293
  msgid "Price"
2294
  msgstr ""
2295
 
2296
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:418
2297
  msgid ""
2298
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2299
  "<code>mycred_no_sale</code>"
2300
  msgstr ""
2301
 
2302
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:419
2303
  msgid "Users must be logged in to use this gateway!"
2304
  msgstr ""
2305
 
2306
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:423
2307
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:21
2308
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:22
2309
  msgid "Log"
2310
  msgstr ""
2311
 
2312
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:426
2313
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:549
2314
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:623
2315
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:681
2316
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:348
2317
  msgid "Log Entry"
2318
  msgstr ""
2319
 
2320
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:433
2321
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:888
2322
  msgid "Templates"
2323
  msgstr ""
2324
 
2325
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:436
2326
  msgid "Solvent users"
2327
  msgstr ""
2328
 
2329
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:438
2330
  msgid ""
2331
  "Message to show users on the payment page before they are charged. Leave "
2332
  "empty to hide.<br />Available template tags: General"
2333
  msgstr ""
2334
 
2335
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:441
2336
  msgid "Insolvent users"
2337
  msgstr ""
2338
 
2339
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:443
2340
  msgid ""
2341
  "Message to show users who do not have enough points to pay.<br />Available "
2342
  "template tags: General"
2343
  msgstr ""
2344
 
2345
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:448
2346
  msgid ""
2347
  "Message to show visitors (users not logged in) on the payment page.<br /"
2348
  ">Available template tags: General"
2349
  msgstr ""
2350
 
2351
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventespresso3.php:458
2352
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:154
2353
  msgid "Update Settings"
2354
  msgstr ""
2355
 
2356
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:25
2357
  msgid "Payment for tickets to %link_with_title%"
2358
  msgstr ""
2359
 
2360
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:26
2361
  msgid "Ticket refund for %link_with_title%"
2362
  msgstr ""
2363
 
2364
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:30
2365
  msgid "Pay using your %_plural% balance"
2366
  msgstr ""
2367
 
2368
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:32
2369
  msgid "Pay"
2370
  msgstr ""
2371
 
2372
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:35
2373
  msgid "Thank you for your payment!"
2374
  msgstr ""
2375
 
2376
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:36
2377
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2378
  msgstr ""
2379
 
2380
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:287
2381
  msgid "Ticket Type"
2382
  msgstr ""
2383
 
2384
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:296
2385
  msgid "Spaces"
2386
  msgstr ""
2387
 
2388
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:365
2389
  msgid "Balance After Payment"
2390
  msgstr ""
2391
 
2392
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:472
2393
  msgid "Click to toggle"
2394
  msgstr ""
2395
 
2396
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:472
2397
  #, php-format
2398
  msgid "%s Payments"
2399
  msgstr ""
2400
 
2401
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:481
2402
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2403
  msgstr ""
2404
 
2405
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:482
2406
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2407
  msgstr ""
2408
 
2409
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:483
2410
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2411
  msgstr ""
2412
 
2413
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:487
2414
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:513
2415
  msgid "Refunds"
2416
  msgstr ""
2417
 
2418
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:490
2419
  msgid ""
2420
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2421
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2422
  msgstr ""
2423
 
2424
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:503
2425
  msgid "Log Templates"
2426
  msgstr ""
2427
 
2428
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:506
2429
  msgid "Purchases"
2430
  msgstr ""
2431
 
2432
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:509
2433
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:516
2434
  msgid "Available template tags: General and Post related."
2435
  msgstr ""
2436
 
2437
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:535
2438
  msgid "Payment Link Label"
2439
  msgstr ""
2440
 
2441
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:538
2442
  msgid ""
2443
  "The payment link shows / hides the payment form under \"My Bookings\". No "
2444
  "HTML allowed."
2445
  msgstr ""
2446
 
2447
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:542
2448
  msgid "Payment Header"
2449
  msgstr ""
2450
 
2451
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:545
2452
  msgid "Shown on top of the payment form. No HTML allowed."
2453
  msgstr ""
2454
 
2455
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:552
2456
  msgid "The button label for payments. No HTML allowed!"
2457
  msgstr ""
2458
 
2459
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:556
2460
  msgid "Messages"
2461
  msgstr ""
2462
 
2463
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:559
2464
  msgid "Successful Payments"
2465
  msgstr ""
2466
 
2467
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:562
2468
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/gateway/event-booking/mycred-eventsmanager.php:569
2469
  msgid "No HTML allowed! Available template tags: General"
2470
  msgstr ""
2471
 
2472
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:12
2473
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:40
2474
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:41
2475
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:42
2476
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:466
2477
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:742
2478
  msgid "Import"
2479
  msgstr ""
2480
 
2481
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:13
2482
  msgid ""
2483
  "With the Import add-on you can import CSV files, CubePoints or existing "
2484
  "points under any custom user meta values."
2485
  msgstr ""
2486
 
2487
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:91
2488
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:748
2489
  msgid "CSV File"
2490
  msgstr ""
2491
 
2492
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:92
2493
  msgid "Import %_plural% from a comma-separated values (CSV) file."
2494
  msgstr ""
2495
 
2496
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:95
2497
  msgid "CubePoints"
2498
  msgstr ""
2499
 
2500
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:96
2501
  msgid "Import CubePoints"
2502
  msgstr ""
2503
 
2504
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:99
2505
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:768
2506
  msgid "Custom User Meta"
2507
  msgstr ""
2508
 
2509
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:100
2510
  msgid "Import %_plural% from pre-existing custom user meta."
2511
  msgstr ""
2512
 
2513
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:217
2514
  msgid "No file selected. Please select your CSV file and try again."
2515
  msgstr ""
2516
 
2517
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:232
2518
  msgid "Failed to load file."
2519
  msgstr ""
2520
 
2521
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:253
2522
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:423
2523
  #, php-format
2524
  msgid ""
2525
  "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
2526
  msgstr ""
2527
 
2528
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:262
2529
  msgid ""
2530
  "No valid records found in file. Make sure you have selected the correct way "
2531
  "to identify users in the mycred_user column!"
2532
  msgstr ""
2533
 
2534
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:268
2535
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:351
2536
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:438
2537
  #, php-format
2538
  msgid ""
2539
  "Import successfully completed. A total of %d users were effected and %d "
2540
  "entires were skipped. Import completed in %.2f seconds."
2541
  msgstr ""
2542
 
2543
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:302
2544
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:587
2545
  msgid "No CubePoints found."
2546
  msgstr ""
2547
 
2548
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:336
2549
  #, php-format
2550
  msgid ""
2551
  "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
2552
  "seconds."
2553
  msgstr ""
2554
 
2555
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:345
2556
  msgid "No valid CubePoints founds."
2557
  msgstr ""
2558
 
2559
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:371
2560
  msgid "Missing meta key. Not sure what I should be looking for."
2561
  msgstr ""
2562
 
2563
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:390
2564
  #, php-format
2565
  msgid "No rows found for the <strong>%s</strong> meta key."
2566
  msgstr ""
2567
 
2568
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:432
2569
  msgid "No valid records founds."
2570
  msgstr ""
2571
 
2572
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:478
2573
  msgid "Remember to de-activate this add-on once you are done importing!"
2574
  msgstr ""
2575
 
2576
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:510
2577
  msgid "File"
2578
  msgstr ""
2579
 
2580
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:514
2581
  msgid "Maximum allowed upload size is "
2582
  msgstr ""
2583
 
2584
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:514
2585
  msgid ""
2586
  "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
2587
  "Optional columns: <code>mycred_log</code>."
2588
  msgstr ""
2589
 
2590
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:517
2591
  msgid "Identify Users By"
2592
  msgstr ""
2593
 
2594
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:520
2595
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:342
2596
  msgid "ID"
2597
  msgstr ""
2598
 
2599
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:521
2600
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:190
2601
  msgid "Username"
2602
  msgstr ""
2603
 
2604
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:522
2605
  msgid "Email"
2606
  msgstr ""
2607
 
2608
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:529
2609
  msgid "How much is 1 imported value worth?"
2610
  msgstr ""
2611
 
2612
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:534
2613
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:602
2614
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:666
2615
  msgid "Round"
2616
  msgstr ""
2617
 
2618
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:535
2619
  msgid "None"
2620
  msgstr ""
2621
 
2622
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:536
2623
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:604
2624
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:668
2625
  msgid "Round Up"
2626
  msgstr ""
2627
 
2628
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:537
2629
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:605
2630
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:669
2631
  msgid "Round Down"
2632
  msgstr ""
2633
 
2634
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:542
2635
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:610
2636
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:674
2637
  msgid "Precision"
2638
  msgstr ""
2639
 
2640
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:544
2641
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:612
2642
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:676
2643
  msgid ""
2644
  "The optional number of decimal digits to round to. Use zero to round the "
2645
  "nearest whole number."
2646
  msgstr ""
2647
 
2648
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:553
2649
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:627
2650
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:685
2651
  msgid "See the help tab for available template tags. Leave blank to disable."
2652
  msgstr ""
2653
 
2654
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:558
2655
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:632
2656
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:696
2657
  msgid "Run Import"
2658
  msgstr ""
2659
 
2660
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:585
2661
  #, php-format
2662
  msgid "Found %d users with CubePoints."
2663
  msgstr ""
2664
 
2665
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:588
2666
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:652
2667
  msgid "Meta Key"
2668
  msgstr ""
2669
 
2670
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:603
2671
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:667
2672
  msgid "Do not round"
2673
  msgstr ""
2674
 
2675
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:617
2676
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:688
2677
  msgid "After Import"
2678
  msgstr ""
2679
 
2680
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:620
2681
  msgid "Delete users CubePoints balance."
2682
  msgstr ""
2683
 
2684
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:691
2685
  msgid "Delete the old value."
2686
  msgstr ""
2687
 
2688
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:719
2689
  msgid "Failed to get file contents."
2690
  msgstr ""
2691
 
2692
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:724
2693
  msgid "Failed to put file contents."
2694
  msgstr ""
2695
 
2696
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:744
2697
  msgid ""
2698
  "This add-on lets you import %_plural% either though a CSV-file or from your "
2699
  "database. Remember that the import can take time depending on your file size "
2700
  "or the number of users being imported."
2701
  msgstr ""
2702
 
2703
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:750
2704
  msgid "CSV Import"
2705
  msgstr ""
2706
 
2707
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:751
2708
  msgid ""
2709
  "Imports using a comma-separated values file requires the following columns:"
2710
  msgstr ""
2711
 
2712
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:752
2713
  msgid ""
2714
  "Column identifing the user. All rows must identify the user the same way, "
2715
  "either using an ID, Username (user_login) or email. Users that can not be "
2716
  "found will be ignored."
2717
  msgstr ""
2718
 
2719
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:753
2720
  msgid ""
2721
  "Column with the amount to be imported. If set, an exchange rate is applied "
2722
  "to this value before import."
2723
  msgstr ""
2724
 
2725
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:754
2726
  msgid ""
2727
  "Optionally you can also use the <code>mycred_log</code> column to pre-define "
2728
  "the log entry for each import."
2729
  msgstr ""
2730
 
2731
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:758
2732
  msgid "Cubepoints"
2733
  msgstr ""
2734
 
2735
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:760
2736
  msgid "Cubepoints Import"
2737
  msgstr ""
2738
 
2739
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:761
2740
  msgid ""
2741
  "When this page loads, the importer will automatically check if you have been "
2742
  "using Cubepoints. If you have, you can import these with the option to "
2744
  "clean."
2745
  msgstr ""
2746
 
2747
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:762
2748
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:772
2749
  msgid ""
2750
  "Before a value is imported, you can apply an exchange rate. To import "
2751
  "without changing the value, use 1 as the exchange rate."
2752
  msgstr ""
2753
 
2754
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:763
2755
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:773
2756
  msgid ""
2757
  "You can select to add a log entry for each import or leave the template "
2758
  "empty to skip."
2759
  msgstr ""
2760
 
2761
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:764
2762
  msgid ""
2763
  "The Cubepoints importer will automatically disable itself if no Cubepoints "
2764
  "installation exists."
2765
  msgstr ""
2766
 
2767
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:770
2768
  msgid "Custom User Meta Import"
2769
  msgstr ""
2770
 
2771
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:771
2772
  msgid ""
2773
  "You can import any type of points that have previously been saved in your "
2774
  "database. All you need is the meta key under which it has been saved."
2775
  msgstr ""
2776
 
2777
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/import/myCRED-addon-import.php:774
2778
  msgid ""
2779
  "Please note that the meta key is case sensitive and can not contain "
2780
  "whitespaces!"
2781
  msgstr ""
2782
 
2783
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:12
2784
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:183
2785
+ msgid "Notifications"
2786
+ msgstr ""
2787
+
2788
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:13
2789
+ msgid "Notify your users when their balances changes."
2790
+ msgstr ""
2791
+
2792
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:185
2793
+ msgid "Styling"
2794
+ msgstr ""
2795
+
2796
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:189
2797
+ msgid "Use the included CSS Styling for notifications."
2798
+ msgstr ""
2799
+
2800
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:196
2801
+ msgid ""
2802
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
2803
+ msgstr ""
2804
+
2805
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:199
2806
+ msgid "Transient Lifespan"
2807
+ msgstr ""
2808
+
2809
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:203
2810
+ msgid ""
2811
+ "The number of days a users notification is saved before being automatically "
2812
+ "deleted."
2813
+ msgstr ""
2814
+
2815
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:206
2816
+ msgid "Duration"
2817
+ msgstr ""
2818
+
2819
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/notifications/myCRED-addon-notifications.php:210
2820
+ msgid ""
2821
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2822
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2823
+ "second."
2824
+ msgstr ""
2825
+
2826
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:12
2827
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:155
2828
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:161
2829
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:167
2830
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:691
2831
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:883
2832
  msgid "Ranks"
2833
  msgstr ""
2834
 
2835
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:13
2836
  msgid ""
2837
+ "Create ranks for users reaching a certain number of points with the option "
2838
+ "to add logos for each rank."
2839
  msgstr ""
2840
 
2841
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:156
2842
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:386
2843
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:403
2844
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:499
2845
  msgid "Rank"
2846
  msgstr ""
2847
 
2848
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:158
2849
  msgid "Add New Rank"
2850
  msgstr ""
2851
 
2852
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:159
2853
  msgid "Edit Rank"
2854
  msgstr ""
2855
 
2856
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:160
2857
  msgid "New Rank"
2858
  msgstr ""
2859
 
2860
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:162
2861
  msgid "View Rank"
2862
  msgstr ""
2863
 
2864
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:163
2865
  msgid "Search Ranks"
2866
  msgstr ""
2867
 
2868
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:164
2869
  msgid "No ranks found"
2870
  msgstr ""
2871
 
2872
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:165
2873
  msgid "No ranks found in Trash"
2874
  msgstr ""
2875
 
2876
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:232
2877
  #, php-format
2878
  msgid "Completed - Total of %d users effected"
2879
  msgstr ""
2880
 
2881
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:234
2882
  msgid "Log is Empty"
2883
  msgstr ""
2884
 
2885
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:428
2886
  msgid "Newbie"
2887
  msgstr ""
2888
 
2889
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:459
2890
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:462
2891
  #, php-format
2892
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2893
  msgstr ""
2894
 
2895
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:464
2896
  msgid "Rank Activated"
2897
  msgstr ""
2898
 
2899
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:465
2900
  msgid "Rank Saved"
2901
  msgstr ""
2902
 
2903
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:466
2904
  #, php-format
2905
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2906
  msgstr ""
2907
 
2908
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:468
2909
  #, php-format
2910
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2911
  msgstr ""
2912
 
2913
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:525
2914
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:580
2915
  msgid "Rank Title"
2916
  msgstr ""
2917
 
2918
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:526
2919
  msgid "Logo"
2920
  msgstr ""
2921
 
2922
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:527
2923
  msgid "Requirement"
2924
  msgstr ""
2925
 
2926
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:528
2927
  msgid "Users"
2928
  msgstr ""
2929
 
2930
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:544
2931
  msgid "No Logo Set"
2932
  msgstr ""
2933
 
2934
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:553
2935
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:558
2936
  msgid "Any Value"
2937
  msgstr ""
2938
 
2939
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:560
2940
  msgid "Maximum %plural%"
2941
  msgstr ""
2942
 
2943
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:593
2944
  msgid "Rank Settings"
2945
  msgstr ""
2946
 
2947
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:615
2948
  msgid "Minimum %plural% to reach this rank"
2949
  msgstr ""
2950
 
2951
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:619
2952
  msgid "Maximum %plural% to be included in this rank"
2953
  msgstr ""
2954
 
2955
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:624
2956
  msgid "All Published Ranks"
2957
  msgstr ""
2958
 
2959
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:631
2960
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:633
2961
  msgid "Not Set"
2962
  msgstr ""
2963
 
2964
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:638
2965
  msgid "No Ranks found"
2966
  msgstr ""
2967
 
2968
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:693
2969
  msgid "Rank Features"
2970
  msgstr ""
2971
 
2972
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:697
2973
  msgid "%plural% requirement"
2974
  msgstr ""
2975
 
2976
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:698
2977
  msgid "Featured Image (Logo)"
2978
  msgstr ""
2979
 
2980
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:699
2981
  msgid "Content"
2982
  msgstr ""
2983
 
2984
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:700
2985
  msgid "Excerpt"
2986
  msgstr ""
2987
 
2988
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:701
2989
  msgid "Comments"
2990
  msgstr ""
2991
 
2992
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:702
2993
  msgid "Page Attributes"
2994
  msgstr ""
2995
 
2996
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:703
2997
  msgid "Custom Fields"
2998
  msgstr ""
2999
 
3000
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:706
3001
  msgid "Public"
3002
  msgstr ""
3003
 
3004
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:710
3005
  msgid ""
3006
  "If you want to create a template archive for each rank, you must select to "
3007
  "have ranks public. Defaults to disabled."
3008
  msgstr ""
3009
 
3010
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:713
3011
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:886
3012
  msgid "Rank Basis"
3013
  msgstr ""
3014
 
3015
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:716
3016
  msgid "Users are ranked according to their current balance."
3017
  msgstr ""
3018
 
3019
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:719
3020
  msgid ""
3021
  "Users are ranked according to the total amount of %_plural% they have "
3022
  "accumulated."
3023
  msgstr ""
3024
 
3025
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:723
3026
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:728
3027
  msgid "Calculate Totals"
3028
  msgstr ""
3029
 
3030
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:726
3031
  msgid ""
3032
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3033
  "the users current balance will be used as a starting point."
3034
  msgstr ""
3035
 
3036
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:726
3037
  msgid ""
3038
  "Once a users total has been calculated, they will be assigned to their "
3039
  "appropriate roles. For this reason, it is highly recommended that you first "
3040
  "setup your ranks!"
3041
  msgstr ""
3042
 
3043
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:727
3044
  msgid ""
3045
  "Depending on your log size and number of users this process may take a "
3046
  "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3047
  "until this is completed!"
3048
  msgstr ""
3049
 
3050
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:732
3051
  msgid "Archive URL"
3052
  msgstr ""
3053
 
3054
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:736
3055
  msgid "Ignored if Ranks are not public"
3056
  msgstr ""
3057
 
3058
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:739
3059
  msgid "Display Order"
3060
  msgstr ""
3061
 
3062
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:746
3063
  msgid "Ascending - Lowest rank to highest"
3064
  msgstr ""
3065
 
3066
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:747
3067
  msgid "Descending - Highest rank to lowest"
3068
  msgstr ""
3069
 
3070
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:756
3071
  msgid ""
3072
  "Select in what order ranks should be displayed in your admin area and/or "
3073
  "front if ranks are \"Public\""
3074
  msgstr ""
3075
 
3076
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:772
3077
  msgid "Rank in BuddyPress"
3078
  msgstr ""
3079
 
3080
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:840
3081
  msgid "Script Communication Error"
3082
  msgstr ""
3083
 
3084
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:885
3085
  msgid ""
3086
  "You can create ranks according to the amount of points a user has. By "
3087
  "default, ranks are only visible in widgets and shortcodes however it is "
3089
  "specific ones."
3090
  msgstr ""
3091
 
3092
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:887
3093
  msgid ""
3094
  "As of version 1.2, you can select to rank users according to their current "
3095
  "balance or the total amount of %_plural% they have accumulated. This is "
3097
  "%_plural% to pay for items in your store or event tickets."
3098
  msgstr ""
3099
 
3100
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:889
3101
  msgid ""
3102
  "Ranks are just another custom post type which means that you can, if you "
3103
  "select to make Ranks Public, create custom template files for ranks in your "
3104
  "theme folder."
3105
  msgstr ""
3106
 
3107
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:890
3108
  #, php-format
3109
  msgid ""
3110
  "For more information on Templates for Custom Post Types visit the <a href="
3111
  "\"%s\">WordPress Codex</a>."
3112
  msgstr ""
3113
 
3114
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:891
3115
  msgid "Changing URL Slug"
3116
  msgstr ""
3117
 
3118
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:892
3119
  msgid "You can change the URL slug used for ranks to any URL friendly value."
3120
  msgstr ""
3121
 
3122
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/myCRED-addon-ranks.php:893
3123
  msgid ""
3124
  "If you are using a custom permalink structure and you make ranks public or "
3125
  "change the slug, you will need to visit your permalink settings page and "
3127
  "a 404 error message when trying to view a rank archive page."
3128
  msgstr ""
3129
 
3130
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-functions.php:148
3131
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-functions.php:154
3132
  msgid "No Rank"
3133
  msgstr ""
3134
 
3135
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-shortcodes.php:57
3136
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-shortcodes.php:132
3137
  msgid "No users found with this rank"
3138
  msgstr ""
3139
 
3140
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-shortcodes.php:62
3141
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:144
3142
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:147
3143
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:206
3144
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:255
3145
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:259
3146
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:263
3147
  msgid "error"
3148
  msgstr ""
3149
 
3150
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/ranks/includes/mycred-rank-shortcodes.php:62
3151
  msgid "Rank ID is required!"
3152
  msgstr ""
3153
 
3154
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:12
3155
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:304
3156
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1052
3157
  msgid "Sell Content"
3158
  msgstr ""
3159
 
3160
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:13
3161
  msgid ""
3162
  "This add-on allows you to sell posts, pages or any public post types on your "
3163
  "website. You can either sell the entire content or using our shortcode, sell "
3164
  "parts of your content allowing you to offer \"teasers\"."
3165
  msgstr ""
3166
 
3167
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:42
3168
  msgid "<p>Buy this %post_type% for only %price% %buy_button%</p>"
3169
  msgstr ""
3170
 
3171
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:43
3172
  msgid ""
3173
  "<p><a href=\"%login_url_here%\">Login</a> to buy access to this %post_type%."
3174
  "</p>"
3175
  msgstr ""
3176
 
3177
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:44
3178
  msgid ""
3179
  "<p>You do not have enough %plural% to buy access to this %post_type%.</p>\n"
3180
  "<p><strong>Price</strong>: %price%</p>"
3181
  msgstr ""
3182
 
3183
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:54
3184
  msgid "Purchase of %link_with_title%"
3185
  msgstr ""
3186
 
3187
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:55
3188
  msgid "Sale of %link_with_title%"
3189
  msgstr ""
3190
 
3191
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:72
3192
  msgid "Hours"
3193
  msgstr ""
3194
 
3195
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:214
3196
  msgid "You can not buy this content."
3197
  msgstr ""
3198
 
3199
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:277
3200
  msgid "Error. Try Again"
3201
  msgstr ""
3202
 
3203
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:299
3204
  msgid "No Payout. Just charge."
3205
  msgstr ""
3206
 
3207
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:300
3208
  msgid "Pay Content Author."
3209
  msgstr ""
3210
 
3211
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:306
3212
  msgid "Post Types"
3213
  msgstr ""
3214
 
3215
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:310
3216
  msgid "Comma separated list of post types that can be sold."
3217
  msgstr ""
3218
 
3219
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:327
3220
  msgid "Percentage to pay Author"
3221
  msgstr ""
3222
 
3223
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:329
3224
  msgid ""
3225
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3226
  "authors are not paid."
3227
  msgstr ""
3228
 
3229
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:337
3230
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1055
3231
  msgid "Defaults"
3232
  msgstr ""
3233
 
3234
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:345
3235
  msgid "Allow authors to change price."
3236
  msgstr ""
3237
 
3238
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:354
3239
  msgid "Allow authors to change button label."
3240
  msgstr ""
3241
 
3242
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:358
3243
  msgid "Purchases expire after"
3244
  msgstr ""
3245
 
3246
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:360
3247
  msgid "Use zero for permanent sales."
3248
  msgstr ""
3249
 
3250
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:363
3251
  msgid "Sale Template for non members"
3252
  msgstr ""
3253
 
3254
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:367
3255
  msgid ""
3256
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3257
  "be logged in to buy content!"
3258
  msgstr ""
3259
 
3260
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:368
3261
  msgid ""
3262
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3263
  "%link_with_title%, %price%"
3264
  msgstr ""
3265
 
3266
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:371
3267
  msgid "Sale Template for members"
3268
  msgstr ""
3269
 
3270
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:375
3271
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:383
3272
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3273
  msgstr ""
3274
 
3275
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:376
3276
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:384
3277
  msgid ""
3278
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url%, "
3279
  "%link_with_title%, %buy_button%, %price%"
3280
  msgstr ""
3281
 
3282
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:379
3283
  msgid "Insufficient funds template"
3284
  msgstr ""
3285
 
3286
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:387
3287
  msgid "Log template for Purchases"
3288
  msgstr ""
3289
 
3290
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:391
3291
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:398
3292
  msgid ""
3293
  "Available template tags are: %singular%, %plural%, %post_title%, %post_url% "
3294
  "or %link_with_title%"
3295
  msgstr ""
3296
 
3297
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:394
3298
  msgid "Log template for Sales"
3299
  msgstr ""
3300
 
3301
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:450
3302
  msgid "Sell This"
3303
  msgstr ""
3304
 
3305
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:499
3306
  msgid " Sell Content needs to be setup before you can use this feature."
3307
  msgstr ""
3308
 
3309
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:502
3310
  msgid "Setup add-on"
3311
  msgstr ""
3312
 
3313
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:502
3314
  msgid "Lets do it"
3315
  msgstr ""
3316
 
3317
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:531
3318
  msgid "Enable sale of this "
3319
  msgstr ""
3320
 
3321
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:545
3322
  msgid "Purchase expires after"
3323
  msgstr ""
3324
 
3325
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:791
3326
  msgid "Thank you for your purchase!"
3327
  msgstr ""
3328
 
3329
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:872
3330
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:952
3331
  msgid "The following content is set for sale:"
3332
  msgstr ""
3333
 
3334
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:970
3335
  msgid "No purchases found"
3336
  msgstr ""
3337
 
3338
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1007
3339
  msgid "Purchased"
3340
  msgstr ""
3341
 
3342
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1054
3343
  msgid ""
3344
  "This add-on lets you sell either entire contents or parts of it. You can "
3345
  "select if you want to just charge users or share a percentage of the sale "
3346
  "with the post author."
3347
  msgstr ""
3348
 
3349
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1056
3350
  msgid ""
3351
  "The default price and button label is applied to all content that is set for "
3352
  "sale. You can select if you want to enforce these settings or let the "
3353
  "content authors set their own."
3354
  msgstr ""
3355
 
3356
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/sell-content/myCRED-addon-sell-content.php:1058
3357
  msgid ""
3358
  "You can either sell entire posts via the Sell Content Meta Box or by using "
3359
  "the <code>mycred_sell_this</code> shortcode.<br />For more information on "
3360
  "how to use the shortcode, please visit the"
3361
  msgstr ""
3362
 
3363
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:12
3364
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:50
3365
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:488
3366
  msgid "Transfer"
3367
  msgstr ""
3368
 
3369
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:13
3370
  msgid ""
3371
  "Allow your users to send or \"donate\" points to other members by either "
3372
  "using the mycred_transfer shortcode or the myCRED Transfer widget."
3373
  msgstr ""
3374
 
3375
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:43
3376
  msgid "You do not have enough %plural% to send."
3377
  msgstr ""
3378
 
3379
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:44
3380
  msgid "You have exceeded your %limit% transfer limit."
3381
  msgstr ""
3382
 
3383
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:143
3384
  msgid "Transaction completed."
3385
  msgstr ""
3386
 
3387
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:144
3388
  msgid ""
3389
  "Security token could not be verified. Please contact your site administrator!"
3390
  msgstr ""
3391
 
3392
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:145
3393
  msgid "Communications error. Please try again later."
3394
  msgstr ""
3395
 
3396
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:146
3397
  msgid "Recipient not found. Please try again."
3398
  msgstr ""
3399
 
3400
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:147
3401
  msgid "Transaction declined by recipient."
3402
  msgstr ""
3403
 
3404
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:148
3405
  msgid "Incorrect amount. Please try again."
3406
  msgstr ""
3407
 
3408
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:149
3409
  msgid ""
3410
  "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3411
  "this has been done!"
3412
  msgstr ""
3413
 
3414
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:150
3415
  msgid "Insufficient funds. Please enter a lower amount."
3416
  msgstr ""
3417
 
3418
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:151
3419
  msgid "Transfer Limit exceeded."
3420
  msgstr ""
3421
 
3422
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:152
3423
  msgid ""
3424
  "The request amount will exceed your transfer limit. Please try again with a "
3425
  "lower amount!"
3426
  msgstr ""
3427
 
3428
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:177
3429
  msgid "No limits."
3430
  msgstr ""
3431
 
3432
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:178
3433
  msgid "Impose daily limit."
3434
  msgstr ""
3435
 
3436
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:179
3437
  msgid "Impose weekly limit."
3438
  msgstr ""
3439
 
3440
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:183
3441
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:588
3442
  msgid "Transfer %plural%"
3443
  msgstr ""
3444
 
3445
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:185
3446
  msgid "Log template for sending"
3447
  msgstr ""
3448
 
3449
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:192
3450
  msgid "Log template for receiving"
3451
  msgstr ""
3452
 
3453
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:199
3454
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:992
3455
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1235
3456
  msgid "Limits"
3457
  msgstr ""
3458
 
3459
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:216
3460
  msgid "Maximum Amount"
3461
  msgstr ""
3462
 
3463
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:218
3464
  msgid "This amount is ignored if no limits are imposed."
3465
  msgstr ""
3466
 
3467
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:221
3468
  msgid "Form Templates"
3469
  msgstr ""
3470
 
3471
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:224
3472
  msgid "Not logged in Template"
3473
  msgstr ""
3474
 
3475
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:226
3476
  msgid ""
3477
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3478
  "elements allowed!"
3479
  msgstr ""
3480
 
3481
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:230
3482
  msgid "Balance Template"
3483
  msgstr ""
3484
 
3485
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:232
3486
  msgid ""
3487
  "Template to use when displaying the users balance (if included). No HTML "
3488
  "elements allowed!"
3489
  msgstr ""
3490
 
3491
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:236
3492
  msgid "Limit Template"
3493
  msgstr ""
3494
 
3495
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:238
3496
  msgid ""
3497
  "Template to use when displaying limits (if used). No HTML elements allowed!"
3498
  msgstr ""
3499
 
3500
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:242
3501
  msgid "Button Template"
3502
  msgstr ""
3503
 
3504
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:244
3505
  msgid "Send Transfer button template. No HTML elements allowed!"
3506
  msgstr ""
3507
 
3508
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:247
3509
  msgid "Error Messages"
3510
  msgstr ""
3511
 
3512
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:250
3513
  msgid "Balance to low to send."
3514
  msgstr ""
3515
 
3516
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:252
3517
  msgid ""
3518
  "Text to show when a users balance is to low for transfers. Leave empty to "
3519
  "hide. No HTML elements allowed!"
3520
  msgstr ""
3521
 
3522
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:256
3523
  msgid "Transfer Limit Reached."
3524
  msgstr ""
3525
 
3526
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:258
3527
  msgid ""
3528
  "Text to show when a user has reached their transfer limit (if used). Leave "
3529
  "empty to hide. No HTML elements allowed!"
3530
  msgstr ""
3531
 
3532
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:490
3533
  msgid ""
3534
  "This add-on lets your users transfer %_plural% to each other. Members who "
3535
  "are set to be excluded can neither send or receive %_plural%."
3536
  msgstr ""
3537
 
3538
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:491
3539
  msgid "Transfer Limit"
3540
  msgstr ""
3541
 
3542
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:492
3543
  msgid ""
3544
  "You can impose a daily-, weekly- or monthly transfer limit for each user. "
3545
  "Note, that this transfer limit is imposed on everyone who are not excluded "
3546
  "from using myCRED."
3547
  msgstr ""
3548
 
3549
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:494
3550
  msgid ""
3551
  "Transfers can be made by either using the <code>mycred_transfer</code> "
3552
  "shortcode or via the myCRED Transfer Widget.<br />For more information on "
3553
  "how to use the shortcode, please visit the"
3554
  msgstr ""
3555
 
3556
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:517
3557
  msgid "Allow transfers between users."
3558
  msgstr ""
3559
 
3560
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:519
3561
  #, php-format
3562
  msgid "%s Transfer"
3563
  msgstr ""
3564
 
3565
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:534
3566
  msgid "The myCRED Transfer add-on has not yet been setup!"
3567
  msgstr ""
3568
 
3569
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:599
3570
  msgid "Show users balance"
3571
  msgstr ""
3572
 
3573
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:603
3574
  msgid "Show users limit"
3575
  msgstr ""
3576
 
3577
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:726
3578
  msgid "To:"
3579
  msgstr ""
3580
 
3581
+ #: /Users/gabriel/Repositories/mycred/trunk/addons/transfer/myCRED-addon-transfer.php:730
3582
  msgid "Amount:"
3583
  msgstr ""
3584
 
3585
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:68
3586
  msgid "User is excluded"
3587
  msgstr ""
3588
 
3589
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:73
3590
  msgid "Log Entry can not be empty"
3591
  msgstr ""
3592
 
3593
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:77
3594
  msgid "Amount can not be zero"
3595
  msgstr ""
3596
 
3597
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:173
3598
  msgid "Excluded"
3599
  msgstr ""
3600
 
3601
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:180
3602
  msgid "History"
3603
  msgstr ""
3604
 
3605
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:182
3606
  msgid "Adjust"
3607
  msgstr ""
3608
 
3609
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:233
3610
  #, php-format
3611
  msgid "My current %singular% balance"
3612
  msgstr ""
3613
 
3614
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:256
3615
  msgid "Adjust Your Balance"
3616
  msgstr ""
3617
 
3618
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:258
3619
  msgid "Adjust Users Balance"
3620
  msgstr ""
3621
 
3622
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:265
3623
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:336
3624
  msgid "required"
3625
  msgstr ""
3626
 
3627
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:267
3628
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:338
3629
  msgid "optional"
3630
  msgstr ""
3631
 
3632
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:273
3633
  msgid "Log description for adjustment"
3634
  msgstr ""
3635
 
3636
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:274
3637
  msgid "Update"
3638
  msgstr ""
3639
 
3640
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:275
3641
  msgid "Description is required!"
3642
  msgstr ""
3643
 
3644
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:280
3645
  msgid "Users Current Balance"
3646
  msgstr ""
3647
 
3648
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:347
3649
  msgid "A positive or negative value"
3650
  msgstr ""
3651
 
3652
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-admin.php:349
3653
  msgid "Update Balance"
3654
  msgstr ""
3655
 
3656
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:313
3657
  msgid "Deleted"
3658
  msgstr ""
3659
 
3660
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:448
3661
  msgid "Deleted Item"
3662
  msgstr ""
3663
 
3664
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:1212
3665
  msgid "ref empty"
3666
  msgstr ""
3667
 
3668
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:1220
3669
  msgid "incorrect user id format"
3670
  msgstr ""
3671
 
3672
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:1233
3673
  msgid "incorrect unix timestamp (from):"
3674
  msgstr ""
3675
 
3676
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-functions.php:1242
3677
  msgid "incorrect unix timestamp (to):"
3678
  msgstr ""
3679
 
3680
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:35
3681
  msgid "myCRED requires WordPress 3.1 or higher. Version detected:"
3682
  msgstr ""
3683
 
3684
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:40
3685
  msgid "myCRED requires PHP 5.2.0 or higher. Version detected: "
3686
  msgstr ""
3687
 
3688
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:45
3689
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3690
  msgstr ""
3691
 
3692
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:50
3693
  msgid ""
3694
  "Sorry but your WordPress installation does not reach the minimum "
3695
  "requirements for running myCRED. The following errors were given:"
3696
  msgstr ""
3697
 
3698
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:269
3699
  msgid "myCRED needs your attention."
3700
  msgstr ""
3701
 
3702
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:269
3703
  msgid "Run Setup"
3704
  msgstr ""
3705
 
3706
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:281
3707
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:282
3708
  msgid "myCRED Setup"
3709
  msgstr ""
3710
 
3711
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:421
3712
  msgid "Step"
3713
  msgstr ""
3714
 
3715
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:444
3716
  msgid ""
3717
  "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3718
  "points format, layout and security settings."
3719
  msgstr ""
3720
 
3721
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:445
3722
  msgid "Begin Setup"
3723
  msgstr ""
3724
 
3725
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:502
3726
  msgid "Select the format you want to use for your points."
3727
  msgstr ""
3728
 
3729
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:503
3730
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:199
3731
  msgid "Format"
3732
  msgstr ""
3733
 
3734
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:506
3735
  msgid "Separators"
3736
  msgstr ""
3737
 
3738
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:516
3739
  msgid "Decimals"
3740
  msgstr ""
3741
 
3742
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:518
3743
  msgid "Use zero for no decimals."
3744
  msgstr ""
3745
 
3746
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:521
3747
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:75
3748
  msgid "Presentation"
3749
  msgstr ""
3750
 
3751
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:524
3752
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:62
3753
  msgid "Name (Singular)"
3754
  msgstr ""
3755
 
3756
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:528
3757
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:67
3758
  msgid "Name (Plural)"
3759
  msgstr ""
3760
 
3761
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:534
3762
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:78
3763
  msgid "Prefix"
3764
  msgstr ""
3765
 
3766
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:542
3767
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:86
3768
  msgid "Suffix"
3769
  msgstr ""
3770
 
3771
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:547
3772
  msgid "Cancel Setup"
3773
  msgstr ""
3774
 
3775
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:547
3776
  msgid "Cancel"
3777
  msgstr ""
3778
 
3779
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:547
3780
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:627
3781
  msgid "Next"
3782
  msgstr ""
3783
 
3784
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:576
3785
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:94
3786
  msgid "Security"
3787
  msgstr ""
3788
 
3789
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:579
3790
  msgid "Edit Settings Capability"
3791
  msgstr ""
3792
 
3793
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:583
3794
  msgid "Edit Users %plural% Capability"
3795
  msgstr ""
3796
 
3797
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:591
3798
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:111
3799
  msgid "Exclude those who can \"Edit Settings\"."
3800
  msgstr ""
3801
 
3802
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:595
3803
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:115
3804
  msgid "Exclude those who can \"Edit Users %plural%\"."
3805
  msgstr ""
3806
 
3807
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:598
3808
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:119
3809
  msgid "Exclude the following user IDs:"
3810
  msgstr ""
3811
 
3812
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:602
3813
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:124
3814
  msgid "Rankings"
3815
  msgstr ""
3816
 
3817
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:606
3818
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:128
3819
  msgid "Update rankings each time a users balance changes."
3820
  msgstr ""
3821
 
3822
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:610
3823
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:132
3824
  msgid "Update rankings once a day."
3825
  msgstr ""
3826
 
3827
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:614
3828
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:136
3829
  msgid "Update rankings once a week."
3830
  msgstr ""
3831
 
3832
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:618
3833
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:140
3834
  msgid "Update rankings on a specific date."
3835
  msgstr ""
3836
 
3837
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:622
3838
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:144
3839
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:813
3840
  msgid "Date"
3841
  msgstr ""
3842
 
3843
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:646
3844
  msgid "Ready"
3845
  msgstr ""
3846
 
3847
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:647
3848
  msgid "Almost done! Click the button below to finish this setup."
3849
  msgstr ""
3850
 
3851
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-install.php:648
3852
  msgid "Install & Run"
3853
  msgstr ""
3854
 
3855
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:62
3856
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:63
3857
  msgid "Network Settings"
3858
  msgstr ""
3859
 
3860
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:128
3861
  msgid "Network"
3862
  msgstr ""
3863
 
3864
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:133
3865
  msgid "Network Settings Updated"
3866
  msgstr ""
3867
 
3868
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:135
3869
  #, php-format
3870
  msgid "Configure network settings for %s."
3871
  msgstr ""
3872
 
3873
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:141
3874
  msgid "Master Template"
3875
  msgstr ""
3876
 
3877
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:145
3878
  msgid "Yes"
3879
  msgstr ""
3880
 
3881
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:149
3882
  msgid "No"
3883
  msgstr ""
3884
 
3885
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:152
3886
  #, php-format
3887
  msgid "If enabled, your main site's %s setup will be used for all other sites."
3888
  msgstr ""
3889
 
3890
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:155
3891
  msgid "Site Block"
3892
  msgstr ""
3893
 
3894
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:159
3895
  #, php-format
3896
  msgid "Comma separated list of blog ids where %s is to be disabled."
3897
  msgstr ""
3898
 
3899
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-network.php:168
3900
  msgid "Save Network Settings"
3901
  msgstr ""
3902
 
3903
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:67
3904
  msgid "Leaderboard is empty."
3905
  msgstr ""
3906
 
3907
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:144
3908
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:255
3909
  msgid "Amount missing!"
3910
  msgstr ""
3911
 
3912
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:147
3913
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:263
3914
  msgid "Log Template Missing!"
3915
  msgstr ""
3916
 
3917
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:206
3918
  msgid "Anchor missing URL!"
3919
  msgstr ""
3920
 
3921
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:259
3922
  msgid "User ID missing for recipient."
3923
  msgstr ""
3924
 
3925
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-shortcodes.php:317
3926
  msgid "A video ID is required for this shortcode"
3927
  msgstr ""
3928
 
3929
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:19
3930
  #, php-format
3931
  msgid "Show the current users %s balance"
3932
  msgstr ""
3933
 
3934
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:21
3935
  #, php-format
3936
  msgid "%s Balance"
3937
  msgstr ""
3938
 
3939
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:155
3940
  msgid "My Balance"
3941
  msgstr ""
3942
 
3943
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:166
3944
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3945
  msgstr ""
3946
 
3947
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:190
3948
  msgid "Layout"
3949
  msgstr ""
3950
 
3951
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:192
3952
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:215
3953
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:225
3954
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:374
3955
  msgid "See the help tab for available template tags."
3956
  msgstr ""
3957
 
3958
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:197
3959
  msgid "Include users ranking"
3960
  msgstr ""
3961
 
3962
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:201
3963
  msgid ""
3964
  "This will be appended after the balance. See the help tab for available "
3965
  "template tags."
3966
  msgstr ""
3967
 
3968
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:207
3969
  msgid "Include history"
3970
  msgstr ""
3971
 
3972
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:209
3973
  msgid "History Title"
3974
  msgstr ""
3975
 
3976
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:211
3977
  msgid "Number of entires"
3978
  msgstr ""
3979
 
3980
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:213
3981
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:372
3982
  msgid "Row layout"
3983
  msgstr ""
3984
 
3985
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:221
3986
  msgid "Show message when not logged in"
3987
  msgstr ""
3988
 
3989
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:223
3990
  msgid "Message"
3991
  msgstr ""
3992
 
3993
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:296
3994
  #, php-format
3995
  msgid "Show a list of users sorted by their %s balance"
3996
  msgstr ""
3997
 
3998
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:298
3999
  #, php-format
4000
  msgid "%s List"
4001
  msgstr ""
4002
 
4003
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:352
4004
  msgid "Leaderboard"
4005
  msgstr ""
4006
 
4007
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:365
4008
  msgid "Visible to non-members"
4009
  msgstr ""
4010
 
4011
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:368
4012
  msgid "Number of users"
4013
  msgstr ""
4014
 
4015
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:377
4016
  msgid "Offset"
4017
  msgstr ""
4018
 
4019
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:379
4020
  msgid "Optional offset of order. Use zero to return the first in the list."
4021
  msgstr ""
4022
 
4023
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:382
4024
  msgid "Order"
4025
  msgstr ""
4026
 
4027
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:386
4028
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:197
4029
  msgid "Ascending"
4030
  msgstr ""
4031
 
4032
+ #: /Users/gabriel/Repositories/mycred/trunk/includes/mycred-widgets.php:387
4033
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:197
4034
  msgid "Descending"
4035
  msgstr ""
4036
 
4037
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:23
4038
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:24
4039
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:25
4040
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:264
4041
  msgid "Add-ons"
4042
  msgstr ""
4043
 
4044
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:257
4045
  msgid "Add-on Activated"
4046
  msgstr ""
4047
 
4048
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:259
4049
  msgid "Add-on Deactivated"
4050
  msgstr ""
4051
 
4052
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:265
4053
  msgid "Add-ons can expand your current installation with further features."
4054
  msgstr ""
4055
 
4056
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:283
4057
+ #, php-format
4058
+ msgid "You can find more add-ons in our %s."
4059
+ msgstr ""
4060
+
4061
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:283
4062
+ msgid "online store"
4063
+ msgstr ""
4064
+
4065
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:304
4066
  msgid "Deactivate Add-on"
4067
  msgstr ""
4068
 
4069
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:305
4070
  msgid "Deactivate"
4071
  msgstr ""
4072
 
4073
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:310
4074
  msgid "Activate Add-on"
4075
  msgstr ""
4076
 
4077
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:311
4078
  msgid "Activate"
4079
  msgstr ""
4080
 
4081
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:328
4082
  msgid "Version"
4083
  msgstr ""
4084
 
4085
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:331
4086
  msgid "By"
4087
  msgstr ""
4088
 
4089
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:331
4090
  msgid "View Authors Website"
4091
  msgstr ""
4092
 
4093
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:334
4094
  msgid "View Add-ons Website"
4095
  msgstr ""
4096
 
4097
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-addons.php:334
4098
  msgid "Visit Website"
4099
  msgstr ""
4100
 
4101
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:49
4102
  msgid "Facebook"
4103
  msgstr ""
4104
 
4105
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:50
4106
  msgid "Google Plus"
4107
  msgstr ""
4108
 
4109
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:51
4110
  msgid "Support Forum"
4111
  msgstr ""
4112
 
4113
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:57
4114
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:198
4115
  msgid "Core Settings"
4116
  msgstr ""
4117
 
4118
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:59
4119
  msgid "Name"
4120
  msgstr ""
4121
 
4122
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:64
4123
  msgid "Accessible though the %singular% template tag."
4124
  msgstr ""
4125
 
4126
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:69
4127
  msgid "Accessible though the %plural% template tag."
4128
  msgstr ""
4129
 
4130
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:72
4131
  msgid "Tip"
4132
  msgstr ""
4133
 
4134
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:72
4135
  msgid ""
4136
  "Adding an underscore at the beginning of template tag for names will return "
4137
  "them in lowercase. i.e. %_singular%"
4138
  msgstr ""
4139
 
4140
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:90
4141
  msgid "Separator"
4142
  msgstr ""
4143
 
4144
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:97
4145
  msgid "Edit Settings"
4146
  msgstr ""
4147
 
4148
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:99
4149
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:104
4150
  msgid "Capability to check for."
4151
  msgstr ""
4152
 
4153
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:102
4154
  msgid "Edit Users %plural%"
4155
  msgstr ""
4156
 
4157
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-general.php:121
4158
  msgid "Comma separated list of user ids to exclude. No spaces allowed!"
4159
  msgstr ""
4160
 
4161
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:52
4162
  msgid "The Log"
4163
  msgstr ""
4164
 
4165
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:54
4166
  msgid ""
4167
  "myCRED logs everything giving you a complete overview of %_plural% awarded "
4168
  "or deducted from your users. The Log page can be filtered by user, date or "
4169
  "reference and we have included a search function for you."
4170
  msgstr ""
4171
 
4172
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:55
4173
  msgid ""
4174
  "You can select how many log entries you want to show under \"Screen Options"
4175
  "\". By default you will be shown 10 entries."
4176
  msgstr ""
4177
 
4178
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:56
4179
  msgid "Filter by Date"
4180
  msgstr ""
4181
 
4182
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:57
4183
  msgid ""
4184
  "You can select to show log entries for: Today, Yesterday, This Week or This "
4185
  "Month."
4186
  msgstr ""
4187
 
4188
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:58
4189
  msgid "Filter by Reference"
4190
  msgstr ""
4191
 
4192
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:59
4193
  msgid ""
4194
  "Each time a log entry is made a reference is used to identify where or why "
4195
  "points were awarded or deducted."
4196
  msgstr ""
4197
 
4198
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:60
4199
  msgid "Filter by User"
4200
  msgstr ""
4201
 
4202
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:61
4203
  msgid "Show log entries for a particular username."
4204
  msgstr ""
4205
 
4206
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:73
4207
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:28
4208
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:29
4209
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:30
4210
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:244
4211
  msgid "Hooks"
4212
  msgstr ""
4213
 
4214
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:75
4215
  msgid ""
4216
  "Each instance where users might gain or loose %_plural%, are called hooks. "
4217
  "Hooks can relate to WordPress specific actions or any third party plugin "
4218
  "action that myCRED supports."
4219
  msgstr ""
4220
 
4221
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:76
4222
  msgid ""
4223
  "A hook can relate to a specific instance or several instances. You can "
4224
  "disable specific instances in a hook by awarding zero %_plural%."
4225
  msgstr ""
4226
 
4227
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:80
4228
  msgid "Third Party Plugins"
4229
  msgstr ""
4230
 
4231
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:82
4232
  msgid ""
4233
  "myCRED supports several third party plugins by default. These hooks are only "
4234
  "available / visible if the plugin has been installed and enabled."
4235
  msgstr ""
4236
 
4237
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:83
4238
  msgid "Supported Plugins:"
4239
  msgstr ""
4240
 
4241
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:91
4242
  msgid "Template Tags"
4243
  msgstr ""
4244
 
4245
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:93
4246
  msgid "General:"
4247
  msgstr ""
4248
 
4249
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:94
4250
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:138
4251
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:143
4252
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:160
4253
  msgid "Singular %plural% Name."
4254
  msgstr ""
4255
 
4256
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:95
4257
  msgid "Singular %plural% Name in lowercase."
4258
  msgstr ""
4259
 
4260
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:96
4261
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:139
4262
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:144
4263
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:161
4264
  msgid "Plural %plural% Name."
4265
  msgstr ""
4266
 
4267
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:97
4268
  msgid "Plural %plural% Name in lowercase."
4269
  msgstr ""
4270
 
4271
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:98
4272
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:148
4273
  msgid "The login URL without redirection."
4274
  msgstr ""
4275
 
4276
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:99
4277
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:149
4278
  msgid "The login URL with redirection to current page."
4279
  msgstr ""
4280
 
4281
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:100
4282
  msgid "Post:"
4283
  msgstr ""
4284
 
4285
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:101
4286
  msgid "The posts title."
4287
  msgstr ""
4288
 
4289
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:102
4290
  msgid "The posts URL address."
4291
  msgstr ""
4292
 
4293
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:103
4294
  msgid "The post type."
4295
  msgstr ""
4296
 
4297
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:104
4298
  msgid "The posts permalink with the post title as title."
4299
  msgstr ""
4300
 
4301
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:105
4302
  msgid "User:"
4303
  msgstr ""
4304
 
4305
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:106
4306
  msgid "The users ID."
4307
  msgstr ""
4308
 
4309
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:107
4310
  msgid "The users \"username\"."
4311
  msgstr ""
4312
 
4313
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:108
4314
  msgid "The users \"username\" URL encoded."
4315
  msgstr ""
4316
 
4317
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:109
4318
  msgid "The users display name."
4319
  msgstr ""
4320
 
4321
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:110
4322
  msgid "The users profile URL."
4323
  msgstr ""
4324
 
4325
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:111
4326
  msgid "The users profile link with the display name as title."
4327
  msgstr ""
4328
 
4329
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:112
4330
  msgid "Comment:"
4331
  msgstr ""
4332
 
4333
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:113
4334
  msgid "The comment ID."
4335
  msgstr ""
4336
 
4337
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:114
4338
  msgid "The post id where the comment was made."
4339
  msgstr ""
4340
 
4341
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:115
4342
  msgid "The post title where the comment was made."
4343
  msgstr ""
4344
 
4345
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:116
4346
  msgid "The post URL address where the comment was made."
4347
  msgstr ""
4348
 
4349
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:117
4350
  msgid "Link to the post where the comment was made."
4351
  msgstr ""
4352
 
4353
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:129
4354
  msgid "myCRED Balance Template Tags"
4355
  msgstr ""
4356
 
4357
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:132
4358
  msgid "Layout:"
4359
  msgstr ""
4360
 
4361
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:133
4362
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:141
4363
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:158
4364
  msgid "Balance amount in plain format."
4365
  msgstr ""
4366
 
4367
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:134
4368
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:142
4369
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:159
4370
  msgid "Balance amount formatted with prefix and/or suffix."
4371
  msgstr ""
4372
 
4373
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:135
4374
  msgid "Rank Format:"
4375
  msgstr ""
4376
 
4377
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:136
4378
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:157
4379
  msgid "The users ranking. Was \"%rank%\" before version 1.1"
4380
  msgstr ""
4381
 
4382
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:137
4383
  msgid "History Title:"
4384
  msgstr ""
4385
 
4386
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:138
4387
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:139
4388
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:143
4389
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:144
4390
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:160
4391
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:161
4392
  msgid "or"
4393
  msgstr ""
4394
 
4395
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:140
4396
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:156
4397
  msgid "Row Layout:"
4398
  msgstr ""
4399
 
4400
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:145
4401
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:162
4402
  msgid "Log entry date."
4403
  msgstr ""
4404
 
4405
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:146
4406
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:163
4407
  msgid "The log entry."
4408
  msgstr ""
4409
 
4410
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:147
4411
  msgid "Message:"
4412
  msgstr ""
4413
 
4414
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:153
4415
  msgid "myCRED List Template Tags"
4416
  msgstr ""
4417
 
4418
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:164
4419
  msgid "Users display name."
4420
  msgstr ""
4421
 
4422
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:165
4423
  msgid "Users profile URL."
4424
  msgstr ""
4425
 
4426
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:166
4427
  msgid "Users \"username\"."
4428
  msgstr ""
4429
 
4430
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:167
4431
  msgid "Users \"username\" URL encoded."
4432
  msgstr ""
4433
 
4434
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:168
4435
  msgid "Link to users profile with their display name as title."
4436
  msgstr ""
4437
 
4438
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:180
4439
  msgid "Editing %plural%"
4440
  msgstr ""
4441
 
4442
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:182
4443
  msgid ""
4444
  "You can adjust this users %_plural% by giving a positive or negative amount "
4445
  "and a log description. Remember that plugin and point editors will always be "
4446
  "able to adjust their own balance."
4447
  msgstr ""
4448
 
4449
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:183
4450
  msgid ""
4451
  "If the option to edit a users balance is missing the user is set to be "
4452
  "excluded from using myCRED."
4453
  msgstr ""
4454
 
4455
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:195
4456
  msgid "Core"
4457
  msgstr ""
4458
 
4459
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:197
4460
  msgid "On this page, you can edit all myCRED settings."
4461
  msgstr ""
4462
 
4463
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-help.php:199
4464
  msgid ""
4465
  "Here you can name your installation along with setting your layout and "
4466
  "format. You can use any name as long as you set both the singular and plural "
4467
  "format and you can change the name at any time."
4468
  msgstr ""
4469
 
4470
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:89
4471
  msgid "%plural% for registrations"
4472
  msgstr ""
4473
 
4474
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:90
4475
  msgid "Award %_plural% for users joining your website."
4476
  msgstr ""
4477
 
4478
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:96
4479
  msgid "%plural% for logins"
4480
  msgstr ""
4481
 
4482
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:97
4483
  msgid ""
4484
  "Award %_plural% for logging in to your website. You can also set an optional "
4485
  "limit."
4486
  msgstr ""
4487
 
4488
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:103
4489
  msgid "%plural% for publishing content"
4490
  msgstr ""
4491
 
4492
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:104
4493
  msgid ""
4494
  "Award %_plural% for publishing content on your website. If your custom post "
4495
  "type is not shown bellow, make sure it is set to \"Public\"."
4496
  msgstr ""
4497
 
4498
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:110
4499
  msgid "%plural% for comments"
4500
  msgstr ""
4501
 
4502
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:111
4503
  msgid "Award %_plural% for making comments."
4504
  msgstr ""
4505
 
4506
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:117
4507
  msgid "%plural% for clicking on links"
4508
  msgstr ""
4509
 
4510
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:118
4511
  msgid ""
4512
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4513
  "shortcode."
4514
  msgstr ""
4515
 
4516
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:124
4517
  msgid "%plural% for viewing Videos"
4518
  msgstr ""
4519
 
4520
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:125
4521
  msgid ""
4522
  "Award %_plural% to users who watches videos embedded using the "
4523
  "[mycred_video] shortcode."
4524
  msgstr ""
4525
 
4526
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:132
4527
  msgid "bbPress"
4528
  msgstr ""
4529
 
4530
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:133
4531
  msgid "Awards %_plural% for bbPress actions."
4532
  msgstr ""
4533
 
4534
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:141
4535
  msgid "Invite Anyone Plugin"
4536
  msgstr ""
4537
 
4538
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:142
4539
  msgid ""
4540
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
4541
  "accepted."
4542
  msgstr ""
4543
 
4544
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:150
4545
  msgid "Contact Form 7 Form Submissions"
4546
  msgstr ""
4547
 
4548
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:151
4549
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4550
  msgstr ""
4551
 
4552
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:159
4553
  msgid "Jetpack Subscriptions"
4554
  msgstr ""
4555
 
4556
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:160
4557
  msgid ""
4558
  "Awards %_plural% for users signing up for site or comment updates using "
4559
  "Jetpack."
4560
  msgstr ""
4561
 
4562
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:168
4563
  msgid "BadgeOS"
4564
  msgstr ""
4565
 
4566
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:169
4567
  msgid ""
4568
  "Default settings for each BadgeOS Achievement type. These settings may be "
4569
  "overridden for individual achievement type."
4570
  msgstr ""
4571
 
4572
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:177
4573
  msgid "WP-Polls"
4574
  msgstr ""
4575
 
4576
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:178
4577
  msgid "Awards %_plural% for users voting in polls."
4578
  msgstr ""
4579
 
4580
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:186
4581
  msgid "WP Favorite Posts"
4582
  msgstr ""
4583
 
4584
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:187
4585
  msgid "Awards %_plural% for users adding posts to their favorites."
4586
  msgstr ""
4587
 
4588
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:195
4589
  msgid "Events Manager"
4590
  msgstr ""
4591
 
4592
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:196
4593
  msgid "Awards %_plural% for users attending events."
4594
  msgstr ""
4595
 
4596
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:204
4597
  msgid "GD Star Rating"
4598
  msgstr ""
4599
 
4600
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:205
4601
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
4602
  msgstr ""
4603
 
4604
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:245
4605
  msgid ""
4606
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4607
  "depending on their actions around your website."
4608
  msgstr ""
4609
 
4610
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:526
4611
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:642
4612
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:663
4613
  msgid "Limit"
4614
  msgstr ""
4615
 
4616
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:619
4617
  msgid "%plural% for Posts"
4618
  msgstr ""
4619
 
4620
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:629
4621
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:642
4622
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:677
4623
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:403
4624
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:416
4625
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:429
4626
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:447
4627
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:460
4628
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:479
4629
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:792
4630
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1036
4631
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1046
4632
  msgid "Available template tags: General, Post"
4633
  msgstr ""
4634
 
4635
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:632
4636
  msgid "%plural% for Pages"
4637
  msgstr ""
4638
 
4639
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:667
4640
  msgid "%plural% for %s"
4641
  msgstr ""
4642
 
4643
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:956
4644
  msgid "Approved Comment"
4645
  msgstr ""
4646
 
4647
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:965
4648
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:977
4649
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:989
4650
  msgid "Available template tags: General, Comment"
4651
  msgstr ""
4652
 
4653
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:968
4654
  msgid "Comment Marked SPAM"
4655
  msgstr ""
4656
 
4657
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:980
4658
  msgid "Trashed / Unapproved Comments"
4659
  msgstr ""
4660
 
4661
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:995
4662
  msgid "Limit per post"
4663
  msgstr ""
4664
 
4665
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:997
4666
  msgid ""
4667
  "The number of comments per post that grants %_plural%. Use zero for "
4668
  "unlimited."
4669
  msgstr ""
4670
 
4671
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1001
4672
  msgid "Limit per day"
4673
  msgstr ""
4674
 
4675
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1003
4676
  msgid ""
4677
  "Number of comments per day that grants %_plural%. Use zero for unlimited."
4678
  msgstr ""
4679
 
4680
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1008
4681
  msgid ""
4682
  "%plural% is to be awarded even when comment authors reply to their own "
4683
  "comment."
4684
  msgstr ""
4685
 
4686
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1075
4687
  msgid "Once for each unique URL"
4688
  msgstr ""
4689
 
4690
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1076
4691
  msgid "Once for each unique link id"
4692
  msgstr ""
4693
 
4694
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1225
4695
  msgid ""
4696
  "The default amount to award for clicking on links. You can override this in "
4697
  "the shortcode."
4698
  msgstr ""
4699
 
4700
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1232
4701
  msgid "Available template tags: General and custom tags: %url% or %id%."
4702
  msgstr ""
4703
 
4704
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1243
4705
  msgid "Remember!"
4706
  msgstr ""
4707
 
4708
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1243
4709
  msgid ""
4710
  "If you select to limit by id and you do not include the id attribute in the "
4711
  "shortcode, no %_plural% will be awarded!"
4712
  msgstr ""
4713
 
4714
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1502
4715
  msgid "Amount to award for viewing videos."
4716
  msgstr ""
4717
 
4718
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1512
4719
  msgid "Award Logic"
4720
  msgstr ""
4721
 
4722
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1514
4723
  msgid "Select when %_plural% should be awarded or deducted."
4724
  msgstr ""
4725
 
4726
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1515
4727
  msgid "Play - As soon as video starts playing."
4728
  msgstr ""
4729
 
4730
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1516
4731
  msgid "Full - First when the entire video has played."
4732
  msgstr ""
4733
 
4734
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1517
4735
  msgid "Interval - For each x number of seconds watched."
4736
  msgstr ""
4737
 
4738
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1522
4739
  msgid "Number of seconds"
4740
  msgstr ""
4741
 
4742
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1529
4743
  msgid "Leniency"
4744
  msgstr ""
4745
 
4746
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1531
4747
  msgid ""
4748
  "The maximum percentage a users view of a movie can differ from the actual "
4749
  "length."
4750
  msgstr ""
4751
 
4752
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-hooks.php:1534
4753
  msgid ""
4754
  "Do not set this value to zero! A lot of thing can happen while a user "
4755
  "watches a movie and sometimes a few seconds can drop of the counter due to "
4756
  "buffering or play back errors."
4757
  msgstr ""
4758
 
4759
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:23
4760
  msgid "Activity Log"
4761
  msgstr ""
4762
 
4763
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:96
4764
  msgid "Entries"
4765
  msgstr ""
4766
 
4767
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:177
4768
  msgid "Show all references"
4769
  msgstr ""
4770
 
4771
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:196
4772
  msgid "Show in order"
4773
  msgstr ""
4774
 
4775
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:209
4776
  msgid "Filter"
4777
  msgstr ""
4778
 
4779
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:236
4780
  msgid "entry"
4781
  msgstr ""
4782
 
4783
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:255
4784
  msgid "Search results for"
4785
  msgstr ""
4786
 
4787
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:815
4788
  msgid "Entry"
4789
  msgstr ""
4790
 
4791
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:915
4792
  msgid "User Missing"
4793
  msgstr ""
4794
 
4795
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:954
4796
  msgid "No log entries found"
4797
  msgstr ""
4798
 
4799
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:969
4800
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-log.php:971
4801
  msgid "Search Log"
4802
  msgstr ""
4803
 
4804
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:394
4805
  msgid "%plural% for New Forum"
4806
  msgstr ""
4807
 
4808
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:407
4809
  msgid "%plural% for Forum Deletion"
4810
  msgstr ""
4811
 
4812
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:420
4813
  msgid "%plural% for New Topic"
4814
  msgstr ""
4815
 
4816
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:434
4817
  msgid "Forum authors can receive %_plural% for creating new topics."
4818
  msgstr ""
4819
 
4820
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:438
4821
  msgid "%plural% for Topic Deletion"
4822
  msgstr ""
4823
 
4824
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:451
4825
  msgid "%plural% for Favorited Topic"
4826
  msgstr ""
4827
 
4828
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:464
4829
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:488
4830
  msgid "Daily Limit"
4831
  msgstr ""
4832
 
4833
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:466
4834
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:490
4835
  msgid "Use zero for unlimited"
4836
  msgstr ""
4837
 
4838
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:470
4839
  msgid "%plural% for New Reply"
4840
  msgstr ""
4841
 
4842
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:484
4843
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4844
  msgstr ""
4845
 
4846
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:494
4847
  msgid "Show users %_plural% balance in replies"
4848
  msgstr ""
4849
 
4850
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:630
4851
  msgid "%plural% for Sending An Invite"
4852
  msgstr ""
4853
 
4854
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:646
4855
  msgid ""
4856
  "Maximum number of invites that grants %_plural%. Use zero for unlimited."
4857
  msgstr ""
4858
 
4859
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:650
4860
  msgid "%plural% for Accepting An Invite"
4861
  msgstr ""
4862
 
4863
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:654
4864
  msgid "%plural% for each invited user that accepts an invitation."
4865
  msgstr ""
4866
 
4867
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:667
4868
  msgid ""
4869
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
4870
  "unlimited."
4871
  msgstr ""
4872
 
4873
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:762
4874
  msgid "No forms found."
4875
  msgstr ""
4876
 
4877
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:861
4878
  #, php-format
4879
  msgid ""
4880
  "Please setup your <a href=\"%s\">default settings</a> before using this "
4881
  "feature."
4882
  msgstr ""
4883
 
4884
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:872
4885
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:874
4886
  msgid "%plural% to Award"
4887
  msgstr ""
4888
 
4889
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:876
4890
  msgid "Use zero to disable"
4891
  msgstr ""
4892
 
4893
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:887
4894
  msgid "Deduction Log Template"
4895
  msgstr ""
4896
 
4897
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1023
4898
  #, php-format
4899
  msgid "Default %s for %s"
4900
  msgstr ""
4901
 
4902
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1030
4903
  msgid "Use zero to disable users gaining %_plural%"
4904
  msgstr ""
4905
 
4906
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1034
4907
  msgid "Default Log template"
4908
  msgstr ""
4909
 
4910
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1040
4911
  msgid "Deduct %_plural% if user looses "
4912
  msgstr ""
4913
 
4914
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1172
4915
  msgid ""
4916
  "Available template tags: General. You can also use %poll_id% and "
4917
  "%poll_question%."
4918
  msgstr ""
4919
 
4920
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1282
4921
  msgid "Adding Content to Favorites"
4922
  msgstr ""
4923
 
4924
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1292
4925
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1305
4926
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1443
4927
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1456
4928
  msgid "Available template tags: General and Post Related"
4929
  msgstr ""
4930
 
4931
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1295
4932
  msgid "Removing Content from Favorites"
4933
  msgstr ""
4934
 
4935
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1433
4936
  msgid "Attending Event"
4937
  msgstr ""
4938
 
4939
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1446
4940
  msgid "Cancelling Attendance"
4941
  msgstr ""
4942
 
4943
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1542
4944
  msgid "Rating"
4945
  msgstr ""
4946
 
4947
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-plugins.php:1555
4948
  msgid "Up / Down Vote"
4949
  msgstr ""
4950
 
4951
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:479
4952
  msgid "Site Subscriptions"
4953
  msgstr ""
4954
 
4955
+ #: /Users/gabriel/Repositories/mycred/trunk/modules/mycred-module-subscriptions.php:492
4956
  msgid "Comment Subscriptions"
4957
  msgstr ""
modules/mycred-module-addons.php CHANGED
@@ -280,6 +280,7 @@ if ( !class_exists( 'myCRED_Addons' ) ) {
280
  }
281
  } ?>
282
 
 
283
  </div>
284
  </div>
285
  <?php
280
  }
281
  } ?>
282
 
283
+ <p style="text-align:right;"><?php echo sprintf( __( 'You can find more add-ons in our %s.', 'mycred' ), sprintf( '<a href="http://mycred.me/store/" target="_blank">%s</a>', __( 'online store', 'mycred' ) ) ); ?></p>
284
  </div>
285
  </div>
286
  <?php
modules/mycred-module-general.php CHANGED
@@ -32,7 +32,7 @@ if ( !class_exists( 'myCRED_General' ) ) {
32
  * @version 1.1
33
  */
34
  public function admin_page() {
35
- if ( !$this->core->can_edit_plugin( get_current_user_id() ) ) wp_die( __( 'Access Denied' ) );
36
 
37
  // General Settings
38
  $general = $this->general;
32
  * @version 1.1
33
  */
34
  public function admin_page() {
35
+ if ( !$this->core->can_edit_plugin( get_current_user_id() ) ) wp_die( __( 'Access Denied', 'mycred' ) );
36
 
37
  // General Settings
38
  $general = $this->general;
modules/mycred-module-help.php CHANGED
@@ -16,29 +16,15 @@ if ( !class_exists( 'myCRED_Help' ) ) {
16
  * Construct
17
  */
18
  function __construct() {
19
- if ( is_admin() )
20
- $this->is_admin = true;
21
- else
22
- $this->is_admin = false;
23
- }
24
-
25
- /**
26
- * Hook Into Contextual Help
27
- * @since 0.1
28
- * @version 1.0
29
- */
30
- public function load() {
31
- if ( $this->is_admin ) return;
32
- add_filter( 'contextual_help', array( $this, 'run' ), 10, 3 );
33
  }
34
 
35
  /**
36
  * Run Appropriate Help
37
  * @since 0.1
38
- * @version 1.0
39
  */
40
  public function run( $contextual_help, $screen_id, $screen ) {
41
- $this->core = mycred_get_settings();
42
  if ( $screen_id == 'toplevel_page_myCRED' )
43
  $this->log_page( $screen );
44
  elseif ( $screen_id == 'mycred_page_myCRED_page_hooks' )
@@ -203,7 +189,7 @@ if ( !class_exists( 'myCRED_Help' ) ) {
203
  * @since 0.1
204
  * @version 1.0
205
  */
206
- public function settings_page( $screen ) {
207
  $screen->add_help_tab( array(
208
  'id' => 'mycred-settings',
209
  'title' => __( 'Core', 'mycred' ),
16
  * Construct
17
  */
18
  function __construct() {
19
+ $this->core = mycred_get_settings();
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
  /**
23
  * Run Appropriate Help
24
  * @since 0.1
25
+ * @version 1.1
26
  */
27
  public function run( $contextual_help, $screen_id, $screen ) {
 
28
  if ( $screen_id == 'toplevel_page_myCRED' )
29
  $this->log_page( $screen );
30
  elseif ( $screen_id == 'mycred_page_myCRED_page_hooks' )
189
  * @since 0.1
190
  * @version 1.0
191
  */
192
+ public function general_page( $screen ) {
193
  $screen->add_help_tab( array(
194
  'id' => 'mycred-settings',
195
  'title' => __( 'Core', 'mycred' ),
modules/mycred-module-hooks.php CHANGED
@@ -574,7 +574,7 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
574
  /**
575
  * Publish Content Hook
576
  * @since 0.1
577
- * @version 1.0
578
  */
579
  public function publishing_content( $new_status, $old_status, $post ) {
580
  $user_id = $post->post_author;
@@ -587,7 +587,8 @@ if ( !class_exists( 'myCRED_Hook_Publishing_Content' ) ) {
587
 
588
  // We want to fire when content get published or when it gets privatly published
589
  $status = apply_filters( 'mycred_publish_hook_old', array( 'new', 'auto-draft', 'draft', 'private', 'pending' ) );
590
- if ( in_array( $old_status, $status ) && $new_status == 'publish' && array_key_exists( $post_type, $this->prefs ) ) {
 
591
 
592
  // Make sure this is unique
593
  if ( $this->core->has_entry( 'publishing_content', $post_id, $user_id ) ) return;
574
  /**
575
  * Publish Content Hook
576
  * @since 0.1
577
+ * @version 1.0.1
578
  */
579
  public function publishing_content( $new_status, $old_status, $post ) {
580
  $user_id = $post->post_author;
587
 
588
  // We want to fire when content get published or when it gets privatly published
589
  $status = apply_filters( 'mycred_publish_hook_old', array( 'new', 'auto-draft', 'draft', 'private', 'pending' ) );
590
+ $publish_status = apply_filters( 'mycred_publish_hook_new', array( 'publish', 'private' ) );
591
+ if ( in_array( $old_status, $status ) && in_array( $new_status, $publish_status ) && array_key_exists( $post_type, $this->prefs ) ) {
592
 
593
  // Make sure this is unique
594
  if ( $this->core->has_entry( 'publishing_content', $post_id, $user_id ) ) return;
modules/mycred-module-log.php CHANGED
@@ -79,14 +79,16 @@ if ( !class_exists( 'myCRED_Log' ) ) {
79
  /**
80
  * Log Header
81
  * @since 0.1
82
- * @version 1.0
83
  */
84
  public function settings_header() {
85
  // Since we are overwriting the myCRED_Module::settings_header() we need to enqueue admin styles
86
  wp_enqueue_style( 'mycred-admin' );
87
 
88
- $user_id = get_current_user_id();
89
  $screen = get_current_screen();
 
 
 
90
 
91
  // Prep Per Page
92
  $args = array(
@@ -95,7 +97,7 @@ if ( !class_exists( 'myCRED_Log' ) ) {
95
  'option' => 'mycred_entries_per_page'
96
  );
97
  add_screen_option( 'per_page', $args );
98
- $per_page = get_user_meta( $user_id, $args['option'], true );
99
  if ( empty( $per_page ) || $per_page < 1 )
100
  $per_page = $args['default'];
101
 
@@ -184,7 +186,7 @@ if ( !class_exists( 'myCRED_Log' ) ) {
184
 
185
  // Filter by user
186
  if ( $this->core->can_edit_creds() && !$is_profile && $this->count_records() > 0 ) {
187
- echo '<input type="text" name="user_id" id="myCRED-user-filter" size="12" placeholder="' . __( 'Username', 'mycred' ) . '" value="' . ( ( isset( $_GET['user_id'] ) ) ? $_GET['user_id'] : '' ) . '" /> ';
188
  $show = true;
189
  }
190
 
79
  /**
80
  * Log Header
81
  * @since 0.1
82
+ * @version 1.1
83
  */
84
  public function settings_header() {
85
  // Since we are overwriting the myCRED_Module::settings_header() we need to enqueue admin styles
86
  wp_enqueue_style( 'mycred-admin' );
87
 
 
88
  $screen = get_current_screen();
89
+
90
+ $help = new myCRED_Help();
91
+ $help->log_page( $screen );
92
 
93
  // Prep Per Page
94
  $args = array(
97
  'option' => 'mycred_entries_per_page'
98
  );
99
  add_screen_option( 'per_page', $args );
100
+ $per_page = get_user_meta( get_current_user_id(), $args['option'], true );
101
  if ( empty( $per_page ) || $per_page < 1 )
102
  $per_page = $args['default'];
103
 
186
 
187
  // Filter by user
188
  if ( $this->core->can_edit_creds() && !$is_profile && $this->count_records() > 0 ) {
189
+ echo '<input type="text" name="user_id" id="myCRED-user-filter" size="12" placeholder="' . __( 'User ID', 'mycred' ) . '" value="' . ( ( isset( $_GET['user_id'] ) ) ? $_GET['user_id'] : '' ) . '" /> ';
190
  $show = true;
191
  }
192
 
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.2.2
7
  Tags: points, tokens, credit, management, reward, charge
8
  Author: Gabriel S Merovingi
9
  Author URI: http://www.merovingi.com
@@ -15,7 +15,7 @@ Domain Path: /lang
15
  License: GPLv2 or later
16
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
17
  */
18
- define( 'myCRED_VERSION', '1.2.2' );
19
  define( 'myCRED_SLUG', 'mycred' );
20
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
21
 
@@ -83,6 +83,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
83
  add_action( 'mycred_reset_key', array( $this, 'reset_key' ) );
84
 
85
  // myCRED is ready
 
86
  do_action( 'mycred_ready' );
87
 
88
  // Clean up
@@ -106,7 +107,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
106
  /**
107
  * Plugin Links
108
  * @since 0.1
109
- * @version 1.2
110
  */
111
  function plugin_links( $actions, $plugin_file, $plugin_data, $context ) {
112
  // Link to Setup
@@ -115,11 +116,9 @@ if ( !class_exists( 'myCRED_Core' ) ) {
115
  return $actions;
116
  }
117
 
118
- // Link to Settings
119
- $mycred = mycred_get_settings();
120
- if ( $mycred->can_edit_plugin() ) {
121
- $actions['settings'] = '<a href="' . admin_url( 'admin.php?page=myCRED_page_settings' ) . '">' . __( 'Settings', 'mycred' ) . '</a>';
122
- }
123
 
124
  return $actions;
125
  }
@@ -127,7 +126,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
127
  /**
128
  * Runs when the plugin is activated
129
  * @since 0.1
130
- * @version 1.0
131
  */
132
  function activate_mycred() {
133
  // Check if blocked
@@ -153,15 +152,19 @@ if ( !class_exists( 'myCRED_Core' ) ) {
153
  $frequency = apply_filters( 'mycred_cron_reset_key', 'daily' );
154
  wp_schedule_event( date_i18n( 'U' ), $frequency, 'mycred_reset_key' );
155
  }
 
 
 
156
  }
157
 
158
  /**
159
  * Runs when the plugin is deactivated
160
  * @since 0.1
161
- * @version 1.1
162
  */
163
  function deactivate_mycred() {
164
  // Clear Cron
 
165
  wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
166
  wp_clear_scheduled_hook( 'mycred_banking_interest_compound' );
167
  wp_clear_scheduled_hook( 'mycred_banking_interest_payout' );
@@ -263,7 +266,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
263
  /**
264
  * WordPress Ready
265
  * @since 0.1
266
- * @version 3.1
267
  */
268
  function wp_ready() {
269
  load_plugin_textdomain( 'mycred', false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
@@ -272,8 +275,7 @@ if ( !class_exists( 'myCRED_Core' ) ) {
272
  $modules = apply_filters( 'mycred_modules', array(
273
  'general' => array( 'class' => 'myCRED_General' ),
274
  'hooks' => array( 'class' => 'myCRED_Hooks' ),
275
- 'log' => array( 'class' => 'myCRED_Log' ),
276
- 'help' => array( 'class' => 'myCRED_Help' )
277
  ) );
278
 
279
  if ( !empty( $modules ) ) {
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.2.3
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.2.3' );
19
  define( 'myCRED_SLUG', 'mycred' );
20
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
21
 
83
  add_action( 'mycred_reset_key', array( $this, 'reset_key' ) );
84
 
85
  // myCRED is ready
86
+ require_once( myCRED_MODULES_DIR . 'mycred-module-help.php' );
87
  do_action( 'mycred_ready' );
88
 
89
  // Clean up
107
  /**
108
  * Plugin Links
109
  * @since 0.1
110
+ * @version 1.3
111
  */
112
  function plugin_links( $actions, $plugin_file, $plugin_data, $context ) {
113
  // Link to Setup
116
  return $actions;
117
  }
118
 
119
+ $actions['tutorials'] = '<a href="http://mycred.me/support/tutorials/" target="_blank">' . __( 'Tutorials', 'mycred' ) . '</a>';
120
+ $actions['docs'] = '<a href="http://mycred.me/support/codex/" target="_blank">' . __( 'Codex', 'mycred' ) . '</a>';
121
+ $actions['store'] = '<a href="http://mycred.me/store/" target="_blank">' . __( 'Store', 'mycred' ) . '</a>';
 
 
122
 
123
  return $actions;
124
  }
126
  /**
127
  * Runs when the plugin is activated
128
  * @since 0.1
129
+ * @version 1.1
130
  */
131
  function activate_mycred() {
132
  // Check if blocked
152
  $frequency = apply_filters( 'mycred_cron_reset_key', 'daily' );
153
  wp_schedule_event( date_i18n( 'U' ), $frequency, 'mycred_reset_key' );
154
  }
155
+
156
+ // Delete stray debug options
157
+ delete_option( 'mycred_catch_fires' );
158
  }
159
 
160
  /**
161
  * Runs when the plugin is deactivated
162
  * @since 0.1
163
+ * @version 1.2
164
  */
165
  function deactivate_mycred() {
166
  // Clear Cron
167
+ wp_clear_scheduled_hook( 'mycred_reset_key' );
168
  wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
169
  wp_clear_scheduled_hook( 'mycred_banking_interest_compound' );
170
  wp_clear_scheduled_hook( 'mycred_banking_interest_payout' );
266
  /**
267
  * WordPress Ready
268
  * @since 0.1
269
+ * @version 3.2
270
  */
271
  function wp_ready() {
272
  load_plugin_textdomain( 'mycred', false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
275
  $modules = apply_filters( 'mycred_modules', array(
276
  'general' => array( 'class' => 'myCRED_General' ),
277
  'hooks' => array( 'class' => 'myCRED_Hooks' ),
278
+ 'log' => array( 'class' => 'myCRED_Log' )
 
279
  ) );
280
 
281
  if ( !empty( $modules ) ) {
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress
4
  Requires at least: 3.1
5
- Tested up to: 3.6
6
- Stable tag: 1.2.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -11,20 +11,32 @@ myCRED is an adaptive points management system that lets you award / charge your
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
@@ -32,7 +44,7 @@ So we built an adaptive plugin which gives it’s users full control on how poin
32
 
33
  **Built-in Add-ons:**
34
 
35
- Your myCRED installation comes packed with optional add-ons, adding further features and third-party plugin support.
36
 
37
  * *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.
38
  * *Transfer* - Allows your users to send points to other members with an option to impose a daily-, weekly- or monthly transfer limit.
@@ -43,6 +55,7 @@ Your myCRED installation comes packed with optional add-ons, adding further feat
43
  * *Gateway* - Allow your users to pay for items in their WooCommerce or MarketPress shopping cart using their point balance.
44
  * *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/).
45
  * *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.
 
46
 
47
 
48
  **Multisites**
@@ -130,6 +143,9 @@ Yes but if one of them is bought, all is shown. The mycred_sell_this shortcode w
130
 
131
  == Upgrade Notice ==
132
 
 
 
 
133
  = 1.2.2 =
134
  Improved performance, better handling of websites with large user base and several bug fixes.
135
 
@@ -164,6 +180,16 @@ See: http://mycred.me/download/changelog/2/
164
 
165
  == Changelog ==
166
 
 
 
 
 
 
 
 
 
 
 
167
  = 1.2.2 =
168
  * Added User Batches for Banking Add-on to support websites with more then 2k users.
169
  * Added Cache option to myCRED_Query_Log class.
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, BuddyPress, Jetpack, bbPress
4
  Requires at least: 3.1
5
+ Tested up to: 3.6.1
6
+ Stable tag: 1.2.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
11
 
12
  == Description ==
13
 
14
+ **Reward Website Interactions**
15
 
16
+ Engage your members by awarding them points for [interacting](http://mycred.me/about/hooks/) with your website and present them with a [leaderboard](http://mycred.me/shortcodes/mycred_leaderboard/).
17
 
18
+ **my**CRED supports an ever growing list of [third-party plugins](http://mycred.me/about/supported-plugins/) in order to help you reward more actions.
19
+
20
+ **Your online currency**
21
+
22
+ Reward returning customers in your [online store](http://mycred.me/add-ons/gateway/) with points or let your members pay for products, [content](http://mycred.me/add-ons/sell-content/) or events using points.
23
+
24
+ **my**CRED also supports points [transfers](http://mycred.me/add-ons/transfer/) and [points purchases](http://mycred.me/add-ons/buycred/) using popular online payment gateways.
25
+
26
+ **Manage, Edit, Adjust**
27
+
28
+ **my**CRED was built to be flexible and supports point systems with or without decimals. All transactions / changes are [logged](http://mycred.me/about/features/the-log/) and you can always [adjust](http://mycred.me/about/features/edit-users-points/) any users point balance directly from your user list in the admin area.
29
+
30
+ Don't let **my**CREDs' adaptive nature fool you. It was built to keep things simple, showing you only what your site [supports](http://mycred.me/add-ons/buddypress/).
31
 
32
  **Core Features:**
33
 
34
  * Logging of all events
35
  * Log entry templates and template tags
36
+ * Inline Points Management
37
  * Easy to manage Hooks for each instance where users gain/loose points
38
  * Supports any point format
39
+ * Rankings
40
  * Custom My Balance Widget
41
  * Custom Leader board Widget
42
  * Minimum CSS Styling
44
 
45
  **Built-in Add-ons:**
46
 
47
+ Your **my**CRED installation comes packed with optional add-ons, adding further features and third-party plugin support.
48
 
49
  * *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.
50
  * *Transfer* - Allows your users to send points to other members with an option to impose a daily-, weekly- or monthly transfer limit.
55
  * *Gateway* - Allow your users to pay for items in their WooCommerce or MarketPress shopping cart using their point balance.
56
  * *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/).
57
  * *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.
58
+ * *Notifications* - Let your users know when they have earned or lost points on your website though jQuery popups.
59
 
60
 
61
  **Multisites**
143
 
144
  == Upgrade Notice ==
145
 
146
+ = 1.2.3 =
147
+ New Notifications Add-on and added support for Email Notices for users getting promoted / demoted. Bug fixes.
148
+
149
  = 1.2.2 =
150
  Improved performance, better handling of websites with large user base and several bug fixes.
151
 
180
 
181
  == Changelog ==
182
 
183
+ = 1.2.3 =
184
+ * Moved .POT file to correct location in /lang
185
+ * Cart support for Email notices has incorrect function name.
186
+ * Removed stray debug options on plugin activation.
187
+ * Added support for Email Notices when users gets promoted or demoted.
188
+ * Improved default ranking check.
189
+ * Improved Banking services by moving exclusion checks from the payout process to the get user IDs process. Also added set_time_limit( 0 ); for larger sites to avoid time out issues.
190
+ * Minimized CSS assets.
191
+ * Added new Notifications add-on.
192
+
193
  = 1.2.2 =
194
  * Added User Batches for Banking Add-on to support websites with more then 2k users.
195
  * Added Cache option to myCRED_Query_Log class.