myCRED - Version 1.6.2

Version Description

Bugfixes for hooks, ranks and badges.

=

Download this release

Release Info

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

Code changes from version 1.6.1 to 1.6.2

addons/badges/includes/mycred-badge-functions.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Get Badge Requirements
6
  * Returns the badge requirements as an array.
7
  * @since 1.5
8
- * @version 1.0
9
  */
10
  if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
11
  function mycred_get_badge_requirements( $post_id = NULL, $editor = false )
@@ -14,7 +14,7 @@ if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
14
  if ( $editor && empty( $req ) )
15
  $req = array(
16
  0 => array(
17
- 'type' => '',
18
  'reference' => '',
19
  'amount' => '',
20
  'by' => ''
@@ -29,7 +29,7 @@ endif;
29
  * Display Badge Requirements
30
  * Returns the badge requirements as a string in a readable format.
31
  * @since 1.5
32
- * @version 1.1
33
  */
34
  if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
35
  function mycred_display_badge_requirements( $post_id = NULL, $sep = '<br />' )
@@ -49,6 +49,9 @@ if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
49
  $output = array();
50
  foreach ( $requirements as $level => $needs ) {
51
 
 
 
 
52
  if ( ! isset( $types[ $needs['type'] ] ) )
53
  continue;
54
 
@@ -150,7 +153,7 @@ endif;
150
  * Check if User Gets Badge
151
  * Checks if a given user has earned one or multiple badges.
152
  * @since 1.5
153
- * @version 1.2
154
  */
155
  if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
156
  function mycred_check_if_user_gets_badge( $user_id = NULL, $badge_ids = array(), $save = true )
@@ -166,12 +169,15 @@ if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
166
  $requirements = mycred_get_badge_requirements( $badge_id );
167
  foreach ( $requirements as $req_level => $needs ) {
168
 
 
 
 
169
  $mycred = mycred( $needs['type'] );
170
 
171
  // Count occurences
172
  if ( $needs['by'] == 'count' ) {
173
- $select = 'COUNT( id )';
174
- $amount = $needs['amount'];
175
  }
176
 
177
  // Sum up points
@@ -191,18 +197,23 @@ if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
191
 
192
  if ( $needs['by'] != 'count' )
193
  $result = $mycred->number( $result );
 
 
194
 
195
- // Got it - save level
196
  if ( $result >= $amount )
197
- $level = $req_level;
 
 
 
198
 
199
  // If a level has been reached assign it now unless the user has this level already
200
- if ( $level !== false && mycred_get_user_meta( $user_id, 'mycred_badge' . $badge_id, '', true ) != $level ) {
201
 
202
  if ( $save )
203
  mycred_update_user_meta( $user_id, 'mycred_badge' . $badge_id, '', apply_filters( 'mycred_badge_user_value', $level, $user_id, $badge_id ) );
204
 
205
- $ids[ $level ] = $badge_id;
206
 
207
  }
208
 
5
  * Get Badge Requirements
6
  * Returns the badge requirements as an array.
7
  * @since 1.5
8
+ * @version 1.0.1
9
  */
10
  if ( ! function_exists( 'mycred_get_badge_requirements' ) ) :
11
  function mycred_get_badge_requirements( $post_id = NULL, $editor = false )
14
  if ( $editor && empty( $req ) )
15
  $req = array(
16
  0 => array(
17
+ 'type' => 'mycred_default',
18
  'reference' => '',
19
  'amount' => '',
20
  'by' => ''
29
  * Display Badge Requirements
30
  * Returns the badge requirements as a string in a readable format.
31
  * @since 1.5
32
+ * @version 1.1.1
33
  */
34
  if ( ! function_exists( 'mycred_display_badge_requirement' ) ) :
35
  function mycred_display_badge_requirements( $post_id = NULL, $sep = '<br />' )
49
  $output = array();
50
  foreach ( $requirements as $level => $needs ) {
51
 
52
+ if ( $needs['type'] == '' )
53
+ $needs['type'] = 'mycred_default';
54
+
55
  if ( ! isset( $types[ $needs['type'] ] ) )
56
  continue;
57
 
153
  * Check if User Gets Badge
154
  * Checks if a given user has earned one or multiple badges.
155
  * @since 1.5
156
+ * @version 1.2.2
157
  */
158
  if ( ! function_exists( 'mycred_check_if_user_gets_badge' ) ) :
159
  function mycred_check_if_user_gets_badge( $user_id = NULL, $badge_ids = array(), $save = true )
169
  $requirements = mycred_get_badge_requirements( $badge_id );
170
  foreach ( $requirements as $req_level => $needs ) {
171
 
172
+ if ( $needs['type'] == '' )
173
+ $needs['type'] = 'mycred_default';
174
+
175
  $mycred = mycred( $needs['type'] );
176
 
177
  // Count occurences
178
  if ( $needs['by'] == 'count' ) {
179
+ $select = 'COUNT( * )';
180
+ $amount = absint( $needs['amount'] );
181
  }
182
 
183
  // Sum up points
197
 
198
  if ( $needs['by'] != 'count' )
199
  $result = $mycred->number( $result );
200
+ else
201
+ $result = absint( $result );
202
 
203
+ $level = NULL;
204
  if ( $result >= $amount )
205
+ $level = absint( $req_level );
206
+
207
+ $current = mycred_get_user_meta( $user_id, 'mycred_badge' . $badge_id, '', true );
208
+ if ( $current == '' ) $current = -1;
209
 
210
  // If a level has been reached assign it now unless the user has this level already
211
+ if ( $level !== NULL && $current < $level ) {
212
 
213
  if ( $save )
214
  mycred_update_user_meta( $user_id, 'mycred_badge' . $badge_id, '', apply_filters( 'mycred_badge_user_value', $level, $user_id, $badge_id ) );
215
 
216
+ $ids[ $badge_id ] = $level;
217
 
218
  }
219
 
addons/badges/includes/mycred-badge-shortcodes.php CHANGED
@@ -97,7 +97,7 @@ endif;
97
  * Shortcode: mycred_badges
98
  * Allows you to show all published badges
99
  * @since 1.5
100
- * @version 1.0.1
101
  */
102
  if ( ! function_exists( 'mycred_render_badges' ) ) :
103
  function mycred_render_badges( $atts, $content = '' )
@@ -106,6 +106,7 @@ if ( ! function_exists( 'mycred_render_badges' ) ) :
106
  'show' => 'default',
107
  'title' => 0,
108
  'requires' => 0,
 
109
  'width' => MYCRED_BADGE_WIDTH,
110
  'height' => MYCRED_BADGE_HEIGHT
111
  ), $atts ) );
@@ -129,10 +130,13 @@ if ( ! function_exists( 'mycred_render_badges' ) ) :
129
  echo '<div class="the-badge">';
130
 
131
  if ( $title == 1 )
132
- echo '<h3>' . $badge->post_title . '</h3>';
133
 
134
  if ( $requires == 1 )
135
- echo '<p>' . mycred_display_badge_requirements( $badge->ID ) . '</p>';
 
 
 
136
 
137
  // Show default image
138
  if ( $show == 'default' )
97
  * Shortcode: mycred_badges
98
  * Allows you to show all published badges
99
  * @since 1.5
100
+ * @version 1.0.2
101
  */
102
  if ( ! function_exists( 'mycred_render_badges' ) ) :
103
  function mycred_render_badges( $atts, $content = '' )
106
  'show' => 'default',
107
  'title' => 0,
108
  'requires' => 0,
109
+ 'show_count' => 0,
110
  'width' => MYCRED_BADGE_WIDTH,
111
  'height' => MYCRED_BADGE_HEIGHT
112
  ), $atts ) );
130
  echo '<div class="the-badge">';
131
 
132
  if ( $title == 1 )
133
+ echo '<h3 class="badge-title">' . $badge->post_title . '</h3>';
134
 
135
  if ( $requires == 1 )
136
+ echo '<div class="badge-requirements">' . mycred_display_badge_requirements( $badge->ID ) . '</div>';
137
+
138
+ if ( $show_count == 1 )
139
+ echo '<div class="users-with-badge">' . mycred_count_users_with_badge( $badge->ID ) . '</div>';
140
 
141
  // Show default image
142
  if ( $show == 'default' )
addons/badges/myCRED-addon-badges.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Badges
4
  * Addon URI: http://mycred.me/add-ons/badges/
5
- * Version: 1.1
6
  * Description: Give your users badges based on their interaction with your website.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -177,7 +177,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
177
 
178
  /**
179
  * AJAX: Assign Badge
180
- * @version 1.1
181
  */
182
  public function action_assign_badge() {
183
  check_ajax_referer( 'mycred-assign-badge', 'token' );
@@ -192,6 +192,9 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
192
  $levels = array();
193
  foreach ( $requirements as $req_level => $needs ) {
194
 
 
 
 
195
  $mycred = mycred( $needs['type'] );
196
 
197
  if ( ! array_key_exists( $req_level, $levels ) )
@@ -253,7 +256,8 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
253
 
254
  }
255
 
256
- wp_send_json_success( sprintf( __( '%d Users earned this badge.', 'mycred' ), count( $count ) ) );
 
257
 
258
  }
259
 
@@ -263,7 +267,7 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
263
 
264
  /**
265
  * AJAX: Remove Badge Connections
266
- * @version 1.0
267
  */
268
  public function action_remove_connections() {
269
  check_ajax_referer( 'mycred-remove-badge-connection', 'token' );
@@ -279,6 +283,9 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
279
  array( '%s' )
280
  );
281
 
 
 
 
282
  wp_send_json_success( sprintf( __( '%s connections where removed.', 'mycred' ), $count ) );
283
  }
284
 
@@ -348,18 +355,21 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) {
348
 
349
  /**
350
  * Add Finished
351
- * @version 1.1
352
  */
353
  public function add_finished( $ran, $request, $mycred ) {
354
 
355
- if ( $ran === false ) return $ran;
 
 
 
 
356
 
357
- // Check if this reference has badges
358
- $badge_ids = mycred_ref_has_badge( $request['ref'], $request );
359
- if ( $badge_ids === false ) return $ran;
360
 
361
- // Assign Badges
362
- mycred_check_if_user_gets_badge( $user_id, $badge_ids, $request );
 
363
 
364
  return $ran;
365
  }
2
  /**
3
  * Addon: Badges
4
  * Addon URI: http://mycred.me/add-ons/badges/
5
+ * Version: 1.1.1
6
  * Description: Give your users badges based on their interaction with your website.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
177
 
178
  /**
179
  * AJAX: Assign Badge
180
+ * @version 1.1.1
181
  */
182
  public function action_assign_badge() {
183
  check_ajax_referer( 'mycred-assign-badge', 'token' );
192
  $levels = array();
193
  foreach ( $requirements as $req_level => $needs ) {
194
 
195
+ if ( $needs['type'] == '' )
196
+ $needs['type'] = 'mycred_default';
197
+
198
  $mycred = mycred( $needs['type'] );
199
 
200
  if ( ! array_key_exists( $req_level, $levels ) )
256
 
257
  }
258
 
259
+ if ( $count > 0 )
260
+ wp_send_json_success( sprintf( __( '%d Users earned this badge.', 'mycred' ), $count ) );
261
 
262
  }
263
 
267
 
268
  /**
269
  * AJAX: Remove Badge Connections
270
+ * @version 1.0.1
271
  */
272
  public function action_remove_connections() {
273
  check_ajax_referer( 'mycred-remove-badge-connection', 'token' );
283
  array( '%s' )
284
  );
285
 
286
+ if ( $count == 0 )
287
+ wp_send_json_success( __( 'No connections where removed.', 'mycred' ) );
288
+
289
  wp_send_json_success( sprintf( __( '%s connections where removed.', 'mycred' ), $count ) );
290
  }
291
 
355
 
356
  /**
357
  * Add Finished
358
+ * @version 1.1.1
359
  */
360
  public function add_finished( $ran, $request, $mycred ) {
361
 
362
+ if ( $ran !== false ) {
363
+
364
+ // Check if this reference has badges
365
+ $badge_ids = mycred_ref_has_badge( $request['ref'], $request );
366
+ if ( $badge_ids !== false ) {
367
 
368
+ mycred_check_if_user_gets_badge( absint( $request['user_id'] ), $badge_ids, $request );
 
 
369
 
370
+ }
371
+
372
+ }
373
 
374
  return $ran;
375
  }
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -619,7 +619,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
619
  /**
620
  * WP Mail
621
  * @since 1.1
622
- * @version 1.3
623
  */
624
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
625
 
@@ -639,6 +639,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
639
 
640
  $subject = $mycred->template_tags_user( $subject, $filtered['request']['user_id'] );
641
  $message = $mycred->template_tags_user( $message, $filtered['request']['user_id'] );
 
 
 
642
 
643
  $subject = $mycred->parse_template_tags( $subject, $entry );
644
  $message = $mycred->parse_template_tags( $message, $entry );
619
  /**
620
  * WP Mail
621
  * @since 1.1
622
+ * @version 1.3.1
623
  */
624
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
625
 
639
 
640
  $subject = $mycred->template_tags_user( $subject, $filtered['request']['user_id'] );
641
  $message = $mycred->template_tags_user( $message, $filtered['request']['user_id'] );
642
+
643
+ $subject = $mycred->template_tags_amount( $subject, $filtered['request']['amount'] );
644
+ $message = $mycred->template_tags_amount( $message, $filtered['request']['amount'] );
645
 
646
  $subject = $mycred->parse_template_tags( $subject, $entry );
647
  $message = $mycred->parse_template_tags( $message, $entry );
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -7,19 +7,14 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
7
  * Custom Payment Gateway for WooCommerce.
8
  * @see http://docs.woothemes.com/document/payment-gateway-api/
9
  * @since 0.1
10
- * @version 1.4.1
11
  */
 
12
  if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
13
-
14
- /**
15
- * Construct Gateway
16
- * @since 0.1
17
- * @version 1.4
18
- */
19
- add_action( 'after_setup_theme', 'mycred_init_woo_gateway' );
20
  function mycred_init_woo_gateway() {
21
 
22
- if ( ! class_exists( 'WC_Payment_Gateway' ) ) return;
 
23
  class WC_Gateway_myCRED extends WC_Payment_Gateway {
24
 
25
  public $mycred;
@@ -396,14 +391,17 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
396
  echo __( 'Your account has successfully been charged.', 'mycred' );
397
  }
398
  }
 
399
  }
 
400
 
401
- /**
402
- * Log Entry: Payment
403
- * @since 0.1
404
- * @version 1.3.1
405
- */
406
- add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
 
407
  function mycred_woo_log_entry_payment( $content, $log_entry ) {
408
 
409
  if ( ! class_exists( 'WC_Payment_Gateway' ) ) return $content;
@@ -437,13 +435,15 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
437
  return $content;
438
 
439
  }
 
440
 
441
- /**
442
- * Log Entry: Refund
443
- * @since 1.5.4
444
- * @version 1.0
445
- */
446
- add_filter( 'mycred_parse_log_entry_woocommerce_refund', 'mycred_woo_log_entry_refunds', 90, 2 );
 
447
  function mycred_woo_log_entry_refunds( $content, $log_entry ) {
448
 
449
  $content = mycred_woo_log_entry_payment( $content, $log_entry );
@@ -458,13 +458,15 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
458
  return $content;
459
 
460
  }
 
461
 
462
- /**
463
- * Log Entry: Profit Share Refund
464
- * @since 1.5.4
465
- * @version 1.0
466
- */
467
- add_filter( 'mycred_parse_log_entry_store_sale_refund', 'mycred_woo_log_entry_profit_refund', 90, 2 );
 
468
  function mycred_woo_log_entry_profit_refund( $content, $log_entry ) {
469
 
470
  $data = maybe_unserialize( $log_entry->data );
@@ -484,13 +486,15 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
484
  return $content;
485
 
486
  }
 
487
 
488
- /**
489
- * Parse Email Notice
490
- * @since 1.2.2
491
- * @version 1.0.1
492
- */
493
- add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
 
494
  function mycred_woo_parse_email( $email ) {
495
 
496
  if ( $email['request']['ref'] == 'woocommerce_payment' && function_exists( 'woocommerce_get_page_id' ) ) {
@@ -511,31 +515,35 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
511
  return $email;
512
 
513
  }
 
514
 
515
- /**
516
- * Register Gateway
517
- * @since 0.1
518
- * @version 1.0
519
- */
520
- add_filter( 'woocommerce_payment_gateways', 'mycred_register_woo_gateway' );
 
521
  function mycred_register_woo_gateway( $methods ) {
522
 
523
  $methods[] = 'WC_Gateway_myCRED';
524
  return $methods;
525
 
526
  }
 
527
 
528
- /**
529
- * Available Gateways
530
- * "Removes" this gateway as a payment option if:
531
- * - User is not logged in
532
- * - User is excluded
533
- * - Users balance is too low
534
- *
535
- * @since 0.1
536
- * @version 1.2.1
537
- */
538
- add_filter( 'woocommerce_available_payment_gateways', 'mycred_woo_available_gateways' );
 
539
  function mycred_woo_available_gateways( $gateways ) {
540
 
541
  if ( ! isset( $gateways['mycred'] ) ) return $gateways;
@@ -585,14 +593,16 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
585
  return $gateways;
586
 
587
  }
 
588
 
589
- /**
590
- * Add Currency
591
- * Adds myCRED as one form of currency.
592
- * @since 0.1
593
- * @version 1.1
594
- */
595
- add_filter( 'woocommerce_currencies', 'mycred_woo_add_currency' );
 
596
  function mycred_woo_add_currency( $currencies ) {
597
 
598
  $settings = get_option( 'woocommerce_mycred_settings', false );
@@ -609,14 +619,16 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
609
  return $currencies;
610
 
611
  }
 
612
 
613
- /**
614
- * Currency Symbol
615
- * Appends the myCRED prefix or suffix to the amount.
616
- * @since 0.1
617
- * @version 1.1
618
- */
619
- add_filter( 'woocommerce_currency_symbol', 'mycred_woo_currency', 10, 2 );
 
620
  function mycred_woo_currency( $currency_symbol, $currency ) {
621
 
622
  $settings = get_option( 'woocommerce_mycred_settings', false );
@@ -638,15 +650,17 @@ if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
638
  return $currency_symbol;
639
 
640
  }
 
641
 
642
- /**
643
- * Add CRED Cost
644
- * Appends the cost in myCRED format.
645
- * @since 0.1
646
- * @version 1.2.1
647
- */
648
- add_action( 'woocommerce_review_order_after_order_total', 'mycred_woo_after_order_total' );
649
- add_action( 'woocommerce_cart_totals_after_order_total', 'mycred_woo_after_order_total' );
 
650
  function mycred_woo_after_order_total() {
651
 
652
  if ( ! is_user_logged_in() ) return;
7
  * Custom Payment Gateway for WooCommerce.
8
  * @see http://docs.woothemes.com/document/payment-gateway-api/
9
  * @since 0.1
10
+ * @version 1.4.2
11
  */
12
+ add_action( 'after_setup_theme', 'mycred_init_woo_gateway' );
13
  if ( ! function_exists( 'mycred_init_woo_gateway' ) ) :
 
 
 
 
 
 
 
14
  function mycred_init_woo_gateway() {
15
 
16
+ if ( ! class_exists( 'WC_Payment_Gateway' ) || class_exists( 'WC_Gateway_myCRED' ) ) return;
17
+
18
  class WC_Gateway_myCRED extends WC_Payment_Gateway {
19
 
20
  public $mycred;
391
  echo __( 'Your account has successfully been charged.', 'mycred' );
392
  }
393
  }
394
+
395
  }
396
+ endif;
397
 
398
+ /**
399
+ * Log Entry: Payment
400
+ * @since 0.1
401
+ * @version 1.3.1
402
+ */
403
+ add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
404
+ if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
405
  function mycred_woo_log_entry_payment( $content, $log_entry ) {
406
 
407
  if ( ! class_exists( 'WC_Payment_Gateway' ) ) return $content;
435
  return $content;
436
 
437
  }
438
+ endif;
439
 
440
+ /**
441
+ * Log Entry: Refund
442
+ * @since 1.5.4
443
+ * @version 1.0
444
+ */
445
+ add_filter( 'mycred_parse_log_entry_woocommerce_refund', 'mycred_woo_log_entry_refunds', 90, 2 );
446
+ if ( ! function_exists( 'mycred_woo_log_entry_refunds' ) ) :
447
  function mycred_woo_log_entry_refunds( $content, $log_entry ) {
448
 
449
  $content = mycred_woo_log_entry_payment( $content, $log_entry );
458
  return $content;
459
 
460
  }
461
+ endif;
462
 
463
+ /**
464
+ * Log Entry: Profit Share Refund
465
+ * @since 1.5.4
466
+ * @version 1.0
467
+ */
468
+ add_filter( 'mycred_parse_log_entry_store_sale_refund', 'mycred_woo_log_entry_profit_refund', 90, 2 );
469
+ if ( ! function_exists( 'mycred_woo_log_entry_profit_refund' ) ) :
470
  function mycred_woo_log_entry_profit_refund( $content, $log_entry ) {
471
 
472
  $data = maybe_unserialize( $log_entry->data );
486
  return $content;
487
 
488
  }
489
+ endif;
490
 
491
+ /**
492
+ * Parse Email Notice
493
+ * @since 1.2.2
494
+ * @version 1.0.1
495
+ */
496
+ add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
497
+ if ( ! function_exists( 'mycred_woo_parse_email' ) ) :
498
  function mycred_woo_parse_email( $email ) {
499
 
500
  if ( $email['request']['ref'] == 'woocommerce_payment' && function_exists( 'woocommerce_get_page_id' ) ) {
515
  return $email;
516
 
517
  }
518
+ endif;
519
 
520
+ /**
521
+ * Register Gateway
522
+ * @since 0.1
523
+ * @version 1.0
524
+ */
525
+ add_filter( 'woocommerce_payment_gateways', 'mycred_register_woo_gateway' );
526
+ if ( ! function_exists( 'mycred_register_woo_gateway' ) ) :
527
  function mycred_register_woo_gateway( $methods ) {
528
 
529
  $methods[] = 'WC_Gateway_myCRED';
530
  return $methods;
531
 
532
  }
533
+ endif;
534
 
535
+ /**
536
+ * Available Gateways
537
+ * "Removes" this gateway as a payment option if:
538
+ * - User is not logged in
539
+ * - User is excluded
540
+ * - Users balance is too low
541
+ *
542
+ * @since 0.1
543
+ * @version 1.2.1
544
+ */
545
+ add_filter( 'woocommerce_available_payment_gateways', 'mycred_woo_available_gateways' );
546
+ if ( ! function_exists( 'mycred_woo_available_gateways' ) ) :
547
  function mycred_woo_available_gateways( $gateways ) {
548
 
549
  if ( ! isset( $gateways['mycred'] ) ) return $gateways;
593
  return $gateways;
594
 
595
  }
596
+ endif;
597
 
598
+ /**
599
+ * Add Currency
600
+ * Adds myCRED as one form of currency.
601
+ * @since 0.1
602
+ * @version 1.1
603
+ */
604
+ add_filter( 'woocommerce_currencies', 'mycred_woo_add_currency' );
605
+ if ( ! function_exists( 'mycred_woo_add_currency' ) ) :
606
  function mycred_woo_add_currency( $currencies ) {
607
 
608
  $settings = get_option( 'woocommerce_mycred_settings', false );
619
  return $currencies;
620
 
621
  }
622
+ endif;
623
 
624
+ /**
625
+ * Currency Symbol
626
+ * Appends the myCRED prefix or suffix to the amount.
627
+ * @since 0.1
628
+ * @version 1.1
629
+ */
630
+ add_filter( 'woocommerce_currency_symbol', 'mycred_woo_currency', 10, 2 );
631
+ if ( ! function_exists( 'mycred_woo_currency' ) ) :
632
  function mycred_woo_currency( $currency_symbol, $currency ) {
633
 
634
  $settings = get_option( 'woocommerce_mycred_settings', false );
650
  return $currency_symbol;
651
 
652
  }
653
+ endif;
654
 
655
+ /**
656
+ * Add CRED Cost
657
+ * Appends the cost in myCRED format.
658
+ * @since 0.1
659
+ * @version 1.2.1
660
+ */
661
+ add_action( 'woocommerce_review_order_after_order_total', 'mycred_woo_after_order_total' );
662
+ add_action( 'woocommerce_cart_totals_after_order_total', 'mycred_woo_after_order_total' );
663
+ if ( ! function_exists( 'mycred_woo_after_order_total' ) ) :
664
  function mycred_woo_after_order_total() {
665
 
666
  if ( ! is_user_logged_in() ) return;
addons/transfer/includes/mycred-transfer-functions.php CHANGED
@@ -11,7 +11,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
11
  * @filter 'mycred_transfer_limit'
12
  * @filter 'mycred_transfer_acc_limit'
13
  * @since 0.1
14
- * @version 1.3
15
  */
16
  if ( ! function_exists( 'mycred_user_can_transfer' ) ) :
17
  function mycred_user_can_transfer( $user_id = NULL, $amount = NULL, $type = 'mycred_default', $ref = NULL ) {
@@ -40,7 +40,7 @@ if ( ! function_exists( 'mycred_user_can_transfer' ) ) :
40
  // Account Limit
41
  // The lowest amount a user can have on their account. By default, this
42
  // is zero. But you can override this via the mycred_transfer_acc_limit hook.
43
- $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero, $type ) );
44
 
45
  // Check if users balance is below the account limit
46
  if ( $balance < $account_limit ) return 'low';
11
  * @filter 'mycred_transfer_limit'
12
  * @filter 'mycred_transfer_acc_limit'
13
  * @since 0.1
14
+ * @version 1.3.1
15
  */
16
  if ( ! function_exists( 'mycred_user_can_transfer' ) ) :
17
  function mycred_user_can_transfer( $user_id = NULL, $amount = NULL, $type = 'mycred_default', $ref = NULL ) {
40
  // Account Limit
41
  // The lowest amount a user can have on their account. By default, this
42
  // is zero. But you can override this via the mycred_transfer_acc_limit hook.
43
+ $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero, $type, $user_id, $ref ) );
44
 
45
  // Check if users balance is below the account limit
46
  if ( $balance < $account_limit ) return 'low';
lang/mycred-zh_CN.mo CHANGED
Binary file
lang/mycred-zh_CN.po CHANGED
@@ -1,6600 +1,6885 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Mon Feb 02 2015 11:29:37 GMT+0100 (CET)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
- "Language-Team: LANGUAGE <support@mycred.me>\n"
9
- "Language: Chinese (China)\n"
10
- "Plural-Forms: nplurals=1; plural=0\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Poedit-SearchPath-0: ..\n"
23
- "X-Loco-Target-Locale: zh_CN"
24
-
25
- #: ../mycred.php:449
26
- msgid "Balance"
27
- msgstr "余额"
28
-
29
- #: ../mycred.php:474
30
- msgid "%label% History"
31
- msgstr "%label% 历史"
32
-
33
- #: ../mycred.php:567
34
- #, php-format
35
- msgid "About %s"
36
- msgstr "关于 %s"
37
-
38
- #: ../mycred.php:576
39
- msgid "Awesome People"
40
- msgstr "真棒的人"
41
-
42
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
43
- #: addon-badges.php:595 ../addons/gateway/event-booking/mycred-eventsmanager.php:
44
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:421 ../addons/ranks/myCRED-addon-
45
- #: ranks.php:1514 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
46
- #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
47
- #: php:636
48
- msgid "Processing..."
49
- msgstr "处理中..."
50
-
51
- #: ../mycred.php:662
52
- msgid ""
53
- "Warning! All entries in your log will be permanently removed! This can not "
54
- "be undone!"
55
- msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
56
-
57
- #: ../mycred.php:663
58
- msgid ""
59
- "All log entries belonging to deleted users will be permanently deleted! This "
60
- "can not be undone!"
61
- msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
62
-
63
- #: ../mycred.php:664
64
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
65
- msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
66
-
67
- #: ../mycred.php:665
68
- msgid "Done!"
69
- msgstr "完成了!"
70
-
71
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
72
- msgid "Close"
73
- msgstr "关闭"
74
-
75
- #: ../mycred.php:667
76
- msgid "Export users %plural%"
77
- msgstr "导出用户 %plural%"
78
-
79
- #: ../mycred.php:668
80
- msgid ""
81
- "In order to adjust the number of decimal places you want to use we must "
82
- "update your log. It is highly recommended that you backup your current log "
83
- "before continuing!"
84
- msgstr ""
85
-
86
- #: ../mycred.php:684
87
- msgid "Edit Users Balance"
88
- msgstr "编辑用户余额"
89
-
90
- #: ../mycred.php:702
91
- msgid "Edit Log Entry"
92
- msgstr "编辑日志条目"
93
-
94
- #: ../mycred.php:706
95
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
96
- msgstr "您确定要删除此日志条目?此操作无法撤消!"
97
-
98
- #: ../mycred.php:707
99
- msgid "Log entry updated"
100
- msgstr "日志条目更新"
101
-
102
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
103
- #: notices.php:808 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
104
- #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
105
- msgid "Setup"
106
- msgstr "设置"
107
-
108
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
109
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
110
- #: network.php:151 ../modules/mycred-module-settings.php:20 ../modules/mycred-
111
- #: module-settings.php:21 ../modules/mycred-module-settings.php:22
112
- msgid "Settings"
113
- msgstr "设置"
114
-
115
- #: ../mycred.php:803
116
- msgid ""
117
- "Make sure to backup your database and files before updating, in case "
118
- "anything goes wrong!"
119
- msgstr "请务必在更新前备份你的数据库和文件,以防出错!"
120
-
121
- #: ../abstracts/mycred-abstract-hook.php:74
122
- msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
123
- msgstr "函数 myCRED_Hook::run() 必须在一个子类来重写。"
124
-
125
- #: ../abstracts/mycred-abstract-hook.php:83
126
- msgid "This Hook has no settings"
127
- msgstr "这个钩子没有设置"
128
-
129
- #: ../abstracts/mycred-abstract-hook.php:223 ../abstracts/mycred-abstract-hook.
130
- #: php:290 ../includes/mycred-functions.php:2633 ../modules/mycred-module-hooks.
131
- #: php:1649
132
- msgid "No limit"
133
- msgstr "没有限制"
134
-
135
- #: ../abstracts/mycred-abstract-hook.php:224
136
- msgid "/ Day"
137
- msgstr ""
138
-
139
- #: ../abstracts/mycred-abstract-hook.php:225
140
- msgid "/ Week"
141
- msgstr ""
142
-
143
- #: ../abstracts/mycred-abstract-hook.php:226
144
- msgid "/ Month"
145
- msgstr ""
146
-
147
- #: ../abstracts/mycred-abstract-hook.php:227
148
- msgid "in Total"
149
- msgstr ""
150
-
151
- #: ../abstracts/mycred-abstract-hook.php:291
152
- msgid "Once every 24 hours"
153
- msgstr "每24小时一次"
154
-
155
- #: ../abstracts/mycred-abstract-hook.php:292
156
- msgid "Once every 7 days"
157
- msgstr "每7天一次"
158
-
159
- #: ../abstracts/mycred-abstract-hook.php:293
160
- msgid "Once per day (reset at midnight)"
161
- msgstr "每天一次(在午夜重置)"
162
-
163
- #: ../abstracts/mycred-abstract-hook.php:300 ../addons/banking/abstracts/mycred-
164
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:628 ..
165
- #: addons/buy-creds/myCRED-addon-buy-creds.php:649 ../addons/buy-
166
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
167
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
168
- #: creds/gateways/zombaio.php:338 ../addons/email-notices/myCRED-addon-email-
169
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:989
170
- msgid "Select"
171
- msgstr "选择"
172
-
173
- #: ../abstracts/mycred-abstract-module.php:56
174
- msgid "myCRED_Module() Error. A Module ID is required!"
175
- msgstr "myCRED_Module() 错误。模块ID是必须的!"
176
-
177
- #: ../abstracts/mycred-abstract-module.php:351 ../abstracts/mycred-abstract-
178
- #: module.php:359
179
- msgid "Surprise"
180
- msgstr "惊喜"
181
-
182
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:83
183
- msgid "click to close"
184
- msgstr "点击关闭"
185
-
186
- #: ../abstracts/mycred-abstract-module.php:447 ../includes/mycred-network.php:84
187
- msgid "click to open"
188
- msgstr "点击打开"
189
-
190
- #: ../abstracts/mycred-abstract-module.php:480 ../addons/buy-creds/myCRED-addon-
191
- #: buy-creds.php:846
192
- msgid "Settings Updated"
193
- msgstr "设置已更新"
194
-
195
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
196
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
197
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
198
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:373 ..
199
- #: addons/badges/myCRED-addon-badges.php:379 ../addons/badges/myCRED-addon-
200
- #: badges.php:385
201
- msgid "Badges"
202
- msgstr ""
203
-
204
- #: ../addons/badges/myCRED-addon-badges.php:169
205
- #, php-format
206
- msgid "Badges (%d)"
207
- msgstr ""
208
-
209
- #: ../addons/badges/myCRED-addon-badges.php:256
210
- #, php-format
211
- msgid "%d Users earned this badge."
212
- msgstr ""
213
-
214
- #: ../addons/badges/myCRED-addon-badges.php:260
215
- msgid "No users has yet earned this badge."
216
- msgstr ""
217
-
218
- #: ../addons/badges/myCRED-addon-badges.php:282
219
- #, php-format
220
- msgid "%s connections where removed."
221
- msgstr ""
222
-
223
- #: ../addons/badges/myCRED-addon-badges.php:374
224
- msgid "Badge"
225
- msgstr ""
226
-
227
- #: ../addons/badges/myCRED-addon-badges.php:375 ../addons/buy-creds/myCRED-addon-
228
- #: buy-creds.php:259 ../addons/buy-creds/myCRED-addon-buy-creds.php:260 ..
229
- #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
230
- #: addons/ranks/myCRED-addon-ranks.php:445
231
- msgid "Add New"
232
- msgstr "添加新信息"
233
-
234
- #: ../addons/badges/myCRED-addon-badges.php:376
235
- msgid "Add New Badge"
236
- msgstr ""
237
-
238
- #: ../addons/badges/myCRED-addon-badges.php:377
239
- msgid "Edit Badge"
240
- msgstr ""
241
-
242
- #: ../addons/badges/myCRED-addon-badges.php:378
243
- msgid "New Badge"
244
- msgstr ""
245
-
246
- #: ../addons/badges/myCRED-addon-badges.php:380
247
- msgid "View Badge"
248
- msgstr ""
249
-
250
- #: ../addons/badges/myCRED-addon-badges.php:381
251
- msgid "Search Badge"
252
- msgstr ""
253
-
254
- #: ../addons/badges/myCRED-addon-badges.php:382
255
- msgid "No badges found"
256
- msgstr ""
257
-
258
- #: ../addons/badges/myCRED-addon-badges.php:383
259
- msgid "No badges found in Trash"
260
- msgstr ""
261
-
262
- #: ../addons/badges/myCRED-addon-badges.php:429 ../addons/badges/myCRED-addon-
263
- #: badges.php:531
264
- msgid "Badge Name"
265
- msgstr ""
266
-
267
- #: ../addons/badges/myCRED-addon-badges.php:430
268
- msgid "Badge Images"
269
- msgstr ""
270
-
271
- #: ../addons/badges/myCRED-addon-badges.php:431
272
- msgid "Requirements"
273
- msgstr ""
274
-
275
- #: ../addons/badges/myCRED-addon-badges.php:432 ../addons/ranks/myCRED-addon-
276
- #: ranks.php:1038 ../modules/mycred-module-settings.php:600
277
- msgid "Users"
278
- msgstr "用户"
279
-
280
- #: ../addons/badges/myCRED-addon-badges.php:471
281
- msgid "A user must have gained or lost:"
282
- msgstr ""
283
-
284
- #: ../addons/badges/myCRED-addon-badges.php:507 ../addons/badges/myCRED-addon-
285
- #: badges.php:510 ../addons/badges/myCRED-addon-badges.php:514 ..
286
- #: addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
287
- #: badges.php:516
288
- msgid "Badge Updated."
289
- msgstr ""
290
-
291
- #: ../addons/badges/myCRED-addon-badges.php:512
292
- msgid "Badge Enabled"
293
- msgstr ""
294
-
295
- #: ../addons/badges/myCRED-addon-badges.php:513
296
- msgid "Badge Saved"
297
- msgstr ""
298
-
299
- #: ../addons/badges/myCRED-addon-badges.php:545
300
- msgid "Badge Setup"
301
- msgstr ""
302
-
303
- #: ../addons/badges/myCRED-addon-badges.php:572
304
- msgid "Assign Badge"
305
- msgstr ""
306
-
307
- #: ../addons/badges/myCRED-addon-badges.php:573
308
- msgid "Remove Connections"
309
- msgstr ""
310
-
311
- #: ../addons/badges/myCRED-addon-badges.php:628
312
- msgid "Time(s)"
313
- msgstr ""
314
-
315
- #: ../addons/badges/myCRED-addon-badges.php:629
316
- msgid "In total"
317
- msgstr ""
318
-
319
- #: ../addons/badges/myCRED-addon-badges.php:661 ../addons/badges/myCRED-addon-
320
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:821 ..
321
- #: addons/badges/myCRED-addon-badges.php:836
322
- msgid "Badge Image"
323
- msgstr ""
324
-
325
- #: ../addons/badges/myCRED-addon-badges.php:662 ../addons/badges/myCRED-addon-
326
- #: badges.php:662
327
- msgid "Set badge image"
328
- msgstr ""
329
-
330
- #: ../addons/badges/myCRED-addon-badges.php:672
331
- msgid "Default Image"
332
- msgstr ""
333
-
334
- #: ../addons/badges/myCRED-addon-badges.php:673 ../addons/badges/myCRED-addon-
335
- #: badges.php:731 ../addons/badges/myCRED-addon-badges.php:762 ..
336
- #: addons/badges/myCRED-addon-badges.php:821
337
- msgid "image url"
338
- msgstr ""
339
-
340
- #: ../addons/badges/myCRED-addon-badges.php:674 ../addons/badges/myCRED-addon-
341
- #: badges.php:732 ../addons/badges/myCRED-addon-badges.php:763 ..
342
- #: addons/badges/myCRED-addon-badges.php:821
343
- msgid "Add Image"
344
- msgstr ""
345
-
346
- #: ../addons/badges/myCRED-addon-badges.php:675
347
- msgid "Optional image to show when a user has not yet earned this badge."
348
- msgstr ""
349
-
350
- #: ../addons/badges/myCRED-addon-badges.php:694 ../addons/badges/myCRED-addon-
351
- #: badges.php:746
352
- #, php-format
353
- msgid "Level %d"
354
- msgstr ""
355
-
356
- #: ../addons/badges/myCRED-addon-badges.php:699 ../addons/badges/myCRED-addon-
357
- #: badges.php:751 ../addons/badges/myCRED-addon-badges.php:821
358
- msgid "for"
359
- msgstr ""
360
-
361
- #: ../addons/badges/myCRED-addon-badges.php:730
362
- msgid "Main Image"
363
- msgstr ""
364
-
365
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
366
- #: badges.php:821
367
- msgid "Leave empty if you do not want to assign a custom image for this level."
368
- msgstr ""
369
-
370
- #: ../addons/badges/myCRED-addon-badges.php:764 ../addons/badges/myCRED-addon-
371
- #: badges.php:821
372
- msgid "Remove this level"
373
- msgstr ""
374
-
375
- #: ../addons/badges/myCRED-addon-badges.php:778
376
- msgid "Add Level"
377
- msgstr ""
378
-
379
- #: ../addons/badges/myCRED-addon-badges.php:821 ../addons/badges/myCRED-addon-
380
- #: badges.php:1141
381
- msgid "Level"
382
- msgstr ""
383
-
384
- #: ../addons/badges/myCRED-addon-badges.php:838
385
- msgid "Use as Badge"
386
- msgstr ""
387
-
388
- #: ../addons/badges/myCRED-addon-badges.php:960 ../addons/badges/myCRED-addon-
389
- #: badges.php:991 ../addons/gateway/carts/mycred-woocommerce.php:153 ..
390
- #: modules/mycred-module-buddypress.php:384
391
- msgid "Do not show"
392
- msgstr "不显示"
393
-
394
- #: ../addons/badges/myCRED-addon-badges.php:961 ../modules/mycred-module-
395
- #: buddypress.php:385
396
- msgid "Include in Profile Header"
397
- msgstr ""
398
-
399
- #: ../addons/badges/myCRED-addon-badges.php:962 ../addons/ranks/myCRED-addon-
400
- #: ranks.php:1396 ../modules/mycred-module-buddypress.php:386
401
- msgid "Include under the \"Profile\" tab"
402
- msgstr "包括在\"个人资料\"TAB下面"
403
-
404
- #: ../addons/badges/myCRED-addon-badges.php:963 ../modules/mycred-module-
405
- #: buddypress.php:387
406
- msgid "Include under the \"Profile\" tab and Profile Header"
407
- msgstr ""
408
-
409
- #: ../addons/badges/myCRED-addon-badges.php:976 ../addons/badges/myCRED-addon-
410
- #: badges.php:1007
411
- msgid "Show all badges, including badges users have not yet earned."
412
- msgstr ""
413
-
414
- #: ../addons/badges/myCRED-addon-badges.php:992 ../addons/ranks/myCRED-addon-
415
- #: ranks.php:1442
416
- msgid "Include in Profile"
417
- msgstr ""
418
-
419
- #: ../addons/badges/myCRED-addon-badges.php:993
420
- msgid "Include in Forum Replies"
421
- msgstr ""
422
-
423
- #: ../addons/badges/myCRED-addon-badges.php:994
424
- msgid "Include in Profile and Forum Replies"
425
- msgstr ""
426
-
427
- #: ../addons/badges/myCRED-addon-badges.php:1098
428
- msgid "User Badges"
429
- msgstr ""
430
-
431
- #: ../addons/badges/myCRED-addon-badges.php:1103
432
- msgid ""
433
- "Here you can view the badges this user has earned and if needed, manually "
434
- "give or take away a badge from a user."
435
- msgstr ""
436
-
437
- #: ../addons/badges/myCRED-addon-badges.php:1112
438
- msgid "Not earned"
439
- msgstr ""
440
-
441
- #: ../addons/badges/myCRED-addon-badges.php:1118 ../addons/badges/myCRED-addon-
442
- #: badges.php:1155
443
- msgid "Earned"
444
- msgstr ""
445
-
446
- #: ../addons/badges/myCRED-addon-badges.php:1130
447
- msgid "No image"
448
- msgstr ""
449
-
450
- #: ../addons/badges/myCRED-addon-badges.php:1137
451
- msgid "Select a level"
452
- msgstr ""
453
-
454
- #: ../addons/badges/myCRED-addon-badges.php:1152 ../addons/email-notices/myCRED-
455
- #: addon-email-notices.php:807
456
- msgid "Status"
457
- msgstr "状态"
458
-
459
- #: ../addons/badges/myCRED-addon-badges.php:1169 ../addons/email-notices/myCRED-
460
- #: addon-email-notices.php:1290
461
- msgid "Save Changes"
462
- msgstr ""
463
-
464
- #: ../addons/badges/includes/mycred-badge-functions.php:65
465
- #, php-format
466
- msgid "Level %s"
467
- msgstr ""
468
-
469
- #: ../addons/badges/includes/mycred-badge-functions.php:68
470
- #, php-format
471
- msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
472
- msgid "%s for %s %s - %s"
473
- msgstr ""
474
-
475
- #: ../addons/badges/includes/mycred-badge-functions.php:68 ..
476
- #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
477
- #: coupons.php:469
478
- #, php-format
479
- msgid "1 time"
480
- msgid_plural "%d times"
481
- msgstr[0] ""
482
- msgstr[1] ""
483
-
484
- #: ../addons/badges/includes/mycred-badge-functions.php:70
485
- #, php-format
486
- msgctxt "\"x points\" for \"reference\" in total"
487
- msgid "%s for %s in total"
488
- msgstr ""
489
-
490
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
491
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
492
- msgid "Banking"
493
- msgstr "银行"
494
-
495
- #: ../addons/banking/myCRED-addon-banking.php:158
496
- msgid "Central Banking"
497
- msgstr ""
498
-
499
- #: ../addons/banking/myCRED-addon-banking.php:159
500
- #, php-format
501
- msgid ""
502
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
503
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
504
- "deposited back into this account."
505
- msgstr ""
506
-
507
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
508
- #: addons/banking/services/mycred-bank-service-interest.php:512
509
- msgid "Compound Interest"
510
- msgstr "利息"
511
-
512
- #: ../addons/banking/myCRED-addon-banking.php:166
513
- #, php-format
514
- msgid "Apply a positive or negative interest rate on your users %_plural% balances."
515
- msgstr ""
516
-
517
- #: ../addons/banking/myCRED-addon-banking.php:172
518
- msgid "Recurring Payouts"
519
- msgstr "定期支付"
520
-
521
- #: ../addons/banking/myCRED-addon-banking.php:173
522
- msgid "Setup mass %_singular% payouts for your users."
523
- msgstr ""
524
-
525
- #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
526
- #: addon-buy-creds.php:836 ../addons/buy-creds/myCRED-addon-buy-creds.php:932 ..
527
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
528
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:292 ..
529
- #: modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:326 ..
530
- #: modules/mycred-module-log.php:597 ../modules/mycred-module-settings.php:457
531
- msgid "Access Denied"
532
- msgstr "拒绝访问"
533
-
534
- #: ../addons/banking/myCRED-addon-banking.php:225
535
- #, php-format
536
- msgid "%s Banking"
537
- msgstr "%s 银行"
538
-
539
- #: ../addons/banking/myCRED-addon-banking.php:228
540
- msgid "Your banking setup for %plural%."
541
- msgstr ""
542
-
543
- #: ../addons/banking/myCRED-addon-banking.php:231
544
- msgid "WP-Cron deactivation detected!"
545
- msgstr "WP-Cron 检测到已禁用!"
546
-
547
- #: ../addons/banking/myCRED-addon-banking.php:232
548
- msgid "Warning! This add-on requires WP - Cron to work."
549
- msgstr "警告!此扩展需要 WP-Cron 来工作。"
550
-
551
- #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
552
- #: addon-buy-creds.php:870 ../modules/mycred-module-hooks.php:196
553
- msgid "Enable"
554
- msgstr "启用"
555
-
556
- #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
557
- #: php:211
558
- msgid "Update Changes"
559
- msgstr "更新设置"
560
-
561
- #: ../addons/banking/abstracts/mycred-abstract-service.php:79
562
- msgid "This Service has no settings"
563
- msgstr "这个服务没有设置"
564
-
565
- #: ../addons/banking/abstracts/mycred-abstract-service.php:233
566
- msgid "Hourly"
567
- msgstr "每小时"
568
-
569
- #: ../addons/banking/abstracts/mycred-abstract-service.php:237
570
- msgid "Daily"
571
- msgstr "每天"
572
-
573
- #: ../addons/banking/abstracts/mycred-abstract-service.php:241
574
- msgid "Weekly"
575
- msgstr "每周"
576
-
577
- #: ../addons/banking/abstracts/mycred-abstract-service.php:245
578
- msgid "Monthly"
579
- msgstr "每月"
580
-
581
- #: ../addons/banking/abstracts/mycred-abstract-service.php:249
582
- msgid "Quarterly"
583
- msgstr "每季"
584
-
585
- #: ../addons/banking/abstracts/mycred-abstract-service.php:253
586
- msgid "Semiannually"
587
- msgstr "每半年"
588
-
589
- #: ../addons/banking/abstracts/mycred-abstract-service.php:257
590
- msgid "Annually"
591
- msgstr "每年"
592
-
593
- #: ../addons/banking/services/mycred-bank-service-central.php:105
594
- msgid "Bank User"
595
- msgstr ""
596
-
597
- #: ../addons/banking/services/mycred-bank-service-central.php:109
598
- msgid "The user ID of the central bank account. This user can not be excluded!"
599
- msgstr ""
600
-
601
- #: ../addons/banking/services/mycred-bank-service-central.php:112
602
- msgid "Ignore Manual Adjustments"
603
- msgstr ""
604
-
605
- #: ../addons/banking/services/mycred-bank-service-interest.php:24
606
- msgid "%plural% interest rate payment"
607
- msgstr "%plural% 利率支付"
608
-
609
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
610
- msgid "Compounding Interest"
611
- msgstr ""
612
-
613
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
614
- #, php-format
615
- msgid "%d Users are left to process."
616
- msgstr ""
617
-
618
- #: ../addons/banking/services/mycred-bank-service-interest.php:388
619
- msgid "Payout History"
620
- msgstr ""
621
-
622
- #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
623
- #: addons/banking/services/mycred-bank-service-interest.php:409 ..
624
- #: addons/banking/services/mycred-bank-service-payouts.php:250
625
- msgid "Run Count"
626
- msgstr ""
627
-
628
- #: ../addons/banking/services/mycred-bank-service-interest.php:397
629
- msgid "Last Payout"
630
- msgstr ""
631
-
632
- #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
633
- #: addons/banking/services/mycred-bank-service-interest.php:414
634
- msgid "Activated"
635
- msgstr ""
636
-
637
- #: ../addons/banking/services/mycred-bank-service-interest.php:401
638
- msgid "Total Payed Interest"
639
- msgstr ""
640
-
641
- #: ../addons/banking/services/mycred-bank-service-interest.php:405
642
- msgid "Compound History"
643
- msgstr ""
644
-
645
- #: ../addons/banking/services/mycred-bank-service-interest.php:414
646
- msgid "Last Interest Compound"
647
- msgstr ""
648
-
649
- #: ../addons/banking/services/mycred-bank-service-interest.php:418
650
- msgid "Total Compounded Interest"
651
- msgstr ""
652
-
653
- #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
654
- #: addons/banking/services/mycred-bank-service-interest.php:549
655
- msgid "Interest Rate"
656
- msgstr "利率"
657
-
658
- #: ../addons/banking/services/mycred-bank-service-interest.php:425
659
- msgid "Default Rate"
660
- msgstr ""
661
-
662
- #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
663
- #: addons/banking/services/mycred-bank-service-payouts.php:268
664
- msgid "Can not be zero."
665
- msgstr "不能为零。"
666
-
667
- #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
668
- #: addons/gateway/carts/mycred-wpecommerce.php:367
669
- msgid "Payout"
670
- msgstr "支付"
671
-
672
- #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
673
- #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
674
- #: creds/myCRED-addon-buy-creds.php:606 ../addons/buy-creds/myCRED-addon-buy-
675
- #: creds.php:665 ../addons/coupons/myCRED-addon-coupons.php:502 ..
676
- #: addons/gateway/carts/mycred-marketpress.php:395 ..
677
- #: addons/gateway/carts/mycred-marketpress.php:428 ..
678
- #: addons/gateway/carts/mycred-woocommerce.php:105 ..
679
- #: addons/gateway/carts/mycred-woocommerce.php:177 ..
680
- #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
681
- #: hooks.php:891 ../modules/mycred-module-hooks.php:1847 ../modules/mycred-module-
682
- #: hooks.php:2187 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-
683
- #: badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-hook-
684
- #: events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.php:
685
- #: 209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-
686
- #: star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:304 ..
687
- #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
688
- #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
689
- #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
690
- #: php:136
691
- msgid "Log Template"
692
- msgstr "日志模板"
693
-
694
- #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
695
- #: addons/banking/services/mycred-bank-service-payouts.php:290 ..
696
- #: addons/coupons/myCRED-addon-coupons.php:438
697
- msgid "Minimum Balance"
698
- msgstr "最少余额"
699
-
700
- #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
701
- #: addons/banking/services/mycred-bank-service-payouts.php:294
702
- msgid "Optional minimum balance requirement."
703
- msgstr ""
704
-
705
- #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
706
- #: addons/banking/services/mycred-bank-service-payouts.php:297
707
- msgid "Exclude"
708
- msgstr ""
709
-
710
- #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
711
- #: addons/banking/services/mycred-bank-service-payouts.php:300
712
- msgid "Comma separated list of user IDs"
713
- msgstr ""
714
-
715
- #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
716
- #: addons/banking/services/mycred-bank-service-payouts.php:304
717
- msgid "Roles"
718
- msgstr ""
719
-
720
- #: ../addons/banking/services/mycred-bank-service-interest.php:522
721
- msgid "This user is excluded from receiving interest on this balance."
722
- msgstr ""
723
-
724
- #: ../addons/banking/services/mycred-bank-service-interest.php:525
725
- msgid "Remove from Excluded List"
726
- msgstr ""
727
-
728
- #: ../addons/banking/services/mycred-bank-service-interest.php:537
729
- msgid "This user role is excluded from receiving interest on this balance."
730
- msgstr ""
731
-
732
- #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
733
- #: creds/myCRED-addon-buy-creds.php:758 ../addons/sell-content/myCRED-addon-sell-
734
- #: content.php:114
735
- msgid "Leave empty to use the default value."
736
- msgstr ""
737
-
738
- #: ../addons/banking/services/mycred-bank-service-interest.php:558
739
- msgid "Save Interest Rate"
740
- msgstr ""
741
-
742
- #: ../addons/banking/services/mycred-bank-service-interest.php:559
743
- msgid "Exclude from receiving interest"
744
- msgstr ""
745
-
746
- #: ../addons/banking/services/mycred-bank-service-interest.php:667
747
- msgid "Compound interest rate saved."
748
- msgstr ""
749
-
750
- #: ../addons/banking/services/mycred-bank-service-interest.php:669
751
- msgid "User excluded from receiving interest."
752
- msgstr ""
753
-
754
- #: ../addons/banking/services/mycred-bank-service-interest.php:671
755
- msgid "User included in receiving interest."
756
- msgstr ""
757
-
758
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
759
- msgid "Daily %_plural%"
760
- msgstr "每日 %_plural%"
761
-
762
- #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
763
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:254 ..
764
- #: modules/mycred-module-log.php:255
765
- msgid "History"
766
- msgstr "历史"
767
-
768
- #: ../addons/banking/services/mycred-bank-service-payouts.php:255
769
- msgid "Last Run"
770
- msgstr ""
771
-
772
- #: ../addons/banking/services/mycred-bank-service-payouts.php:259
773
- msgid "Total Payouts"
774
- msgstr ""
775
-
776
- #: ../addons/banking/services/mycred-bank-service-payouts.php:263
777
- msgid "Pay Users"
778
- msgstr "用户支付"
779
-
780
- #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
781
- #: creds/myCRED-addon-buy-creds.php:300 ../addons/buy-creds/myCRED-addon-buy-
782
- #: creds.php:1523 ../addons/buy-creds/myCRED-addon-buy-creds.php:1600 ..
783
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
784
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
785
- #: includes/mycred-shortcodes.php:971 ../includes/mycred-shortcodes.php:1112 ..
786
- #: plugins/mycred-hook-affiliatewp.php:256
787
- msgid "Amount"
788
- msgstr "数量"
789
-
790
- #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
791
- #: modules/mycred-module-hooks.php:2202
792
- msgid "Interval"
793
- msgstr "间隔"
794
-
795
- #: ../addons/banking/services/mycred-bank-service-payouts.php:276
796
- msgid "Cycles"
797
- msgstr "周期"
798
-
799
- #: ../addons/banking/services/mycred-bank-service-payouts.php:278
800
- msgid "Set to -1 for unlimited"
801
- msgstr "设置为-1为无限"
802
-
803
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
804
- msgid "Important"
805
- msgstr "重要"
806
-
807
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
808
- msgid ""
809
- "You can always stop payouts by deactivating this service. Just remember that "
810
- "if you deactivate while there are cycles left, this service will continue on "
811
- "when it gets re-activated. Set cycles to zero to reset."
812
- msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,它将继续,直到它被重新激活。设置周期为零来重置。"
813
-
814
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
815
- #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
816
- msgid "Payment Gateways"
817
- msgstr "支付网关"
818
-
819
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
820
- msgctxt "Post Type General Name"
821
- msgid "Pending Payments"
822
- msgstr ""
823
-
824
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
825
- msgctxt "Post Type Singular Name"
826
- msgid "Pending Payment"
827
- msgstr ""
828
-
829
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255 ../addons/buy-creds/myCRED-
830
- #: addon-buy-creds.php:257 ../addons/buy-creds/myCRED-addon-buy-creds.php:268
831
- msgid "Pending Payments"
832
- msgstr ""
833
-
834
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
835
- msgid "Edit Pending Payment"
836
- msgstr ""
837
-
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264 ../addons/buy-creds/myCRED-
839
- #: addon-buy-creds.php:1634
840
- msgid "No pending payments found"
841
- msgstr ""
842
-
843
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
844
- msgid "Not found in Trash"
845
- msgstr ""
846
-
847
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297 ../addons/buy-creds/myCRED-
848
- #: addon-buy-creds.php:988 ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
849
- msgid "Transaction ID"
850
- msgstr "交易 ID"
851
-
852
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299 ../addons/buy-creds/myCRED-
853
- #: addon-buy-creds.php:984
854
- msgid "Buyer"
855
- msgstr ""
856
-
857
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301 ../addons/buy-creds/myCRED-
858
- #: addon-buy-creds.php:1601 ../addons/buy-creds/abstracts/mycred-abstract-payment-
859
- #: gateway.php:594
860
- msgid "Cost"
861
- msgstr "花费"
862
-
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302 ../addons/buy-creds/myCRED-
864
- #: addon-buy-creds.php:983 ../addons/buy-creds/myCRED-addon-buy-creds.php:1599 ..
865
- #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
866
- msgid "Gateway"
867
- msgstr "网关"
868
-
869
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
870
- msgid "Type"
871
- msgstr ""
872
-
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
874
- msgid "Pay Out"
875
- msgstr ""
876
-
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
878
- msgid "buyCRED Purchase Log"
879
- msgstr "buyCRED 购买记录"
880
-
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422 ../addons/buy-creds/myCRED-
882
- #: addon-buy-creds.php:655 ../addons/buy-creds/myCRED-addon-buy-creds.php:842
883
- msgid "Purchase Log"
884
- msgstr "购买记录"
885
-
886
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515 ../addons/gateway/event-
887
- #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
888
- #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
889
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
890
- msgid "Payments"
891
- msgstr "付款"
892
-
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
894
- msgid "Please login to purchase %_plural%"
895
- msgstr "请登录后购买 %_plural%"
896
-
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
898
- #, php-format
899
- msgid "Gift purchase from %display_name%."
900
- msgstr "从 %display_name% 礼品购买"
901
-
902
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576 ../addons/ranks/myCRED-
903
- #: addon-ranks.php:1079
904
- msgid "Minimum %plural%"
905
- msgstr "最小 %plural%"
906
-
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
908
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
909
- msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
910
-
911
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585 ../addons/transfer/myCRED-
912
- #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
913
- #: module-settings.php:617
914
- msgid "Point Types"
915
- msgstr "积分类型"
916
-
917
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
918
- msgid "Select the point types that users can buy. You must select at least one!"
919
- msgstr ""
920
-
921
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
922
- msgid "Login Template"
923
- msgstr "日志模板"
924
-
925
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
926
- msgid "Content to show when a user is not logged in."
927
- msgstr "用户没有登录时显示的内容。"
928
-
929
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
930
- msgid "Thank You Page"
931
- msgstr "感谢页面"
932
-
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616 ../addons/buy-creds/myCRED-
934
- #: addon-buy-creds.php:637
935
- msgid "Custom URL"
936
- msgstr "自定义链接"
937
-
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621 ../addons/buy-creds/myCRED-
939
- #: addon-buy-creds.php:642
940
- msgid "Page"
941
- msgstr "页面"
942
-
943
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
944
- msgid "Cancellation Page"
945
- msgstr "取消页面"
946
-
947
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
948
- msgid "Show seperate log for %_plural% purchases."
949
- msgstr "为 %_plural% 购买显示单独的日志。"
950
-
951
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
952
- msgid "Gifting"
953
- msgstr "送礼"
954
-
955
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
956
- #, php-format
957
- msgid "Allow users to buy %_plural% for other users."
958
- msgstr "允许用户为其他用户购买 %_plural% 。"
959
-
960
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
961
- #, php-format
962
- msgid "Allow users to buy %_plural% for content authors."
963
- msgstr "允许用户为内容作者购买 %_plural% 。"
964
-
965
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670 ../modules/mycred-module-
966
- #: hooks.php:2912
967
- msgid "Available Shortcodes"
968
- msgstr "可用简码"
969
-
970
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
971
- #, php-format
972
- msgid "%s Exchange Rate"
973
- msgstr ""
974
-
975
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
976
- msgid "Save Exchange Rates"
977
- msgstr ""
978
-
979
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
980
- msgid "Exchange rate override saved"
981
- msgstr ""
982
-
983
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
984
- msgid "Payment completed"
985
- msgstr ""
986
-
987
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
988
- #, php-format
989
- msgid "%s Payment Gateways"
990
- msgstr "%s 支付网关"
991
-
992
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842 ../addons/buy-creds/myCRED-
993
- #: addon-buy-creds.php:992
994
- msgid "buyCRED Settings"
995
- msgstr "buyCRED设置"
996
-
997
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
998
- msgid "Test Mode"
999
- msgstr "测试模式"
1000
-
1001
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1002
- msgid "Enabled"
1003
- msgstr "已启用"
1004
-
1005
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1006
- msgid "Disabled"
1007
- msgstr "已禁用"
1008
-
1009
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1010
- msgid "Sandbox Mode"
1011
- msgstr "沙箱模式"
1012
-
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1014
- msgid "Enable for test purchases."
1015
- msgstr "启用测试购买。"
1016
-
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898 ../addons/gateway/event-
1018
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:692
1019
- msgid "Update Settings"
1020
- msgstr "更新设置"
1021
-
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1023
- msgid "More Gateways"
1024
- msgstr ""
1025
-
1026
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985 ../includes/mycred-log.php:
1027
- #: 634
1028
- msgid "Date"
1029
- msgstr "日期"
1030
-
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1032
- msgid "Payed"
1033
- msgstr "已支付"
1034
-
1035
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1036
- msgid "<strong>buy</strong>CRED Purchase Log"
1037
- msgstr "<strong>buy</strong>CRED购买日志"
1038
-
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992 ../addons/gateway/event-
1040
- #: booking/mycred-eventespresso3.php:367
1041
- msgid "Gateway Settings"
1042
- msgstr "网关设置"
1043
-
1044
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171 ../addons/sell-
1045
- #: content/myCRED-addon-sell-content.php:1209
1046
- msgid "No purchases found"
1047
- msgstr "没有找到购买"
1048
-
1049
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241 ../addons/buy-creds/myCRED-
1050
- #: addon-buy-creds.php:1354
1051
- msgid "This Add-on needs to setup before you can use this shortcode."
1052
- msgstr "你需要安装这个扩展才可以使用这个简码。"
1053
-
1054
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260 ../addons/buy-creds/myCRED-
1055
- #: addon-buy-creds.php:1373
1056
- msgid "No gateways installed."
1057
- msgstr "没有安装网关。"
1058
-
1059
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261 ../addons/buy-creds/myCRED-
1060
- #: addon-buy-creds.php:1374
1061
- msgid "Gateway does not exist."
1062
- msgstr "网关不存在。"
1063
-
1064
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1065
- msgid "Yourself"
1066
- msgstr "你自己"
1067
-
1068
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1069
- msgid "No active gateways found."
1070
- msgstr "没有活跃的网关。"
1071
-
1072
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1073
- msgid "The selected gateway is not active."
1074
- msgstr "所选择的网关没启用。"
1075
-
1076
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1077
- #, php-format
1078
- msgid "Buy with %gateway%"
1079
- msgstr "通过 %gateway% 购买。"
1080
-
1081
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429 ../addons/sell-
1082
- #: content/myCRED-addon-sell-content.php:44
1083
- msgid "Buy Now"
1084
- msgstr "立即购买"
1085
-
1086
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1087
- msgid "No users found"
1088
- msgstr "没有找到用户"
1089
-
1090
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1091
- msgid "To"
1092
- msgstr ""
1093
-
1094
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1095
- msgid "Select Amount"
1096
- msgstr "选择金额"
1097
-
1098
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1099
- msgid "min."
1100
- msgstr "分钟。"
1101
-
1102
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1103
- msgid "Select Gateway"
1104
- msgstr "选择网关"
1105
-
1106
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574 ../addons/gateway/event-
1107
- #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1108
- #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1109
- #: php:35
1110
- msgid "Pay Now"
1111
- msgstr "马上支付"
1112
-
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575 ../includes/mycred-install.
1114
- #: php:524
1115
- msgid "Cancel"
1116
- msgstr "取消"
1117
-
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602 ../addons/ranks/myCRED-
1119
- #: addon-ranks.php:1601 ../modules/mycred-module-log.php:375 ../modules/mycred-
1120
- #: module-settings.php:589 ../modules/mycred-module-settings.php:604
1121
- msgid "Actions"
1122
- msgstr "操作"
1123
-
1124
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
1125
- msgid "This Payment Gateway has no settings"
1126
- msgstr "这种支付网关没有设置"
1127
-
1128
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
1129
- msgid "Select currency"
1130
- msgstr "所选货币"
1131
-
1132
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
1133
- msgid "Incoming confirmation call detected"
1134
- msgstr "检测到来电确认电话"
1135
-
1136
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
1137
- #, php-format
1138
- msgid "Gateway identified itself as \"%s\""
1139
- msgstr "网关定义它自己为 \"%s\""
1140
-
1141
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
1142
- msgid "Verifying caller"
1143
- msgstr "验证呼叫者"
1144
-
1145
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
1146
- msgid "Test Payment"
1147
- msgstr "测试付款"
1148
-
1149
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404 ..
1150
- #: addons/gateway/carts/mycred-marketpress.php:179
1151
- msgid "Payment"
1152
- msgstr "付款"
1153
-
1154
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
1155
- msgid "Cancel purchase"
1156
- msgstr "取消购买"
1157
-
1158
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1159
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1160
- msgid "required"
1161
- msgstr "必填"
1162
-
1163
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1164
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1165
- msgid "optional"
1166
- msgstr "可选"
1167
-
1168
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
1169
- msgid "First Name"
1170
- msgstr "名字"
1171
-
1172
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
1173
- msgid "Last Name"
1174
- msgstr "姓氏"
1175
-
1176
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
1177
- msgid "Address Line 1"
1178
- msgstr "地址行1"
1179
-
1180
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
1181
- msgid "Address Line 2"
1182
- msgstr "地址行2"
1183
-
1184
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
1185
- msgid "City"
1186
- msgstr "城市"
1187
-
1188
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
1189
- msgid "Zip"
1190
- msgstr "邮编"
1191
-
1192
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
1193
- msgid "State"
1194
- msgstr "州"
1195
-
1196
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
1197
- msgid "Country"
1198
- msgstr "国家"
1199
-
1200
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
1201
- msgid "Choose Country"
1202
- msgstr "选择国家"
1203
-
1204
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
1205
- #, php-format
1206
- msgid "%s Purchase"
1207
- msgstr "%s 购买"
1208
-
1209
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592 ..
1210
- #: addons/gateway/carts/mycred-wpecommerce.php:112
1211
- msgid "Item"
1212
- msgstr "项目"
1213
-
1214
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
1215
- msgid "Debug"
1216
- msgstr "调试"
1217
-
1218
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
1219
- msgid ""
1220
- "Here you can see information that are collected and sent to this gateway. "
1221
- "Debug information is only visible for administrators and are intended for "
1222
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
1223
- "when you want to take this gateway online."
1224
- msgstr "在这里,你可以看到被收集并传送到该网关的信息。调试信息将只对管理员可见和拟用于该网关的故障排除/测试。当你想利用这个网关上线时,请停用 \"沙盒模式\"。"
1225
-
1226
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1227
- msgid "Section"
1228
- msgstr "部分"
1229
-
1230
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
1231
- msgid "Result"
1232
- msgstr "结果"
1233
-
1234
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
1235
- msgid "Payment Status"
1236
- msgstr "付款状态"
1237
-
1238
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
1239
- msgid "Request"
1240
- msgstr "请求"
1241
-
1242
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
1243
- msgid "Gateway Response"
1244
- msgstr "网关响应"
1245
-
1246
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
1247
- #, php-format
1248
- msgid "Continue to %s"
1249
- msgstr "继续 %s"
1250
-
1251
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1252
- #: addons/buy-creds/gateways/bitpay.php:226
1253
- msgid "Click here if you are not automatically redirected"
1254
- msgstr "如果你没有自动重定向,请点击这里"
1255
-
1256
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
1257
- msgid "The following information will be sent to the gateway"
1258
- msgstr "以下信息将被发送到网关"
1259
-
1260
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
1261
- msgid "Outside US"
1262
- msgstr "美国以外"
1263
-
1264
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1265
- msgid "January"
1266
- msgstr ""
1267
-
1268
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1269
- msgid "February"
1270
- msgstr ""
1271
-
1272
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1273
- msgid "March"
1274
- msgstr ""
1275
-
1276
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1277
- msgid "April"
1278
- msgstr ""
1279
-
1280
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1281
- msgid "May"
1282
- msgstr ""
1283
-
1284
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1285
- msgid "June"
1286
- msgstr ""
1287
-
1288
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1289
- msgid "July"
1290
- msgstr ""
1291
-
1292
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1293
- msgid "August"
1294
- msgstr ""
1295
-
1296
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1297
- msgid "September"
1298
- msgstr ""
1299
-
1300
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1301
- msgid "October"
1302
- msgstr ""
1303
-
1304
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1305
- msgid "November"
1306
- msgstr ""
1307
-
1308
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1309
- msgid "December"
1310
- msgstr ""
1311
-
1312
- #: ../addons/buy-creds/gateways/bitpay.php:30 ../addons/buy-
1313
- #: creds/gateways/netbilling.php:35 ../addons/buy-creds/gateways/paypal-standard.
1314
- #: php:30 ../addons/buy-creds/gateways/skrill.php:35
1315
- msgid "Purchase of myCRED %plural%"
1316
- msgstr "购买myCRED %plural%"
1317
-
1318
- #: ../addons/buy-creds/gateways/bitpay.php:60 ../addons/buy-
1319
- #: creds/gateways/netbilling.php:88 ../addons/buy-creds/gateways/paypal-standard.
1320
- #: php:142 ../addons/buy-creds/gateways/skrill.php:119
1321
- #, php-format
1322
- msgid "Price mismatch. Expected: %s Received: %s"
1323
- msgstr ""
1324
-
1325
- #: ../addons/buy-creds/gateways/bitpay.php:66 ../addons/buy-creds/gateways/paypal-
1326
- #: standard.php:148 ../addons/buy-creds/gateways/skrill.php:125
1327
- #, php-format
1328
- msgid "Currency mismatch. Expected: %s Received: %s"
1329
- msgstr ""
1330
-
1331
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
1332
- #: creds/gateways/netbilling.php:94 ../addons/buy-creds/gateways/paypal-standard.
1333
- #: php:154 ../addons/buy-creds/gateways/skrill.php:131
1334
- #, php-format
1335
- msgid "Payment not completed. Received: %s"
1336
- msgstr ""
1337
-
1338
- #: ../addons/buy-creds/gateways/bitpay.php:83 ../addons/buy-
1339
- #: creds/gateways/netbilling.php:105 ../addons/buy-creds/gateways/paypal-standard.
1340
- #: php:165 ../addons/buy-creds/gateways/skrill.php:142 ../addons/buy-
1341
- #: creds/gateways/zombaio.php:174
1342
- msgid "Failed to credit users account."
1343
- msgstr ""
1344
-
1345
- #: ../addons/buy-creds/gateways/bitpay.php:160 ../addons/buy-
1346
- #: creds/gateways/netbilling.php:140 ../addons/buy-creds/gateways/paypal-standard.
1347
- #: php:202 ../addons/buy-creds/gateways/skrill.php:180 ../addons/buy-
1348
- #: creds/gateways/zombaio.php:201
1349
- msgid "Please setup this gateway before attempting to make a purchase!"
1350
- msgstr "尝试进行购买前,请安装该网关!"
1351
-
1352
- #: ../addons/buy-creds/gateways/bitpay.php:212 ../addons/buy-
1353
- #: creds/gateways/bitpay.php:221 ../addons/buy-creds/gateways/netbilling.php:193 .
1354
- #: ./addons/buy-creds/gateways/paypal-standard.php:262 ../addons/buy-
1355
- #: creds/gateways/skrill.php:274 ../addons/buy-creds/gateways/zombaio.php:234
1356
- msgid "Processing payment &hellip;"
1357
- msgstr "处理付款&hellip;"
1358
-
1359
- #: ../addons/buy-creds/gateways/bitpay.php:214
1360
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1361
- msgstr "无法创建 BitPay 发票。请与网站管理员联系!"
1362
-
1363
- #: ../addons/buy-creds/gateways/bitpay.php:215
1364
- msgid "Bitpay returned the following error message:"
1365
- msgstr "Bitpay 返回以下错误消息:"
1366
-
1367
- #: ../addons/buy-creds/gateways/bitpay.php:246 ../includes/mycred-remote.php:551
1368
- msgid "API Key"
1369
- msgstr "API密钥"
1370
-
1371
- #: ../addons/buy-creds/gateways/bitpay.php:252 ../addons/buy-
1372
- #: creds/gateways/paypal-standard.php:279 ../addons/buy-creds/gateways/skrill.php:
1373
- #: 292
1374
- msgid "Currency"
1375
- msgstr "货币"
1376
-
1377
- #: ../addons/buy-creds/gateways/bitpay.php:255
1378
- msgid "Currency Code"
1379
- msgstr "货币代码"
1380
-
1381
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1382
- #: creds/gateways/netbilling.php:229 ../addons/buy-creds/gateways/paypal-standard.
1383
- #: php:291 ../addons/buy-creds/gateways/skrill.php:311
1384
- msgid "Item Name"
1385
- msgstr "项目名称"
1386
-
1387
- #: ../addons/buy-creds/gateways/bitpay.php:263 ../addons/buy-
1388
- #: creds/gateways/netbilling.php:233 ../addons/buy-creds/gateways/paypal-standard.
1389
- #: php:295 ../addons/buy-creds/gateways/skrill.php:315
1390
- msgid "Description of the item being purchased by the user."
1391
- msgstr "用户所购买的产品的描述"
1392
-
1393
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1394
- #: creds/gateways/netbilling.php:236 ../addons/buy-creds/gateways/paypal-standard.
1395
- #: php:298 ../addons/buy-creds/gateways/skrill.php:318
1396
- msgid "Exchange Rates"
1397
- msgstr ""
1398
-
1399
- #: ../addons/buy-creds/gateways/bitpay.php:270
1400
- msgid "Transaction Speed"
1401
- msgstr "交易速度"
1402
-
1403
- #: ../addons/buy-creds/gateways/bitpay.php:277
1404
- msgid "High"
1405
- msgstr "高"
1406
-
1407
- #: ../addons/buy-creds/gateways/bitpay.php:278
1408
- msgid "Medium"
1409
- msgstr "中"
1410
-
1411
- #: ../addons/buy-creds/gateways/bitpay.php:279
1412
- msgid "Low"
1413
- msgstr "低"
1414
-
1415
- #: ../addons/buy-creds/gateways/bitpay.php:292
1416
- msgid "Full Notifications"
1417
- msgstr "全部通知"
1418
-
1419
- #: ../addons/buy-creds/gateways/bitpay.php:299 ../includes/mycred-network.php:161
1420
- #: ../includes/mycred-network.php:175
1421
- msgid "No"
1422
- msgstr ""
1423
-
1424
- #: ../addons/buy-creds/gateways/bitpay.php:300 ../includes/mycred-network.php:157
1425
- #: ../includes/mycred-network.php:171
1426
- msgid "Yes"
1427
- msgstr ""
1428
-
1429
- #: ../addons/buy-creds/gateways/netbilling.php:210
1430
- msgid "Account ID"
1431
- msgstr "帐户 ID"
1432
-
1433
- #: ../addons/buy-creds/gateways/netbilling.php:216
1434
- msgid "Site Tag"
1435
- msgstr "网站标签"
1436
-
1437
- #: ../addons/buy-creds/gateways/netbilling.php:222
1438
- msgid "Order Integrity Key"
1439
- msgstr "订购完整性密钥"
1440
-
1441
- #: ../addons/buy-creds/gateways/netbilling.php:226
1442
- msgid "Found under Step 12 on the Fraud Defense page."
1443
- msgstr "在步骤12的欺诈防御页面中找到。"
1444
-
1445
- #: ../addons/buy-creds/gateways/netbilling.php:240
1446
- msgid "Postback CGI URL"
1447
- msgstr "回调CGI URL"
1448
-
1449
- #: ../addons/buy-creds/gateways/netbilling.php:244
1450
- msgid ""
1451
- "For this gateway to work, you must login to your NETbilling account and edit "
1452
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1453
- "URL is set to the above address and \"Return method\" is set to POST."
1454
- msgstr ""
1455
- "为了让这个网关正常工作,您必须登录到您的NETbilling帐户和编辑您的网站。在\"默认的付款形式设置\"确保回调CGI "
1456
- "URL被设置到上述地址和\"返回方式\"设置为开机自检(POST)。"
1457
-
1458
- #: ../addons/buy-creds/gateways/netbilling.php:288
1459
- msgid "Incorrect Credit Card number"
1460
- msgstr "信用卡号码不正确"
1461
-
1462
- #: ../addons/buy-creds/gateways/netbilling.php:294
1463
- msgid "The credit card entered is past its expiration date."
1464
- msgstr "输入的信用卡过期了。"
1465
-
1466
- #: ../addons/buy-creds/gateways/netbilling.php:297
1467
- msgid "The CVV2 number entered is not valid."
1468
- msgstr "输入的CVV2号码是无效的。"
1469
-
1470
- #: ../addons/buy-creds/gateways/netbilling.php:304
1471
- msgid "The bank routing number entered is not valid."
1472
- msgstr "输入的银行路由号码是无效的。"
1473
-
1474
- #: ../addons/buy-creds/gateways/netbilling.php:308
1475
- msgid "The bank account number entered is not valid."
1476
- msgstr "输入的银行帐户号码无效。"
1477
-
1478
- #: ../addons/buy-creds/gateways/paypal-standard.php:188 ../addons/buy-
1479
- #: creds/gateways/skrill.php:166
1480
- msgid "Success"
1481
- msgstr "成功"
1482
-
1483
- #: ../addons/buy-creds/gateways/paypal-standard.php:189 ../addons/buy-
1484
- #: creds/gateways/skrill.php:167
1485
- msgid "Thank you for your purchase"
1486
- msgstr "感谢您的购买"
1487
-
1488
- #: ../addons/buy-creds/gateways/paypal-standard.php:257 ../addons/buy-
1489
- #: creds/gateways/skrill.php:221
1490
- msgid "Return to "
1491
- msgstr "返回"
1492
-
1493
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
1494
- msgid "Account Email"
1495
- msgstr "账户邮箱"
1496
-
1497
- #: ../addons/buy-creds/gateways/skrill.php:257
1498
- msgid "Product:"
1499
- msgstr "产品名称:"
1500
-
1501
- #: ../addons/buy-creds/gateways/skrill.php:266
1502
- msgid "Gift to:"
1503
- msgstr "赠送给:"
1504
-
1505
- #: ../addons/buy-creds/gateways/skrill.php:267
1506
- msgid "(author)"
1507
- msgstr "(作者)"
1508
-
1509
- #: ../addons/buy-creds/gateways/skrill.php:299
1510
- msgid "Merchant Account Email"
1511
- msgstr "商家帐户邮件"
1512
-
1513
- #: ../addons/buy-creds/gateways/skrill.php:305
1514
- msgid "Secret Word"
1515
- msgstr "密语"
1516
-
1517
- #: ../addons/buy-creds/gateways/skrill.php:322
1518
- msgid "Confirmation Email"
1519
- msgstr "确认邮件"
1520
-
1521
- #: ../addons/buy-creds/gateways/skrill.php:325
1522
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1523
- msgstr "要求 Skrill 为每个成功的购买给我发送确认电子邮件。"
1524
-
1525
- #: ../addons/buy-creds/gateways/skrill.php:328
1526
- msgid "Checkout Page"
1527
- msgstr "结帐页面"
1528
-
1529
- #: ../addons/buy-creds/gateways/skrill.php:331 ../addons/gateway/carts/mycred-
1530
- #: woocommerce.php:93 ../addons/ranks/myCRED-addon-ranks.php:1307 ..
1531
- #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1532
- #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1533
- #: php:592 ../modules/mycred-module-hooks.php:2876
1534
- msgid "Title"
1535
- msgstr "标题"
1536
-
1537
- #: ../addons/buy-creds/gateways/skrill.php:333
1538
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
1539
- msgstr "如果留空,则您的帐户的电子邮件被用作 Skill 付款页面的标题。"
1540
-
1541
- #: ../addons/buy-creds/gateways/skrill.php:336 ../addons/buy-
1542
- #: creds/gateways/zombaio.php:269
1543
- msgid "Logo URL"
1544
- msgstr "Logo 链接"
1545
-
1546
- #: ../addons/buy-creds/gateways/skrill.php:338
1547
- msgid ""
1548
- "The URL to the image you want to use on the top of the gateway. For best "
1549
- "integration results we recommend you use logos with dimensions up to 200px "
1550
- "in width and 50px in height."
1551
- msgstr "你要在网关顶部使用的图片的URL。为了达到最佳的整合效果,我们建议您使用宽为 200像素,高为 50像素的图片。"
1552
-
1553
- #: ../addons/buy-creds/gateways/skrill.php:341
1554
- msgid "Confirmation Note"
1555
- msgstr "确认注意事项"
1556
-
1557
- #: ../addons/buy-creds/gateways/skrill.php:343
1558
- msgid ""
1559
- "Optional text to show user once a transaction has been successfully "
1560
- "completed. This text is shown by Skrill."
1561
- msgstr "可选的文字显示给用户一旦交易已成功完成。该内容将由 Skrill 显示。"
1562
-
1563
- #: ../addons/buy-creds/gateways/zombaio.php:143
1564
- #, php-format
1565
- msgid "Duplicate transaction. Received: %s"
1566
- msgstr ""
1567
-
1568
- #: ../addons/buy-creds/gateways/zombaio.php:149
1569
- #, php-format
1570
- msgid "Live transaction while debug mode is enabled! Received: %s"
1571
- msgstr ""
1572
-
1573
- #: ../addons/buy-creds/gateways/zombaio.php:251
1574
- msgid "Site ID"
1575
- msgstr "网站 ID"
1576
-
1577
- #: ../addons/buy-creds/gateways/zombaio.php:257
1578
- msgid "GW Password"
1579
- msgstr "GW 密码"
1580
-
1581
- #: ../addons/buy-creds/gateways/zombaio.php:263
1582
- msgid "Pricing ID"
1583
- msgstr "定价 ID"
1584
-
1585
- #: ../addons/buy-creds/gateways/zombaio.php:275
1586
- msgid "IP Verification"
1587
- msgstr "IP 验证"
1588
-
1589
- #: ../addons/buy-creds/gateways/zombaio.php:278
1590
- msgid "Do not verify that callbacks are coming from Zombaio."
1591
- msgstr "不验证从Zombaio来的回调。"
1592
-
1593
- #: ../addons/buy-creds/gateways/zombaio.php:281
1594
- msgid "Language"
1595
- msgstr "语言"
1596
-
1597
- #: ../addons/buy-creds/gateways/zombaio.php:288
1598
- msgid "Postback URL (ZScript)"
1599
- msgstr "回调网址 (ZScript)"
1600
-
1601
- #: ../addons/buy-creds/gateways/zombaio.php:292
1602
- msgid ""
1603
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
1604
- "address and click validate."
1605
- msgstr "要让这个网关工作,请登录到ZOA并设置回调URL到上述地址,然后单击验证。"
1606
-
1607
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1608
- #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:500 ..
1609
- #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1610
- msgid "Coupons"
1611
- msgstr "优惠券"
1612
-
1613
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1614
- #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1615
- msgid "Coupon"
1616
- msgstr "优惠券"
1617
-
1618
- #: ../addons/coupons/myCRED-addon-coupons.php:88
1619
- msgid "Create New"
1620
- msgstr "新建"
1621
-
1622
- #: ../addons/coupons/myCRED-addon-coupons.php:89
1623
- msgid "Create New Coupon"
1624
- msgstr "新建优惠券"
1625
-
1626
- #: ../addons/coupons/myCRED-addon-coupons.php:90
1627
- msgid "Edit Coupon"
1628
- msgstr "编辑优惠券"
1629
-
1630
- #: ../addons/coupons/myCRED-addon-coupons.php:91
1631
- msgid "New Coupon"
1632
- msgstr "新优惠券"
1633
-
1634
- #: ../addons/coupons/myCRED-addon-coupons.php:94
1635
- msgid "Search coupons"
1636
- msgstr "搜索优惠券"
1637
-
1638
- #: ../addons/coupons/myCRED-addon-coupons.php:95
1639
- msgid "No coupons found"
1640
- msgstr "没有优惠券"
1641
-
1642
- #: ../addons/coupons/myCRED-addon-coupons.php:96
1643
- msgid "No coupons found in Trash"
1644
- msgstr "回收站没有优惠券"
1645
-
1646
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1647
- #: addon-email-notices.php:165 ../addons/email-notices/myCRED-addon-email-notices.
1648
- #: php:171 ../addons/email-notices/myCRED-addon-email-notices.php:177 ..
1649
- #: addons/email-notices/myCRED-addon-email-notices.php:283
1650
- msgid "Email Notices"
1651
- msgstr "邮件通知"
1652
-
1653
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1654
- #: coupons.php:120 ../addons/coupons/myCRED-addon-coupons.php:121 ..
1655
- #: addons/coupons/myCRED-addon-coupons.php:122
1656
- msgid "Coupon updated."
1657
- msgstr "优惠券已更新。"
1658
-
1659
- #: ../addons/coupons/myCRED-addon-coupons.php:124
1660
- msgid "Coupon published."
1661
- msgstr "优惠券已发布。"
1662
-
1663
- #: ../addons/coupons/myCRED-addon-coupons.php:125
1664
- msgid "Coupon saved."
1665
- msgstr "优惠券已保存。"
1666
-
1667
- #: ../addons/coupons/myCRED-addon-coupons.php:128
1668
- msgid "Draft Coupon saved."
1669
- msgstr "优惠券草稿已保存。"
1670
-
1671
- #: ../addons/coupons/myCRED-addon-coupons.php:142
1672
- msgid "Unique Coupon Code"
1673
- msgstr "唯一的优惠券代码"
1674
-
1675
- #: ../addons/coupons/myCRED-addon-coupons.php:158
1676
- msgid "Coupon Code"
1677
- msgstr "优惠券代码"
1678
-
1679
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/coupons/myCRED-addon-
1680
- #: coupons.php:347
1681
- msgid "Value"
1682
- msgstr ""
1683
-
1684
- #: ../addons/coupons/myCRED-addon-coupons.php:160
1685
- msgid "Used"
1686
- msgstr ""
1687
-
1688
- #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1689
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1563 ../modules/mycred-
1690
- #: module-hooks.php:1854
1691
- msgid "Limits"
1692
- msgstr "限制"
1693
-
1694
- #: ../addons/coupons/myCRED-addon-coupons.php:162
1695
- msgid "Expires"
1696
- msgstr "过期"
1697
-
1698
- #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1699
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:811 ..
1700
- #: addons/email-notices/myCRED-addon-email-notices.php:1028 ..
1701
- #: addons/gateway/carts/mycred-marketpress.php:389 ..
1702
- #: addons/gateway/carts/mycred-woocommerce.php:121 ..
1703
- #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1704
- #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
- #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1041 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1191 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1708
- #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
- #: includes/importers/mycred-cubepoints.php:365
1710
- msgid "Point Type"
1711
- msgstr "积分类型"
1712
-
1713
- #: ../addons/coupons/myCRED-addon-coupons.php:193 ../addons/coupons/myCRED-addon-
1714
- #: coupons.php:461
1715
- msgid "not yet used"
1716
- msgstr "还没有使用"
1717
-
1718
- #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
- #: 395 ../modules/mycred-module-hooks.php:2292
1720
- msgid "Total"
1721
- msgstr "全部"
1722
-
1723
- #: ../addons/coupons/myCRED-addon-coupons.php:211
1724
- msgid "Per User"
1725
- msgstr "每用户"
1726
-
1727
- #: ../addons/coupons/myCRED-addon-coupons.php:219
1728
- msgid "Never"
1729
- msgstr "从不"
1730
-
1731
- #: ../addons/coupons/myCRED-addon-coupons.php:223
1732
- msgid "Expired"
1733
- msgstr "过期"
1734
-
1735
- #: ../addons/coupons/myCRED-addon-coupons.php:226
1736
- #, php-format
1737
- msgid "In %s time"
1738
- msgstr "%s 次"
1739
-
1740
- #: ../addons/coupons/myCRED-addon-coupons.php:279
1741
- msgid "Coupon Setup"
1742
- msgstr "优惠券设置"
1743
-
1744
- #: ../addons/coupons/myCRED-addon-coupons.php:288
1745
- msgid "Coupon Limits"
1746
- msgstr "优惠券限制"
1747
-
1748
- #: ../addons/coupons/myCRED-addon-coupons.php:297
1749
- msgid "Coupon Requirements"
1750
- msgstr "优惠券要求"
1751
-
1752
- #: ../addons/coupons/myCRED-addon-coupons.php:307
1753
- msgid "Usage"
1754
- msgstr "用法"
1755
-
1756
- #: ../addons/coupons/myCRED-addon-coupons.php:350
1757
- msgid "The amount of %plural% this coupon is worth."
1758
- msgstr "此优惠券价值的 %plural% 数量 。"
1759
-
1760
- #: ../addons/coupons/myCRED-addon-coupons.php:359
1761
- msgid "Select the point type that this coupon is applied."
1762
- msgstr "选择此优惠券适用的积分类型。"
1763
-
1764
- #: ../addons/coupons/myCRED-addon-coupons.php:369
1765
- msgid "Expire"
1766
- msgstr "到期"
1767
-
1768
- #: ../addons/coupons/myCRED-addon-coupons.php:372
1769
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1770
- msgstr "(可选)此优惠券过期的日期。过期的优惠券将被丢弃。"
1771
-
1772
- #: ../addons/coupons/myCRED-addon-coupons.php:401
1773
- msgid "Global Maximum"
1774
- msgstr "全局最大次数"
1775
-
1776
- #: ../addons/coupons/myCRED-addon-coupons.php:404
1777
- msgid ""
1778
- "The maximum number of times this coupon can be used. Note that the coupon "
1779
- "will be automatically trashed once this maximum is reached!"
1780
- msgstr "此优惠券可以使用的最大次数。请注意,一旦达到最大次数,该优惠券将自动丢弃!"
1781
-
1782
- #: ../addons/coupons/myCRED-addon-coupons.php:408
1783
- msgid "User Maximum"
1784
- msgstr "用户最大次数"
1785
-
1786
- #: ../addons/coupons/myCRED-addon-coupons.php:411
1787
- msgid "The maximum number of times this coupon can be used by a user."
1788
- msgstr "一个用户可使用改优惠券的最大次数。"
1789
-
1790
- #: ../addons/coupons/myCRED-addon-coupons.php:440
1791
- msgid ""
1792
- "Optional minimum balance a user must have in order to use this coupon. Use "
1793
- "zero to disable."
1794
- msgstr "可选的必须拥有最少余额的用户才能使用此优惠券。使用零则禁用。"
1795
-
1796
- #: ../addons/coupons/myCRED-addon-coupons.php:443
1797
- msgid "Maximum Balance"
1798
- msgstr "最多余额"
1799
-
1800
- #: ../addons/coupons/myCRED-addon-coupons.php:445
1801
- msgid ""
1802
- "Optional maximum balance a user can have in order to use this coupon. Use "
1803
- "zero to disable."
1804
- msgstr "(可选)必须拥有最多余额的用户才能使用此优惠券。使用零则禁用。"
1805
-
1806
- #: ../addons/coupons/myCRED-addon-coupons.php:506
1807
- #, php-format
1808
- msgid ""
1809
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1810
- "code."
1811
- msgstr "成功返券的日志条目。使用 %coupon% 以显示优惠券代码。"
1812
-
1813
- #: ../addons/coupons/myCRED-addon-coupons.php:509
1814
- msgid "Invalid Coupon Message"
1815
- msgstr "无效的优惠券信息"
1816
-
1817
- #: ../addons/coupons/myCRED-addon-coupons.php:513
1818
- msgid "Message to show when users try to use a coupon that does not exists."
1819
- msgstr "当用户试图使用不存在的优惠券时显示的信息。"
1820
-
1821
- #: ../addons/coupons/myCRED-addon-coupons.php:516
1822
- msgid "Expired Coupon Message"
1823
- msgstr "过期优惠券信息"
1824
-
1825
- #: ../addons/coupons/myCRED-addon-coupons.php:520
1826
- msgid "Message to show when users try to use that has expired."
1827
- msgstr "当用户试图使用已过期的优惠券时显示的信息。"
1828
-
1829
- #: ../addons/coupons/myCRED-addon-coupons.php:523
1830
- msgid "User Limit Message"
1831
- msgstr "用户限制信息"
1832
-
1833
- #: ../addons/coupons/myCRED-addon-coupons.php:527
1834
- msgid "Message to show when the user limit has been reached for the coupon."
1835
- msgstr "当用户试图使用已达到限制的优惠券时显示的信息。"
1836
-
1837
- #: ../addons/coupons/myCRED-addon-coupons.php:530
1838
- msgid "Minimum Balance Message"
1839
- msgstr "最少余额信息"
1840
-
1841
- #: ../addons/coupons/myCRED-addon-coupons.php:534
1842
- msgid ""
1843
- "Message to show when a user does not meet the minimum balance requirement. "
1844
- "(if used)"
1845
- msgstr "当用户不符合最少余额要求时显示的信息。(如果使用)"
1846
-
1847
- #: ../addons/coupons/myCRED-addon-coupons.php:537
1848
- msgid "Maximum Balance Message"
1849
- msgstr "最多余额信息"
1850
-
1851
- #: ../addons/coupons/myCRED-addon-coupons.php:541
1852
- msgid ""
1853
- "Message to show when a user does not meet the maximum balance requirement. "
1854
- "(if used)"
1855
- msgstr "当用户不符合最多余额要求时显示的信息。(如果使用)"
1856
-
1857
- #: ../addons/coupons/myCRED-addon-coupons.php:544
1858
- msgid "Success Message"
1859
- msgstr "成功信息"
1860
-
1861
- #: ../addons/coupons/myCRED-addon-coupons.php:548
1862
- msgid "Message to show when a coupon was successfully deposited to a users account."
1863
- msgstr "当一个优惠券已成功存入一个用户帐户时显示的信息。"
1864
-
1865
- #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1866
- msgid "Coupon redemption"
1867
- msgstr "返券"
1868
-
1869
- #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1870
- msgid "Apply Coupon"
1871
- msgstr "申请优惠券"
1872
-
1873
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1874
- #: notices/myCRED-addon-email-notices.php:1264
1875
- msgid "Email Notice"
1876
- msgstr "邮件通知"
1877
-
1878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1879
- msgid "Add New Notice"
1880
- msgstr "添加新通知"
1881
-
1882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1883
- msgid "Edit Notice"
1884
- msgstr "编辑通知"
1885
-
1886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1887
- msgid "New Notice"
1888
- msgstr "新通知"
1889
-
1890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1891
- msgid "View Notice"
1892
- msgstr "查看通知"
1893
-
1894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1895
- msgid "Search Email Notices"
1896
- msgstr "搜索邮件通知"
1897
-
1898
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1899
- msgid "No email notices found"
1900
- msgstr "没有邮件通知"
1901
-
1902
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1903
- msgid "No email notices found in Trash"
1904
- msgstr "没有在回收站发现邮件通知"
1905
-
1906
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200 ..
1907
- #: addons/gateway/carts/mycred-wpecommerce.php:341 ../includes/mycred-functions.
1908
- #: php:587
1909
- msgid "General"
1910
- msgstr "常规"
1911
-
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1913
- msgid "users balance changes"
1914
- msgstr "用户余额变化"
1915
-
1916
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1917
- msgid "user gains %_plural%"
1918
- msgstr "用户收入 %_plural%"
1919
-
1920
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1921
- msgid "user lose %_plural%"
1922
- msgstr "用户支出 %_plural%"
1923
-
1924
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1925
- msgid "users balance reaches zero"
1926
- msgstr "用户余额为零"
1927
-
1928
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
1929
- msgid "users balance goes minus"
1930
- msgstr "用户余额减去"
1931
-
1932
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1933
- msgid "Badge Add-on"
1934
- msgstr ""
1935
-
1936
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1937
- msgid "user gains a badge"
1938
- msgstr ""
1939
-
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1941
- msgid "Sell Content Add-on"
1942
- msgstr "出售内容扩展"
1943
-
1944
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1945
- msgid "user buys content"
1946
- msgstr "用户购买的内容"
1947
-
1948
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1949
- msgid "authors content gets sold"
1950
- msgstr "作者内容被出售"
1951
-
1952
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
1953
- msgid "buyCREDs Add-on"
1954
- msgstr "buyCREDs 扩展"
1955
-
1956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
1957
- msgid "user buys %_plural%"
1958
- msgstr "用户购买 %_plural%"
1959
-
1960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1961
- msgid "Transfer Add-on"
1962
- msgstr "传输扩展"
1963
-
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
1965
- msgid "user sends %_plural%"
1966
- msgstr "用户发送 %_plural%"
1967
-
1968
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
1969
- msgid "user receives %_plural%"
1970
- msgstr "用户收到 %_plural%"
1971
-
1972
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
1973
- msgid "Ranks Add-on"
1974
- msgstr "排名扩展"
1975
-
1976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
1977
- msgid "user is demoted"
1978
- msgstr "用户被降级"
1979
-
1980
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
1981
- msgid "user is promoted"
1982
- msgstr "用户被提拔"
1983
-
1984
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
1985
- msgid ""
1986
- "Settings that apply to all email notices and can not be overridden for "
1987
- "individual emails."
1988
- msgstr "设置适用于所有的电子邮件通知,这些设置不能被单个电子邮件覆盖。"
1989
-
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1991
- msgid "Email Format"
1992
- msgstr "邮件格式"
1993
-
1994
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1995
- msgid "Plain text emails only."
1996
- msgstr "只有纯文本的电子邮件。"
1997
-
1998
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1999
- msgid "HTML or Plain text emails."
2000
- msgstr "HTML或纯文本电子邮件。"
2001
-
2002
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
2003
- msgid "Filters"
2004
- msgstr "过滤器"
2005
-
2006
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
2007
- msgid ""
2008
- "Allow WordPress and Third Party Plugins to filter the email subject before "
2009
- "an email is sent."
2010
- msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的主题。"
2011
-
2012
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2013
- msgid ""
2014
- "Allow WordPress and Third Party Plugins to filter the email content before "
2015
- "an email is sent."
2016
- msgstr " WordPress 和第三方插件在邮件被发送前过滤邮件的内容。"
2017
-
2018
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
2019
- #: notices/myCRED-addon-email-notices.php:316
2020
- msgid "Email Schedule"
2021
- msgstr ""
2022
-
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2024
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
2025
- msgstr ""
2026
-
2027
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2028
- msgid "Send emails immediately"
2029
- msgstr ""
2030
-
2031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2032
- msgid "Send emails once an hour"
2033
- msgstr ""
2034
-
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2036
- msgid "Send emails once a day"
2037
- msgstr ""
2038
-
2039
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2040
- msgid "Subscriptions"
2041
- msgstr ""
2042
-
2043
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2044
- #, php-format
2045
- msgid ""
2046
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2047
- "updates."
2048
- msgstr ""
2049
-
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2051
- msgid "SMTP Override"
2052
- msgstr ""
2053
-
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2055
- msgid ""
2056
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2057
- "use a SMTP plugin for emails."
2058
- msgstr ""
2059
-
2060
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
2061
- msgid ""
2062
- "Default email settings. These settings can be individually overridden when "
2063
- "editing emails."
2064
- msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
2065
-
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2067
- #: notices/myCRED-addon-email-notices.php:897
2068
- msgid "Email Settings"
2069
- msgstr "邮件设置"
2070
-
2071
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2072
- #: notices/myCRED-addon-email-notices.php:1050
2073
- msgid "Senders Name:"
2074
- msgstr "发件人名称:"
2075
-
2076
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2077
- #: notices/myCRED-addon-email-notices.php:1052
2078
- msgid "Senders Email:"
2079
- msgstr "发件人的邮箱:"
2080
-
2081
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2082
- msgid "Reply-To:"
2083
- msgstr "回复给:"
2084
-
2085
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2086
- msgid "Default Email Content"
2087
- msgstr "默认邮件内容"
2088
-
2089
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2090
- msgid "Default email content."
2091
- msgstr "默认邮件内容。"
2092
-
2093
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2094
- msgid "Default Email Styling"
2095
- msgstr "默认邮件样式"
2096
-
2097
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2098
- msgid "Ignored if HTML is not allowed in emails."
2099
- msgstr "如果邮件不允许使用HTML,请忽略。"
2100
-
2101
- #: ../addons/email-notices/myCRED-addon-email-notices.php:716
2102
- #, php-format
2103
- msgctxt "Badge Title - Level 1,2,3.."
2104
- msgid "%s - Level %d"
2105
- msgstr ""
2106
-
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:806 ../addons/email-
2108
- #: notices/myCRED-addon-email-notices.php:946
2109
- msgid "Email Subject"
2110
- msgstr "邮件主题"
2111
-
2112
- #: ../addons/email-notices/myCRED-addon-email-notices.php:832
2113
- msgid "Not Active"
2114
- msgstr "没启用"
2115
-
2116
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2117
- #, php-format
2118
- msgid "Scheduled:<br /><strong>%1$s</strong>"
2119
- msgstr "预定:<br /><strong>%1$s</strong>"
2120
-
2121
- #: ../addons/email-notices/myCRED-addon-email-notices.php:840
2122
- msgid "Active"
2123
- msgstr "状态"
2124
-
2125
- #: ../addons/email-notices/myCRED-addon-email-notices.php:842
2126
- #, php-format
2127
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
2128
- msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
2129
-
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:852
2131
- msgid "Email is sent when"
2132
- msgstr "发送邮件,当"
2133
-
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:854
2135
- msgid "Missing instance for this notice!"
2136
- msgstr "本通知缺少实例!"
2137
-
2138
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2139
- #: notices/myCRED-addon-email-notices.php:865 ../addons/email-notices/myCRED-
2140
- #: addon-email-notices.php:867
2141
- msgid "Sent To"
2142
- msgstr "发送给"
2143
-
2144
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863 ../addons/email-
2145
- #: notices/myCRED-addon-email-notices.php:1016 ../includes/mycred-admin.php:754 ..
2146
- #: includes/mycred-log.php:633 ../modules/mycred-module-log.php:562
2147
- msgid "User"
2148
- msgstr "用户"
2149
-
2150
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865 ../addons/email-
2151
- #: notices/myCRED-addon-email-notices.php:1017
2152
- msgid "Administrator"
2153
- msgstr "管理员"
2154
-
2155
- #: ../addons/email-notices/myCRED-addon-email-notices.php:867
2156
- msgid "Both Administrator and User"
2157
- msgstr "管理员和用户"
2158
-
2159
- #: ../addons/email-notices/myCRED-addon-email-notices.php:877 ../addons/email-
2160
- #: notices/myCRED-addon-email-notices.php:1034
2161
- msgid "All types"
2162
- msgstr ""
2163
-
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
2165
- msgid "Available Template Tags"
2166
- msgstr "可用的模板标签"
2167
-
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:917
2169
- msgid "Email Header"
2170
- msgstr "邮件头部"
2171
-
2172
- #: ../addons/email-notices/myCRED-addon-email-notices.php:983
2173
- msgid "Send this email notice when..."
2174
- msgstr "发送该邮件通知当..."
2175
-
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1014
2177
- msgid "Recipient:"
2178
- msgstr "收件人:"
2179
-
2180
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1018
2181
- msgid "Both"
2182
- msgstr "两者"
2183
-
2184
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1022 ..
2185
- #: addons/gateway/carts/mycred-woocommerce.php:161 ../modules/mycred-module-
2186
- #: settings.php:632 ../modules/mycred-module-settings.php:651 ../modules/mycred-
2187
- #: module-settings.php:674
2188
- msgid "Label"
2189
- msgstr "标签"
2190
-
2191
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1054
2192
- msgid "Reply-To Email:"
2193
- msgstr "回复给邮件:"
2194
-
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1060
2196
- msgid "Save"
2197
- msgstr "保存"
2198
-
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1072
2200
- msgid "CSS Styling"
2201
- msgstr "CSS样式"
2202
-
2203
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1088
2204
- msgid "Site Related"
2205
- msgstr "网站相关"
2206
-
2207
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2208
- msgid "Your websites title"
2209
- msgstr "您的网站标题"
2210
-
2211
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1090
2212
- msgid "Your websites address"
2213
- msgstr "您的网站地址"
2214
-
2215
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2216
- msgid "Your websites tagline (description)"
2217
- msgstr "您的网站标语(介绍)"
2218
-
2219
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2220
- msgid "Your websites admin email"
2221
- msgstr "您的网站管理邮箱"
2222
-
2223
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2224
- msgid "Total number of blog members"
2225
- msgstr "博客成员总数"
2226
-
2227
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1097
2228
- msgid "The users new balance"
2229
- msgstr ""
2230
-
2231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1098
2232
- msgid "The users old balance"
2233
- msgstr ""
2234
-
2235
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1099
2236
- msgid "The amount of points gained or lost in this instance"
2237
- msgstr ""
2238
-
2239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2240
- msgid "The log entry"
2241
- msgstr ""
2242
-
2243
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1175 ../addons/email-
2244
- #: notices/myCRED-addon-email-notices.php:1178 ../addons/email-notices/myCRED-
2245
- #: addon-email-notices.php:1184
2246
- msgid "Email Notice Updated."
2247
- msgstr ""
2248
-
2249
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1180
2250
- msgid "Email Notice Activated"
2251
- msgstr "邮件通知已激活"
2252
-
2253
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2254
- msgid "Email Notice Saved"
2255
- msgstr "邮件通知已保存"
2256
-
2257
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1200
2258
- msgid ""
2259
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2260
- "are not yet ready to use this email notice!"
2261
- msgstr "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 \"保存草案 \"!"
2262
-
2263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1202
2264
- #, php-format
2265
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2266
- msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
2267
-
2268
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1204
2269
- msgid "This email notice is active."
2270
- msgstr "此邮件通知已被激活。"
2271
-
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1215
2273
- msgid "Settings saved."
2274
- msgstr ""
2275
-
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1263
2277
- msgid "Unsubscribe"
2278
- msgstr ""
2279
-
2280
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1284
2281
- msgid "There are no email notifications yet."
2282
- msgstr ""
2283
-
2284
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2285
- #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2286
- #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2287
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2288
- msgid "Current Balance"
2289
- msgstr "当前余额"
2290
-
2291
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2292
- #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2293
- #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2294
- #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2295
- #: php:416
2296
- msgid "Total Cost"
2297
- msgstr "所有花费"
2298
-
2299
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2300
- #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2301
- #: eventespresso3.php:309
2302
- msgid "Balance After Purchase"
2303
- msgstr "购买后的余额"
2304
-
2305
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2306
- #: addons/gateway/carts/mycred-marketpress.php:231
2307
- msgid "Go Back"
2308
- msgstr "返回"
2309
-
2310
- #: ../addons/gateway/carts/mycred-marketpress.php:185
2311
- msgid "will be deducted from your account."
2312
- msgstr "将从您的账户中扣除。"
2313
-
2314
- #: ../addons/gateway/carts/mycred-marketpress.php:221
2315
- #, php-format
2316
- msgid ""
2317
- "Sorry, but you can not use this gateway as your account is excluded. Please "
2318
- "<a href=\"%s\">select a different payment method</a>."
2319
- msgstr "很抱歉,您不能使用此网关,因为您的帐户被排除在外。请<a href=\"%s\">选择不同的付款方式</ a>。"
2320
-
2321
- #: ../addons/gateway/carts/mycred-marketpress.php:247
2322
- msgid "Paid"
2323
- msgstr "已支付"
2324
-
2325
- #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2326
- #: addons/gateway/carts/mycred-woocommerce.php:34 ../includes/mycred-network.php:
2327
- #: 50 ../includes/mycred-network.php:51
2328
- msgid "myCRED"
2329
- msgstr "myCRED"
2330
-
2331
- #: ../addons/gateway/carts/mycred-marketpress.php:356
2332
- msgid "%_singular% Balance"
2333
- msgstr "%_singular% 余额"
2334
-
2335
- #: ../addons/gateway/carts/mycred-marketpress.php:359 ..
2336
- #: addons/gateway/carts/mycred-wpecommerce.php:27
2337
- #, php-format
2338
- msgid "Payment for Order: #%order_id%"
2339
- msgstr "付款订购:#%order_id%"
2340
-
2341
- #: ../addons/gateway/carts/mycred-marketpress.php:362
2342
- msgid "Product Sale: %post_title%"
2343
- msgstr "产品销售:%post_title%"
2344
-
2345
- #: ../addons/gateway/carts/mycred-marketpress.php:363
2346
- msgid "Pay using your account balance."
2347
- msgstr "使用您的帐户余额支付。"
2348
-
2349
- #: ../addons/gateway/carts/mycred-marketpress.php:364
2350
- #, php-format
2351
- msgid ""
2352
- "TOTAL amount has been deducted from your account. Your current balance is: "
2353
- "%balance_f%"
2354
- msgstr "总金额已从您的帐户扣除。您当前的余额为: %balance_f%"
2355
-
2356
- #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2357
- #: addons/gateway/carts/mycred-woocommerce.php:259
2358
- msgid "Insufficient funds."
2359
- msgstr ""
2360
-
2361
- #: ../addons/gateway/carts/mycred-marketpress.php:366
2362
- msgid ""
2363
- "You must be logged in to pay with %_plural%. Please <a "
2364
- "href=\"%login_url_here%\">login</a>."
2365
- msgstr "您必须先登录才能使用 %_plural% 支付,请 <a href=\"%login_url_here%\">登录</a>。"
2366
-
2367
- #: ../addons/gateway/carts/mycred-marketpress.php:373
2368
- #, php-format
2369
- msgid ""
2370
- "Let your users pay for items in their shopping cart using their %s Account. "
2371
- "Note! This gateway requires your users to be logged in when making a "
2372
- "purchase!"
2373
- msgstr "让你的用户使用他们的 %s 帐户支付购买购物车中的物品。注意,该网关需要用户在购买时先登录!"
2374
-
2375
- #: ../addons/gateway/carts/mycred-marketpress.php:376
2376
- msgid "Method Name"
2377
- msgstr "方法名称"
2378
-
2379
- #: ../addons/gateway/carts/mycred-marketpress.php:378
2380
- msgid ""
2381
- "Enter a public name for this payment method that is displayed to users - No "
2382
- "HTML"
2383
- msgstr "为这种付款方式输入公开名称,用于显示给用户 - 无HTML"
2384
-
2385
- #: ../addons/gateway/carts/mycred-marketpress.php:383
2386
- msgid "Gateway Logo URL"
2387
- msgstr "网关 Logo 网址"
2388
-
2389
- #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2390
- #: addons/gateway/carts/mycred-woocommerce.php:137
2391
- #, php-format
2392
- msgid "How much is 1 %_singular% worth in %currency%?"
2393
- msgstr "1 在 %currency% 中值多少 %_singular%?"
2394
-
2395
- #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2396
- #: addons/gateway/carts/mycred-woocommerce.php:142 ..
2397
- #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2398
- #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2399
- #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2400
- #: php:578 ../includes/mycred-shortcodes.php:976
2401
- msgid "Exchange Rate"
2402
- msgstr "汇率"
2403
-
2404
- #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2405
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
2406
- #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2407
- #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2408
- #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2409
- #: php:569
2410
- msgid "Profit Sharing"
2411
- msgstr "利润分享"
2412
-
2413
- #: ../addons/gateway/carts/mycred-marketpress.php:421
2414
- msgid "Percentage"
2415
- msgstr "百分比"
2416
-
2417
- #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2418
- #: addons/gateway/carts/mycred-woocommerce.php:172 ..
2419
- #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2420
- #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2421
- #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2422
- #: php:572
2423
- msgid "Option to share sales with the product owner. Use zero to disable."
2424
- msgstr "可选和产品所有者共享销售。使用零则禁用。"
2425
-
2426
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2427
- #: addons/gateway/carts/mycred-wpecommerce.php:375 ../addons/gateway/event-
2428
- #: booking/mycred-eventsmanager-pro.php:607 ../addons/gateway/event-
2429
- #: booking/mycred-eventsmanager.php:626
2430
- msgid "Messages"
2431
- msgstr "信息"
2432
-
2433
- #: ../addons/gateway/carts/mycred-marketpress.php:438 ..
2434
- #: addons/gateway/carts/mycred-wpecommerce.php:386 ../addons/gateway/event-
2435
- #: booking/mycred-eventsmanager-pro.php:617 ../addons/gateway/event-
2436
- #: booking/mycred-eventsmanager.php:636 ../plugins/mycred-hook-buddypress.php:247
2437
- msgid "Insufficient Funds"
2438
- msgstr "资金不足"
2439
-
2440
- #: ../addons/gateway/carts/mycred-marketpress.php:440
2441
- msgid "Message to show when the user can not use this gateway."
2442
- msgstr "当用户不能使用此网关时显示的信息。"
2443
-
2444
- #: ../addons/gateway/carts/mycred-marketpress.php:446 ..
2445
- #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2446
- #: booking/mycred-eventespresso3.php:490
2447
- msgid "Visitors"
2448
- msgstr "访问者"
2449
-
2450
- #: ../addons/gateway/carts/mycred-marketpress.php:448
2451
- msgid "Message to show to buyers that are not logged in."
2452
- msgstr "买家未登录时显示的信息。"
2453
-
2454
- #: ../addons/gateway/carts/mycred-marketpress.php:454
2455
- msgid "User Instructions"
2456
- msgstr "使用说明"
2457
-
2458
- #: ../addons/gateway/carts/mycred-marketpress.php:456
2459
- msgid "Information to show users before payment."
2460
- msgstr "用户付款前显示的信息。"
2461
-
2462
- #: ../addons/gateway/carts/mycred-marketpress.php:462
2463
- msgid "Confirmation Information"
2464
- msgstr "确认信息"
2465
-
2466
- #: ../addons/gateway/carts/mycred-marketpress.php:464
2467
- msgid "Information to display on the order confirmation page. - HTML allowed"
2468
- msgstr "显示在订单确认页面的信息 - 允许使用HTML"
2469
-
2470
- #: ../addons/gateway/carts/mycred-marketpress.php:470
2471
- msgid "Order Confirmation Email"
2472
- msgstr "订单确认邮件"
2473
-
2474
- #: ../addons/gateway/carts/mycred-marketpress.php:472
2475
- #, php-format
2476
- msgid ""
2477
- "This is the email text to send to those who have made %s checkouts. It "
2478
- "overrides the default order checkout email. These codes will be replaced "
2479
- "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2480
- "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2481
- msgstr ""
2482
- "这是电子邮件的文本,用来发给那些完成了 %s 结算的用户。它覆盖了默认的订单结算邮件。这些代码将被替代为订单详细信息:CUSTOMERNAME, "
2483
- "ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. 不允许使用 "
2484
- "NTML 代码。"
2485
-
2486
- #: ../addons/gateway/carts/mycred-woocommerce.php:35
2487
- msgid "Let users pay using their myCRED balance."
2488
- msgstr "让用户使用他们的 myCRED 余额付款。"
2489
-
2490
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
2491
- msgid "Enable/Disable"
2492
- msgstr "启用/禁用"
2493
-
2494
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
2495
- msgid "Enable myCRED Payment"
2496
- msgstr "启用 myCRED 付款"
2497
-
2498
- #: ../addons/gateway/carts/mycred-woocommerce.php:90
2499
- msgid ""
2500
- "Users who are not logged in or excluded from using myCRED will not have "
2501
- "access to this gateway!"
2502
- msgstr "没有登录或者被 myCRED 排除使用的用户将无法访问这个网关。"
2503
-
2504
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2505
- msgid "Title to show for this payment option."
2506
- msgstr "此付款方式的标题。"
2507
-
2508
- #: ../addons/gateway/carts/mycred-woocommerce.php:96
2509
- msgid "Pay with myCRED"
2510
- msgstr "使用 myCRED 支付"
2511
-
2512
- #: ../addons/gateway/carts/mycred-woocommerce.php:100
2513
- msgid "Customer Message"
2514
- msgstr "客户留言"
2515
-
2516
- #: ../addons/gateway/carts/mycred-woocommerce.php:111 ..
2517
- #: addons/gateway/carts/mycred-woocommerce.php:183
2518
- msgid "Refund Log Template"
2519
- msgstr ""
2520
-
2521
- #: ../addons/gateway/carts/mycred-woocommerce.php:123
2522
- msgid "Select the point type users can use to pay."
2523
- msgstr "选择用户可以用来支付的积分类型。"
2524
-
2525
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
2526
- msgid "Show Total"
2527
- msgstr "显示所有"
2528
-
2529
- #: ../addons/gateway/carts/mycred-woocommerce.php:151
2530
- msgid "Show the final price in %_plural% ."
2531
- msgstr "显示最后的价格在 %_plural% "
2532
-
2533
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2534
- msgid "Show in Cart"
2535
- msgstr "在购物车里显示"
2536
-
2537
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2538
- msgid "Show on Checkout Page"
2539
- msgstr "在结帐页面上显示"
2540
-
2541
- #: ../addons/gateway/carts/mycred-woocommerce.php:156
2542
- msgid "Show in Cart and on Checkout Page"
2543
- msgstr "在购物车及结帐页面上显示"
2544
-
2545
- #: ../addons/gateway/carts/mycred-woocommerce.php:163
2546
- msgid "Order Total in %_plural%"
2547
- msgstr "%_plural% 上的订单总额"
2548
-
2549
- #: ../addons/gateway/carts/mycred-woocommerce.php:179
2550
- msgid "Log entry template for profit sharing."
2551
- msgstr "利润分享日志条目模板。"
2552
-
2553
- #: ../addons/gateway/carts/mycred-woocommerce.php:185
2554
- msgid "Log entry template for refunds of profit shares."
2555
- msgstr ""
2556
-
2557
- #: ../addons/gateway/carts/mycred-woocommerce.php:211
2558
- msgid "myCRED Payment"
2559
- msgstr "myCRED 付款"
2560
-
2561
- #: ../addons/gateway/carts/mycred-woocommerce.php:212
2562
- #, php-format
2563
- msgid ""
2564
- "Allows users to pay using their myCRED %_singular% balance. Please note that "
2565
- "users with insufficient funds and users who are not logged in will not see "
2566
- "this payment gateway on the checkout page."
2567
- msgstr "允许用户使用他们 myCRED %_singular% 的余额来支付。请注意,资金不足或者没有登录的用户是没办法在结帐页面上看到这个支付网关的。"
2568
-
2569
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2570
- msgid "You must be logged in to pay with %_plural%"
2571
- msgstr "您必须登录后通过 %_plural% 进行支付。"
2572
-
2573
- #: ../addons/gateway/carts/mycred-woocommerce.php:239
2574
- msgid "You can not use this gateway. Please try a different payment option."
2575
- msgstr "您无法使用此网关。请尝试其他付款方式。"
2576
-
2577
- #: ../addons/gateway/carts/mycred-woocommerce.php:396
2578
- msgid "Your account has successfully been charged."
2579
- msgstr "您的帐户已充值成功。"
2580
-
2581
- #: ../addons/gateway/carts/mycred-woocommerce.php:708 ..
2582
- #: addons/gateway/carts/mycred-wpecommerce.php:131
2583
- msgid "Your current balance"
2584
- msgstr "您当前的余额"
2585
-
2586
- #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2587
- msgid "Store sale"
2588
- msgstr "商店销售"
2589
-
2590
- #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2591
- msgid "You must be logged in to use this gateway"
2592
- msgstr "您必须登录后才能使用这个网关"
2593
-
2594
- #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2595
- msgid "Insufficient Funds."
2596
- msgstr "资金不足。"
2597
-
2598
- #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2599
- msgid "Deduct the amount from your balance."
2600
- msgstr "从您的余额中扣除金额。"
2601
-
2602
- #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2603
- msgid "You can not use this gateway."
2604
- msgstr "您无法使用此网关。"
2605
-
2606
- #: ../addons/gateway/carts/mycred-wpecommerce.php:344
2607
- msgid "Log Template for Payments"
2608
- msgstr "付款日志模板"
2609
-
2610
- #: ../addons/gateway/carts/mycred-wpecommerce.php:361
2611
- #, php-format
2612
- msgid "How much is 1 %s worth in %s"
2613
- msgstr "1 %s 在 %s 可以价值多少"
2614
-
2615
- #: ../addons/gateway/carts/mycred-wpecommerce.php:378
2616
- msgid "Instructions"
2617
- msgstr "说明"
2618
-
2619
- #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2620
- msgid ""
2621
- "Optional instructions to show users when selecting this gateway. Leave empty "
2622
- "to hide."
2623
- msgstr "(可选)用户选择网关时显示这个说明。留空则隐藏。"
2624
-
2625
- #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2626
- msgid "Message to show visitors who are not logged in."
2627
- msgstr "给未登录用户显示的信息。"
2628
-
2629
- #: ../addons/gateway/carts/mycred-wpecommerce.php:387
2630
- msgid ""
2631
- "Message to show when users does not have enough %plural% to pay using this "
2632
- "gateway."
2633
- msgstr "当用户没有足够的 %plural% 使用这个网关进行支付时显示的信息。"
2634
-
2635
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2636
- msgid "Payment for Event Registration"
2637
- msgstr "支付活动报名"
2638
-
2639
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2640
- #, php-format
2641
- msgid "Activate %s"
2642
- msgstr "激活 %s"
2643
-
2644
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2645
- #, php-format
2646
- msgid "Deactivate %s"
2647
- msgstr "停用 %s"
2648
-
2649
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2650
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ..
2651
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2652
- #, php-format
2653
- msgid "How many %s is 1 %s worth?"
2654
- msgstr "1 %s 可以价值多少 %s"
2655
-
2656
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2657
- msgid "Gateways Settings Successfully Updated"
2658
- msgstr "网关设置更新成功"
2659
-
2660
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2661
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576 ..
2662
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2663
- msgid "Labels"
2664
- msgstr "标签"
2665
-
2666
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2667
- msgid "Gateway Title"
2668
- msgstr "网关标题"
2669
-
2670
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2671
- msgid "Title to show on Payment page"
2672
- msgstr "显示在付款页面的标题"
2673
-
2674
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2675
- msgid "Payment Type"
2676
- msgstr "付款方式"
2677
-
2678
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2679
- msgid "Title to show on receipts and logs"
2680
- msgstr "显示在收据和日志上的标题"
2681
-
2682
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2683
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2684
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2685
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2686
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2687
- msgid "Button Label"
2688
- msgstr "按钮标签"
2689
-
2690
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2691
- msgid "Pay Button"
2692
- msgstr "支付按钮"
2693
-
2694
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2695
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
2696
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2697
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2698
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2699
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2700
- #: sell-content.php:682
2701
- msgid "Price"
2702
- msgstr "价格"
2703
-
2704
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
2705
- msgid "Important!"
2706
- msgstr "重要!"
2707
-
2708
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2709
- msgid ""
2710
- "You can disable purchases using this gateway by adding a custom Event Meta: "
2711
- "<code>mycred_no_sale</code>"
2712
- msgstr "您可以通过添加自定义的Event Meta 禁止使用此网关采购:<code>mycred_no_sale</code>"
2713
-
2714
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2715
- msgid "Users must be logged in to use this gateway!"
2716
- msgstr "用户必须先登录才能使用此网关!"
2717
-
2718
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2719
- #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2720
- msgid "Log"
2721
- msgstr "日志"
2722
-
2723
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2724
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2725
- msgid "Log Entry"
2726
- msgstr "日志条目"
2727
-
2728
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2729
- #: content/myCRED-addon-sell-content.php:473
2730
- msgid "Templates"
2731
- msgstr "模板"
2732
-
2733
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2734
- msgid "Solvent users"
2735
- msgstr "资金充足的用户"
2736
-
2737
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2738
- msgid ""
2739
- "Message to show users on the payment page before they are charged. Leave "
2740
- "empty to hide."
2741
- msgstr "用户付款前在在付款页面上展示的信息。留空则隐藏。"
2742
-
2743
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2744
- msgid "Insolvent users"
2745
- msgstr "资不抵债的用户"
2746
-
2747
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2748
- msgid "Message to show users who do not have enough points to pay."
2749
- msgstr "用户没有足够的积分进行支付时显示的信息。"
2750
-
2751
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2752
- msgid "Message to show visitors (users not logged in) on the payment page."
2753
- msgstr "在付款页面显示给访客(未登录的用户)的信息。"
2754
-
2755
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2756
- #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2757
- msgid "Payment for tickets to %link_with_title%"
2758
- msgstr "为 %link_with_title% 购买门票"
2759
-
2760
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2761
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2762
- msgid "Ticket refund for %link_with_title%"
2763
- msgstr "为 %link_with_title% 退门票"
2764
-
2765
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2766
- #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2767
- #, php-format
2768
- msgid "Pay using your %_plural% balance"
2769
- msgstr "使用您的 %_plural% 余额进行支付"
2770
-
2771
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2772
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2773
- msgid "Pay"
2774
- msgstr "支付"
2775
-
2776
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2777
- msgid "%plural% Cost"
2778
- msgstr ""
2779
-
2780
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2781
- #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2782
- msgid "Thank you for your payment!"
2783
- msgstr "感谢您的付款!"
2784
-
2785
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:45 ..
2786
- #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2787
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2788
- msgstr "非常抱歉,您无法使用 %_plural% 来购买这些门票"
2789
-
2790
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:136 ..
2791
- #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2792
- msgid "Ticket Type"
2793
- msgstr "门票类型"
2794
-
2795
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:145 ..
2796
- #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2797
- msgid "Spaces"
2798
- msgstr "空间"
2799
-
2800
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
2801
- msgid "Your Balance"
2802
- msgstr ""
2803
-
2804
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
2805
- msgid "You can not pay using this gateway."
2806
- msgstr "您无法使用这个网关进行支付。"
2807
-
2808
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
2809
- msgid "Reject"
2810
- msgstr "拒绝"
2811
-
2812
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2813
- #: modules/mycred-module-log.php:522 ../modules/mycred-module-settings.php:636 ..
2814
- #: modules/mycred-module-settings.php:655
2815
- msgid "Delete"
2816
- msgstr "删除"
2817
-
2818
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
2819
- msgid "Edit/View"
2820
- msgstr "编辑/查看"
2821
-
2822
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:518 ..
2823
- #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2824
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2825
- msgstr "禁用 - 用户无法使用 %plural% 购买门票。"
2826
-
2827
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:519 ..
2828
- #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2829
- msgid "Single - Users can ONLY pay for tickets using %plural%."
2830
- msgstr "单一 - 用户只能使用 %plural% 购买门票。"
2831
-
2832
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:520 ..
2833
- #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2834
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2835
- msgstr "多种 - 用户可以使用其他网关或 %plural% 购买门票。"
2836
-
2837
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
2838
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557 ..
2839
- #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2840
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2841
- msgid "Refunds"
2842
- msgstr "退款"
2843
-
2844
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2845
- msgid ""
2846
- "The percentage of the paid amount to refund if a user cancels their booking. "
2847
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2848
- msgstr "支付金额的百分比,如果用户取消预订。使用零则不退款。没有退款给\"拒绝\"预订!"
2849
-
2850
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:547 ..
2851
- #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2852
- msgid "Log Templates"
2853
- msgstr "日志模板"
2854
-
2855
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:550 ..
2856
- #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2857
- msgid "Purchases"
2858
- msgstr "购买"
2859
-
2860
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:579 ..
2861
- #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2862
- msgid "Payment Link Label"
2863
- msgstr "付款链接标签"
2864
-
2865
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:582 ..
2866
- #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2867
- msgid ""
2868
- "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2869
- "allowed."
2870
- msgstr "付款链接显示/隐藏付款表单在 \"我的预订\"下方。不允许HTML代码。"
2871
-
2872
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:586 ..
2873
- #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2874
- msgid "Payment Header"
2875
- msgstr "付款头部"
2876
-
2877
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:589 ..
2878
- #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2879
- msgid "Shown on top of the payment form. No HTML allowed."
2880
- msgstr "显示在付款表单上方。不允许HTML代码。"
2881
-
2882
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:596 ..
2883
- #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2884
- msgid "The button label for payments. No HTML allowed!"
2885
- msgstr "付款按钮的标签。不允许HTML代码!"
2886
-
2887
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
2888
- msgid "Cart & Checkout Cost"
2889
- msgstr ""
2890
-
2891
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
2892
- msgid "Label for cost in %plural%"
2893
- msgstr ""
2894
-
2895
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:610 ..
2896
- #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2897
- msgid "Successful Payments"
2898
- msgstr "成功付款"
2899
-
2900
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
2901
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620 ..
2902
- #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2903
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2904
- msgid "No HTML allowed!"
2905
- msgstr "不允许 HTML 代码!"
2906
-
2907
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2908
- msgid "Balance After Payment"
2909
- msgstr "付款后的余额"
2910
-
2911
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2912
- msgid "Click to toggle"
2913
- msgstr "点击切换"
2914
-
2915
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2916
- #, php-format
2917
- msgid "%s Payments"
2918
- msgstr "%s 付款"
2919
-
2920
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2921
- msgid ""
2922
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2923
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2924
- msgstr "支付金额的百分比来退款,如果预订被取消。使用零则不退款。没有退款给\"拒绝\"的预订。"
2925
-
2926
- #: ../addons/notifications/myCRED-addon-notifications.php:193
2927
- msgid "Notifications"
2928
- msgstr "通知"
2929
-
2930
- #: ../addons/notifications/myCRED-addon-notifications.php:195
2931
- msgid "Styling"
2932
- msgstr "样式"
2933
-
2934
- #: ../addons/notifications/myCRED-addon-notifications.php:198
2935
- msgid "Use the included CSS Styling for notifications."
2936
- msgstr "使用内置的CSS样式的通知。"
2937
-
2938
- #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
2939
- #: addons/ranks/myCRED-addon-ranks.php:1417 ../addons/ranks/myCRED-addon-ranks.
2940
- #: php:1463 ../modules/mycred-module-buddypress.php:428
2941
- msgid "Template"
2942
- msgstr "模板"
2943
-
2944
- #: ../addons/notifications/myCRED-addon-notifications.php:205
2945
- #, php-format
2946
- msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2947
- msgstr "在通知中使用 %entry% 来显示日志条目,使用 %amount% 显示金额。"
2948
-
2949
- #: ../addons/notifications/myCRED-addon-notifications.php:205
2950
- msgid "Restore to default"
2951
- msgstr ""
2952
-
2953
- #: ../addons/notifications/myCRED-addon-notifications.php:208
2954
- msgid "Transient Lifespan"
2955
- msgstr "保存期"
2956
-
2957
- #: ../addons/notifications/myCRED-addon-notifications.php:212
2958
- msgid ""
2959
- "The number of days a users notification is saved before being automatically "
2960
- "deleted."
2961
- msgstr "通知保存的天数,过期则自动删除。"
2962
-
2963
- #: ../addons/notifications/myCRED-addon-notifications.php:215
2964
- msgid "Duration"
2965
- msgstr "时长"
2966
-
2967
- #: ../addons/notifications/myCRED-addon-notifications.php:219
2968
- msgid ""
2969
- "Number of seconds before a notice is automatically removed after being shown "
2970
- "to user. Use zero to disable."
2971
- msgstr ""
2972
-
2973
- #: ../addons/ranks/myCRED-addon-ranks.php:211 ../addons/ranks/myCRED-addon-ranks.
2974
- #: php:212 ../addons/ranks/myCRED-addon-ranks.php:440 ../addons/ranks/myCRED-
2975
- #: addon-ranks.php:449 ../addons/ranks/myCRED-addon-ranks.php:455 ..
2976
- #: addons/ranks/myCRED-addon-ranks.php:831 ../addons/ranks/myCRED-addon-ranks.
2977
- #: php:1299 ../addons/ranks/myCRED-addon-ranks.php:1590
2978
- msgid "Ranks"
2979
- msgstr "等级"
2980
-
2981
- #: ../addons/ranks/myCRED-addon-ranks.php:422
2982
- msgid "Warning! All ranks will be deleted! This can not be undone!"
2983
- msgstr "警告!所有排名将被删除!此操作无法撤消!"
2984
-
2985
- #: ../addons/ranks/myCRED-addon-ranks.php:423
2986
- msgid "Are you sure you want to re-assign user ranks?"
2987
- msgstr "您确定要重新分配用户排名?"
2988
-
2989
- #: ../addons/ranks/myCRED-addon-ranks.php:438
2990
- #, php-format
2991
- msgid "Ranks for %s"
2992
- msgstr ""
2993
-
2994
- #: ../addons/ranks/myCRED-addon-ranks.php:444 ../addons/ranks/myCRED-addon-ranks.
2995
- #: php:831
2996
- msgid "Rank"
2997
- msgstr "等级"
2998
-
2999
- #: ../addons/ranks/myCRED-addon-ranks.php:446
3000
- msgid "Add New Rank"
3001
- msgstr "添加新等级"
3002
-
3003
- #: ../addons/ranks/myCRED-addon-ranks.php:447
3004
- msgid "Edit Rank"
3005
- msgstr "编辑等级"
3006
-
3007
- #: ../addons/ranks/myCRED-addon-ranks.php:448
3008
- msgid "New Rank"
3009
- msgstr "新等级"
3010
-
3011
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3012
- msgid "View Rank"
3013
- msgstr "查看等级"
3014
-
3015
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3016
- msgid "Search Ranks"
3017
- msgstr "搜索等级"
3018
-
3019
- #: ../addons/ranks/myCRED-addon-ranks.php:452
3020
- msgid "No ranks found"
3021
- msgstr "没有等级"
3022
-
3023
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3024
- msgid "No ranks found in Trash"
3025
- msgstr "回收站里没有等级"
3026
-
3027
- #: ../addons/ranks/myCRED-addon-ranks.php:537
3028
- #, php-format
3029
- msgid "Completed - Total of %d users effected"
3030
- msgstr "完成 - 总计 %d 位用户受影响"
3031
-
3032
- #: ../addons/ranks/myCRED-addon-ranks.php:975 ../addons/ranks/myCRED-addon-ranks.
3033
- #: php:976 ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-
3034
- #: addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ..
3035
- #: addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.
3036
- #: php:983 ../addons/ranks/myCRED-addon-ranks.php:984
3037
- msgid "Rank Updated."
3038
- msgstr ""
3039
-
3040
- #: ../addons/ranks/myCRED-addon-ranks.php:981
3041
- msgid "Rank Enabled"
3042
- msgstr ""
3043
-
3044
- #: ../addons/ranks/myCRED-addon-ranks.php:982
3045
- msgid "Rank Saved"
3046
- msgstr "等级已保存"
3047
-
3048
- #: ../addons/ranks/myCRED-addon-ranks.php:1019
3049
- #, php-format
3050
- msgid "<strong>Rank:</strong> %s"
3051
- msgstr ""
3052
-
3053
- #: ../addons/ranks/myCRED-addon-ranks.php:1035 ../addons/ranks/myCRED-addon-ranks.
3054
- #: php:1116
3055
- msgid "Rank Title"
3056
- msgstr "等级标题"
3057
-
3058
- #: ../addons/ranks/myCRED-addon-ranks.php:1036
3059
- msgid "Logo"
3060
- msgstr "Logo"
3061
-
3062
- #: ../addons/ranks/myCRED-addon-ranks.php:1037
3063
- msgid "Requirement"
3064
- msgstr "条件"
3065
-
3066
- #: ../addons/ranks/myCRED-addon-ranks.php:1062
3067
- msgid "No Logo Set"
3068
- msgstr "还没设置Logo"
3069
-
3070
- #: ../addons/ranks/myCRED-addon-ranks.php:1077 ../addons/ranks/myCRED-addon-ranks.
3071
- #: php:1082
3072
- msgid "Any Value"
3073
- msgstr "任何值"
3074
-
3075
- #: ../addons/ranks/myCRED-addon-ranks.php:1084
3076
- msgid "Maximum %plural%"
3077
- msgstr "最大 %plural%"
3078
-
3079
- #: ../addons/ranks/myCRED-addon-ranks.php:1129
3080
- msgid "Rank Settings"
3081
- msgstr "等级设置"
3082
-
3083
- #: ../addons/ranks/myCRED-addon-ranks.php:1182
3084
- msgid "Minimum %plural% to reach this rank"
3085
- msgstr "达到这个等级的最小 %plural%"
3086
-
3087
- #: ../addons/ranks/myCRED-addon-ranks.php:1186
3088
- msgid "Maximum %plural% to be included in this rank"
3089
- msgstr "包含在这个等级的最大 %plural%"
3090
-
3091
- #: ../addons/ranks/myCRED-addon-ranks.php:1204
3092
- msgid "All Published Ranks"
3093
- msgstr "所有已发布的等级"
3094
-
3095
- #: ../addons/ranks/myCRED-addon-ranks.php:1214 ../addons/ranks/myCRED-addon-ranks.
3096
- #: php:1216
3097
- msgid "Not Set"
3098
- msgstr "还没设置"
3099
-
3100
- #: ../addons/ranks/myCRED-addon-ranks.php:1222
3101
- msgid "No Ranks found"
3102
- msgstr "没有等级"
3103
-
3104
- #: ../addons/ranks/myCRED-addon-ranks.php:1304
3105
- msgid "Rank Features"
3106
- msgstr "等级特色"
3107
-
3108
- #: ../addons/ranks/myCRED-addon-ranks.php:1308
3109
- msgid "%plural% requirement"
3110
- msgstr "%plural% 条件"
3111
-
3112
- #: ../addons/ranks/myCRED-addon-ranks.php:1309
3113
- msgid "Featured Image (Logo)"
3114
- msgstr "特色图像(Logo)"
3115
-
3116
- #: ../addons/ranks/myCRED-addon-ranks.php:1311
3117
- msgid "Content"
3118
- msgstr "内容"
3119
-
3120
- #: ../addons/ranks/myCRED-addon-ranks.php:1313
3121
- msgid "Excerpt"
3122
- msgstr "摘要"
3123
-
3124
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3125
- msgid "Comments"
3126
- msgstr "评论"
3127
-
3128
- #: ../addons/ranks/myCRED-addon-ranks.php:1317
3129
- msgid "Page Attributes"
3130
- msgstr "页面属性"
3131
-
3132
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3133
- msgid "Custom Fields"
3134
- msgstr "自定义字段"
3135
-
3136
- #: ../addons/ranks/myCRED-addon-ranks.php:1323
3137
- msgid "Public"
3138
- msgstr "公开"
3139
-
3140
- #: ../addons/ranks/myCRED-addon-ranks.php:1327
3141
- msgid ""
3142
- "If you want to create a template archive for each rank, you must select to "
3143
- "have ranks public. Defaults to disabled."
3144
- msgstr "如果你想为每个等级创建一个模板存档,你必须选择这个选项公开等级。默认设置为禁用。"
3145
-
3146
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3147
- msgid "Archive URL"
3148
- msgstr "存档网址"
3149
-
3150
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3151
- msgid "Ignored if Ranks are not public"
3152
- msgstr "如果排名是不公开的,就忽略"
3153
-
3154
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
3155
- msgid "Display Order"
3156
- msgstr "显示顺序"
3157
-
3158
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3159
- msgid "Ascending - Lowest rank to highest"
3160
- msgstr "递增 - 最低排名到最高"
3161
-
3162
- #: ../addons/ranks/myCRED-addon-ranks.php:1346
3163
- msgid "Descending - Highest rank to lowest"
3164
- msgstr "递减 - 最高排名到最低"
3165
-
3166
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3167
- msgid ""
3168
- "Select in what order ranks should be displayed in your admin area and/or "
3169
- "front if ranks are \"Public\""
3170
- msgstr "选择要显示在您的管理后台,或前台(如果排名是\"公开的\")的排名顺序。"
3171
-
3172
- #: ../addons/ranks/myCRED-addon-ranks.php:1363
3173
- msgid "Rank Basis"
3174
- msgstr "排名依据"
3175
-
3176
- #: ../addons/ranks/myCRED-addon-ranks.php:1366
3177
- msgid "Users are ranked according to their current balance."
3178
- msgstr "根据用户当前余额进行排名。"
3179
-
3180
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
3181
- msgid ""
3182
- "Users are ranked according to the total amount of %_plural% they have "
3183
- "accumulated."
3184
- msgstr "根据用户已经积累的 %_plural% 总量进行排名。"
3185
-
3186
- #: ../addons/ranks/myCRED-addon-ranks.php:1373 ../addons/ranks/myCRED-addon-ranks.
3187
- #: php:1378
3188
- msgid "Calculate Totals"
3189
- msgstr "计算汇总"
3190
-
3191
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3192
- msgid ""
3193
- "Use this button to calculate or recalculate your users totals. If not used, "
3194
- "the users current balance will be used as a starting point."
3195
- msgstr ""
3196
-
3197
- #: ../addons/ranks/myCRED-addon-ranks.php:1376
3198
- msgid ""
3199
- "Once a users total has been calculated, they will be assigned to their "
3200
- "appropriate roles. For this reason, it is highly recommended that you first "
3201
- "setup your ranks!"
3202
- msgstr "一旦用户人数已经算出,他们将被分配给相应的角色。出于这个原因,我们强烈建议您先设置你的排名!"
3203
-
3204
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3205
- msgid ""
3206
- "Depending on your log size and number of users this process may take a while."
3207
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3208
- "this is completed!"
3209
- msgstr "根据你的日志大小和用户数量,这一过程可能需要一段时间。请不要离开、单击\"更新设置\"或刷新此页面,直到这项工作完成!"
3210
-
3211
- #: ../addons/ranks/myCRED-addon-ranks.php:1394 ../addons/ranks/myCRED-addon-ranks.
3212
- #: php:1440 ../modules/mycred-module-buddypress.php:391
3213
- msgid "Do not show."
3214
- msgstr "不显示。"
3215
-
3216
- #: ../addons/ranks/myCRED-addon-ranks.php:1395
3217
- msgid "Include in Profile Header."
3218
- msgstr "包括在个人资料头部。"
3219
-
3220
- #: ../addons/ranks/myCRED-addon-ranks.php:1397
3221
- msgid "Include under the \"Profile\" tab and Profile Header."
3222
- msgstr "包括在\"个人资料\"TAB下面和个人资料头部。"
3223
-
3224
- #: ../addons/ranks/myCRED-addon-ranks.php:1402
3225
- msgid "Rank in BuddyPress"
3226
- msgstr "BuddyPress的积分排名"
3227
-
3228
- #: ../addons/ranks/myCRED-addon-ranks.php:1419 ../addons/ranks/myCRED-addon-ranks.
3229
- #: php:1465
3230
- #, php-format
3231
- msgid ""
3232
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3233
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3234
- msgstr ""
3235
-
3236
- #: ../addons/ranks/myCRED-addon-ranks.php:1441
3237
- msgid "Include in Topic Replies"
3238
- msgstr ""
3239
-
3240
- #: ../addons/ranks/myCRED-addon-ranks.php:1443
3241
- msgid "Include in Topic Replies and Profile"
3242
- msgstr ""
3243
-
3244
- #: ../addons/ranks/myCRED-addon-ranks.php:1448
3245
- msgid "Rank in bbPress"
3246
- msgstr ""
3247
-
3248
- #: ../addons/ranks/myCRED-addon-ranks.php:1528
3249
- msgid "Script Communication Error"
3250
- msgstr "脚本通讯错误"
3251
-
3252
- #: ../addons/ranks/myCRED-addon-ranks.php:1593 ../modules/mycred-module-settings.
3253
- #: php:596
3254
- msgid "User Meta Key"
3255
- msgstr "用户Meta键"
3256
-
3257
- #: ../addons/ranks/myCRED-addon-ranks.php:1597
3258
- msgid "No. of ranks"
3259
- msgstr "等级数量"
3260
-
3261
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3262
- msgid "Remove All Ranks"
3263
- msgstr "移除所有等级"
3264
-
3265
- #: ../addons/ranks/myCRED-addon-ranks.php:1602
3266
- msgid "Assign Ranks to Users"
3267
- msgstr "分配等级给用户"
3268
-
3269
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
3270
- msgid "mycred_get_users_rank() : Missing required user id"
3271
- msgstr "mycred_get_users_rank() : 缺失必要的用户ID"
3272
-
3273
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
3274
- msgid "no rank"
3275
- msgstr "没有排名"
3276
-
3277
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
3278
- #: addons/ranks/includes/mycred-rank-shortcodes.php:202
3279
- msgid "No users found with this rank"
3280
- msgstr "没有任何用户在这个等级中"
3281
-
3282
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122 ../includes/mycred-
3283
- #: shortcodes.php:525
3284
- msgid "error"
3285
- msgstr "错误"
3286
-
3287
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3288
- msgid "Rank ID is required!"
3289
- msgstr "等级ID是必需的!"
3290
-
3291
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
3292
- msgid "Hours"
3293
- msgstr "小时"
3294
-
3295
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
3296
- msgid "Profit Share"
3297
- msgstr ""
3298
-
3299
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
3300
- msgid "Save Profit Share"
3301
- msgstr ""
3302
-
3303
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3304
- msgid "Profit Share override saved"
3305
- msgstr ""
3306
-
3307
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3308
- msgid "You can not buy this content."
3309
- msgstr "你无法购买这个内容。"
3310
-
3311
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3312
- msgid "Error. Try Again"
3313
- msgstr "错误,请重试"
3314
-
3315
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3316
- msgid "No Payout. Just charge."
3317
- msgstr "不支付,只是充值。"
3318
-
3319
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3320
- msgid "Pay Content Author."
3321
- msgstr "支付内容作者。"
3322
-
3323
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3324
- #: overview.php:141 ../includes/mycred-overview.php:148
3325
- msgid "Sell Content"
3326
- msgstr "销售内容"
3327
-
3328
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3329
- msgid "Post Types"
3330
- msgstr "文章类型"
3331
-
3332
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3333
- msgid "Comma separated list of post types that can be sold."
3334
- msgstr "用逗号分隔的可以出售的文章类型列表。"
3335
-
3336
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3337
- msgid "Percentage to pay Author"
3338
- msgstr "支付作者的百分比"
3339
-
3340
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3341
- msgid ""
3342
- "Percentage of the price to pay the author. Can not be zero and is ignored if "
3343
- "authors are not paid."
3344
- msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3345
-
3346
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3347
- msgid "Defaults"
3348
- msgstr "默认"
3349
-
3350
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3351
- msgid "Allow authors to change price."
3352
- msgstr "允许作者更改价格。"
3353
-
3354
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3355
- msgid "Allow authors to change button label."
3356
- msgstr "允许作者更改按钮标签。"
3357
-
3358
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3359
- msgid "Purchases expire after"
3360
- msgstr "多久后购买过期"
3361
-
3362
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3363
- msgid "Use zero for permanent sales."
3364
- msgstr "使用零永久销售。"
3365
-
3366
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3367
- msgid "For Visitors"
3368
- msgstr ""
3369
-
3370
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3371
- #, php-format
3372
- msgid ""
3373
- "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3374
- "be logged in to buy content!"
3375
- msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3376
-
3377
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3378
- msgid "For Members"
3379
- msgstr ""
3380
-
3381
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3382
- #: content/myCRED-addon-sell-content.php:516
3383
- #, php-format
3384
- msgid "Your template must contain the %buy_button% tag for purchases to work!"
3385
- msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3386
-
3387
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3388
- msgid "For members that can not afford to buy"
3389
- msgstr ""
3390
-
3391
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3392
- msgid "Log template for Purchases"
3393
- msgstr "用于购买的日志模板"
3394
-
3395
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3396
- msgid "Log template for Sales"
3397
- msgstr "用于销售的日志模板"
3398
-
3399
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3400
- #, php-format
3401
- msgid "%s Sell This"
3402
- msgstr "%s 销售这个"
3403
-
3404
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3405
- #, php-format
3406
- msgid "%s Sell Content needs to be setup before you can use this feature."
3407
- msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3408
-
3409
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3410
- msgid "Setup add-on"
3411
- msgstr "设置扩展"
3412
-
3413
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3414
- msgid "Lets do it"
3415
- msgstr "让我们开始吧"
3416
-
3417
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3418
- #, php-format
3419
- msgid "Enable sale of this %s"
3420
- msgstr ""
3421
-
3422
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3423
- msgid "Purchase expires after"
3424
- msgstr "多久后购买过期"
3425
-
3426
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3427
- msgid "Thank you for your purchase!"
3428
- msgstr "非常感谢您的购买!"
3429
-
3430
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3431
- #: content/myCRED-addon-sell-content.php:1190
3432
- msgid "The following content is set for sale:"
3433
- msgstr "下面的内容是设置来销售的:"
3434
-
3435
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3436
- msgid "Purchased"
3437
- msgstr "购买"
3438
-
3439
- #: ../addons/stats/myCRED-addon-stats.php:54
3440
- msgid "Statistics"
3441
- msgstr ""
3442
-
3443
- #: ../addons/stats/myCRED-addon-stats.php:126
3444
- msgid "Overview"
3445
- msgstr ""
3446
-
3447
- #: ../addons/stats/myCRED-addon-stats.php:192
3448
- msgid "Refresh"
3449
- msgstr ""
3450
-
3451
- #: ../addons/stats/myCRED-addon-stats.php:248
3452
- msgid "Your log is empty. No statistics can be shown."
3453
- msgstr ""
3454
-
3455
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:102 ..
3456
- #: includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
3457
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3458
- msgid "View Log"
3459
- msgstr "查看日志"
3460
-
3461
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3462
- #: modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
3463
- #: modules/mycred-module-hooks.php:27
3464
- msgid "Hooks"
3465
- msgstr "钩子"
3466
-
3467
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
3468
- #, php-format
3469
- msgid "Total %s:"
3470
- msgstr ""
3471
-
3472
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:136 ..
3473
- #: includes/mycred-overview.php:78
3474
- msgid "Total amount in circulation"
3475
- msgstr "在流通的总金额"
3476
-
3477
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
3478
- #, php-format
3479
- msgid "Total amount of %s in circulation"
3480
- msgstr ""
3481
-
3482
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
3483
- msgid "Total gains (%)"
3484
- msgstr ""
3485
-
3486
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
3487
- msgid "Total loses (%)"
3488
- msgstr ""
3489
-
3490
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3491
- #, php-format
3492
- msgid "Total Gained: %s"
3493
- msgstr ""
3494
-
3495
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3496
- #, php-format
3497
- msgid "Total Spent: %s"
3498
- msgstr ""
3499
-
3500
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3501
- #: includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3502
- msgid "Today"
3503
- msgstr "今天"
3504
-
3505
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3506
- #: includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3507
- msgid "This Week"
3508
- msgstr "本周"
3509
-
3510
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3511
- #: includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3512
- msgid "This Month"
3513
- msgstr "本月"
3514
-
3515
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
3516
- msgid "This Year"
3517
- msgstr ""
3518
-
3519
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
3520
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
3521
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
3522
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
3523
- msgid "Gained"
3524
- msgstr ""
3525
-
3526
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
3527
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
3528
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
3529
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
3530
- msgid "Lost"
3531
- msgstr ""
3532
-
3533
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
3534
- msgid "Most common ways your users have gained points during this period."
3535
- msgstr ""
3536
-
3537
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
3538
- #, php-format
3539
- msgid "Most common ways your users have gained %_plural% during this period."
3540
- msgstr ""
3541
-
3542
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
3543
- msgid "Gains in the last 10 days"
3544
- msgstr ""
3545
-
3546
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3547
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3548
- msgid "View"
3549
- msgstr ""
3550
-
3551
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3552
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3553
- msgid "No data found"
3554
- msgstr ""
3555
-
3556
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
3557
- msgid "Most common ways your users have lost or spent points during this period."
3558
- msgstr ""
3559
-
3560
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
3561
- #, php-format
3562
- msgid "Most common ways your users have lost or spent %_plural% during this period."
3563
- msgstr ""
3564
-
3565
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
3566
- msgid "Loses in the last 10 days"
3567
- msgstr ""
3568
-
3569
- #: ../addons/transfer/myCRED-addon-transfer.php:44
3570
- msgid "You do not have enough %plural% to send."
3571
- msgstr "你没有足够的 %plural% 发送。"
3572
-
3573
- #: ../addons/transfer/myCRED-addon-transfer.php:45
3574
- msgid "You have exceeded your %limit% transfer limit."
3575
- msgstr "您已超出您的 %limit% 转账限额。"
3576
-
3577
- #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3578
- #: php:2446
3579
- msgid "Transfer"
3580
- msgstr "转账"
3581
-
3582
- #: ../addons/transfer/myCRED-addon-transfer.php:154
3583
- msgid "Transaction completed."
3584
- msgstr "交易完成。"
3585
-
3586
- #: ../addons/transfer/myCRED-addon-transfer.php:155
3587
- msgid "Security token could not be verified. Please contact your site administrator!"
3588
- msgstr "安全令牌无法验证。请与网站管理员联系!"
3589
-
3590
- #: ../addons/transfer/myCRED-addon-transfer.php:156
3591
- msgid "Communications error. Please try again later."
3592
- msgstr "通信错误。请稍后再试。"
3593
-
3594
- #: ../addons/transfer/myCRED-addon-transfer.php:157
3595
- msgid "Recipient not found. Please try again."
3596
- msgstr "没有找到收件人。请再试一次。"
3597
-
3598
- #: ../addons/transfer/myCRED-addon-transfer.php:158
3599
- msgid "Transaction declined by recipient."
3600
- msgstr "交易被收件人拒绝了。"
3601
-
3602
- #: ../addons/transfer/myCRED-addon-transfer.php:159
3603
- msgid "Incorrect amount. Please try again."
3604
- msgstr "金额不正确。请再试一次。"
3605
-
3606
- #: ../addons/transfer/myCRED-addon-transfer.php:160
3607
- msgid ""
3608
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3609
- "this has been done!"
3610
- msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
3611
-
3612
- #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3613
- #: php:2574
3614
- msgid "Insufficient Funds. Please try a lower amount."
3615
- msgstr ""
3616
-
3617
- #: ../addons/transfer/myCRED-addon-transfer.php:162
3618
- msgid "Transfer Limit exceeded."
3619
- msgstr "超出转账限额。"
3620
-
3621
- #: ../addons/transfer/myCRED-addon-transfer.php:189
3622
- msgid "No limits."
3623
- msgstr "没有限制。"
3624
-
3625
- #: ../addons/transfer/myCRED-addon-transfer.php:190
3626
- msgid "Impose daily limit."
3627
- msgstr "每日强加限制。"
3628
-
3629
- #: ../addons/transfer/myCRED-addon-transfer.php:191
3630
- msgid "Impose weekly limit."
3631
- msgstr "每周强加限制。"
3632
-
3633
- #: ../addons/transfer/myCRED-addon-transfer.php:198
3634
- msgid "User Login (user_login)"
3635
- msgstr "用户名 (user_login)"
3636
-
3637
- #: ../addons/transfer/myCRED-addon-transfer.php:199
3638
- msgid "User Email (user_email)"
3639
- msgstr "用户邮箱(user_email)"
3640
-
3641
- #: ../addons/transfer/myCRED-addon-transfer.php:207 ../includes/mycred-overview.
3642
- #: php:120 ../includes/mycred-overview.php:127
3643
- msgid "Transfers"
3644
- msgstr "转让"
3645
-
3646
- #: ../addons/transfer/myCRED-addon-transfer.php:216
3647
- msgid "Select the point types that users can transfer."
3648
- msgstr "选择用户可以转让的积分类型。"
3649
-
3650
- #: ../addons/transfer/myCRED-addon-transfer.php:224
3651
- msgid "Log template for sending"
3652
- msgstr "用于发送的日志模板"
3653
-
3654
- #: ../addons/transfer/myCRED-addon-transfer.php:231
3655
- msgid "Log template for receiving"
3656
- msgstr "用于接收的日志模板"
3657
-
3658
- #: ../addons/transfer/myCRED-addon-transfer.php:238
3659
- msgid "Autofill Recipient"
3660
- msgstr "自动填充收件人"
3661
-
3662
- #: ../addons/transfer/myCRED-addon-transfer.php:250
3663
- msgid "Select what user details recipients should be autofilled by."
3664
- msgstr "选择用户的哪些信息可以自动填充到收件人。"
3665
-
3666
- #: ../addons/transfer/myCRED-addon-transfer.php:253
3667
- msgid "Reload"
3668
- msgstr "刷新"
3669
-
3670
- #: ../addons/transfer/myCRED-addon-transfer.php:256
3671
- msgid "Reload page on successful transfers."
3672
- msgstr "成功转让后刷新页面。"
3673
-
3674
- #: ../addons/transfer/myCRED-addon-transfer.php:276
3675
- msgid "Limit Amount"
3676
- msgstr ""
3677
-
3678
- #: ../addons/transfer/myCRED-addon-transfer.php:280
3679
- msgid "Form Templates"
3680
- msgstr "表单模板"
3681
-
3682
- #: ../addons/transfer/myCRED-addon-transfer.php:283
3683
- msgid "Not logged in Template"
3684
- msgstr "没有登录模板"
3685
-
3686
- #: ../addons/transfer/myCRED-addon-transfer.php:285
3687
- msgid ""
3688
- "Text to show when users are not logged in. Leave empty to hide. No HTML "
3689
- "elements allowed!"
3690
- msgstr "用户没有登录时显示的文字。不允许 HTML 代码!"
3691
-
3692
- #: ../addons/transfer/myCRED-addon-transfer.php:289
3693
- msgid "Balance Template"
3694
- msgstr "余额模板"
3695
-
3696
- #: ../addons/transfer/myCRED-addon-transfer.php:291
3697
- msgid ""
3698
- "Template to use when displaying the users balance (if included). No HTML "
3699
- "elements allowed!"
3700
- msgstr "用于显示用户余额(如果包括的话)的模板。不允许 HTML 代码!"
3701
-
3702
- #: ../addons/transfer/myCRED-addon-transfer.php:295
3703
- msgid "Limit Template"
3704
- msgstr "限制模板"
3705
-
3706
- #: ../addons/transfer/myCRED-addon-transfer.php:297
3707
- msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3708
- msgstr "用于显示限制(如果使用)时的模板。不允许 HTML 代码!"
3709
-
3710
- #: ../addons/transfer/myCRED-addon-transfer.php:301
3711
- msgid "Button Template"
3712
- msgstr "按钮模板"
3713
-
3714
- #: ../addons/transfer/myCRED-addon-transfer.php:303
3715
- msgid "Send Transfer button template. No HTML elements allowed!"
3716
- msgstr "发送转让按钮的模板。不允许 HTML 代码!"
3717
-
3718
- #: ../addons/transfer/myCRED-addon-transfer.php:306
3719
- msgid "Error Messages"
3720
- msgstr "错误信息"
3721
-
3722
- #: ../addons/transfer/myCRED-addon-transfer.php:309
3723
- msgid "Balance to low to send."
3724
- msgstr "余额太少无法发送。"
3725
-
3726
- #: ../addons/transfer/myCRED-addon-transfer.php:311
3727
- msgid ""
3728
- "Text to show when a users balance is to low for transfers. Leave empty to "
3729
- "hide. No HTML elements allowed!"
3730
- msgstr "用于当用户余额低于转让数量时显示的文字。留空则隐藏。不允许 HTML 代码!"
3731
-
3732
- #: ../addons/transfer/myCRED-addon-transfer.php:315
3733
- msgid "Transfer Limit Reached."
3734
- msgstr "已达到转让限制。"
3735
-
3736
- #: ../addons/transfer/myCRED-addon-transfer.php:317
3737
- msgid ""
3738
- "Text to show when a user has reached their transfer limit (if used). Leave "
3739
- "empty to hide. No HTML elements allowed!"
3740
- msgstr "用于当用户已经达到了他们的转账限额(如果使用)时显示的文字。留空则隐藏。不允许 HTML 代码!"
3741
-
3742
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
3743
- msgid "username"
3744
- msgstr "用户名"
3745
-
3746
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
3747
- msgid "email"
3748
- msgstr "邮箱"
3749
-
3750
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
3751
- #, php-format
3752
- msgid "recipients %s"
3753
- msgstr "接收人 %s"
3754
-
3755
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:219
3756
- msgid "To:"
3757
- msgstr "给:"
3758
-
3759
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3760
- msgid "Amount:"
3761
- msgstr "数目:"
3762
-
3763
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:20
3764
- msgid "Allow transfers between users."
3765
- msgstr "允许用户之间转让。"
3766
-
3767
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:23
3768
- #, php-format
3769
- msgid "(%s) Transfer"
3770
- msgstr "(%s) 转让"
3771
-
3772
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:40
3773
- msgid "The myCRED Transfer add-on has not yet been setup!"
3774
- msgstr "myCRED 转让扩展还没有设置!"
3775
-
3776
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:123
3777
- msgid "Show users balance"
3778
- msgstr "显示用户余额"
3779
-
3780
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:127
3781
- msgid "Show users limit"
3782
- msgstr "显示用户限制"
3783
-
3784
- #: ../includes/mycred-about.php:77
3785
- #, php-format
3786
- msgid "Welcome to %s %s"
3787
- msgstr "欢迎访问 %s %s"
3788
-
3789
- #: ../includes/mycred-admin.php:191
3790
- msgid "A log entry is required in order to adjust this users balance"
3791
- msgstr ""
3792
-
3793
- #: ../includes/mycred-admin.php:193
3794
- msgid "Users balance saved"
3795
- msgstr ""
3796
-
3797
- #: ../includes/mycred-admin.php:201
3798
- msgid "Users excluded"
3799
- msgstr ""
3800
-
3801
- #: ../includes/mycred-admin.php:206
3802
- msgid ""
3803
- "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3804
- "rate settings and update all premium payment gateways!"
3805
- msgstr ""
3806
-
3807
- #: ../includes/mycred-admin.php:234
3808
- msgid "User is excluded"
3809
- msgstr "用户被排除在外"
3810
-
3811
- #: ../includes/mycred-admin.php:239
3812
- msgid "Log Entry can not be empty"
3813
- msgstr "日志条目不能为空"
3814
-
3815
- #: ../includes/mycred-admin.php:243
3816
- msgid "Amount can not be zero"
3817
- msgstr "数目不能为零"
3818
-
3819
- #: ../includes/mycred-admin.php:264
3820
- msgid "Failed to update this uses balance."
3821
- msgstr "无法更新该用户的余额。"
3822
-
3823
- #: ../includes/mycred-admin.php:385
3824
- msgid "Excluded"
3825
- msgstr "排除"
3826
-
3827
- #: ../includes/mycred-admin.php:406
3828
- msgid "Adjust"
3829
- msgstr "调整"
3830
-
3831
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3832
- msgid "Edit Balance"
3833
- msgstr ""
3834
-
3835
- #: ../includes/mycred-admin.php:463
3836
- msgid "Profile"
3837
- msgstr ""
3838
-
3839
- #: ../includes/mycred-admin.php:470
3840
- msgid "Extended Profile"
3841
- msgstr ""
3842
-
3843
- #: ../includes/mycred-admin.php:560
3844
- #, php-format
3845
- msgid "This user is excluded from using %s"
3846
- msgstr ""
3847
-
3848
- #: ../includes/mycred-admin.php:583
3849
- msgid "Edit User"
3850
- msgstr ""
3851
-
3852
- #: ../includes/mycred-admin.php:585
3853
- msgctxt "user"
3854
- msgid "Add New"
3855
- msgstr ""
3856
-
3857
- #: ../includes/mycred-admin.php:587
3858
- msgctxt "user"
3859
- msgid "Add Existing"
3860
- msgstr ""
3861
-
3862
- #: ../includes/mycred-admin.php:598
3863
- #, php-format
3864
- msgid "Total %s Accumulated"
3865
- msgstr ""
3866
-
3867
- #: ../includes/mycred-admin.php:599
3868
- #, php-format
3869
- msgid "Total %s Spent"
3870
- msgstr ""
3871
-
3872
- #: ../includes/mycred-admin.php:610
3873
- msgid "View History"
3874
- msgstr ""
3875
-
3876
- #: ../includes/mycred-admin.php:611
3877
- msgid "Exclude User"
3878
- msgstr ""
3879
-
3880
- #: ../includes/mycred-admin.php:615
3881
- msgid "Adjust Balance"
3882
- msgstr ""
3883
-
3884
- #: ../includes/mycred-admin.php:624
3885
- msgid ""
3886
- "Warning! Excluding this user will result in their balance being deleted "
3887
- "along with any entries currently in your log! This can not be undone!"
3888
- msgstr ""
3889
-
3890
- #: ../includes/mycred-admin.php:682
3891
- #, php-format
3892
- msgid "%singular% balance"
3893
- msgstr "%singular% 余额"
3894
-
3895
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
3896
- msgid "Update Balance"
3897
- msgstr "更新余额"
3898
-
3899
- #: ../includes/mycred-admin.php:753
3900
- msgid "ID"
3901
- msgstr "ID"
3902
-
3903
- #: ../includes/mycred-admin.php:759
3904
- msgid "A positive or negative value"
3905
- msgstr "正值或负值"
3906
-
3907
- #: ../includes/mycred-functions.php:79
3908
- msgid "Point"
3909
- msgstr "积分"
3910
-
3911
- #: ../includes/mycred-functions.php:80
3912
- msgid "Points"
3913
- msgstr "积分"
3914
-
3915
- #: ../includes/mycred-functions.php:398
3916
- msgid "Deleted"
3917
- msgstr "已删除"
3918
-
3919
- #: ../includes/mycred-functions.php:530
3920
- msgid "Deleted Item"
3921
- msgstr "删除项目"
3922
-
3923
- #: ../includes/mycred-functions.php:594
3924
- msgid "User Related"
3925
- msgstr "相关用户"
3926
-
3927
- #: ../includes/mycred-functions.php:601
3928
- msgid "Post Related"
3929
- msgstr "相关帖子"
3930
-
3931
- #: ../includes/mycred-functions.php:608
3932
- msgid "Comment Related"
3933
- msgstr "相关评论"
3934
-
3935
- #: ../includes/mycred-functions.php:615
3936
- msgid "Widget Related"
3937
- msgstr "相关小工具"
3938
-
3939
- #: ../includes/mycred-functions.php:622
3940
- msgid "Amount Related"
3941
- msgstr "数目相关"
3942
-
3943
- #: ../includes/mycred-functions.php:629
3944
- msgid "Video Related"
3945
- msgstr "相关视频"
3946
-
3947
- #: ../includes/mycred-functions.php:640
3948
- msgid "and"
3949
- msgstr ""
3950
-
3951
- #: ../includes/mycred-functions.php:642
3952
- msgid "Available Template Tags:"
3953
- msgstr "可用的模板标签:"
3954
-
3955
- #: ../includes/mycred-functions.php:1686
3956
- msgid "Entire Log"
3957
- msgstr "全部日志"
3958
-
3959
- #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
3960
- msgid "Displayed Rows"
3961
- msgstr "显示的行"
3962
-
3963
- #: ../includes/mycred-functions.php:1699
3964
- msgid "Search Results"
3965
- msgstr "搜索结果"
3966
-
3967
- #: ../includes/mycred-functions.php:1700
3968
- msgid "My Entire Log"
3969
- msgstr "我的整个日志"
3970
-
3971
- #: ../includes/mycred-functions.php:1867
3972
- msgid "ref empty"
3973
- msgstr "ref 为空"
3974
-
3975
- #: ../includes/mycred-functions.php:1875
3976
- msgid "incorrect user id format"
3977
- msgstr "不正确的用户ID格式"
3978
-
3979
- #: ../includes/mycred-functions.php:1888
3980
- msgid "incorrect unix timestamp (from):"
3981
- msgstr "不正确的unix时间戳(from):"
3982
-
3983
- #: ../includes/mycred-functions.php:1897
3984
- msgid "incorrect unix timestamp (to):"
3985
- msgstr "不正确的UNIX时间戳(to):"
3986
-
3987
- #: ../includes/mycred-functions.php:2306
3988
- msgid "Website Registration"
3989
- msgstr ""
3990
-
3991
- #: ../includes/mycred-functions.php:2307
3992
- msgid "Website Visit"
3993
- msgstr ""
3994
-
3995
- #: ../includes/mycred-functions.php:2308
3996
- msgid "Viewing Content (Member)"
3997
- msgstr ""
3998
-
3999
- #: ../includes/mycred-functions.php:2309
4000
- msgid "Viewing Content (Author)"
4001
- msgstr ""
4002
-
4003
- #: ../includes/mycred-functions.php:2310
4004
- msgid "Logging in"
4005
- msgstr ""
4006
-
4007
- #: ../includes/mycred-functions.php:2311
4008
- msgid "Publishing Content"
4009
- msgstr ""
4010
-
4011
- #: ../includes/mycred-functions.php:2312 ../modules/mycred-module-hooks.php:1512
4012
- msgid "Approved Comment"
4013
- msgstr "批准评论"
4014
-
4015
- #: ../includes/mycred-functions.php:2313
4016
- msgid "Unapproved Comment"
4017
- msgstr ""
4018
-
4019
- #: ../includes/mycred-functions.php:2314
4020
- msgid "SPAM Comment"
4021
- msgstr ""
4022
-
4023
- #: ../includes/mycred-functions.php:2315
4024
- msgid "Deleted Comment"
4025
- msgstr ""
4026
-
4027
- #: ../includes/mycred-functions.php:2316
4028
- msgid "Link Click"
4029
- msgstr ""
4030
-
4031
- #: ../includes/mycred-functions.php:2317
4032
- msgid "Watching Video"
4033
- msgstr ""
4034
-
4035
- #: ../includes/mycred-functions.php:2318
4036
- msgid "Visitor Referral"
4037
- msgstr ""
4038
-
4039
- #: ../includes/mycred-functions.php:2319
4040
- msgid "Signup Referral"
4041
- msgstr ""
4042
-
4043
- #: ../includes/mycred-functions.php:2323
4044
- msgid "New Profile Update"
4045
- msgstr ""
4046
-
4047
- #: ../includes/mycred-functions.php:2324
4048
- msgid "Profile Update Removal"
4049
- msgstr ""
4050
-
4051
- #: ../includes/mycred-functions.php:2325
4052
- msgid "Avatar Upload"
4053
- msgstr ""
4054
-
4055
- #: ../includes/mycred-functions.php:2326
4056
- msgid "New Friendship"
4057
- msgstr ""
4058
-
4059
- #: ../includes/mycred-functions.php:2327
4060
- msgid "Ended Friendship"
4061
- msgstr ""
4062
-
4063
- #: ../includes/mycred-functions.php:2328
4064
- msgid "New Profile Comment"
4065
- msgstr ""
4066
-
4067
- #: ../includes/mycred-functions.php:2329
4068
- msgid "Profile Comment Deletion"
4069
- msgstr ""
4070
-
4071
- #: ../includes/mycred-functions.php:2330
4072
- msgid "New Message"
4073
- msgstr ""
4074
-
4075
- #: ../includes/mycred-functions.php:2331
4076
- msgid "Sending Gift"
4077
- msgstr ""
4078
-
4079
- #: ../includes/mycred-functions.php:2332
4080
- msgid "New Group"
4081
- msgstr ""
4082
-
4083
- #: ../includes/mycred-functions.php:2333
4084
- msgid "Deleted Group"
4085
- msgstr ""
4086
-
4087
- #: ../includes/mycred-functions.php:2334
4088
- msgid "New Group Forum Topic"
4089
- msgstr ""
4090
-
4091
- #: ../includes/mycred-functions.php:2335
4092
- msgid "Edit Group Forum Topic"
4093
- msgstr ""
4094
-
4095
- #: ../includes/mycred-functions.php:2336
4096
- msgid "New Group Forum Post"
4097
- msgstr ""
4098
-
4099
- #: ../includes/mycred-functions.php:2337
4100
- msgid "Edit Group Forum Post"
4101
- msgstr ""
4102
-
4103
- #: ../includes/mycred-functions.php:2338
4104
- msgid "Joining Group"
4105
- msgstr ""
4106
-
4107
- #: ../includes/mycred-functions.php:2339
4108
- msgid "Leaving Group"
4109
- msgstr ""
4110
-
4111
- #: ../includes/mycred-functions.php:2340
4112
- msgid "New Group Avatar"
4113
- msgstr ""
4114
-
4115
- #: ../includes/mycred-functions.php:2341
4116
- msgid "New Group Comment"
4117
- msgstr ""
4118
-
4119
- #: ../includes/mycred-functions.php:2345 ../plugins/mycred-hook-buddypress-media.
4120
- #: php:205
4121
- msgid "Photo Upload"
4122
- msgstr "照片上传"
4123
-
4124
- #: ../includes/mycred-functions.php:2346 ../plugins/mycred-hook-buddypress-media.
4125
- #: php:219
4126
- msgid "Video Upload"
4127
- msgstr "视频上传"
4128
-
4129
- #: ../includes/mycred-functions.php:2347 ../plugins/mycred-hook-buddypress-media.
4130
- #: php:233
4131
- msgid "Music Upload"
4132
- msgstr "音乐上传"
4133
-
4134
- #: ../includes/mycred-functions.php:2351
4135
- msgid "New Link"
4136
- msgstr ""
4137
-
4138
- #: ../includes/mycred-functions.php:2352
4139
- msgid "Link Voting"
4140
- msgstr ""
4141
-
4142
- #: ../includes/mycred-functions.php:2353
4143
- msgid "Link Update"
4144
- msgstr ""
4145
-
4146
- #: ../includes/mycred-functions.php:2357
4147
- msgid "New Forum (bbPress)"
4148
- msgstr ""
4149
-
4150
- #: ../includes/mycred-functions.php:2358
4151
- msgid "New Forum Topic (bbPress)"
4152
- msgstr ""
4153
-
4154
- #: ../includes/mycred-functions.php:2359
4155
- msgid "Favorited Topic (bbPress)"
4156
- msgstr ""
4157
-
4158
- #: ../includes/mycred-functions.php:2360
4159
- msgid "New Topic Reply (bbPress)"
4160
- msgstr ""
4161
-
4162
- #: ../includes/mycred-functions.php:2364
4163
- msgid "Form Submission (Contact Form 7)"
4164
- msgstr ""
4165
-
4166
- #: ../includes/mycred-functions.php:2367
4167
- msgid "Form Submission (Gravity Form)"
4168
- msgstr ""
4169
-
4170
- #: ../includes/mycred-functions.php:2370
4171
- msgid "New Forum Topic (SimplePress)"
4172
- msgstr ""
4173
-
4174
- #: ../includes/mycred-functions.php:2371
4175
- msgid "New Forum Post (SimplePress)"
4176
- msgstr ""
4177
-
4178
- #: ../includes/mycred-functions.php:2380
4179
- msgid "Affiliate Signup (AffiliateWP)"
4180
- msgstr ""
4181
-
4182
- #: ../includes/mycred-functions.php:2381
4183
- msgid "Referred Visit (AffiliateWP)"
4184
- msgstr ""
4185
-
4186
- #: ../includes/mycred-functions.php:2382
4187
- msgid "Affiliate Referral (AffiliateWP)"
4188
- msgstr ""
4189
-
4190
- #: ../includes/mycred-functions.php:2383
4191
- msgid "Referral Refund (AffiliateWP)"
4192
- msgstr ""
4193
-
4194
- #: ../includes/mycred-functions.php:2387 ../plugins/mycred-hook-wp-postratings.
4195
- #: php:150
4196
- msgid "Adding a Rating"
4197
- msgstr ""
4198
-
4199
- #: ../includes/mycred-functions.php:2388 ../plugins/mycred-hook-wp-postratings.
4200
- #: php:169
4201
- msgid "Receiving a Rating"
4202
- msgstr ""
4203
-
4204
- #: ../includes/mycred-functions.php:2392
4205
- msgid "Poll Voting"
4206
- msgstr ""
4207
-
4208
- #: ../includes/mycred-functions.php:2395
4209
- msgid "Sending an Invite"
4210
- msgstr ""
4211
-
4212
- #: ../includes/mycred-functions.php:2396
4213
- msgid "Accepting an Invite"
4214
- msgstr ""
4215
-
4216
- #: ../includes/mycred-functions.php:2402
4217
- msgid "Banking Payout"
4218
- msgstr ""
4219
-
4220
- #: ../includes/mycred-functions.php:2405
4221
- msgid "buyCRED Purchase (PayPal Standard)"
4222
- msgstr ""
4223
-
4224
- #: ../includes/mycred-functions.php:2406
4225
- msgid "buyCRED Purchase (Skrill)"
4226
- msgstr ""
4227
-
4228
- #: ../includes/mycred-functions.php:2407
4229
- msgid "buyCRED Purchase (Zombaio)"
4230
- msgstr ""
4231
-
4232
- #: ../includes/mycred-functions.php:2408
4233
- msgid "buyCRED Purchase (NETBilling)"
4234
- msgstr ""
4235
-
4236
- #: ../includes/mycred-functions.php:2409
4237
- msgid "buyCRED Purchase (BitPay)"
4238
- msgstr ""
4239
-
4240
- #: ../includes/mycred-functions.php:2414
4241
- msgid "Coupon Purchase"
4242
- msgstr ""
4243
-
4244
- #: ../includes/mycred-functions.php:2418
4245
- msgid "Store Purchase (WooCommerce)"
4246
- msgstr ""
4247
-
4248
- #: ../includes/mycred-functions.php:2419
4249
- msgid "Store Reward (WooCommerce)"
4250
- msgstr ""
4251
-
4252
- #: ../includes/mycred-functions.php:2420
4253
- msgid "Product Review (WooCommerce)"
4254
- msgstr ""
4255
-
4256
- #: ../includes/mycred-functions.php:2423
4257
- msgid "Store Purchase (MarketPress)"
4258
- msgstr ""
4259
-
4260
- #: ../includes/mycred-functions.php:2424
4261
- msgid "Store Reward (MarketPress)"
4262
- msgstr ""
4263
-
4264
- #: ../includes/mycred-functions.php:2427
4265
- msgid "Store Purchase (WP E-Commerce)"
4266
- msgstr ""
4267
-
4268
- #: ../includes/mycred-functions.php:2433
4269
- msgid "Event Payment (Event Espresso)"
4270
- msgstr ""
4271
-
4272
- #: ../includes/mycred-functions.php:2434
4273
- msgid "Event Sale (Event Espresso)"
4274
- msgstr ""
4275
-
4276
- #: ../includes/mycred-functions.php:2438
4277
- msgid "Event Payment (Events Manager)"
4278
- msgstr ""
4279
-
4280
- #: ../includes/mycred-functions.php:2439
4281
- msgid "Event Sale (Events Manager)"
4282
- msgstr ""
4283
-
4284
- #: ../includes/mycred-functions.php:2443
4285
- msgid "Content Purchase / Sale"
4286
- msgstr ""
4287
-
4288
- #: ../includes/mycred-functions.php:2450
4289
- msgid "Manual Adjustment by Admin"
4290
- msgstr ""
4291
-
4292
- #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:924
4293
- msgid "Point types not found."
4294
- msgstr ""
4295
-
4296
- #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552 ..
4297
- #: includes/mycred-shortcodes.php:930 ../includes/mycred-shortcodes.php:938
4298
- #, php-format
4299
- msgid "You are excluded from using %s."
4300
- msgstr ""
4301
-
4302
- #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:934
4303
- msgid "Your balance is too low to use this feature."
4304
- msgstr ""
4305
-
4306
- #: ../includes/mycred-functions.php:2565
4307
- #, php-format
4308
- msgid "You must exchange at least %s!"
4309
- msgstr ""
4310
-
4311
- #: ../includes/mycred-functions.php:2587
4312
- #, php-format
4313
- msgid "Exchange from %s"
4314
- msgstr ""
4315
-
4316
- #: ../includes/mycred-functions.php:2599
4317
- #, php-format
4318
- msgid "Exchange to %s"
4319
- msgstr ""
4320
-
4321
- #: ../includes/mycred-functions.php:2607
4322
- #, php-format
4323
- msgid "You have successfully exchanged %s into %s."
4324
- msgstr ""
4325
-
4326
- #: ../includes/mycred-functions.php:2638
4327
- msgid "per day"
4328
- msgstr ""
4329
-
4330
- #: ../includes/mycred-functions.php:2640
4331
- msgid "per week"
4332
- msgstr ""
4333
-
4334
- #: ../includes/mycred-functions.php:2642
4335
- msgid "per month"
4336
- msgstr ""
4337
-
4338
- #: ../includes/mycred-functions.php:2644
4339
- msgid "in total"
4340
- msgstr ""
4341
-
4342
- #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4343
- #, php-format
4344
- msgid "Maximum once"
4345
- msgid_plural "Maximum %d times"
4346
- msgstr[0] ""
4347
- msgstr[1] ""
4348
-
4349
- #: ../includes/mycred-importer.php:11
4350
- #, php-format
4351
- msgid "%s Log Import"
4352
- msgstr "%s 日志导入"
4353
-
4354
- #: ../includes/mycred-importer.php:12
4355
- msgid "Import log entries via a CSV file."
4356
- msgstr "通过CSV文件导入的日志条目。"
4357
-
4358
- #: ../includes/mycred-importer.php:43
4359
- #, php-format
4360
- msgid "%s Balance Import"
4361
- msgstr "%s 余额导入"
4362
-
4363
- #: ../includes/mycred-importer.php:44
4364
- msgid "Import balances."
4365
- msgstr "导入余额。"
4366
-
4367
- #: ../includes/mycred-importer.php:75
4368
- #, php-format
4369
- msgid "%s CubePoints Import"
4370
- msgstr "%s CubePoints 导入"
4371
-
4372
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
4373
- #: 344
4374
- msgid "Import CubePoints log entries and / or balances."
4375
- msgstr "导入 CubePoints 日志条目 和/或 余额。"
4376
-
4377
- #: ../includes/mycred-importer.php:92
4378
- msgid "No CubePoints log exists."
4379
- msgstr "不存在 CubePoints 日志。"
4380
-
4381
- #: ../includes/mycred-install.php:39
4382
- msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
4383
- msgstr ""
4384
-
4385
- #: ../includes/mycred-install.php:44
4386
- msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4387
- msgstr "myCRED需要 PHP5.2.4 或更高版本。版本检测:"
4388
-
4389
- #: ../includes/mycred-install.php:49
4390
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4391
- msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
4392
-
4393
- #: ../includes/mycred-install.php:54
4394
- msgid ""
4395
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4396
- "check your PHP configuration or contact your host and ask them to enable it "
4397
- "for you!"
4398
- msgstr ""
4399
-
4400
- #: ../includes/mycred-install.php:59
4401
- msgid ""
4402
- "Sorry but your WordPress installation does not reach the minimum "
4403
- "requirements for running myCRED. The following errors were given:"
4404
- msgstr "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
4405
-
4406
- #: ../includes/mycred-install.php:256
4407
- msgid "myCRED needs your attention."
4408
- msgstr "myCRED需要你的关注。"
4409
-
4410
- #: ../includes/mycred-install.php:256
4411
- msgid "Run Setup"
4412
- msgstr "运行设置程序"
4413
-
4414
- #: ../includes/mycred-install.php:268 ../includes/mycred-install.php:269
4415
- msgid "myCRED Setup"
4416
- msgstr "myCRED 设置"
4417
-
4418
- #: ../includes/mycred-install.php:398
4419
- #, php-format
4420
- msgid "%s Setup"
4421
- msgstr "%s 设置"
4422
-
4423
- #: ../includes/mycred-install.php:400
4424
- msgid "Step"
4425
- msgstr "步骤"
4426
-
4427
- #: ../includes/mycred-install.php:424
4428
- msgid ""
4429
- "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4430
- "points format, layout and security settings."
4431
- msgstr "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
4432
-
4433
- #: ../includes/mycred-install.php:425
4434
- msgid "Begin Setup"
4435
- msgstr "开始设置"
4436
-
4437
- #: ../includes/mycred-install.php:480
4438
- msgid "Select the format you want to use for your points."
4439
- msgstr "选择您要使用的积分格式。"
4440
-
4441
- #: ../includes/mycred-install.php:481
4442
- msgid "Format"
4443
- msgstr "格式"
4444
-
4445
- #: ../includes/mycred-install.php:484
4446
- msgid "Separators"
4447
- msgstr "分离器"
4448
-
4449
- #: ../includes/mycred-install.php:494 ../modules/mycred-module-settings.php:501
4450
- msgid "Decimals"
4451
- msgstr "小数"
4452
-
4453
- #: ../includes/mycred-install.php:496
4454
- msgid "Use zero for no decimals or maximum 20."
4455
- msgstr ""
4456
-
4457
- #: ../includes/mycred-install.php:499 ../modules/mycred-module-settings.php:505
4458
- msgid "Presentation"
4459
- msgstr "介绍"
4460
-
4461
- #: ../includes/mycred-install.php:502 ../modules/mycred-module-settings.php:488
4462
- msgid "Name (Singular)"
4463
- msgstr "名称(单数)"
4464
-
4465
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:493
4466
- msgid "Name (Plural)"
4467
- msgstr "名称(复数)"
4468
-
4469
- #: ../includes/mycred-install.php:512 ../modules/mycred-module-settings.php:508
4470
- msgid "Prefix"
4471
- msgstr "前缀"
4472
-
4473
- #: ../includes/mycred-install.php:520 ../modules/mycred-module-settings.php:516
4474
- msgid "Suffix"
4475
- msgstr "后缀"
4476
-
4477
- #: ../includes/mycred-install.php:524
4478
- msgid "Cancel Setup"
4479
- msgstr "取消设置"
4480
-
4481
- #: ../includes/mycred-install.php:524 ../includes/mycred-install.php:594
4482
- msgid "Next"
4483
- msgstr "下一页"
4484
-
4485
- #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:524
4486
- msgid "Security"
4487
- msgstr "安全"
4488
-
4489
- #: ../includes/mycred-install.php:559
4490
- msgid "Edit Settings Capability"
4491
- msgstr "编辑设置能力"
4492
-
4493
- #: ../includes/mycred-install.php:563
4494
- msgid "Edit Users %plural% Capability"
4495
- msgstr "编辑用户 %plural% 能力"
4496
-
4497
- #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:537
4498
- msgid "Maximum %plural% payouts"
4499
- msgstr "最大 %plural% 支出"
4500
-
4501
- #: ../includes/mycred-install.php:569 ../modules/mycred-module-settings.php:539
4502
- msgid ""
4503
- "As an added security, you can set the maximum amount a user can gain or "
4504
- "loose in a single instance. If used, make sure this is the maximum amount a "
4505
- "user would be able to transfer, buy, or spend in your store. Use zero to "
4506
- "disable."
4507
- msgstr ""
4508
- "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。使"
4509
- "用零禁用。"
4510
-
4511
- #: ../includes/mycred-install.php:572 ../modules/mycred-module-settings.php:542
4512
- msgid "Excludes"
4513
- msgstr "排除"
4514
-
4515
- #: ../includes/mycred-install.php:576 ../modules/mycred-module-settings.php:546
4516
- msgid "Exclude those who can \"Edit Settings\"."
4517
- msgstr "排除那些可以\"编辑设置\"的用户。"
4518
-
4519
- #: ../includes/mycred-install.php:580 ../modules/mycred-module-settings.php:550
4520
- msgid "Exclude those who can \"Edit Users %plural%\"."
4521
- msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
4522
-
4523
- #: ../includes/mycred-install.php:583 ../modules/mycred-module-settings.php:554
4524
- msgid "Exclude the following user IDs:"
4525
- msgstr "排除以下用户ID:"
4526
-
4527
- #: ../includes/mycred-install.php:587 ../modules/mycred-module-settings.php:559
4528
- msgid "User Deletions"
4529
- msgstr "用户删除"
4530
-
4531
- #: ../includes/mycred-install.php:591 ../modules/mycred-module-settings.php:562
4532
- msgid "Delete log entries when user is deleted."
4533
- msgstr "用户被删除时,删除与之相关的日志条目。"
4534
-
4535
- #: ../includes/mycred-install.php:612
4536
- msgid "Ready"
4537
- msgstr "准备"
4538
-
4539
- #: ../includes/mycred-install.php:613
4540
- msgid "Almost done! Click the button below to finish this setup."
4541
- msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
4542
-
4543
- #: ../includes/mycred-install.php:614
4544
- msgid "Install & Run"
4545
- msgstr "安装与运行"
4546
-
4547
- #: ../includes/mycred-log.php:398
4548
- #, php-format
4549
- msgid "Showing %d %s"
4550
- msgstr "显示为 %d %s"
4551
-
4552
- #: ../includes/mycred-log.php:398
4553
- msgid "entry"
4554
- msgid_plural "entries"
4555
- msgstr[0] "条目"
4556
- msgstr[1] "条目"
4557
-
4558
- #: ../includes/mycred-log.php:412
4559
- msgid "Go to the first page"
4560
- msgstr "转到第页"
4561
-
4562
- #: ../includes/mycred-log.php:419
4563
- msgid "Go to the previous page"
4564
- msgstr "转到前一页"
4565
-
4566
- #: ../includes/mycred-log.php:428
4567
- msgid "Current page"
4568
- msgstr "当前页"
4569
-
4570
- #: ../includes/mycred-log.php:434
4571
- #, php-format
4572
- msgctxt "mycred"
4573
- msgid "%1$s of %2$s"
4574
- msgstr ""
4575
-
4576
- #: ../includes/mycred-log.php:438
4577
- msgid "Go to the next page"
4578
- msgstr "转到下一个页面"
4579
-
4580
- #: ../includes/mycred-log.php:445
4581
- msgid "Go to the last page"
4582
- msgstr "转到最后一页"
4583
-
4584
- #: ../includes/mycred-log.php:512
4585
- msgid "Show all references"
4586
- msgstr "显示所有引用"
4587
-
4588
- #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4589
- msgid "User ID"
4590
- msgstr "用户 ID"
4591
-
4592
- #: ../includes/mycred-log.php:531
4593
- msgid "Show in order"
4594
- msgstr "显示顺序"
4595
-
4596
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4597
- msgid "Ascending"
4598
- msgstr "升序"
4599
-
4600
- #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4601
- msgid "Descending"
4602
- msgstr "降序"
4603
-
4604
- #: ../includes/mycred-log.php:550
4605
- msgid "Filter"
4606
- msgstr "过滤器"
4607
-
4608
- #: ../includes/mycred-log.php:603
4609
- msgid ""
4610
- "Log entries are exported to a CSV file and depending on the number of "
4611
- "entries selected, the process may take a few seconds."
4612
- msgstr "日志条目导出到CSV文件,根据所选条目的数量,这个过程可能需要几秒钟。"
4613
-
4614
- #: ../includes/mycred-log.php:607
4615
- msgid "No export options available."
4616
- msgstr "没有可用的导出选项。"
4617
-
4618
- #: ../includes/mycred-log.php:636
4619
- msgid "Entry"
4620
- msgstr "条目"
4621
-
4622
- #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:484
4623
- msgid "User Missing"
4624
- msgstr "用户丢失"
4625
-
4626
- #: ../includes/mycred-log.php:807
4627
- msgid "No log entries found"
4628
- msgstr "没有找到日志条目"
4629
-
4630
- #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4631
- msgid "Search Log"
4632
- msgstr "搜索日志"
4633
-
4634
- #: ../includes/mycred-log.php:823
4635
- msgid "search log entries"
4636
- msgstr "搜索日志条目"
4637
-
4638
- #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221 ..
4639
- #: modules/mycred-module-buddypress.php:234
4640
- msgid "All"
4641
- msgstr "所有"
4642
-
4643
- #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4644
- msgid "Yesterday"
4645
- msgstr "昨天"
4646
-
4647
- #: ../includes/mycred-network.php:59 ../includes/mycred-network.php:60
4648
- msgid "Network Settings"
4649
- msgstr "网络设置"
4650
-
4651
- #: ../includes/mycred-network.php:134
4652
- #, php-format
4653
- msgid "%s Network"
4654
- msgstr "%s 网络"
4655
-
4656
- #: ../includes/mycred-network.php:140
4657
- #, php-format
4658
- msgid "Note! %s has not yet been setup."
4659
- msgstr "注意! %s 尚未设置。"
4660
-
4661
- #: ../includes/mycred-network.php:144
4662
- msgid "Network Settings Updated"
4663
- msgstr "网络设置已更新"
4664
-
4665
- #: ../includes/mycred-network.php:146
4666
- #, php-format
4667
- msgid "Configure network settings for %s."
4668
- msgstr "为 %s 配置网络设置。"
4669
-
4670
- #: ../includes/mycred-network.php:153
4671
- msgid "Master Template"
4672
- msgstr "主模板"
4673
-
4674
- #: ../includes/mycred-network.php:164
4675
- #, php-format
4676
- msgid ""
4677
- "If enabled, %s will use your main site's settings for all other sites in "
4678
- "your network."
4679
- msgstr "如果启用,%s 将使用你的主站点的设置适用于网络中所有其他站点。"
4680
-
4681
- #: ../includes/mycred-network.php:167
4682
- msgid "Central Logging"
4683
- msgstr "中央日志"
4684
-
4685
- #: ../includes/mycred-network.php:178
4686
- #, php-format
4687
- msgid "If enabled, %s will log all site actions in your main site's log."
4688
- msgstr "如果启用,%s 将在您的主站点的日志中记录所有网站的操作。"
4689
-
4690
- #: ../includes/mycred-network.php:181
4691
- msgid "Site Block"
4692
- msgstr "网站阻止"
4693
-
4694
- #: ../includes/mycred-network.php:185
4695
- #, php-format
4696
- msgid "Comma separated list of blog ids where %s is to be disabled."
4697
- msgstr "逗号分隔的博客ID 列表,它们将不使用 %s。"
4698
-
4699
- #: ../includes/mycred-network.php:194
4700
- msgid "Save Network Settings"
4701
- msgstr "保存网络设置"
4702
-
4703
- #: ../includes/mycred-overview.php:25
4704
- #, php-format
4705
- msgid "%s Overview"
4706
- msgstr "%s 概览"
4707
-
4708
- #: ../includes/mycred-overview.php:81
4709
- msgid "Awarded"
4710
- msgstr "奖励"
4711
-
4712
- #: ../includes/mycred-overview.php:84
4713
- msgid "Deducted"
4714
- msgstr "扣除"
4715
-
4716
- #: ../includes/mycred-overview.php:208
4717
- msgid "Manual"
4718
- msgstr "手动"
4719
-
4720
- #: ../includes/mycred-remote.php:523
4721
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4722
- msgstr "此功能需要设置和启用 WordPress 的固定链接!"
4723
-
4724
- #: ../includes/mycred-remote.php:526
4725
- msgid "Click Update Settings to load the Remote API settings."
4726
- msgstr "单击更新设置以加载远程API设置。"
4727
-
4728
- #: ../includes/mycred-remote.php:528
4729
- msgid "Allow Remote Access"
4730
- msgstr "允许远程访问"
4731
-
4732
- #: ../includes/mycred-remote.php:549
4733
- msgid "Remote Access"
4734
- msgstr "远程访问"
4735
-
4736
- #: ../includes/mycred-remote.php:554
4737
- msgid "Key"
4738
- msgstr "密钥"
4739
-
4740
- #: ../includes/mycred-remote.php:555
4741
- msgid "16, 24 or 32 characters"
4742
- msgstr ""
4743
-
4744
- #: ../includes/mycred-remote.php:556
4745
- msgid "Required for this feature to work!<br />Minimum 12 characters."
4746
- msgstr "需要此功能工作!<br/>最少12个字符。"
4747
-
4748
- #: ../includes/mycred-remote.php:559
4749
- msgid "Key Length"
4750
- msgstr "密钥长度"
4751
-
4752
- #: ../includes/mycred-remote.php:564
4753
- msgid "Generate New Key"
4754
- msgstr "生成新密钥"
4755
-
4756
- #: ../includes/mycred-remote.php:566
4757
- msgid "Warning!"
4758
- msgstr "警告!"
4759
-
4760
- #: ../includes/mycred-remote.php:566
4761
- msgid ""
4762
- "Keep this key safe! Those you share this key with will be able to remotely "
4763
- "deduct / add / transfer %plural%!"
4764
- msgstr "保证这个密钥的安全!那些你一起分享这个密钥的人就能远程扣除/添加/转让 %plural%!"
4765
-
4766
- #: ../includes/mycred-remote.php:568
4767
- msgid "Incoming URI"
4768
- msgstr "传入的URI"
4769
-
4770
- #: ../includes/mycred-remote.php:572
4771
- msgid ""
4772
- "The incoming call address. Remote calls made to any other URL will be "
4773
- "ignored."
4774
- msgstr "传入的地址。任何其他的URL做远程调用将被忽略。"
4775
-
4776
- #: ../includes/mycred-remote.php:575
4777
- msgid "Debug Mode"
4778
- msgstr "调试模式"
4779
-
4780
- #: ../includes/mycred-remote.php:578
4781
- msgid ""
4782
- "Remember to disable when not used to prevent mischievous calls from learning "
4783
- "about your setup!"
4784
- msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
4785
-
4786
- #: ../includes/mycred-shortcodes.php:175
4787
- msgid "Leaderboard is empty."
4788
- msgstr "排行榜是空的。"
4789
-
4790
- #: ../includes/mycred-shortcodes.php:525
4791
- msgid "Anchor missing URL!"
4792
- msgstr "缺失锚文本链接"
4793
-
4794
- #: ../includes/mycred-shortcodes.php:637
4795
- msgid "Sent"
4796
- msgstr "已发送"
4797
-
4798
- #: ../includes/mycred-shortcodes.php:638
4799
- msgid "Error - Try Again"
4800
- msgstr "错误 - 请重试"
4801
-
4802
- #: ../includes/mycred-shortcodes.php:763
4803
- msgid "A video ID is required for this shortcode"
4804
- msgstr "这个简码需要一个视频ID"
4805
-
4806
- #: ../includes/mycred-shortcodes.php:956
4807
- #, php-format
4808
- msgid "Convert <span>%s</span> to <span>%s</span>"
4809
- msgstr ""
4810
-
4811
- #: ../includes/mycred-shortcodes.php:965
4812
- #, php-format
4813
- msgid "Your current %s balance"
4814
- msgstr ""
4815
-
4816
- #: ../includes/mycred-shortcodes.php:973
4817
- #, php-format
4818
- msgid "Minimum %s"
4819
- msgstr ""
4820
-
4821
- #: ../includes/mycred-shortcodes.php:977
4822
- #, php-format
4823
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
4824
- msgstr ""
4825
-
4826
- #: ../includes/mycred-shortcodes.php:983
4827
- msgid "Exchange"
4828
- msgstr ""
4829
-
4830
- #: ../includes/mycred-shortcodes.php:1048
4831
- msgid "No instances found for this point type"
4832
- msgstr ""
4833
-
4834
- #: ../includes/mycred-shortcodes.php:1052
4835
- msgid "Invalid point type"
4836
- msgstr ""
4837
-
4838
- #: ../includes/mycred-shortcodes.php:1111
4839
- msgid "Instance"
4840
- msgstr ""
4841
-
4842
- #: ../includes/mycred-shortcodes.php:1113 ../modules/mycred-module-hooks.php:600 .
4843
- #: ./modules/mycred-module-hooks.php:607 ../modules/mycred-module-hooks.php:631 ..
4844
- #: modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:706 ..
4845
- #: modules/mycred-module-hooks.php:713 ../modules/mycred-module-hooks.php:898 ..
4846
- #: modules/mycred-module-hooks.php:1029 ../modules/mycred-module-hooks.php:1046 .
4847
- #: ./modules/mycred-module-hooks.php:1093 ../modules/mycred-module-hooks.php:2793
4848
- #: ../modules/mycred-module-hooks.php:2822 ../plugins/mycred-hook-affiliatewp.php:
4849
- #: 237 ../plugins/mycred-hook-bbPress.php:413 ../plugins/mycred-hook-bbPress.php:
4850
- #: 443 ../plugins/mycred-hook-bbPress.php:478 ../plugins/mycred-hook-bbPress.php:
4851
- #: 495 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
4852
- #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
4853
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
4854
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
4855
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
4856
- #: buddypress-media.php:209 ../plugins/mycred-hook-buddypress-media.php:223 ..
4857
- #: plugins/mycred-hook-buddypress-media.php:237 ../plugins/mycred-hook-
4858
- #: buddypress.php:490 ../plugins/mycred-hook-buddypress.php:507 ../plugins/mycred-
4859
- #: hook-buddypress.php:524 ../plugins/mycred-hook-buddypress.php:541 ..
4860
- #: plugins/mycred-hook-buddypress.php:574 ../plugins/mycred-hook-buddypress.php:
4861
- #: 604 ../plugins/mycred-hook-buddypress.php:621 ../plugins/mycred-hook-
4862
- #: buddypress.php:1193 ../plugins/mycred-hook-buddypress.php:1210 ..
4863
- #: plugins/mycred-hook-buddypress.php:1227 ../plugins/mycred-hook-buddypress.php:
4864
- #: 1244 ../plugins/mycred-hook-buddypress.php:1262 ../plugins/mycred-hook-
4865
- #: buddypress.php:1292 ../plugins/mycred-hook-buddypress.php:1309 ..
4866
- #: plugins/mycred-hook-contact-form7.php:147 ../plugins/mycred-hook-events-
4867
- #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4868
- #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4869
- #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4870
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4871
- #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4872
- #: php:314 ../plugins/mycred-hook-woocommerce.php:300 ../plugins/mycred-hook-wp-
4873
- #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
4874
- #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
4875
- #: postratings.php:175
4876
- msgid "Limit"
4877
- msgstr "限制"
4878
-
4879
- #: ../includes/mycred-widgets.php:22
4880
- #, php-format
4881
- msgid "Show the current users %s balance"
4882
- msgstr "显示当前用户 %s 的余额"
4883
-
4884
- #: ../includes/mycred-widgets.php:25
4885
- #, php-format
4886
- msgid "(%s) My Balance"
4887
- msgstr "(%s) 我的余额"
4888
-
4889
- #: ../includes/mycred-widgets.php:212
4890
- msgid "Layout"
4891
- msgstr "布局"
4892
-
4893
- #: ../includes/mycred-widgets.php:220
4894
- msgid "Include history"
4895
- msgstr "包括历史"
4896
-
4897
- #: ../includes/mycred-widgets.php:222
4898
- msgid "History Title"
4899
- msgstr "历史标题"
4900
-
4901
- #: ../includes/mycred-widgets.php:224
4902
- msgid "Number of entires"
4903
- msgstr "条目数量"
4904
-
4905
- #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:411
4906
- msgid "Row layout"
4907
- msgstr "行布局"
4908
-
4909
- #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:612
4910
- msgid "Show message when not logged in"
4911
- msgstr "用户没有登录时显示信息"
4912
-
4913
- #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:613
4914
- msgid "Message"
4915
- msgstr "信息"
4916
-
4917
- #: ../includes/mycred-widgets.php:306
4918
- #, php-format
4919
- msgid "Show a list of users sorted by their %s balance"
4920
- msgstr "显示用户排序根据他们的 %s 余额"
4921
-
4922
- #: ../includes/mycred-widgets.php:309
4923
- #, php-format
4924
- msgid "(%s) Leaderboard"
4925
- msgstr "(%s)排行榜"
4926
-
4927
- #: ../includes/mycred-widgets.php:398
4928
- msgid "Based On"
4929
- msgstr ""
4930
-
4931
- #: ../includes/mycred-widgets.php:400
4932
- msgid ""
4933
- "Use \"balance\" to base the leaderboard on your users current balances or use "
4934
- "a specific reference."
4935
- msgstr ""
4936
-
4937
- #: ../includes/mycred-widgets.php:400
4938
- msgid "Reference Guide"
4939
- msgstr ""
4940
-
4941
- #: ../includes/mycred-widgets.php:405
4942
- msgid "Visible to non-members"
4943
- msgstr "对非会员可见"
4944
-
4945
- #: ../includes/mycred-widgets.php:407
4946
- msgid "Number of users"
4947
- msgstr "用户数量"
4948
-
4949
- #: ../includes/mycred-widgets.php:416
4950
- msgid "Offset"
4951
- msgstr "抵销"
4952
-
4953
- #: ../includes/mycred-widgets.php:418
4954
- msgid "Optional offset of order. Use zero to return the first in the list."
4955
- msgstr "(可选)订单抵销。使用零返回第一个在列表中。"
4956
-
4957
- #: ../includes/mycred-widgets.php:421
4958
- msgid "Order"
4959
- msgstr "订单"
4960
-
4961
- #: ../includes/mycred-widgets.php:441
4962
- msgid "Append current users position"
4963
- msgstr "追加当前用户位置"
4964
-
4965
- #: ../includes/mycred-widgets.php:442
4966
- msgid ""
4967
- "If the current user is not in this leaderboard, you can select to append "
4968
- "them at the end with their current position."
4969
- msgstr "如果当前用户不是在这个排行榜中,您可以选择追加他们到与他们的当前位置的尾部。"
4970
-
4971
- #: ../includes/mycred-widgets.php:493
4972
- msgid "Shows the current users balances for each point type."
4973
- msgstr "显示当前用户每种积分类型的余额。"
4974
-
4975
- #: ../includes/mycred-widgets.php:496
4976
- #, php-format
4977
- msgid "(%s) Wallet"
4978
- msgstr "(%s) 钱包"
4979
-
4980
- #: ../includes/mycred-widgets.php:604
4981
- msgid "Row Layout"
4982
- msgstr "行布局"
4983
-
4984
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4985
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4986
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4987
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4988
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4989
- #: log-entries.php:180
4990
- msgid "Sorry, there has been an error."
4991
- msgstr "抱歉,出现了一个错误。"
4992
-
4993
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4994
- #: entries.php:82
4995
- msgid "The file does not exist, please try again."
4996
- msgstr "该文件不存在,请重试。"
4997
-
4998
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4999
- #: entries.php:127
5000
- msgid "The CSV is invalid."
5001
- msgstr "该CSV是无效的。"
5002
-
5003
- #: ../includes/importers/mycred-balances.php:171
5004
- #, php-format
5005
- msgid ""
5006
- "Import complete - A total of <strong>%d</strong> balances were successfully "
5007
- "imported. <strong>%d</strong> was skipped."
5008
- msgstr "导入完成 - 共<strong>%d</strong>余额已成功导入。<strong>%d</strong>被跳过。"
5009
-
5010
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
5011
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
5012
- msgid "Import More"
5013
- msgstr "导入更多"
5014
-
5015
- #: ../includes/importers/mycred-balances.php:227
5016
- msgid "Import Balances"
5017
- msgstr "导入余额"
5018
-
5019
- #: ../includes/importers/mycred-balances.php:244
5020
- msgid "Import balances from a CSV file."
5021
- msgstr "从CSV文件导入余额。"
5022
-
5023
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
5024
- #: entries.php:219
5025
- msgid ""
5026
- "Before you can upload your import file, you will need to fix the following "
5027
- "error:"
5028
- msgstr "在上传你的导入文件之前,您需要修复以下错误:"
5029
-
5030
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
5031
- #: entries.php:228
5032
- msgid "Choose a file from your computer:"
5033
- msgstr "从您的电脑中选择一个文件:"
5034
-
5035
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
5036
- #: entries.php:234
5037
- #, php-format
5038
- msgid "Maximum size: %s"
5039
- msgstr "最大尺寸:%s"
5040
-
5041
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
5042
- #: entries.php:239
5043
- msgid "OR enter path to file:"
5044
- msgstr "或输入文件的路径:"
5045
-
5046
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
5047
- #: entries.php:246
5048
- msgid "Delimiter"
5049
- msgstr "分隔符"
5050
-
5051
- #: ../includes/importers/mycred-balances.php:283
5052
- msgid "Method"
5053
- msgstr "方法"
5054
-
5055
- #: ../includes/importers/mycred-balances.php:285
5056
- msgid "Replace current balances with the amount in this CSV file"
5057
- msgstr "使用这个CSV文件里的数量替换当前的余额"
5058
-
5059
- #: ../includes/importers/mycred-balances.php:286
5060
- msgid "Adjust current balances according to the amount in this CSV file"
5061
- msgstr "根据这个 CSV 文件里的数量来调整当前余额"
5062
-
5063
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
5064
- #: entries.php:252
5065
- msgid "Upload file and import"
5066
- msgstr "上传文件并导入"
5067
-
5068
- #: ../includes/importers/mycred-cubepoints.php:276
5069
- msgid "No balances were imported."
5070
- msgstr "没有任何余额被导入。"
5071
-
5072
- #: ../includes/importers/mycred-cubepoints.php:276
5073
- msgid "No log entries were imported!"
5074
- msgstr "没有任何日志条目被导入!"
5075
-
5076
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
5077
- #: log-entries.php:138
5078
- #, php-format
5079
- msgid ""
5080
- "Import complete - A total of <strong>%d</strong> entries were successfully "
5081
- "imported. <strong>%d</strong> was skipped."
5082
- msgstr "导入完成 - 总共<strong>%d</strong> 条目已成功导入。 <strong>%d</strong>被跳过。"
5083
-
5084
- #: ../includes/importers/mycred-cubepoints.php:306
5085
- msgid "No CubePoints log."
5086
- msgstr "没有 CubePoints 日志。"
5087
-
5088
- #: ../includes/importers/mycred-cubepoints.php:317
5089
- msgid "Import CubePoints Log"
5090
- msgstr "导入 CubePoints 日志"
5091
-
5092
- #: ../includes/importers/mycred-cubepoints.php:334
5093
- msgid "Select what to import"
5094
- msgstr "选择要导入什么"
5095
-
5096
- #: ../includes/importers/mycred-cubepoints.php:335
5097
- msgid "Log Entries Only"
5098
- msgstr "只是日志条目"
5099
-
5100
- #: ../includes/importers/mycred-cubepoints.php:336
5101
- msgid "CubePoints Balances Only"
5102
- msgstr "只是 CubePoints 余额"
5103
-
5104
- #: ../includes/importers/mycred-cubepoints.php:337
5105
- msgid "Log Entries and Balances"
5106
- msgstr "日志条目和余额"
5107
-
5108
- #: ../includes/importers/mycred-cubepoints.php:351
5109
- msgid "Import"
5110
- msgstr "导入"
5111
-
5112
- #: ../includes/importers/mycred-cubepoints.php:360
5113
- msgid ""
5114
- "Warning! Importing CubePoints balances will replace your users myCRED "
5115
- "balance!"
5116
- msgstr "警告!导入 CubePoints 余额将取代你用户的 myCRED 余额!"
5117
-
5118
- #: ../includes/importers/mycred-cubepoints.php:378
5119
- msgid "Import Log"
5120
- msgstr "导入日志"
5121
-
5122
- #: ../includes/importers/mycred-log-entries.php:194
5123
- msgid "Import Log Entries"
5124
- msgstr "导入日志条目"
5125
-
5126
- #: ../includes/importers/mycred-log-entries.php:211
5127
- msgid "Import log entries from a CSV file."
5128
- msgstr " CSV 文件导入日志条目。"
5129
-
5130
- #: ../modules/mycred-module-addons.php:24 ../modules/mycred-module-addons.php:25
5131
- msgid "Add-ons"
5132
- msgstr "扩展"
5133
-
5134
- #: ../modules/mycred-module-addons.php:151
5135
- msgid "Give your users badges based on their interaction with your website."
5136
- msgstr ""
5137
-
5138
- #: ../modules/mycred-module-addons.php:162
5139
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
5140
- msgstr "设置经常性支出或支付/收取用户帐户余额的利息。"
5141
-
5142
- #: ../modules/mycred-module-addons.php:173
5143
- msgid ""
5144
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5145
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5146
- "also let your users buy points for other members."
5147
- msgstr ""
5148
- "<strong>buy</strong>CRED 扩展允许用户使用PayPal、Skrill (Moneybookers) 或 NETbilling "
5149
- "购买积分。 <strong>buy</strong>CRED 也可以让你的用户为其他用户购买积分。"
5150
-
5151
- #: ../modules/mycred-module-addons.php:184
5152
- msgid ""
5153
- "The coupons add-on allows you to create coupons that users can use to add "
5154
- "points to their accounts."
5155
- msgstr "优惠券扩展允许您创建优惠券,用户可以用它添加积分到他们的帐户。"
5156
-
5157
- #: ../modules/mycred-module-addons.php:195
5158
- msgid "Create email notices for any type of myCRED instance."
5159
- msgstr "为任何类型的 myCRED 实例创建电子邮件通知。"
5160
-
5161
- #: ../modules/mycred-module-addons.php:206
5162
- msgid ""
5163
- "Let your users pay using their <strong>my</strong>CRED points balance. "
5164
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5165
- "Bookings: Event Espresso and Events Manager (free & pro)."
5166
- msgstr ""
5167
- "让用户使用他们的 <strong>my</strong>CRED 积分余额进行支付。支持购物车:WooCommerce、 MarketPress 和 "
5168
- "WP E-Commerce。支持活动预订:Event Espresso 和 Events Manager (免费版和专业版)。"
5169
-
5170
- #: ../modules/mycred-module-addons.php:217
5171
- msgid "Create pop-up notifications for when users gain or loose points."
5172
- msgstr "当用户获得或失去积分时创建弹出通知。"
5173
-
5174
- #: ../modules/mycred-module-addons.php:229
5175
- msgid ""
5176
- "Create ranks for users reaching a certain number of %_plural% with the "
5177
- "option to add logos for each rank."
5178
- msgstr "当用户达到一定数量的 %_plural% 时创建等级,使用这个选项为每个等级添加图标。"
5179
-
5180
- #: ../modules/mycred-module-addons.php:240
5181
- msgid ""
5182
- "This add-on allows you to sell posts, pages or any public post types on your "
5183
- "website. You can either sell the entire content or using our shortcode, sell "
5184
- "parts of your content allowing you to offer \"teasers\"."
5185
- msgstr "这个扩展允许您在您的网站上销售文章、页面或任何公开的文章类型。您可以销售文章的全部内容,或使用我们的简码来销售文章的部分内容。"
5186
-
5187
- #: ../modules/mycred-module-addons.php:251
5188
- msgid ""
5189
- "Gives you access to your myCRED Staticstics based on your users gains and "
5190
- "loses."
5191
- msgstr ""
5192
-
5193
- #: ../modules/mycred-module-addons.php:262
5194
- msgid ""
5195
- "Allow your users to send or \"donate\" points to other members by either using "
5196
- "the mycred_transfer shortcode or the myCRED Transfer widget."
5197
- msgstr "通过使用 mycred_transfer 简码或 myCRED转让 小工具,允许用户发送或\"捐献\"积分给其他用户。"
5198
-
5199
- #: ../modules/mycred-module-addons.php:297
5200
- #, php-format
5201
- msgid "%s Add-ons"
5202
- msgstr "%s 扩展"
5203
-
5204
- #: ../modules/mycred-module-addons.php:302
5205
- msgid "Add-on Activated"
5206
- msgstr "扩展已启用"
5207
-
5208
- #: ../modules/mycred-module-addons.php:305
5209
- msgid "Add-on Deactivated"
5210
- msgstr "扩展已停用"
5211
-
5212
- #: ../modules/mycred-module-addons.php:309
5213
- msgid "Add-ons can expand your current installation with further features."
5214
- msgstr "扩展可以进一步扩展你目前所安装的功能。"
5215
-
5216
- #: ../modules/mycred-module-addons.php:330
5217
- #, php-format
5218
- msgid "You can find more add-ons in our %s."
5219
- msgstr "您可以在我们的 %s 找到更多扩展。"
5220
-
5221
- #: ../modules/mycred-module-addons.php:330
5222
- msgid "online store"
5223
- msgstr "网上商店"
5224
-
5225
- #: ../modules/mycred-module-addons.php:351
5226
- msgid "Deactivate Add-on"
5227
- msgstr "停用扩展"
5228
-
5229
- #: ../modules/mycred-module-addons.php:352
5230
- msgid "Deactivate"
5231
- msgstr "停用"
5232
-
5233
- #: ../modules/mycred-module-addons.php:359
5234
- msgid "Activate Add-on"
5235
- msgstr "启用扩展"
5236
-
5237
- #: ../modules/mycred-module-addons.php:360
5238
- msgid "Activate"
5239
- msgstr "启用"
5240
-
5241
- #: ../modules/mycred-module-addons.php:376
5242
- msgid "Version"
5243
- msgstr "版本"
5244
-
5245
- #: ../modules/mycred-module-addons.php:380
5246
- msgid "By"
5247
- msgstr " "
5248
-
5249
- #: ../modules/mycred-module-addons.php:384
5250
- msgid "About"
5251
- msgstr "关于"
5252
-
5253
- #: ../modules/mycred-module-addons.php:388
5254
- msgid "Get Pro"
5255
- msgstr "获取专业版"
5256
-
5257
- #: ../modules/mycred-module-buddypress.php:30
5258
- msgid "My History"
5259
- msgstr "我的历史"
5260
-
5261
- #: ../modules/mycred-module-buddypress.php:31
5262
- #, php-format
5263
- msgid "%s's History"
5264
- msgstr "%s 的历史"
5265
-
5266
- #: ../modules/mycred-module-buddypress.php:121
5267
- msgid "Current balance"
5268
- msgstr "当前余额"
5269
-
5270
- #: ../modules/mycred-module-buddypress.php:336
5271
- msgid "Go"
5272
- msgstr "访问"
5273
-
5274
- #: ../modules/mycred-module-buddypress.php:392
5275
- msgid "Show in Profile"
5276
- msgstr "显示在个人资料"
5277
-
5278
- #: ../modules/mycred-module-buddypress.php:407
5279
- #, php-format
5280
- msgid "%singular% Balance"
5281
- msgstr "%singular% 余额"
5282
-
5283
- #: ../modules/mycred-module-buddypress.php:423
5284
- #, php-format
5285
- msgid "Members and visitors can other members %_singular% balance."
5286
- msgstr "用户和访客可以查看其他用户的 %_singular% 余额。"
5287
-
5288
- #: ../modules/mycred-module-buddypress.php:433
5289
- msgid "%plural% History"
5290
- msgstr "%plural% 历史"
5291
-
5292
- #: ../modules/mycred-module-buddypress.php:449
5293
- msgid "Members can view each others %_plural% history."
5294
- msgstr "用户可以查看对方的 %_plural% 历史。"
5295
-
5296
- #: ../modules/mycred-module-buddypress.php:454
5297
- msgid "Menu Title"
5298
- msgstr "菜单标题"
5299
-
5300
- #: ../modules/mycred-module-buddypress.php:456
5301
- msgid "Title shown to me"
5302
- msgstr "为我显示的标题"
5303
-
5304
- #: ../modules/mycred-module-buddypress.php:461
5305
- #, php-format
5306
- msgid "Title shown to others. Use %s to show the first name."
5307
- msgstr "为其他用户显示的标题。使用 %s 来显示名字。"
5308
-
5309
- #: ../modules/mycred-module-buddypress.php:466
5310
- msgid "Menu Position"
5311
- msgstr "菜单位置"
5312
-
5313
- #: ../modules/mycred-module-buddypress.php:468
5314
- msgid "Current menu positions:"
5315
- msgstr "当前菜单位置:"
5316
-
5317
- #: ../modules/mycred-module-buddypress.php:473
5318
- msgid "History URL slug"
5319
- msgstr "历史URL别名"
5320
-
5321
- #: ../modules/mycred-module-buddypress.php:475
5322
- msgid "Do not use empty spaces!"
5323
- msgstr "不要使用空格!"
5324
-
5325
- #: ../modules/mycred-module-buddypress.php:480
5326
- msgid "Number of history entries to show"
5327
- msgstr "历史日志条目的显示数量"
5328
-
5329
- #: ../modules/mycred-module-hooks.php:87
5330
- #, php-format
5331
- msgid "%plural% for registrations"
5332
- msgstr "%plural% 给注册"
5333
-
5334
- #: ../modules/mycred-module-hooks.php:88
5335
- #, php-format
5336
- msgid "Award %_plural% for users joining your website."
5337
- msgstr "奖励 %_plural% 给注册您网站的用户。"
5338
-
5339
- #: ../modules/mycred-module-hooks.php:94
5340
- #, php-format
5341
- msgid "%plural% for daily visits"
5342
- msgstr ""
5343
-
5344
- #: ../modules/mycred-module-hooks.php:95
5345
- #, php-format
5346
- msgid "Award %_plural% for users visiting your website on a daily basis."
5347
- msgstr ""
5348
-
5349
- #: ../modules/mycred-module-hooks.php:101
5350
- #, php-format
5351
- msgid "%plural% for viewing content"
5352
- msgstr ""
5353
-
5354
- #: ../modules/mycred-module-hooks.php:102
5355
- msgid ""
5356
- "Award %_plural% to your users for viewing posts and / or %plural% to your "
5357
- "authors for members viewing their content."
5358
- msgstr ""
5359
-
5360
- #: ../modules/mycred-module-hooks.php:108
5361
- #, php-format
5362
- msgid "%plural% for logins"
5363
- msgstr "%plural% 给登录"
5364
-
5365
- #: ../modules/mycred-module-hooks.php:109
5366
- #, php-format
5367
- msgid ""
5368
- "Award %_plural% for logging in to your website. You can also set an optional "
5369
- "limit."
5370
- msgstr "奖励 %plural% 给登录您网站的用户。您还可以设置一个可选的限制。"
5371
-
5372
- #: ../modules/mycred-module-hooks.php:115
5373
- #, php-format
5374
- msgid "%plural% for publishing content"
5375
- msgstr "%plural% 给发布内容"
5376
-
5377
- #: ../modules/mycred-module-hooks.php:116
5378
- #, php-format
5379
- msgid ""
5380
- "Award %_plural% for publishing content on your website. If your custom post "
5381
- "type is not shown bellow, make sure it is set to \"Public\"."
5382
- msgstr "奖励 %_plural% 给在您的网站上发布内容。如果您的自定义文章类型没有显示在下面,请确保它是设置为 \"公开 \"。"
5383
-
5384
- #: ../modules/mycred-module-hooks.php:122
5385
- #, php-format
5386
- msgid "%plural% for comments"
5387
- msgstr "%plural% 给评论"
5388
-
5389
- #: ../modules/mycred-module-hooks.php:122
5390
- #, php-format
5391
- msgid "%plural% for Disqus comments"
5392
- msgstr "%plural% 给 Disqus 评论"
5393
-
5394
- #: ../modules/mycred-module-hooks.php:123
5395
- #, php-format
5396
- msgid "Award %_plural% for making comments."
5397
- msgstr "奖励 %_plural% 给发布评论。"
5398
-
5399
- #: ../modules/mycred-module-hooks.php:129
5400
- #, php-format
5401
- msgid "%plural% for clicking on links"
5402
- msgstr "%plural% 给点击链接"
5403
-
5404
- #: ../modules/mycred-module-hooks.php:130
5405
- msgid ""
5406
- "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5407
- "shortcode."
5408
- msgstr "奖励 %_plural% 给那些点击使用 [mycred_link] 简码生成的链接的用户。"
5409
-
5410
- #: ../modules/mycred-module-hooks.php:136
5411
- #, php-format
5412
- msgid "%plural% for viewing Videos"
5413
- msgstr "%plural% 给观看视频"
5414
-
5415
- #: ../modules/mycred-module-hooks.php:137
5416
- msgid ""
5417
- "Award %_plural% to users who watches videos embedded using the "
5418
- "[mycred_video] shortcode."
5419
- msgstr "奖励 %_plural% 给那些观看使用 [mycred_video] 简码添加的视频的用户。"
5420
-
5421
- #: ../modules/mycred-module-hooks.php:143
5422
- #, php-format
5423
- msgid "%plural% for referrals"
5424
- msgstr "%plural% 给推介"
5425
-
5426
- #: ../modules/mycred-module-hooks.php:144
5427
- msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5428
- msgstr "奖励 %_plural% 给那些推介其他访客和/或新用户注册的用户。"
5429
-
5430
- #: ../modules/mycred-module-hooks.php:177
5431
- #, php-format
5432
- msgid "%s Hooks"
5433
- msgstr "%s 钩子"
5434
-
5435
- #: ../modules/mycred-module-hooks.php:180
5436
- msgid ""
5437
- "Hooks are instances where %_plural% are awarded or deducted from a user, "
5438
- "depending on their actions around your website."
5439
- msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们在您网站的操作实例。"
5440
-
5441
- #: ../modules/mycred-module-hooks.php:362 ../modules/mycred-module-hooks.php:459 .
5442
- #: ./modules/mycred-module-hooks.php:611 ../modules/mycred-module-hooks.php:642 ..
5443
- #: modules/mycred-module-hooks.php:717 ../modules/mycred-module-hooks.php:1033 ..
5444
- #: modules/mycred-module-hooks.php:1050 ../modules/mycred-module-hooks.php:1097 .
5445
- #: ./modules/mycred-module-hooks.php:1524 ../modules/mycred-module-hooks.php:1541
5446
- #: ../modules/mycred-module-hooks.php:1558 ../modules/mycred-module-hooks.php:
5447
- #: 2785 ../modules/mycred-module-hooks.php:2814 ../plugins/mycred-hook-
5448
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5449
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:418 ..
5450
- #: plugins/mycred-hook-bbPress.php:431 ../plugins/mycred-hook-bbPress.php:448 ..
5451
- #: plugins/mycred-hook-bbPress.php:466 ../plugins/mycred-hook-bbPress.php:483 ..
5452
- #: plugins/mycred-hook-bbPress.php:500 ../plugins/mycred-hook-bbPress.php:522 ..
5453
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5454
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5455
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5456
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
5457
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
5458
- #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:227 ..
5459
- #: plugins/mycred-hook-buddypress-media.php:241 ../plugins/mycred-hook-
5460
- #: buddypress-media.php:254 ../plugins/mycred-hook-buddypress-media.php:264 ..
5461
- #: plugins/mycred-hook-buddypress-media.php:274 ../plugins/mycred-hook-
5462
- #: buddypress.php:495 ../plugins/mycred-hook-buddypress.php:512 ../plugins/mycred-
5463
- #: hook-buddypress.php:529 ../plugins/mycred-hook-buddypress.php:549 ..
5464
- #: plugins/mycred-hook-buddypress.php:562 ../plugins/mycred-hook-buddypress.php:
5465
- #: 579 ../plugins/mycred-hook-buddypress.php:592 ../plugins/mycred-hook-
5466
- #: buddypress.php:609 ../plugins/mycred-hook-buddypress.php:626 ../plugins/mycred-
5467
- #: hook-buddypress.php:1168 ../plugins/mycred-hook-buddypress.php:1181 ..
5468
- #: plugins/mycred-hook-buddypress.php:1198 ../plugins/mycred-hook-buddypress.php:
5469
- #: 1215 ../plugins/mycred-hook-buddypress.php:1232 ../plugins/mycred-hook-
5470
- #: buddypress.php:1249 ../plugins/mycred-hook-buddypress.php:1267 ..
5471
- #: plugins/mycred-hook-buddypress.php:1280 ../plugins/mycred-hook-buddypress.php:
5472
- #: 1297 ../plugins/mycred-hook-buddypress.php:1314 ../plugins/mycred-hook-contact-
5473
- #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5474
- #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5475
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5476
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5477
- #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5478
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5479
- #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5480
- #: postratings.php:183
5481
- msgid "Log template"
5482
- msgstr "日志模板"
5483
-
5484
- #: ../modules/mycred-module-hooks.php:594
5485
- #, php-format
5486
- msgid "%plural% for viewing Posts"
5487
- msgstr ""
5488
-
5489
- #: ../modules/mycred-module-hooks.php:597 ../modules/mycred-module-hooks.php:614 .
5490
- #: ./modules/mycred-module-hooks.php:628 ../modules/mycred-module-hooks.php:645 ..
5491
- #: modules/mycred-module-hooks.php:703 ../modules/mycred-module-hooks.php:720
5492
- msgid "Member"
5493
- msgstr ""
5494
-
5495
- #: ../modules/mycred-module-hooks.php:604 ../modules/mycred-module-hooks.php:620 .
5496
- #: ./modules/mycred-module-hooks.php:635 ../modules/mycred-module-hooks.php:651 ..
5497
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:726 ..
5498
- #: modules/mycred-module-hooks.php:1519 ../modules/mycred-module-hooks.php:1536 .
5499
- #: ./modules/mycred-module-hooks.php:1553
5500
- msgid "Content Author"
5501
- msgstr "内容作者"
5502
-
5503
- #: ../modules/mycred-module-hooks.php:625
5504
- #, php-format
5505
- msgid "%plural% for viewing Pages"
5506
- msgstr ""
5507
-
5508
- #: ../modules/mycred-module-hooks.php:700
5509
- #, php-format
5510
- msgid "%plural% for viewing %s"
5511
- msgstr ""
5512
-
5513
- #: ../modules/mycred-module-hooks.php:1023
5514
- #, php-format
5515
- msgid "%plural% for Posts"
5516
- msgstr "%plural% 给文章"
5517
-
5518
- #: ../modules/mycred-module-hooks.php:1040
5519
- #, php-format
5520
- msgid "%plural% for Pages"
5521
- msgstr "%plural% 给页面"
5522
-
5523
- #: ../modules/mycred-module-hooks.php:1087
5524
- #, php-format
5525
- msgid "%plural% for %s"
5526
- msgstr "%plural% %s"
5527
-
5528
- #: ../modules/mycred-module-hooks.php:1510
5529
- msgid ""
5530
- "%plural% are only awarded when your website has been synced with the Disqus "
5531
- "server!"
5532
- msgstr "只在你的网站和 Disqus 服务器同步的时候才奖励 %plural% "
5533
-
5534
- #: ../modules/mycred-module-hooks.php:1515 ../modules/mycred-module-hooks.php:
5535
- #: 1532 ../modules/mycred-module-hooks.php:1549
5536
- msgid "Comment Author"
5537
- msgstr "评论作者"
5538
-
5539
- #: ../modules/mycred-module-hooks.php:1529
5540
- msgid "Comment Marked SPAM"
5541
- msgstr "评论标识为垃圾"
5542
-
5543
- #: ../modules/mycred-module-hooks.php:1546
5544
- msgid "Trashed / Unapproved Comments"
5545
- msgstr "丢弃/未经批准的评论"
5546
-
5547
- #: ../modules/mycred-module-hooks.php:1566
5548
- msgid "Limit per post"
5549
- msgstr "每篇文章的限制"
5550
-
5551
- #: ../modules/mycred-module-hooks.php:1568
5552
- msgid ""
5553
- "The number of comments per post that grants %_plural% to the comment author. "
5554
- "Use zero for unlimited."
5555
- msgstr "奖励 %_plural% 至评论作者的每个帖子的评论数。使用零为无限。"
5556
-
5557
- #: ../modules/mycred-module-hooks.php:1572
5558
- msgid "Limit per day"
5559
- msgstr "每天的限制"
5560
-
5561
- #: ../modules/mycred-module-hooks.php:1574
5562
- msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5563
- msgstr "每天奖励 %_plural% 的留言数。使用零为无限。"
5564
-
5565
- #: ../modules/mycred-module-hooks.php:1579
5566
- msgid ""
5567
- "%plural% is to be awarded even when comment authors reply to their own "
5568
- "comment."
5569
- msgstr "当评论作者回复自己的评论时同样奖励 %plural% 。"
5570
-
5571
- #: ../modules/mycred-module-hooks.php:1650
5572
- msgid "Once for each unique URL"
5573
- msgstr "每个唯一的链接奖励一次"
5574
-
5575
- #: ../modules/mycred-module-hooks.php:1651
5576
- msgid "Once for each unique link id"
5577
- msgstr "每个唯一的链接ID 奖励一次"
5578
-
5579
- #: ../modules/mycred-module-hooks.php:1844
5580
- msgid ""
5581
- "The default amount to award for clicking on links. You can override this in "
5582
- "the shortcode."
5583
- msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。"
5584
-
5585
- #: ../modules/mycred-module-hooks.php:1851
5586
- #, php-format
5587
- msgid "Custom tags: %url%, %title% or %id%."
5588
- msgstr "自定义标签:%url% 、%title% 或 %id%。"
5589
-
5590
- #: ../modules/mycred-module-hooks.php:1862 ../modules/mycred-module-hooks.php:2898
5591
- msgid "Note!"
5592
- msgstr "注意!"
5593
-
5594
- #: ../modules/mycred-module-hooks.php:1862
5595
- msgid ""
5596
- "If no ID is set when using the mycred_link shortcode, the shortcode will "
5597
- "generate one automatically based on the value set under href. If you are "
5598
- "using this feature for \"sharing\" content, it is recommended that you limit "
5599
- "by ID."
5600
- msgstr ""
5601
- "如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如果您使用这个函数来 \"共享 "
5602
- "\"内容,建议您通过ID进行限制。"
5603
-
5604
- #: ../modules/mycred-module-hooks.php:1864 ../modules/mycred-module-hooks.php:2220
5605
- msgid "Available Shortcode"
5606
- msgstr "可用简码"
5607
-
5608
- #: ../modules/mycred-module-hooks.php:2184
5609
- msgid "Amount to award for viewing videos."
5610
- msgstr "奖励给观看视频的数量"
5611
-
5612
- #: ../modules/mycred-module-hooks.php:2194
5613
- msgid "Award Logic"
5614
- msgstr "奖励逻辑"
5615
-
5616
- #: ../modules/mycred-module-hooks.php:2196
5617
- #, php-format
5618
- msgid "Select when %_plural% should be awarded or deducted."
5619
- msgstr "选择什么时候奖励或扣除 %_plural% 。"
5620
-
5621
- #: ../modules/mycred-module-hooks.php:2197
5622
- msgid "Play - As soon as video starts playing."
5623
- msgstr "播放 - 当视频开始播放。"
5624
-
5625
- #: ../modules/mycred-module-hooks.php:2198
5626
- msgid "Full - First when the entire video has played."
5627
- msgstr "完整 - 当整个视频已经播放完。"
5628
-
5629
- #: ../modules/mycred-module-hooks.php:2199
5630
- msgid "Interval - For each x number of seconds watched."
5631
- msgstr "间隔 - 每个观看了 X 秒。"
5632
-
5633
- #: ../modules/mycred-module-hooks.php:2204
5634
- msgid "Number of seconds"
5635
- msgstr "秒数"
5636
-
5637
- #: ../modules/mycred-module-hooks.php:2211
5638
- msgid "Leniency"
5639
- msgstr "宽大"
5640
-
5641
- #: ../modules/mycred-module-hooks.php:2213
5642
- msgid ""
5643
- "The maximum percentage a users view of a movie can differ from the actual "
5644
- "length."
5645
- msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
5646
-
5647
- #: ../modules/mycred-module-hooks.php:2216
5648
- msgid ""
5649
- "Do not set this value to zero! A lot of thing can happen while a user "
5650
- "watches a movie and sometimes a few seconds can drop of the counter due to "
5651
- "buffering or play back errors."
5652
- msgstr "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,几秒钟就可以删除计数器。"
5653
-
5654
- #: ../modules/mycred-module-hooks.php:2284
5655
- msgid "Affiliate Program"
5656
- msgstr "联盟计划"
5657
-
5658
- #: ../modules/mycred-module-hooks.php:2293
5659
- msgid "Per Day"
5660
- msgstr "每天"
5661
-
5662
- #: ../modules/mycred-module-hooks.php:2443
5663
- msgid "Link"
5664
- msgstr "链接"
5665
-
5666
- #: ../modules/mycred-module-hooks.php:2447
5667
- msgid "Visitors Referred"
5668
- msgstr ""
5669
-
5670
- #: ../modules/mycred-module-hooks.php:2451
5671
- msgid "Signups Referred"
5672
- msgstr ""
5673
-
5674
- #: ../modules/mycred-module-hooks.php:2779 ../plugins/mycred-hook-affiliatewp.php:
5675
- #: 231
5676
- msgid "Referring Visitors"
5677
- msgstr "推介访客"
5678
-
5679
- #: ../modules/mycred-module-hooks.php:2803 ../modules/mycred-module-hooks.php:2832
5680
- msgid "The number of referrals each member can make. Use zero for unlimited."
5681
- msgstr "每个用户可以推介的人数。使用零为无限。"
5682
-
5683
- #: ../modules/mycred-module-hooks.php:2807 ../modules/mycred-module-hooks.php:2836
5684
- msgid "Referring Signups"
5685
- msgstr "推介注册"
5686
-
5687
- #: ../modules/mycred-module-hooks.php:2811
5688
- msgid "Visitors who have Cookies disabled will not award %_plural%."
5689
- msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
5690
-
5691
- #: ../modules/mycred-module-hooks.php:2838
5692
- msgid "Registrations are disabled."
5693
- msgstr "注册被禁用。"
5694
-
5695
- #: ../modules/mycred-module-hooks.php:2846
5696
- msgid "Referral Links"
5697
- msgstr "推介链接"
5698
-
5699
- #: ../modules/mycred-module-hooks.php:2850
5700
- msgid "Assign numeric referral IDs to each user."
5701
- msgstr "分配数字推介ID给每个用户。"
5702
-
5703
- #: ../modules/mycred-module-hooks.php:2851 ../modules/mycred-module-hooks.php:2857
5704
- msgid "Example"
5705
- msgstr "例如"
5706
-
5707
- #: ../modules/mycred-module-hooks.php:2856
5708
- msgid "Assign usernames as IDs for each user."
5709
- msgstr "分配用户名作为ID给每个用户。"
5710
-
5711
- #: ../modules/mycred-module-hooks.php:2860
5712
- msgid "IP Limit"
5713
- msgstr "IP限制"
5714
-
5715
- #: ../modules/mycred-module-hooks.php:2864
5716
- msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5717
- msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
5718
-
5719
- #: ../modules/mycred-module-hooks.php:2868 ../modules/mycred-module-hooks.php:2902
5720
- msgid "BuddyPress Profile"
5721
- msgstr "BuddyPress 个人资料"
5722
-
5723
- #: ../modules/mycred-module-hooks.php:2871
5724
- msgid "Insert Link in users Profile"
5725
- msgstr "在用户的个人资料插入链接"
5726
-
5727
- #: ../modules/mycred-module-hooks.php:2872
5728
- msgid ""
5729
- "Option to inser the referral link in users profiles. Links will only be "
5730
- "visible to users viewing their own profiles or administrators."
5731
- msgstr "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个人资料时可见。"
5732
-
5733
- #: ../modules/mycred-module-hooks.php:2878
5734
- msgid "Leave empty to hide."
5735
- msgstr "留空则隐藏。"
5736
-
5737
- #: ../modules/mycred-module-hooks.php:2881
5738
- msgid "Description"
5739
- msgstr "描述"
5740
-
5741
- #: ../modules/mycred-module-hooks.php:2882
5742
- msgid "Optional description to insert under the link."
5743
- msgstr "(可选)插入到链接中的描述"
5744
-
5745
- #: ../modules/mycred-module-hooks.php:2895
5746
- msgid "Profile Positioning"
5747
- msgstr "个人资料定位"
5748
-
5749
- #: ../modules/mycred-module-hooks.php:2897
5750
- msgid ""
5751
- "You can move around the referral link on your users profile by changing the "
5752
- "position. Increase to move up, decrease to move down."
5753
- msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
5754
-
5755
- #: ../modules/mycred-module-hooks.php:2898
5756
- msgid "You can not move the referral link above the users \"Base\" profile details!"
5757
- msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
5758
-
5759
- #: ../modules/mycred-module-hooks.php:2904
5760
- msgid "Requires BuddyPress Extended Profiles to be enabled."
5761
- msgstr "需要启用 BuddyPress 个人资料扩展。"
5762
-
5763
- #: ../modules/mycred-module-log.php:189 ../modules/mycred-module-log.php:210 ..
5764
- #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5765
- msgid "Access denied for this action"
5766
- msgstr "拒绝访问这个动作"
5767
-
5768
- #: ../modules/mycred-module-log.php:196
5769
- msgid "Row Deleted"
5770
- msgstr "行已删除"
5771
-
5772
- #: ../modules/mycred-module-log.php:223
5773
- msgid "Log entry not found"
5774
- msgstr "没有找到日志条目"
5775
-
5776
- #: ../modules/mycred-module-log.php:236
5777
- msgid "Entry Updated"
5778
- msgstr "项目更新"
5779
-
5780
- #: ../modules/mycred-module-log.php:290 ../modules/mycred-module-settings.php:585
5781
- msgid "Entries"
5782
- msgstr "条目"
5783
-
5784
- #: ../modules/mycred-module-log.php:305 ../modules/mycred-module-log.php:400 ..
5785
- #: modules/mycred-module-log.php:650 ../modules/mycred-module-settings.php:722
5786
- msgid "Export"
5787
- msgstr "导出"
5788
-
5789
- #: ../modules/mycred-module-log.php:311
5790
- msgid "Search results for"
5791
- msgstr "搜索结果"
5792
-
5793
- #: ../modules/mycred-module-log.php:379
5794
- #, php-format
5795
- msgid "%s Log"
5796
- msgstr "%s 日志"
5797
-
5798
- #: ../modules/mycred-module-log.php:390
5799
- msgid ""
5800
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
5801
- "Certain hooks and shortcodes will not work correctly!"
5802
- msgstr ""
5803
-
5804
- #: ../modules/mycred-module-log.php:522
5805
- msgid "Edit"
5806
- msgstr "编辑"
5807
-
5808
- #: ../modules/mycred-module-log.php:563
5809
- msgid "Time"
5810
- msgstr "时间"
5811
-
5812
- #: ../modules/mycred-module-log.php:567
5813
- msgid "Current Log Entry"
5814
- msgstr "当前日志条目"
5815
-
5816
- #: ../modules/mycred-module-log.php:569
5817
- msgid "The current saved log entry"
5818
- msgstr "当前保存的日志条目"
5819
-
5820
- #: ../modules/mycred-module-log.php:572
5821
- msgid "Adjust Log Entry"
5822
- msgstr "调整日志条目"
5823
-
5824
- #: ../modules/mycred-module-log.php:574
5825
- msgid "The new log entry"
5826
- msgstr "新的日志条目"
5827
-
5828
- #: ../modules/mycred-module-log.php:577
5829
- msgid "Update Log Entry"
5830
- msgstr "更新日志条目"
5831
-
5832
- #: ../modules/mycred-module-log.php:644
5833
- #, php-format
5834
- msgid "My %s History"
5835
- msgstr "我的 %s 历史"
5836
-
5837
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
5838
- #: 106 ../modules/mycred-module-settings.php:158
5839
- msgid "Missing point type"
5840
- msgstr "缺失积分类型"
5841
-
5842
- #: ../modules/mycred-module-settings.php:137
5843
- msgid "Accounts successfully reset"
5844
- msgstr "账户成功重置"
5845
-
5846
- #: ../modules/mycred-module-settings.php:184
5847
- msgid "No users found to export"
5848
- msgstr "没有找到用户要导出"
5849
-
5850
- #: ../modules/mycred-module-settings.php:234
5851
- msgid "Invalid decimal value."
5852
- msgstr ""
5853
-
5854
- #: ../modules/mycred-module-settings.php:281
5855
- msgid "Log Updated"
5856
- msgstr ""
5857
-
5858
- #: ../modules/mycred-module-settings.php:397
5859
- msgid "Update Database"
5860
- msgstr ""
5861
-
5862
- #: ../modules/mycred-module-settings.php:398
5863
- msgid "Zero for no decimals or maximum 20."
5864
- msgstr ""
5865
-
5866
- #: ../modules/mycred-module-settings.php:401 ../modules/mycred-module-settings.
5867
- #: php:498
5868
- msgid "Tip"
5869
- msgstr "提示"
5870
-
5871
- #: ../modules/mycred-module-settings.php:401
5872
- msgid ""
5873
- "As this is your main point type, the value you select here will be the "
5874
- "largest number of decimals your installation will support."
5875
- msgstr ""
5876
-
5877
- #: ../modules/mycred-module-settings.php:414 ../modules/mycred-module-settings.
5878
- #: php:427
5879
- msgid "No decimals"
5880
- msgstr ""
5881
-
5882
- #: ../modules/mycred-module-settings.php:439
5883
- #, php-format
5884
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
5885
- msgstr ""
5886
-
5887
- #: ../modules/mycred-module-settings.php:475
5888
- #, php-format
5889
- msgid "%s Settings"
5890
- msgstr "%s 设置"
5891
-
5892
- #: ../modules/mycred-module-settings.php:478
5893
- msgid "Adjust your core or add-on settings."
5894
- msgstr ""
5895
-
5896
- #: ../modules/mycred-module-settings.php:483
5897
- msgid "Core Settings"
5898
- msgstr "核心设置"
5899
-
5900
- #: ../modules/mycred-module-settings.php:485
5901
- msgid "Name"
5902
- msgstr "名字"
5903
-
5904
- #: ../modules/mycred-module-settings.php:490
5905
- #, php-format
5906
- msgid "Accessible though the %singular% template tag."
5907
- msgstr "可通过 %singular% 模板标签访问。"
5908
-
5909
- #: ../modules/mycred-module-settings.php:495
5910
- msgid "Accessible though the %plural% template tag."
5911
- msgstr "可通过 %plural% 模板标签访问。"
5912
-
5913
- #: ../modules/mycred-module-settings.php:498
5914
- msgid ""
5915
- "Adding an underscore at the beginning of template tag for names will return "
5916
- "them in lowercase. i.e. %_singular%"
5917
- msgstr "在模板标签名字前面添加下划线将返回小写字母。例如 %_singular%"
5918
-
5919
- #: ../modules/mycred-module-settings.php:520
5920
- msgid "Separator"
5921
- msgid_plural "Separators"
5922
- msgstr[0] "分离器"
5923
- msgstr[1] "分离器"
5924
-
5925
- #: ../modules/mycred-module-settings.php:527
5926
- msgid "Edit Settings"
5927
- msgstr "编辑设置"
5928
-
5929
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-settings.
5930
- #: php:534
5931
- msgid "Capability to check for."
5932
- msgstr "操作能力检查。"
5933
-
5934
- #: ../modules/mycred-module-settings.php:532
5935
- msgid "Edit Users %plural%"
5936
- msgstr "编辑用户 %plural%"
5937
-
5938
- #: ../modules/mycred-module-settings.php:556
5939
- msgid "Comma separated list of user ids to exclude. No spaces allowed!"
5940
- msgstr "逗号分隔的用户id列表将被排除。不允许使用空格!"
5941
-
5942
- #: ../modules/mycred-module-settings.php:576
5943
- msgid "Management"
5944
- msgstr "管理"
5945
-
5946
- #: ../modules/mycred-module-settings.php:578
5947
- msgid "The Log"
5948
- msgstr "日志"
5949
-
5950
- #: ../modules/mycred-module-settings.php:581
5951
- msgid "Table Name"
5952
- msgstr "标签名称"
5953
-
5954
- #: ../modules/mycred-module-settings.php:590
5955
- msgid "Empty Log"
5956
- msgstr "空日志"
5957
-
5958
- #: ../modules/mycred-module-settings.php:605
5959
- msgid "Set all to zero"
5960
- msgstr "全部设为零"
5961
-
5962
- #: ../modules/mycred-module-settings.php:605
5963
- msgid "CSV Export"
5964
- msgstr "CSV导出"
5965
-
5966
- #: ../modules/mycred-module-settings.php:625
5967
- msgid "Default"
5968
- msgstr "默认"
5969
-
5970
- #: ../modules/mycred-module-settings.php:628 ../modules/mycred-module-settings.
5971
- #: php:647 ../modules/mycred-module-settings.php:669
5972
- msgid "Meta Key"
5973
- msgstr "Meta键"
5974
-
5975
- #: ../modules/mycred-module-settings.php:666
5976
- msgid "Add New Type"
5977
- msgstr "添加新类型"
5978
-
5979
- #: ../modules/mycred-module-settings.php:671
5980
- msgid "A unique ID for this type."
5981
- msgstr "给这种类型一个唯一的ID。"
5982
-
5983
- #: ../modules/mycred-module-settings.php:676
5984
- msgid "Menu and page title."
5985
- msgstr "菜单和页面标题。"
5986
-
5987
- #: ../modules/mycred-module-settings.php:679
5988
- msgid ""
5989
- "The meta key must be lowercase and only contain letters or underscores. All "
5990
- "other characters will be deleted!"
5991
- msgstr ""
5992
-
5993
- #: ../modules/mycred-module-settings.php:700
5994
- msgid "Identify users by"
5995
- msgstr "通过什么识别用户"
5996
-
5997
- #: ../modules/mycred-module-settings.php:706
5998
- msgid "User Email"
5999
- msgstr "用户邮件"
6000
-
6001
- #: ../modules/mycred-module-settings.php:707
6002
- msgid "User Login"
6003
- msgstr "用户登录"
6004
-
6005
- #: ../modules/mycred-module-settings.php:714
6006
- msgid ""
6007
- "Use ID if you intend to use this export as a backup of your current site "
6008
- "while Email is recommended if you want to export to a different site."
6009
- msgstr "如果你打算使用这个导出作为当前网站的备份,并且导入到另一个不同的站点的话,推荐使用ID。"
6010
-
6011
- #: ../modules/mycred-module-settings.php:717
6012
- msgid "Import Log Entry"
6013
- msgstr "导入日志条目"
6014
-
6015
- #: ../modules/mycred-module-settings.php:719
6016
- #, php-format
6017
- msgid ""
6018
- "Optional log entry to use if you intend to import this file in a different "
6019
- "%s installation."
6020
- msgstr "(可选)使用日志条目,如果你打算在一个不同的 %s 安装中导入这个文件。"
6021
-
6022
- #: ../plugins/mycred-hook-affiliatewp.php:18
6023
- msgid "AffiliateWP"
6024
- msgstr ""
6025
-
6026
- #: ../plugins/mycred-hook-affiliatewp.php:19
6027
- #, php-format
6028
- msgid ""
6029
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
6030
- "referrals."
6031
- msgstr ""
6032
-
6033
- #: ../plugins/mycred-hook-affiliatewp.php:218
6034
- msgid "Affiliate Signup"
6035
- msgstr ""
6036
-
6037
- #: ../plugins/mycred-hook-affiliatewp.php:248
6038
- msgid "Referring Sales"
6039
- msgstr ""
6040
-
6041
- #: ../plugins/mycred-hook-affiliatewp.php:251
6042
- msgid "Pay a set amount for all referrals."
6043
- msgstr ""
6044
-
6045
- #: ../plugins/mycred-hook-affiliatewp.php:252
6046
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
6047
- msgstr ""
6048
-
6049
- #: ../plugins/mycred-hook-affiliatewp.php:253
6050
- msgid "Apply an exchange rate against the referral amount."
6051
- msgstr ""
6052
-
6053
- #: ../plugins/mycred-hook-affiliatewp.php:261
6054
- msgid "Log template - Payout"
6055
- msgstr ""
6056
-
6057
- #: ../plugins/mycred-hook-affiliatewp.php:266
6058
- msgid "Log template - Refund"
6059
- msgstr ""
6060
-
6061
- #: ../plugins/mycred-hook-badgeOS.php:18
6062
- msgid "BadgeOS"
6063
- msgstr "BadgeOS"
6064
-
6065
- #: ../plugins/mycred-hook-badgeOS.php:19
6066
- msgid ""
6067
- "Default settings for each BadgeOS Achievement type. These settings may be "
6068
- "overridden for individual achievement type."
6069
- msgstr "为每个 BadgeOS 成就类型的默认设置。这些设置可以被单个成就类型覆盖。"
6070
-
6071
- #: ../plugins/mycred-hook-badgeOS.php:105
6072
- #, php-format
6073
- msgid ""
6074
- "Please setup your <a href=\"%s\">default settings</a> before using this "
6075
- "feature."
6076
- msgstr "在使用这个功能前,请设置您的 <a href=\"%s\">默认设置</a>。"
6077
-
6078
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
6079
- msgid "%plural% to Award"
6080
- msgstr "%plural% 要奖励"
6081
-
6082
- #: ../plugins/mycred-hook-badgeOS.php:122
6083
- msgid "Use zero to disable"
6084
- msgstr "使用零禁用"
6085
-
6086
- #: ../plugins/mycred-hook-badgeOS.php:133
6087
- msgid "Deduction Log Template"
6088
- msgstr "扣除日志模板"
6089
-
6090
- #: ../plugins/mycred-hook-badgeOS.php:278
6091
- #, php-format
6092
- msgid "Default %s for %s"
6093
- msgstr "%s 的默认 %s"
6094
-
6095
- #: ../plugins/mycred-hook-badgeOS.php:284
6096
- msgid "Use zero to disable users gaining %_plural%"
6097
- msgstr "使用零来禁用用户获得 %_plural%"
6098
-
6099
- #: ../plugins/mycred-hook-badgeOS.php:288
6100
- msgid "Default Log template"
6101
- msgstr "默认日志模板"
6102
-
6103
- #: ../plugins/mycred-hook-bbPress.php:18
6104
- msgid "bbPress"
6105
- msgstr "bbPress"
6106
-
6107
- #: ../plugins/mycred-hook-bbPress.php:19
6108
- #, php-format
6109
- msgid "Awards %_plural% for bbPress actions."
6110
- msgstr "奖励 %_plural% 给 bbPress 的操作。"
6111
-
6112
- #: ../plugins/mycred-hook-bbPress.php:407
6113
- #, php-format
6114
- msgid "%plural% for New Forum"
6115
- msgstr "%plural% 给新建论坛"
6116
-
6117
- #: ../plugins/mycred-hook-bbPress.php:424
6118
- #, php-format
6119
- msgid "%plural% for Forum Deletion"
6120
- msgstr "%plural% 给删除论坛"
6121
-
6122
- #: ../plugins/mycred-hook-bbPress.php:437 ../plugins/mycred-hook-simplepress.php:
6123
- #: 278
6124
- #, php-format
6125
- msgid "%plural% for New Topic"
6126
- msgstr "%plural% 给新话题"
6127
-
6128
- #: ../plugins/mycred-hook-bbPress.php:455
6129
- #, php-format
6130
- msgid "Forum authors can receive %_plural% for creating new topics."
6131
- msgstr "论坛作者新建话题可以获得 %_plural% "
6132
-
6133
- #: ../plugins/mycred-hook-bbPress.php:459 ../plugins/mycred-hook-simplepress.php:
6134
- #: 295
6135
- #, php-format
6136
- msgid "%plural% for Topic Deletion"
6137
- msgstr "%plural% 给删除话题"
6138
-
6139
- #: ../plugins/mycred-hook-bbPress.php:472
6140
- #, php-format
6141
- msgid "%plural% for Favorited Topic"
6142
- msgstr "%plural% 给收藏话题"
6143
-
6144
- #: ../plugins/mycred-hook-bbPress.php:489
6145
- #, php-format
6146
- msgid "%plural% for New Reply"
6147
- msgstr "%plural% 给新回复"
6148
-
6149
- #: ../plugins/mycred-hook-bbPress.php:507
6150
- #, php-format
6151
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
6152
- msgstr "当话题作者回复自己的话题时同样奖励 %_plural%"
6153
-
6154
- #: ../plugins/mycred-hook-bbPress.php:511
6155
- #, php-format
6156
- msgid "Show users %_plural% balance in replies"
6157
- msgstr "在回复中显示用户的 %_plural% 余额"
6158
-
6159
- #: ../plugins/mycred-hook-bbPress.php:515
6160
- #, php-format
6161
- msgid "%plural% for Reply Deletion"
6162
- msgstr ""
6163
-
6164
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
6165
- msgid "BuddyPress: Gallery Actions"
6166
- msgstr "BuddyPress:相册操作"
6167
-
6168
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
6169
- #, php-format
6170
- msgid ""
6171
- "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
6172
- "Gallery."
6173
- msgstr "奖励 %_plural% 给使用BP相册或BP库创建新相册的用户"
6174
-
6175
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
6176
- #, php-format
6177
- msgid "%plural% for New Gallery"
6178
- msgstr "%plural% 给新相册"
6179
-
6180
- #: ../plugins/mycred-hook-buddypress-links.php:19
6181
- msgid "BuddyPress: Links"
6182
- msgstr "BuddyPress:链接"
6183
-
6184
- #: ../plugins/mycred-hook-buddypress-links.php:20
6185
- #, php-format
6186
- msgid "Awards %_plural% for link related actions."
6187
- msgstr "奖励 %_plural% 给链接相关的操作"
6188
-
6189
- #: ../plugins/mycred-hook-buddypress-links.php:244
6190
- #, php-format
6191
- msgid "%plural% for New Links"
6192
- msgstr "%plural% 给新链接"
6193
-
6194
- #: ../plugins/mycred-hook-buddypress-links.php:261
6195
- #, php-format
6196
- msgid "%plural% for Vote on Link"
6197
- msgstr "%plural% 给投票链接"
6198
-
6199
- #: ../plugins/mycred-hook-buddypress-links.php:277
6200
- msgid "%plural% per received Vote"
6201
- msgstr "%plural% 每次收到投票"
6202
-
6203
- #: ../plugins/mycred-hook-buddypress-links.php:280
6204
- msgid "Vote Up"
6205
- msgstr "支持"
6206
-
6207
- #: ../plugins/mycred-hook-buddypress-links.php:299
6208
- msgid "Vote Down"
6209
- msgstr "反对"
6210
-
6211
- #: ../plugins/mycred-hook-buddypress-links.php:314
6212
- #, php-format
6213
- msgid "%plural% for Updating Links"
6214
- msgstr "%plural% 给更新链接"
6215
-
6216
- #: ../plugins/mycred-hook-buddypress-links.php:331
6217
- #, php-format
6218
- msgid "%plural% for Deleting Links"
6219
- msgstr "%plural% 给删除链接"
6220
-
6221
- #: ../plugins/mycred-hook-buddypress-media.php:18
6222
- msgid "rtMedia Galleries"
6223
- msgstr "rtMedia 相册"
6224
-
6225
- #: ../plugins/mycred-hook-buddypress-media.php:19
6226
- #, php-format
6227
- msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
6228
- msgstr "奖励/扣除 %_plural% 给创建或上传新照片的用户"
6229
-
6230
- #: ../plugins/mycred-hook-buddypress-media.php:202
6231
- msgid "New Media Upload"
6232
- msgstr "新媒体上传"
6233
-
6234
- #: ../plugins/mycred-hook-buddypress-media.php:247
6235
- msgid "Delete Media"
6236
- msgstr "删除媒体"
6237
-
6238
- #: ../plugins/mycred-hook-buddypress-media.php:250
6239
- msgid "Delete Photo"
6240
- msgstr "删除照片"
6241
-
6242
- #: ../plugins/mycred-hook-buddypress-media.php:260
6243
- msgid "Delete Video"
6244
- msgstr "删除视频"
6245
-
6246
- #: ../plugins/mycred-hook-buddypress-media.php:270
6247
- msgid "Delete Music"
6248
- msgstr "删除音乐"
6249
-
6250
- #: ../plugins/mycred-hook-buddypress.php:20
6251
- msgid "BuddyPress: Members"
6252
- msgstr "BuddyPress:会员"
6253
-
6254
- #: ../plugins/mycred-hook-buddypress.php:21
6255
- #, php-format
6256
- msgid "Awards %_plural% for profile related actions."
6257
- msgstr "奖励 %_plural% 给个人资料的相关操作。"
6258
-
6259
- #: ../plugins/mycred-hook-buddypress.php:28
6260
- msgid "BuddyPress: Groups"
6261
- msgstr "BuddyPress:群组"
6262
-
6263
- #: ../plugins/mycred-hook-buddypress.php:29
6264
- #, php-format
6265
- msgid ""
6266
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6267
- "zero to disable a specific hook."
6268
- msgstr "奖励 %_plural% 给群组的相关操作。使用减号 - 来扣除 %_plural% 或者零来禁用特定的钩子。"
6269
-
6270
- #: ../plugins/mycred-hook-buddypress.php:484
6271
- #, php-format
6272
- msgid "%plural% for Profile Updates"
6273
- msgstr "%plural% 给个人资料更新"
6274
-
6275
- #: ../plugins/mycred-hook-buddypress.php:501
6276
- #, php-format
6277
- msgid "%plural% for Removing Profile Update"
6278
- msgstr ""
6279
-
6280
- #: ../plugins/mycred-hook-buddypress.php:518
6281
- #, php-format
6282
- msgid "%plural% for New Avatar"
6283
- msgstr "%plural% 给新头像"
6284
-
6285
- #: ../plugins/mycred-hook-buddypress.php:535
6286
- #, php-format
6287
- msgid "%plural% for New Friendships"
6288
- msgstr "%plural% 给新朋友关系"
6289
-
6290
- #: ../plugins/mycred-hook-buddypress.php:545
6291
- #, php-format
6292
- msgid ""
6293
- "Users with zero balance can not add friends. Requires that you deduct "
6294
- "%_plural% for adding a new friend."
6295
- msgstr ""
6296
-
6297
- #: ../plugins/mycred-hook-buddypress.php:555
6298
- #, php-format
6299
- msgid "%plural% for Leaving Friendship"
6300
- msgstr "%plural% 给解除朋友关系"
6301
-
6302
- #: ../plugins/mycred-hook-buddypress.php:568
6303
- #, php-format
6304
- msgid "%plural% for New Comment"
6305
- msgstr "%plural% 给新评论"
6306
-
6307
- #: ../plugins/mycred-hook-buddypress.php:585
6308
- #, php-format
6309
- msgid "%plural% for Deleting Comment"
6310
- msgstr "%plural% 给删除评论"
6311
-
6312
- #: ../plugins/mycred-hook-buddypress.php:598
6313
- #, php-format
6314
- msgid "%plural% for New Messages"
6315
- msgstr "%plural% 给新信息"
6316
-
6317
- #: ../plugins/mycred-hook-buddypress.php:615
6318
- #, php-format
6319
- msgid "%plural% for Sending Gift"
6320
- msgstr "%plural% 给发送礼物"
6321
-
6322
- #: ../plugins/mycred-hook-buddypress.php:1154
6323
- #, php-format
6324
- msgid "%plural% for Creating Groups"
6325
- msgstr "%plural% 给创建群组"
6326
-
6327
- #: ../plugins/mycred-hook-buddypress.php:1158
6328
- msgid ""
6329
- "If you use a negative value and the user does not have enough %_plural% the "
6330
- "\"Create Group\" button will be disabled."
6331
- msgstr "如果你使用一个负值,并且用户没有足够的 %_plural%,\"创建群组\"按钮将被禁用。"
6332
-
6333
- #: ../plugins/mycred-hook-buddypress.php:1162
6334
- msgid "Number of members before awarding %_plural%"
6335
- msgstr "获取 %_plural% 奖励所需的会员数量"
6336
-
6337
- #: ../plugins/mycred-hook-buddypress.php:1164
6338
- msgid "Use zero to award %_plural% when group is created."
6339
- msgstr "使用零则在群组创建时就奖励 %_plural%"
6340
-
6341
- #: ../plugins/mycred-hook-buddypress.php:1174
6342
- #, php-format
6343
- msgid "%plural% for Deleting Groups"
6344
- msgstr "%plural% 给删除群组"
6345
-
6346
- #: ../plugins/mycred-hook-buddypress.php:1187
6347
- #, php-format
6348
- msgid "%plural% for New Forum Topic"
6349
- msgstr "%plural% 给发布论坛话题"
6350
-
6351
- #: ../plugins/mycred-hook-buddypress.php:1204
6352
- #, php-format
6353
- msgid "%plural% for Editing Forum Topic"
6354
- msgstr "%plural% 给编辑论坛话题"
6355
-
6356
- #: ../plugins/mycred-hook-buddypress.php:1221
6357
- #, php-format
6358
- msgid "%plural% for New Forum Post"
6359
- msgstr "%plural% 给发布论坛帖子"
6360
-
6361
- #: ../plugins/mycred-hook-buddypress.php:1238
6362
- #, php-format
6363
- msgid "%plural% for Editing Forum Post"
6364
- msgstr "%plural% 给编辑论坛帖子"
6365
-
6366
- #: ../plugins/mycred-hook-buddypress.php:1255
6367
- #, php-format
6368
- msgid "%plural% for Joining Groups"
6369
- msgstr "%plural% 给加入群组"
6370
-
6371
- #: ../plugins/mycred-hook-buddypress.php:1259
6372
- msgid ""
6373
- "If you use a negative value and the user does not have enough %_plural% the "
6374
- "\"Join Group\" button will be disabled."
6375
- msgstr "如果你使用一个负值,或者用户没有足够的 %_plural%,\"加入群组\"按钮将被禁用。"
6376
-
6377
- #: ../plugins/mycred-hook-buddypress.php:1273
6378
- #, php-format
6379
- msgid "%plural% for Leaving Groups"
6380
- msgstr "%plural% 给离开群组"
6381
-
6382
- #: ../plugins/mycred-hook-buddypress.php:1286
6383
- #, php-format
6384
- msgid "%plural% for New Group Avatar"
6385
- msgstr "%plural% 给上传群组头像"
6386
-
6387
- #: ../plugins/mycred-hook-buddypress.php:1303
6388
- #, php-format
6389
- msgid "%plural% for New Group Comment"
6390
- msgstr "%plural% 给新群组评论"
6391
-
6392
- #: ../plugins/mycred-hook-contact-form7.php:18
6393
- msgid "Contact Form 7 Form Submissions"
6394
- msgstr "Contact Form 7 表单提交"
6395
-
6396
- #: ../plugins/mycred-hook-contact-form7.php:19
6397
- #, php-format
6398
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
6399
- msgstr "奖励 %_plural% 给成功的表单提交(由登录的用户)。"
6400
-
6401
- #: ../plugins/mycred-hook-contact-form7.php:117 ../plugins/mycred-hook-
6402
- #: gravityforms.php:118
6403
- msgid "No forms found."
6404
- msgstr "没有找到形式。"
6405
-
6406
- #: ../plugins/mycred-hook-events-manager-light.php:18
6407
- msgid "Events Manager"
6408
- msgstr "活动管理器"
6409
-
6410
- #: ../plugins/mycred-hook-events-manager-light.php:19
6411
- #, php-format
6412
- msgid "Awards %_plural% for users attending events."
6413
- msgstr "奖励 %_plural% 给参加活动的用户"
6414
-
6415
- #: ../plugins/mycred-hook-events-manager-light.php:186
6416
- msgid "Attending Event"
6417
- msgstr "参加活动"
6418
-
6419
- #: ../plugins/mycred-hook-events-manager-light.php:203
6420
- msgid "Cancelling Attendance"
6421
- msgstr "取消出席"
6422
-
6423
- #: ../plugins/mycred-hook-gd-star-rating.php:18
6424
- msgid "GD Star Rating"
6425
- msgstr "GD Star Rating"
6426
-
6427
- #: ../plugins/mycred-hook-gd-star-rating.php:19
6428
- #, php-format
6429
- msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
6430
- msgstr "奖励 %_plural% 给使用 GD Star Rating 插件评分项目的用户"
6431
-
6432
- #: ../plugins/mycred-hook-gd-star-rating.php:103
6433
- msgid "Rating"
6434
- msgstr "等级"
6435
-
6436
- #: ../plugins/mycred-hook-gd-star-rating.php:116
6437
- msgid "Up / Down Vote"
6438
- msgstr "支持/反对投票"
6439
-
6440
- #: ../plugins/mycred-hook-gravityforms.php:18
6441
- msgid "Gravityform Submissions"
6442
- msgstr "Gravityform 提交"
6443
-
6444
- #: ../plugins/mycred-hook-gravityforms.php:19
6445
- #, php-format
6446
- msgid "Awards %_plural% for successful form submissions."
6447
- msgstr "奖励 %_plural% 给成功的表单提交"
6448
-
6449
- #: ../plugins/mycred-hook-invite-anyone.php:18
6450
- msgid "Invite Anyone Plugin"
6451
- msgstr "Invite Anyone 插件"
6452
-
6453
- #: ../plugins/mycred-hook-invite-anyone.php:19
6454
- #, php-format
6455
- msgid ""
6456
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6457
- "accepted."
6458
- msgstr "奖励 %_plural% 给发送邀请以及/或者 %_plural% 如果邀请被接受。"
6459
-
6460
- #: ../plugins/mycred-hook-invite-anyone.php:190
6461
- #, php-format
6462
- msgid "%plural% for Sending An Invite"
6463
- msgstr "%plural% 给发送一个邀请"
6464
-
6465
- #: ../plugins/mycred-hook-invite-anyone.php:210
6466
- #, php-format
6467
- msgid "%plural% for Accepting An Invite"
6468
- msgstr "%plural% 给接受一个邀请"
6469
-
6470
- #: ../plugins/mycred-hook-invite-anyone.php:214
6471
- #, php-format
6472
- msgid "%plural% for each invited user that accepts an invitation."
6473
- msgstr "%plural% 给接受每一个邀请的用户"
6474
-
6475
- #: ../plugins/mycred-hook-jetpack.php:18
6476
- msgid "Jetpack Subscriptions"
6477
- msgstr "Jetpack 订阅"
6478
-
6479
- #: ../plugins/mycred-hook-jetpack.php:19
6480
- #, php-format
6481
- msgid ""
6482
- "Awards %_plural% for users signing up for site or comment updates using "
6483
- "Jetpack."
6484
- msgstr "奖励 %_plural% 给使用 Jetpack 注册网站或更新评论的用户。"
6485
-
6486
- #: ../plugins/mycred-hook-jetpack.php:499
6487
- msgid "Site Subscriptions"
6488
- msgstr "网站订阅"
6489
-
6490
- #: ../plugins/mycred-hook-jetpack.php:512
6491
- msgid "Comment Subscriptions"
6492
- msgstr "评论订阅"
6493
-
6494
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6495
- #: php:63
6496
- msgid "Reward with %plural%"
6497
- msgstr ""
6498
-
6499
- #: ../plugins/mycred-hook-sharethis.php:18
6500
- #, php-format
6501
- msgid "%plural% for Sharing"
6502
- msgstr ""
6503
-
6504
- #: ../plugins/mycred-hook-sharethis.php:19
6505
- #, php-format
6506
- msgid ""
6507
- "Awards %_plural% for users sharing / liking your website content to popular "
6508
- "social media sites."
6509
- msgstr ""
6510
-
6511
- #: ../plugins/mycred-hook-sharethis.php:232
6512
- msgid "Your ShareThis public key is not set."
6513
- msgstr ""
6514
-
6515
- #: ../plugins/mycred-hook-sharethis.php:237
6516
- msgid "No ShareThis services detected. Please check your installation."
6517
- msgstr ""
6518
-
6519
- #: ../plugins/mycred-hook-simplepress.php:19
6520
- #, php-format
6521
- msgid "Awards %_plural% for Simple:Press actions."
6522
- msgstr "奖励 %_plural% 给Simple:Press操作。"
6523
-
6524
- #: ../plugins/mycred-hook-simplepress.php:308
6525
- #, php-format
6526
- msgid "%plural% for New Topic Post"
6527
- msgstr "%plural% 给新话题帖子"
6528
-
6529
- #: ../plugins/mycred-hook-simplepress.php:326
6530
- #, php-format
6531
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
6532
- msgstr "当话题作者在他们自己的话题发布帖子时同样奖励 %_plural%。"
6533
-
6534
- #: ../plugins/mycred-hook-simplepress.php:330
6535
- #, php-format
6536
- msgid "%plural% for Topic Post Deletion"
6537
- msgstr "%plural% 给话题帖子删除"
6538
-
6539
- #: ../plugins/mycred-hook-woocommerce.php:193
6540
- msgid "WooCommerce Product Reviews"
6541
- msgstr ""
6542
-
6543
- #: ../plugins/mycred-hook-woocommerce.php:194
6544
- #, php-format
6545
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6546
- msgstr ""
6547
-
6548
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
6549
- msgid "WP Favorite Posts"
6550
- msgstr "WP Favorite Posts"
6551
-
6552
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
6553
- #, php-format
6554
- msgid "Awards %_plural% for users adding posts to their favorites."
6555
- msgstr "奖励 %_plural% 给收藏文章的用户。"
6556
-
6557
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
6558
- msgid "Adding Content to Favorites"
6559
- msgstr "将内容添加到收藏"
6560
-
6561
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
6562
- msgid "Authors Content added to favorites"
6563
- msgstr ""
6564
-
6565
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
6566
- msgid "Removing Content from Favorites"
6567
- msgstr "从收藏中删除内容"
6568
-
6569
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
6570
- msgid "Removing Content from Favorites (Author)"
6571
- msgstr ""
6572
-
6573
- #: ../plugins/mycred-hook-wp-polls.php:18
6574
- msgid "WP-Polls"
6575
- msgstr "WP-Polls"
6576
-
6577
- #: ../plugins/mycred-hook-wp-polls.php:19
6578
- #, php-format
6579
- msgid "Awards %_plural% for users voting in polls."
6580
- msgstr "奖励 %_plural% 给在投票调查中投票的用户。奖励 %_plural% 给在投票调查中投票的用户。"
6581
-
6582
- #: ../plugins/mycred-hook-wp-postratings.php:18
6583
- msgid "Post Ratings"
6584
- msgstr ""
6585
-
6586
- #: ../plugins/mycred-hook-wp-postratings.php:19
6587
- #, php-format
6588
- msgid ""
6589
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6590
- "author and the user rating."
6591
- msgstr ""
6592
-
6593
- #: ../plugins/mycred-hook-wp-postratings.php:76
6594
- msgid "Based on rating"
6595
- msgstr ""
6596
-
6597
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
6598
- #: postratings.php:179
6599
- msgid "Use the Rating Value instead of the amount set here."
6600
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-03-09 21:13+0800\n"
6
+ "PO-Revision-Date: 2015-03-09 22:41+0800\n"
7
+ "Last-Translator: suifengtec <suifengtec@qq.com>\n"
8
+ "Language-Team: LANGUAGE <support@mycred.me>\n"
9
+ "Language: en_IE\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.7.4\n"
16
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
+ "X-Poedit-Basepath: .\n"
22
+ "X-Loco-Target-Locale: zh_CN\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: ../abstracts/mycred-abstract-hook.php:74
26
+ msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
27
+ msgstr "函数 myCRED_Hook::run() 必须在一个子类中被重写。"
28
+
29
+ #: ../abstracts/mycred-abstract-hook.php:83
30
+ msgid "This Hook has no settings"
31
+ msgstr "这个HOOK没有设置项"
32
+
33
+ #: ../abstracts/mycred-abstract-hook.php:225
34
+ #: ../abstracts/mycred-abstract-hook.php:292
35
+ #: ../includes/mycred-functions.php:2633
36
+ #: ../modules/mycred-module-hooks.php:1670
37
+ msgid "No limit"
38
+ msgstr "没有限制"
39
+
40
+ #: ../abstracts/mycred-abstract-hook.php:226
41
+ msgid "/ Day"
42
+ msgstr "/ 天"
43
+
44
+ #: ../abstracts/mycred-abstract-hook.php:227
45
+ msgid "/ Week"
46
+ msgstr "/ 周"
47
+
48
+ #: ../abstracts/mycred-abstract-hook.php:228
49
+ msgid "/ Month"
50
+ msgstr "/ 月"
51
+
52
+ #: ../abstracts/mycred-abstract-hook.php:229
53
+ msgid "in Total"
54
+ msgstr "共计"
55
+
56
+ #: ../abstracts/mycred-abstract-hook.php:293
57
+ msgid "Once every 24 hours"
58
+ msgstr "每24小时一次"
59
+
60
+ #: ../abstracts/mycred-abstract-hook.php:294
61
+ msgid "Once every 7 days"
62
+ msgstr "每7天一次"
63
+
64
+ #: ../abstracts/mycred-abstract-hook.php:295
65
+ msgid "Once per day (reset at midnight)"
66
+ msgstr "每天一次(在午夜重置)"
67
+
68
+ #: ../abstracts/mycred-abstract-hook.php:302
69
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:498
70
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1023
71
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1046
72
+ #: ../addons/buy-creds/gateways/zombaio.php:338
73
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
74
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:649
75
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
76
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:992
77
+ msgid "Select"
78
+ msgstr "选择"
79
+
80
+ #: ../abstracts/mycred-abstract-module.php:56
81
+ msgid "myCRED_Module() Error. A Module ID is required!"
82
+ msgstr "myCRED_Module() 错误。模块ID是必须的!"
83
+
84
+ #: ../abstracts/mycred-abstract-module.php:349
85
+ #: ../abstracts/mycred-abstract-module.php:357
86
+ msgid "Surprise"
87
+ msgstr "惊喜"
88
+
89
+ #: ../abstracts/mycred-abstract-module.php:444
90
+ #: ../includes/mycred-network.php:83
91
+ msgid "click to close"
92
+ msgstr "点击关闭"
93
+
94
+ #: ../abstracts/mycred-abstract-module.php:445
95
+ #: ../includes/mycred-network.php:84
96
+ msgid "click to open"
97
+ msgstr "点击打开"
98
+
99
+ #: ../abstracts/mycred-abstract-module.php:478
100
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:846
101
+ msgid "Settings Updated"
102
+ msgstr "设置已更新"
103
+
104
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
105
+ #, php-format
106
+ msgid "Level %s"
107
+ msgstr "级别 %s"
108
+
109
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
110
+ #, php-format
111
+ msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
112
+ msgid "%s for %s %s - %s"
113
+ msgstr "%s为 %s %s - %s"
114
+
115
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
116
+ #: ../addons/coupons/myCRED-addon-coupons.php:202
117
+ #: ../addons/coupons/myCRED-addon-coupons.php:469
118
+ #, php-format
119
+ msgid "1 time"
120
+ msgid_plural "%d times"
121
+ msgstr[0] "1次"
122
+ msgstr[1] "%d "
123
+
124
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
125
+ #, php-format
126
+ msgctxt "\"x points\" for \"reference\" in total"
127
+ msgid "%s for %s in total"
128
+ msgstr "共计 %s 为 %s"
129
+
130
+ #: ../addons/badges/myCRED-addon-badges.php:48
131
+ #: ../addons/badges/myCRED-addon-badges.php:49
132
+ #: ../addons/badges/myCRED-addon-badges.php:50
133
+ #: ../addons/badges/myCRED-addon-badges.php:144
134
+ #: ../addons/badges/myCRED-addon-badges.php:145
135
+ #: ../addons/badges/myCRED-addon-badges.php:383
136
+ #: ../addons/badges/myCRED-addon-badges.php:389
137
+ #: ../addons/badges/myCRED-addon-badges.php:395
138
+ msgid "Badges"
139
+ msgstr "勋章"
140
+
141
+ #: ../addons/badges/myCRED-addon-badges.php:169
142
+ #, php-format
143
+ msgid "Badges (%d)"
144
+ msgstr "勋章 (%d)"
145
+
146
+ #: ../addons/badges/myCRED-addon-badges.php:260
147
+ #, php-format
148
+ msgid "%d Users earned this badge."
149
+ msgstr "%d 个用户已获此勋章。"
150
+
151
+ #: ../addons/badges/myCRED-addon-badges.php:264
152
+ msgid "No users has yet earned this badge."
153
+ msgstr "还没有用户获取该勋章。"
154
+
155
+ #: ../addons/badges/myCRED-addon-badges.php:287
156
+ msgid "No connections where removed."
157
+ msgstr "被移除的地方没有关联。"
158
+
159
+ #: ../addons/badges/myCRED-addon-badges.php:289
160
+ #, php-format
161
+ msgid "%s connections where removed."
162
+ msgstr "%s 关联已被移除。"
163
+
164
+ #: ../addons/badges/myCRED-addon-badges.php:384
165
+ msgid "Badge"
166
+ msgstr "勋章"
167
+
168
+ #: ../addons/badges/myCRED-addon-badges.php:385
169
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:259
170
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:260
171
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:167
172
+ #: ../addons/ranks/myCRED-addon-ranks.php:445
173
+ msgid "Add New"
174
+ msgstr "添加新信息"
175
+
176
+ #: ../addons/badges/myCRED-addon-badges.php:386
177
+ msgid "Add New Badge"
178
+ msgstr "添加新勋章"
179
+
180
+ #: ../addons/badges/myCRED-addon-badges.php:387
181
+ msgid "Edit Badge"
182
+ msgstr "编辑勋章"
183
+
184
+ #: ../addons/badges/myCRED-addon-badges.php:388
185
+ msgid "New Badge"
186
+ msgstr "新勋章"
187
+
188
+ #: ../addons/badges/myCRED-addon-badges.php:390
189
+ msgid "View Badge"
190
+ msgstr "查看勋章"
191
+
192
+ #: ../addons/badges/myCRED-addon-badges.php:391
193
+ msgid "Search Badge"
194
+ msgstr "搜索勋章"
195
+
196
+ #: ../addons/badges/myCRED-addon-badges.php:392
197
+ msgid "No badges found"
198
+ msgstr "未找到勋章"
199
+
200
+ #: ../addons/badges/myCRED-addon-badges.php:393
201
+ msgid "No badges found in Trash"
202
+ msgstr "没有在回收站中找到勋章"
203
+
204
+ #: ../addons/badges/myCRED-addon-badges.php:439
205
+ #: ../addons/badges/myCRED-addon-badges.php:541
206
+ msgid "Badge Name"
207
+ msgstr "勋章名称"
208
+
209
+ #: ../addons/badges/myCRED-addon-badges.php:440
210
+ msgid "Badge Images"
211
+ msgstr "勋章图片"
212
+
213
+ #: ../addons/badges/myCRED-addon-badges.php:441
214
+ msgid "Requirements"
215
+ msgstr "必需条件"
216
+
217
+ #: ../addons/badges/myCRED-addon-badges.php:442
218
+ #: ../addons/ranks/myCRED-addon-ranks.php:1038
219
+ #: ../modules/mycred-module-settings.php:600
220
+ msgid "Users"
221
+ msgstr "用户"
222
+
223
+ #: ../addons/badges/myCRED-addon-badges.php:481
224
+ msgid "A user must have gained or lost:"
225
+ msgstr "用户至少赚取或失去:"
226
+
227
+ #: ../addons/badges/myCRED-addon-badges.php:517
228
+ #: ../addons/badges/myCRED-addon-badges.php:520
229
+ #: ../addons/badges/myCRED-addon-badges.php:524
230
+ #: ../addons/badges/myCRED-addon-badges.php:525
231
+ #: ../addons/badges/myCRED-addon-badges.php:526
232
+ msgid "Badge Updated."
233
+ msgstr "勋章已更新。"
234
+
235
+ #: ../addons/badges/myCRED-addon-badges.php:522
236
+ msgid "Badge Enabled"
237
+ msgstr "勋章已启用"
238
+
239
+ #: ../addons/badges/myCRED-addon-badges.php:523
240
+ msgid "Badge Saved"
241
+ msgstr "勋章已保存"
242
+
243
+ #: ../addons/badges/myCRED-addon-badges.php:555
244
+ msgid "Badge Setup"
245
+ msgstr "勋章射猪"
246
+
247
+ #: ../addons/badges/myCRED-addon-badges.php:582
248
+ msgid "Assign Badge"
249
+ msgstr "指定勋章"
250
+
251
+ #: ../addons/badges/myCRED-addon-badges.php:583
252
+ msgid "Remove Connections"
253
+ msgstr "移除连接"
254
+
255
+ #: ../addons/badges/myCRED-addon-badges.php:605
256
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:478
257
+ #: ../addons/ranks/myCRED-addon-ranks.php:421
258
+ #: ../addons/ranks/myCRED-addon-ranks.php:1514
259
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:371
260
+ #: ../addons/transfer/myCRED-addon-transfer.php:146
261
+ #: ../includes/mycred-shortcodes.php:636 ../mycred.php:661 ../mycred.php:686
262
+ #: ../mycred.php:704
263
+ msgid "Processing..."
264
+ msgstr "处理中..."
265
+
266
+ #: ../addons/badges/myCRED-addon-badges.php:638
267
+ msgid "Time(s)"
268
+ msgstr ""
269
+
270
+ #: ../addons/badges/myCRED-addon-badges.php:639
271
+ msgid "In total"
272
+ msgstr "共计"
273
+
274
+ #: ../addons/badges/myCRED-addon-badges.php:671
275
+ #: ../addons/badges/myCRED-addon-badges.php:771
276
+ #: ../addons/badges/myCRED-addon-badges.php:831
277
+ #: ../addons/badges/myCRED-addon-badges.php:846
278
+ msgid "Badge Image"
279
+ msgstr "勋章图片"
280
+
281
+ #: ../addons/badges/myCRED-addon-badges.php:672
282
+ msgid "Set badge image"
283
+ msgstr "设置勋章图片"
284
+
285
+ #: ../addons/badges/myCRED-addon-badges.php:682
286
+ msgid "Default Image"
287
+ msgstr "默认图片"
288
+
289
+ #: ../addons/badges/myCRED-addon-badges.php:683
290
+ #: ../addons/badges/myCRED-addon-badges.php:741
291
+ #: ../addons/badges/myCRED-addon-badges.php:772
292
+ #: ../addons/badges/myCRED-addon-badges.php:831
293
+ msgid "image url"
294
+ msgstr "图片链接"
295
+
296
+ #: ../addons/badges/myCRED-addon-badges.php:684
297
+ #: ../addons/badges/myCRED-addon-badges.php:742
298
+ #: ../addons/badges/myCRED-addon-badges.php:773
299
+ #: ../addons/badges/myCRED-addon-badges.php:831
300
+ msgid "Add Image"
301
+ msgstr "添加图片"
302
+
303
+ #: ../addons/badges/myCRED-addon-badges.php:685
304
+ msgid "Optional image to show when a user has not yet earned this badge."
305
+ msgstr "可选 当用户还没有获得该勋章时显示的图片。"
306
+
307
+ #: ../addons/badges/myCRED-addon-badges.php:704
308
+ #: ../addons/badges/myCRED-addon-badges.php:756
309
+ #, php-format
310
+ msgid "Level %d"
311
+ msgstr "级别 %d"
312
+
313
+ #: ../addons/badges/myCRED-addon-badges.php:709
314
+ #: ../addons/badges/myCRED-addon-badges.php:761
315
+ #: ../addons/badges/myCRED-addon-badges.php:831
316
+ msgid "for"
317
+ msgstr ""
318
+
319
+ #: ../addons/badges/myCRED-addon-badges.php:740
320
+ msgid "Main Image"
321
+ msgstr "默认图片"
322
+
323
+ #: ../addons/badges/myCRED-addon-badges.php:774
324
+ #: ../addons/badges/myCRED-addon-badges.php:831
325
+ msgid "Leave empty if you do not want to assign a custom image for this level."
326
+ msgstr "如果您不想为此级别指定一个自定义图片请留空。"
327
+
328
+ #: ../addons/badges/myCRED-addon-badges.php:774
329
+ #: ../addons/badges/myCRED-addon-badges.php:831
330
+ msgid "Remove this level"
331
+ msgstr "移除此等级"
332
+
333
+ #: ../addons/badges/myCRED-addon-badges.php:788
334
+ msgid "Add Level"
335
+ msgstr "添加等级"
336
+
337
+ #: ../addons/badges/myCRED-addon-badges.php:831
338
+ #: ../addons/badges/myCRED-addon-badges.php:1151
339
+ msgid "Level"
340
+ msgstr "级别"
341
+
342
+ #: ../addons/badges/myCRED-addon-badges.php:848
343
+ msgid "Use as Badge"
344
+ msgstr "作为勋章使用"
345
+
346
+ #: ../addons/badges/myCRED-addon-badges.php:970
347
+ #: ../addons/badges/myCRED-addon-badges.php:1001
348
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
349
+ #: ../modules/mycred-module-buddypress.php:384
350
+ msgid "Do not show"
351
+ msgstr "不显示"
352
+
353
+ #: ../addons/badges/myCRED-addon-badges.php:971
354
+ #: ../modules/mycred-module-buddypress.php:385
355
+ msgid "Include in Profile Header"
356
+ msgstr "包含在资料页头部"
357
+
358
+ #: ../addons/badges/myCRED-addon-badges.php:972
359
+ #: ../addons/ranks/myCRED-addon-ranks.php:1396
360
+ #: ../modules/mycred-module-buddypress.php:386
361
+ msgid "Include under the \"Profile\" tab"
362
+ msgstr "包括在\"个人资料\"TAB下面"
363
+
364
+ #: ../addons/badges/myCRED-addon-badges.php:973
365
+ #: ../modules/mycred-module-buddypress.php:387
366
+ msgid "Include under the \"Profile\" tab and Profile Header"
367
+ msgstr "包含于 \"资料\"选项卡和资料页头部"
368
+
369
+ #: ../addons/badges/myCRED-addon-badges.php:986
370
+ #: ../addons/badges/myCRED-addon-badges.php:1017
371
+ msgid "Show all badges, including badges users have not yet earned."
372
+ msgstr "显示全部勋章,包括用户尚未获取的勋章。"
373
+
374
+ #: ../addons/badges/myCRED-addon-badges.php:1002
375
+ #: ../addons/ranks/myCRED-addon-ranks.php:1442
376
+ msgid "Include in Profile"
377
+ msgstr "包含于资料页"
378
+
379
+ #: ../addons/badges/myCRED-addon-badges.php:1003
380
+ msgid "Include in Forum Replies"
381
+ msgstr "包含于论坛回复"
382
+
383
+ #: ../addons/badges/myCRED-addon-badges.php:1004
384
+ msgid "Include in Profile and Forum Replies"
385
+ msgstr "包含于资料页和论坛回复"
386
+
387
+ #: ../addons/badges/myCRED-addon-badges.php:1108
388
+ msgid "User Badges"
389
+ msgstr "用户勋章"
390
+
391
+ #: ../addons/badges/myCRED-addon-badges.php:1113
392
+ msgid ""
393
+ "Here you can view the badges this user has earned and if needed, manually "
394
+ "give or take away a badge from a user."
395
+ msgstr ""
396
+ "您可在此查看用户获取的勋章情况,如果有必要您可以手工添加或移除勋章给用户。"
397
+
398
+ #: ../addons/badges/myCRED-addon-badges.php:1122
399
+ msgid "Not earned"
400
+ msgstr "尚未获取"
401
+
402
+ #: ../addons/badges/myCRED-addon-badges.php:1128
403
+ #: ../addons/badges/myCRED-addon-badges.php:1165
404
+ msgid "Earned"
405
+ msgstr "已获取"
406
+
407
+ #: ../addons/badges/myCRED-addon-badges.php:1140
408
+ msgid "No image"
409
+ msgstr "无图"
410
+
411
+ #: ../addons/badges/myCRED-addon-badges.php:1147
412
+ msgid "Select a level"
413
+ msgstr "选择一个级别"
414
+
415
+ #: ../addons/badges/myCRED-addon-badges.php:1162
416
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:810
417
+ msgid "Status"
418
+ msgstr "状态"
419
+
420
+ #: ../addons/badges/myCRED-addon-badges.php:1179
421
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1293
422
+ msgid "Save Changes"
423
+ msgstr "保存更改"
424
+
425
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
426
+ msgid "This Service has no settings"
427
+ msgstr "这个服务没有设置"
428
+
429
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
430
+ msgid "Hourly"
431
+ msgstr "每小时"
432
+
433
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
434
+ msgid "Daily"
435
+ msgstr "每天"
436
+
437
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
438
+ msgid "Weekly"
439
+ msgstr "每周"
440
+
441
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
442
+ msgid "Monthly"
443
+ msgstr "每月"
444
+
445
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
446
+ msgid "Quarterly"
447
+ msgstr "每季"
448
+
449
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
450
+ msgid "Semiannually"
451
+ msgstr "每半年"
452
+
453
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
454
+ msgid "Annually"
455
+ msgstr "每年"
456
+
457
+ #: ../addons/banking/myCRED-addon-banking.php:44
458
+ #: ../addons/banking/myCRED-addon-banking.php:45
459
+ #: ../addons/banking/myCRED-addon-banking.php:46
460
+ msgid "Banking"
461
+ msgstr "银行"
462
+
463
+ #: ../addons/banking/myCRED-addon-banking.php:158
464
+ msgid "Central Banking"
465
+ msgstr "中央银行"
466
+
467
+ #: ../addons/banking/myCRED-addon-banking.php:159
468
+ msgid ""
469
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
470
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
471
+ "deposited back into this account."
472
+ msgstr ""
473
+ "不用再凭空创建%_plural%了,全部支出都将从被称为 \"中央银行\"的账户账号进行。"
474
+ "任何用户的%_plural%支出或失去都将划到这个账户。"
475
+
476
+ #: ../addons/banking/myCRED-addon-banking.php:165
477
+ #: ../addons/banking/services/mycred-bank-service-interest.php:512
478
+ msgid "Compound Interest"
479
+ msgstr "利息"
480
+
481
+ #: ../addons/banking/myCRED-addon-banking.php:166
482
+ msgid ""
483
+ "Apply a positive or negative interest rate on your users %_plural% balances."
484
+ msgstr "为用户的%_plural%余额使用一个正整数或负整数利率。"
485
+
486
+ #: ../addons/banking/myCRED-addon-banking.php:172
487
+ msgid "Recurring Payouts"
488
+ msgstr "定期支付"
489
+
490
+ #: ../addons/banking/myCRED-addon-banking.php:173
491
+ msgid "Setup mass %_singular% payouts for your users."
492
+ msgstr "为用户安装%_singular%。"
493
+
494
+ #: ../addons/banking/myCRED-addon-banking.php:219
495
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:836
496
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:932
497
+ #: ../addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556
498
+ #: ../includes/mycred-network.php:125 ../modules/mycred-module-addons.php:293
499
+ #: ../modules/mycred-module-hooks.php:171 ../modules/mycred-module-log.php:329
500
+ #: ../modules/mycred-module-log.php:600
501
+ #: ../modules/mycred-module-settings.php:457
502
+ msgid "Access Denied"
503
+ msgstr "拒绝访问"
504
+
505
+ #: ../addons/banking/myCRED-addon-banking.php:225
506
+ #, php-format
507
+ msgid "%s Banking"
508
+ msgstr "%s 银行"
509
+
510
+ #: ../addons/banking/myCRED-addon-banking.php:228
511
+ msgid "Your banking setup for %plural%."
512
+ msgstr "您的银行设置为%plural%。"
513
+
514
+ #: ../addons/banking/myCRED-addon-banking.php:231
515
+ msgid "WP-Cron deactivation detected!"
516
+ msgstr "WP-Cron 检测到已禁用!"
517
+
518
+ #: ../addons/banking/myCRED-addon-banking.php:232
519
+ msgid "Warning! This add-on requires WP - Cron to work."
520
+ msgstr "警告!此扩展需要 WP-Cron 来工作。"
521
+
522
+ #: ../addons/banking/myCRED-addon-banking.php:248
523
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:870
524
+ #: ../modules/mycred-module-hooks.php:196
525
+ msgid "Enable"
526
+ msgstr "启用"
527
+
528
+ #: ../addons/banking/myCRED-addon-banking.php:261
529
+ #: ../modules/mycred-module-hooks.php:211
530
+ msgid "Update Changes"
531
+ msgstr "更新设置"
532
+
533
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
534
+ msgid "Bank User"
535
+ msgstr "银行用户"
536
+
537
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
538
+ msgid "The user ID of the central bank account. This user can not be excluded!"
539
+ msgstr "中央银行账号的用户ID。此用户不可被排除!"
540
+
541
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
542
+ msgid "Ignore Manual Adjustments"
543
+ msgstr "忽略手动调整"
544
+
545
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
546
+ msgid "%plural% interest rate payment"
547
+ msgstr "%plural% 利率支付"
548
+
549
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
550
+ msgid "Compounding Interest"
551
+ msgstr "复利"
552
+
553
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
554
+ #, php-format
555
+ msgid "%d Users are left to process."
556
+ msgstr "%d位用户等待处理。"
557
+
558
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
559
+ msgid "Payout History"
560
+ msgstr "支出记录"
561
+
562
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392
563
+ #: ../addons/banking/services/mycred-bank-service-interest.php:409
564
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:250
565
+ msgid "Run Count"
566
+ msgstr "运行计数"
567
+
568
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
569
+ msgid "Last Payout"
570
+ msgstr "最新支出"
571
+
572
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
573
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
574
+ msgid "Activated"
575
+ msgstr "已激活"
576
+
577
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
578
+ msgid "Total Payed Interest"
579
+ msgstr "总利息"
580
+
581
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
582
+ msgid "Compound History"
583
+ msgstr "复利记录"
584
+
585
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
586
+ msgid "Last Interest Compound"
587
+ msgstr "最新的复利"
588
+
589
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
590
+ msgid "Total Compounded Interest"
591
+ msgstr "总复利"
592
+
593
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422
594
+ #: ../addons/banking/services/mycred-bank-service-interest.php:549
595
+ msgid "Interest Rate"
596
+ msgstr "利率"
597
+
598
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
599
+ msgid "Default Rate"
600
+ msgstr "默认比率"
601
+
602
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427
603
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:268
604
+ msgid "Can not be zero."
605
+ msgstr "不能为零。"
606
+
607
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430
608
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:367
609
+ msgid "Payout"
610
+ msgstr "支付"
611
+
612
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435
613
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:283
614
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:606
615
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
616
+ #: ../addons/coupons/myCRED-addon-coupons.php:502
617
+ #: ../addons/gateway/carts/mycred-marketpress.php:395
618
+ #: ../addons/gateway/carts/mycred-marketpress.php:428
619
+ #: ../addons/gateway/carts/mycred-woocommerce.php:100
620
+ #: ../addons/gateway/carts/mycred-woocommerce.php:172
621
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:371
622
+ #: ../modules/mycred-module-hooks.php:912
623
+ #: ../modules/mycred-module-hooks.php:1868
624
+ #: ../modules/mycred-module-hooks.php:2211
625
+ #: ../plugins/mycred-hook-badgeOS.php:124
626
+ #: ../plugins/mycred-hook-badgeOS.php:126
627
+ #: ../plugins/mycred-hook-badgeOS.php:135
628
+ #: ../plugins/mycred-hook-events-manager-light.php:196
629
+ #: ../plugins/mycred-hook-events-manager-light.php:209
630
+ #: ../plugins/mycred-hook-gd-star-rating.php:109
631
+ #: ../plugins/mycred-hook-gd-star-rating.php:122
632
+ #: ../plugins/mycred-hook-woocommerce.php:304
633
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:217
634
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:235
635
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:249
636
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:262
637
+ #: ../plugins/mycred-hook-wp-polls.php:136
638
+ msgid "Log Template"
639
+ msgstr "日志模板"
640
+
641
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442
642
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:290
643
+ #: ../addons/coupons/myCRED-addon-coupons.php:438
644
+ msgid "Minimum Balance"
645
+ msgstr "最少余额"
646
+
647
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446
648
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:294
649
+ msgid "Optional minimum balance requirement."
650
+ msgstr "可选的所需最低余额。"
651
+
652
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449
653
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:297
654
+ msgid "Exclude"
655
+ msgstr "排除"
656
+
657
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452
658
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:300
659
+ msgid "Comma separated list of user IDs"
660
+ msgstr "多个用户ID的话请用英文逗号隔开"
661
+
662
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456
663
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:304
664
+ msgid "Roles"
665
+ msgstr "角色"
666
+
667
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
668
+ msgid "This user is excluded from receiving interest on this balance."
669
+ msgstr "该用户被排除在可接收利息的用户之外。"
670
+
671
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
672
+ msgid "Remove from Excluded List"
673
+ msgstr "从排除列表中移除"
674
+
675
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
676
+ msgid "This user role is excluded from receiving interest on this balance."
677
+ msgstr "该用户角色被排除在可接收利息的用户之外。"
678
+
679
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552
680
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:758
681
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:114
682
+ msgid "Leave empty to use the default value."
683
+ msgstr "留空可使用默认值。"
684
+
685
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
686
+ msgid "Save Interest Rate"
687
+ msgstr "保存利率"
688
+
689
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
690
+ msgid "Exclude from receiving interest"
691
+ msgstr "从可接收利息的用户中排除"
692
+
693
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
694
+ msgid "Compound interest rate saved."
695
+ msgstr "复利率已保存。"
696
+
697
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
698
+ msgid "User excluded from receiving interest."
699
+ msgstr "用户已从可接收利息的用户中排除。"
700
+
701
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
702
+ msgid "User included in receiving interest."
703
+ msgstr "用户可接收到利息。"
704
+
705
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
706
+ msgid "Daily %_plural%"
707
+ msgstr "每日 %_plural%"
708
+
709
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:246
710
+ #: ../includes/mycred-admin.php:405 ../modules/mycred-module-log.php:257
711
+ #: ../modules/mycred-module-log.php:258
712
+ msgid "History"
713
+ msgstr "历史"
714
+
715
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:255
716
+ msgid "Last Run"
717
+ msgstr "上次运行"
718
+
719
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:259
720
+ msgid "Total Payouts"
721
+ msgstr "总支出"
722
+
723
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:263
724
+ msgid "Pay Users"
725
+ msgstr "用户支付"
726
+
727
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:266
728
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593
729
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:300
730
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1523
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1600
732
+ #: ../includes/mycred-admin.php:709 ../includes/mycred-admin.php:759
733
+ #: ../includes/mycred-shortcodes.php:972
734
+ #: ../includes/mycred-shortcodes.php:1113
735
+ #: ../plugins/mycred-hook-affiliatewp.php:256
736
+ msgid "Amount"
737
+ msgstr "数量"
738
+
739
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:271
740
+ #: ../modules/mycred-module-hooks.php:2226
741
+ msgid "Interval"
742
+ msgstr "间隔"
743
+
744
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:276
745
+ msgid "Cycles"
746
+ msgstr "周期"
747
+
748
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:278
749
+ msgid "Set to -1 for unlimited"
750
+ msgstr "设置为-1为无限"
751
+
752
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
753
+ msgid "Important"
754
+ msgstr "重要"
755
+
756
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
757
+ msgid ""
758
+ "You can always stop payouts by deactivating this service. Just remember that "
759
+ "if you deactivate while there are cycles left, this service will continue on "
760
+ "when it gets re-activated. Set cycles to zero to reset."
761
+ msgstr ""
762
+ "您可以随时禁用此服务来停止支出。但要记住,取消后,如果该服务还在循环周期内,"
763
+ "它将继续,直到它被重新激活。设置周期为零来重置。"
764
+
765
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
766
+ msgid "This Payment Gateway has no settings"
767
+ msgstr "这种支付网关没有设置"
768
+
769
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
770
+ msgid "Select currency"
771
+ msgstr "所选货币"
772
+
773
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
774
+ msgid "Incoming confirmation call detected"
775
+ msgstr "检测到收入确认信息"
776
+
777
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
778
+ #, php-format
779
+ msgid "Gateway identified itself as \"%s\""
780
+ msgstr "网关定义它自己为 \"%s\""
781
+
782
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
783
+ msgid "Verifying caller"
784
+ msgstr "验证呼叫者"
785
+
786
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
787
+ msgid "Test Payment"
788
+ msgstr "测试付款"
789
+
790
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404
791
+ #: ../addons/gateway/carts/mycred-marketpress.php:179
792
+ msgid "Payment"
793
+ msgstr "付款"
794
+
795
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
796
+ msgid "Cancel purchase"
797
+ msgstr "取消购买"
798
+
799
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
800
+ #: ../includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
801
+ msgid "required"
802
+ msgstr "必填"
803
+
804
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
805
+ #: ../includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
806
+ msgid "optional"
807
+ msgstr "可选"
808
+
809
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
810
+ msgid "First Name"
811
+ msgstr "名字"
812
+
813
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
814
+ msgid "Last Name"
815
+ msgstr "姓氏"
816
+
817
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
818
+ msgid "Address Line 1"
819
+ msgstr "地址行1"
820
+
821
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
822
+ msgid "Address Line 2"
823
+ msgstr "地址行2"
824
+
825
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
826
+ msgid "City"
827
+ msgstr "城市"
828
+
829
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
830
+ msgid "Zip"
831
+ msgstr "邮编"
832
+
833
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
834
+ msgid "State"
835
+ msgstr ""
836
+
837
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
838
+ msgid "Country"
839
+ msgstr "国家"
840
+
841
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
842
+ msgid "Choose Country"
843
+ msgstr "选择国家"
844
+
845
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
846
+ #, php-format
847
+ msgid "%s Purchase"
848
+ msgstr "%s 购买"
849
+
850
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592
851
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:112
852
+ msgid "Item"
853
+ msgstr "项目"
854
+
855
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:594
856
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:301
857
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1601
858
+ msgid "Cost"
859
+ msgstr "花费"
860
+
861
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
862
+ msgid "Debug"
863
+ msgstr "调试"
864
+
865
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
866
+ msgid ""
867
+ "Here you can see information that are collected and sent to this gateway. "
868
+ "Debug information is only visible for administrators and are intended for "
869
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
870
+ "when you want to take this gateway online."
871
+ msgstr ""
872
+ "在这里,你可以看到被收集并传送到该网关的信息。调试信息将只对管理员可见和拟用"
873
+ "于该网关的故障排除/测试。当你想利用这个网关上线时,请停用 \"沙盒模式\"。"
874
+
875
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
876
+ msgid "Section"
877
+ msgstr "部分"
878
+
879
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
880
+ msgid "Result"
881
+ msgstr "结果"
882
+
883
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
884
+ msgid "Payment Status"
885
+ msgstr "付款状态"
886
+
887
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
888
+ msgid "Request"
889
+ msgstr "请求"
890
+
891
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
892
+ msgid "Gateway Response"
893
+ msgstr "网关响应"
894
+
895
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
896
+ #, php-format
897
+ msgid "Continue to %s"
898
+ msgstr "继续 %s"
899
+
900
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682
901
+ #: ../addons/buy-creds/gateways/bitpay.php:226
902
+ msgid "Click here if you are not automatically redirected"
903
+ msgstr "如果你没有自动重定向,请点击这里"
904
+
905
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
906
+ msgid "The following information will be sent to the gateway"
907
+ msgstr "以下信息将被发送到网关"
908
+
909
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
910
+ msgid "Outside US"
911
+ msgstr "美国以外"
912
+
913
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
914
+ msgid "January"
915
+ msgstr "一月"
916
+
917
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
918
+ msgid "February"
919
+ msgstr "二月"
920
+
921
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
922
+ msgid "March"
923
+ msgstr "三月"
924
+
925
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
926
+ msgid "April"
927
+ msgstr "四月"
928
+
929
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
930
+ msgid "May"
931
+ msgstr "五月"
932
+
933
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
934
+ msgid "June"
935
+ msgstr "六月"
936
+
937
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
938
+ msgid "July"
939
+ msgstr "七月"
940
+
941
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
942
+ msgid "August"
943
+ msgstr "八月"
944
+
945
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
946
+ msgid "September"
947
+ msgstr "九月"
948
+
949
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
950
+ msgid "October"
951
+ msgstr "十月"
952
+
953
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
954
+ msgid "November"
955
+ msgstr "十一月"
956
+
957
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
958
+ msgid "December"
959
+ msgstr "十二月"
960
+
961
+ #: ../addons/buy-creds/gateways/bitpay.php:30
962
+ #: ../addons/buy-creds/gateways/netbilling.php:35
963
+ #: ../addons/buy-creds/gateways/paypal-standard.php:30
964
+ #: ../addons/buy-creds/gateways/skrill.php:35
965
+ msgid "Purchase of myCRED %plural%"
966
+ msgstr "购买myCRED %plural%"
967
+
968
+ #: ../addons/buy-creds/gateways/bitpay.php:60
969
+ #: ../addons/buy-creds/gateways/netbilling.php:88
970
+ #: ../addons/buy-creds/gateways/paypal-standard.php:142
971
+ #: ../addons/buy-creds/gateways/skrill.php:119
972
+ #, php-format
973
+ msgid "Price mismatch. Expected: %s Received: %s"
974
+ msgstr "价格不匹配。预计: %s 收到: %s"
975
+
976
+ #: ../addons/buy-creds/gateways/bitpay.php:66
977
+ #: ../addons/buy-creds/gateways/paypal-standard.php:148
978
+ #: ../addons/buy-creds/gateways/skrill.php:125
979
+ #, php-format
980
+ msgid "Currency mismatch. Expected: %s Received: %s"
981
+ msgstr "币种不匹配。预计: %s 收到: %s"
982
+
983
+ #: ../addons/buy-creds/gateways/bitpay.php:72
984
+ #: ../addons/buy-creds/gateways/netbilling.php:94
985
+ #: ../addons/buy-creds/gateways/paypal-standard.php:154
986
+ #: ../addons/buy-creds/gateways/skrill.php:131
987
+ #, php-format
988
+ msgid "Payment not completed. Received: %s"
989
+ msgstr "未完成支付。收到: %s"
990
+
991
+ #: ../addons/buy-creds/gateways/bitpay.php:83
992
+ #: ../addons/buy-creds/gateways/netbilling.php:105
993
+ #: ../addons/buy-creds/gateways/paypal-standard.php:165
994
+ #: ../addons/buy-creds/gateways/skrill.php:142
995
+ #: ../addons/buy-creds/gateways/zombaio.php:174
996
+ msgid "Failed to credit users account."
997
+ msgstr "没能给用户加钱。"
998
+
999
+ #: ../addons/buy-creds/gateways/bitpay.php:160
1000
+ #: ../addons/buy-creds/gateways/netbilling.php:140
1001
+ #: ../addons/buy-creds/gateways/paypal-standard.php:202
1002
+ #: ../addons/buy-creds/gateways/skrill.php:180
1003
+ #: ../addons/buy-creds/gateways/zombaio.php:201
1004
+ msgid "Please setup this gateway before attempting to make a purchase!"
1005
+ msgstr "尝试进行购买前,请安装该网关!"
1006
+
1007
+ #: ../addons/buy-creds/gateways/bitpay.php:212
1008
+ #: ../addons/buy-creds/gateways/bitpay.php:221
1009
+ #: ../addons/buy-creds/gateways/netbilling.php:193
1010
+ #: ../addons/buy-creds/gateways/paypal-standard.php:262
1011
+ #: ../addons/buy-creds/gateways/skrill.php:274
1012
+ #: ../addons/buy-creds/gateways/zombaio.php:234
1013
+ msgid "Processing payment &hellip;"
1014
+ msgstr "处理付款&hellip;"
1015
+
1016
+ #: ../addons/buy-creds/gateways/bitpay.php:214
1017
+ msgid ""
1018
+ "Could not create a BitPay Invoice. Please contact the site administrator!"
1019
+ msgstr "无法创建 BitPay 发票。请与网站管理员联系!"
1020
+
1021
+ #: ../addons/buy-creds/gateways/bitpay.php:215
1022
+ msgid "Bitpay returned the following error message:"
1023
+ msgstr "Bitpay 返回以下错误消息:"
1024
+
1025
+ #: ../addons/buy-creds/gateways/bitpay.php:246
1026
+ #: ../includes/mycred-remote.php:551
1027
+ msgid "API Key"
1028
+ msgstr "API密钥"
1029
+
1030
+ #: ../addons/buy-creds/gateways/bitpay.php:252
1031
+ #: ../addons/buy-creds/gateways/paypal-standard.php:279
1032
+ #: ../addons/buy-creds/gateways/skrill.php:292
1033
+ msgid "Currency"
1034
+ msgstr "货币"
1035
+
1036
+ #: ../addons/buy-creds/gateways/bitpay.php:255
1037
+ msgid "Currency Code"
1038
+ msgstr "货币代码"
1039
+
1040
+ #: ../addons/buy-creds/gateways/bitpay.php:259
1041
+ #: ../addons/buy-creds/gateways/netbilling.php:229
1042
+ #: ../addons/buy-creds/gateways/paypal-standard.php:291
1043
+ #: ../addons/buy-creds/gateways/skrill.php:311
1044
+ msgid "Item Name"
1045
+ msgstr "项目名称"
1046
+
1047
+ #: ../addons/buy-creds/gateways/bitpay.php:263
1048
+ #: ../addons/buy-creds/gateways/netbilling.php:233
1049
+ #: ../addons/buy-creds/gateways/paypal-standard.php:295
1050
+ #: ../addons/buy-creds/gateways/skrill.php:315
1051
+ msgid "Description of the item being purchased by the user."
1052
+ msgstr "用户所购买的产品的描述"
1053
+
1054
+ #: ../addons/buy-creds/gateways/bitpay.php:266
1055
+ #: ../addons/buy-creds/gateways/netbilling.php:236
1056
+ #: ../addons/buy-creds/gateways/paypal-standard.php:298
1057
+ #: ../addons/buy-creds/gateways/skrill.php:318
1058
+ msgid "Exchange Rates"
1059
+ msgstr "转换率"
1060
+
1061
+ #: ../addons/buy-creds/gateways/bitpay.php:270
1062
+ msgid "Transaction Speed"
1063
+ msgstr "交易速度"
1064
+
1065
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1066
+ msgid "High"
1067
+ msgstr "高"
1068
+
1069
+ #: ../addons/buy-creds/gateways/bitpay.php:278
1070
+ msgid "Medium"
1071
+ msgstr "中"
1072
+
1073
+ #: ../addons/buy-creds/gateways/bitpay.php:279
1074
+ msgid "Low"
1075
+ msgstr "低"
1076
+
1077
+ #: ../addons/buy-creds/gateways/bitpay.php:292
1078
+ msgid "Full Notifications"
1079
+ msgstr "全部通知"
1080
+
1081
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1082
+ #: ../includes/mycred-network.php:161 ../includes/mycred-network.php:175
1083
+ msgid "No"
1084
+ msgstr ""
1085
+
1086
+ #: ../addons/buy-creds/gateways/bitpay.php:300
1087
+ #: ../includes/mycred-network.php:157 ../includes/mycred-network.php:171
1088
+ msgid "Yes"
1089
+ msgstr "是"
1090
+
1091
+ #: ../addons/buy-creds/gateways/netbilling.php:210
1092
+ msgid "Account ID"
1093
+ msgstr "帐户 ID"
1094
+
1095
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1096
+ msgid "Site Tag"
1097
+ msgstr "网站标签"
1098
+
1099
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1100
+ msgid "Order Integrity Key"
1101
+ msgstr "订购完整性密钥"
1102
+
1103
+ #: ../addons/buy-creds/gateways/netbilling.php:226
1104
+ msgid "Found under Step 12 on the Fraud Defense page."
1105
+ msgstr "在步骤12的欺诈防御页面中找到。"
1106
+
1107
+ #: ../addons/buy-creds/gateways/netbilling.php:240
1108
+ msgid "Postback CGI URL"
1109
+ msgstr "回调CGI URL"
1110
+
1111
+ #: ../addons/buy-creds/gateways/netbilling.php:244
1112
+ msgid ""
1113
+ "For this gateway to work, you must login to your NETbilling account and edit "
1114
+ "your site. Under \"Default payment form settings\" make sure the Postback "
1115
+ "CGI URL is set to the above address and \"Return method\" is set to POST."
1116
+ msgstr ""
1117
+ "为了让这个网关正常工作,您必须登录到您的NETbilling帐户和编辑您的网站。在\"默"
1118
+ "认的付款形式设置\"确保回调CGI URL被设置到上述地址和\"返回方式\"设置为开机自检"
1119
+ "(POST)。"
1120
+
1121
+ #: ../addons/buy-creds/gateways/netbilling.php:288
1122
+ msgid "Incorrect Credit Card number"
1123
+ msgstr "信用卡号码不正确"
1124
+
1125
+ #: ../addons/buy-creds/gateways/netbilling.php:294
1126
+ msgid "The credit card entered is past its expiration date."
1127
+ msgstr "输入的信用卡过期了。"
1128
+
1129
+ #: ../addons/buy-creds/gateways/netbilling.php:297
1130
+ msgid "The CVV2 number entered is not valid."
1131
+ msgstr "输入的CVV2号码是无效的。"
1132
+
1133
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1134
+ msgid "The bank routing number entered is not valid."
1135
+ msgstr "输入的银行路由号码是无效的。"
1136
+
1137
+ #: ../addons/buy-creds/gateways/netbilling.php:308
1138
+ msgid "The bank account number entered is not valid."
1139
+ msgstr "输入的银行帐户号码无效。"
1140
+
1141
+ #: ../addons/buy-creds/gateways/paypal-standard.php:188
1142
+ #: ../addons/buy-creds/gateways/skrill.php:166
1143
+ msgid "Success"
1144
+ msgstr "成功"
1145
+
1146
+ #: ../addons/buy-creds/gateways/paypal-standard.php:189
1147
+ #: ../addons/buy-creds/gateways/skrill.php:167
1148
+ msgid "Thank you for your purchase"
1149
+ msgstr "感谢您购买"
1150
+
1151
+ #: ../addons/buy-creds/gateways/paypal-standard.php:257
1152
+ #: ../addons/buy-creds/gateways/skrill.php:221
1153
+ msgid "Return to "
1154
+ msgstr "返回"
1155
+
1156
+ #: ../addons/buy-creds/gateways/paypal-standard.php:285
1157
+ msgid "Account Email"
1158
+ msgstr "账户邮箱"
1159
+
1160
+ #: ../addons/buy-creds/gateways/skrill.php:257
1161
+ msgid "Product:"
1162
+ msgstr "产品名称:"
1163
+
1164
+ #: ../addons/buy-creds/gateways/skrill.php:266
1165
+ msgid "Gift to:"
1166
+ msgstr "赠送给:"
1167
+
1168
+ #: ../addons/buy-creds/gateways/skrill.php:267
1169
+ msgid "(author)"
1170
+ msgstr "(作者)"
1171
+
1172
+ #: ../addons/buy-creds/gateways/skrill.php:299
1173
+ msgid "Merchant Account Email"
1174
+ msgstr "商家帐户邮件"
1175
+
1176
+ #: ../addons/buy-creds/gateways/skrill.php:305
1177
+ msgid "Secret Word"
1178
+ msgstr "密语"
1179
+
1180
+ #: ../addons/buy-creds/gateways/skrill.php:322
1181
+ msgid "Confirmation Email"
1182
+ msgstr "确认邮件"
1183
+
1184
+ #: ../addons/buy-creds/gateways/skrill.php:325
1185
+ msgid ""
1186
+ "Ask Skrill to send me a confirmation email for each successful purchase."
1187
+ msgstr "要求 Skrill 为每个成功的购买给我发送确认电子邮件。"
1188
+
1189
+ #: ../addons/buy-creds/gateways/skrill.php:328
1190
+ msgid "Checkout Page"
1191
+ msgstr "结帐页面"
1192
+
1193
+ #: ../addons/buy-creds/gateways/skrill.php:331
1194
+ #: ../addons/gateway/carts/mycred-woocommerce.php:88
1195
+ #: ../addons/ranks/myCRED-addon-ranks.php:1307
1196
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:118
1197
+ #: ../includes/mycred-widgets.php:196 ../includes/mycred-widgets.php:384
1198
+ #: ../includes/mycred-widgets.php:592 ../modules/mycred-module-hooks.php:2900
1199
+ msgid "Title"
1200
+ msgstr "标题"
1201
+
1202
+ #: ../addons/buy-creds/gateways/skrill.php:333
1203
+ msgid ""
1204
+ "If left empty, your account email is used as title on the Skill Payment Page."
1205
+ msgstr "如果留空,则您的帐户的电子邮件被用作 Skill 付款页面的标题。"
1206
+
1207
+ #: ../addons/buy-creds/gateways/skrill.php:336
1208
+ #: ../addons/buy-creds/gateways/zombaio.php:269
1209
+ msgid "Logo URL"
1210
+ msgstr "Logo 链接"
1211
+
1212
+ #: ../addons/buy-creds/gateways/skrill.php:338
1213
+ msgid ""
1214
+ "The URL to the image you want to use on the top of the gateway. For best "
1215
+ "integration results we recommend you use logos with dimensions up to 200px "
1216
+ "in width and 50px in height."
1217
+ msgstr ""
1218
+ "你要在网关顶部使用的图片的URL。为了达到最佳的整合效果,我们建议您使用宽为 200"
1219
+ "像素,高为 50像素的图片。"
1220
+
1221
+ #: ../addons/buy-creds/gateways/skrill.php:341
1222
+ msgid "Confirmation Note"
1223
+ msgstr "确认注意事项"
1224
+
1225
+ #: ../addons/buy-creds/gateways/skrill.php:343
1226
+ msgid ""
1227
+ "Optional text to show user once a transaction has been successfully "
1228
+ "completed. This text is shown by Skrill."
1229
+ msgstr "可选的文字显示给用户一旦交易已成功完成。该内容将由 Skrill 显示。"
1230
+
1231
+ #: ../addons/buy-creds/gateways/zombaio.php:143
1232
+ #, php-format
1233
+ msgid "Duplicate transaction. Received: %s"
1234
+ msgstr "重复交易。收到: %s"
1235
+
1236
+ #: ../addons/buy-creds/gateways/zombaio.php:149
1237
+ #, php-format
1238
+ msgid "Live transaction while debug mode is enabled! Received: %s"
1239
+ msgstr "调试模式下收到真实交易! 收到: %s"
1240
+
1241
+ #: ../addons/buy-creds/gateways/zombaio.php:251
1242
+ msgid "Site ID"
1243
+ msgstr "网站 ID"
1244
+
1245
+ #: ../addons/buy-creds/gateways/zombaio.php:257
1246
+ msgid "GW Password"
1247
+ msgstr "GW 密码"
1248
+
1249
+ #: ../addons/buy-creds/gateways/zombaio.php:263
1250
+ msgid "Pricing ID"
1251
+ msgstr "定价 ID"
1252
+
1253
+ #: ../addons/buy-creds/gateways/zombaio.php:275
1254
+ msgid "IP Verification"
1255
+ msgstr "IP 验证"
1256
+
1257
+ #: ../addons/buy-creds/gateways/zombaio.php:278
1258
+ msgid "Do not verify that callbacks are coming from Zombaio."
1259
+ msgstr "不验证从Zombaio来的回调。"
1260
+
1261
+ #: ../addons/buy-creds/gateways/zombaio.php:281
1262
+ msgid "Language"
1263
+ msgstr "语言"
1264
+
1265
+ #: ../addons/buy-creds/gateways/zombaio.php:288
1266
+ msgid "Postback URL (ZScript)"
1267
+ msgstr "回调网址 (ZScript)"
1268
+
1269
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1270
+ msgid ""
1271
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
1272
+ "address and click validate."
1273
+ msgstr "要让这个网关工作,请登录到ZOA并设置回调URL到上述地址,然后单击验证。"
1274
+
1275
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55
1276
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56
1277
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:57
1278
+ msgid "Payment Gateways"
1279
+ msgstr "支付网关"
1280
+
1281
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:253
1282
+ msgctxt "Post Type General Name"
1283
+ msgid "Pending Payments"
1284
+ msgstr "待审的支付"
1285
+
1286
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:254
1287
+ msgctxt "Post Type Singular Name"
1288
+ msgid "Pending Payment"
1289
+ msgstr "待审的支付"
1290
+
1291
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:255
1292
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:257
1293
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:268
1294
+ msgid "Pending Payments"
1295
+ msgstr "待审的支付"
1296
+
1297
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
1298
+ msgid "Edit Pending Payment"
1299
+ msgstr "编辑待审的支付"
1300
+
1301
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:264
1302
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634
1303
+ msgid "No pending payments found"
1304
+ msgstr "没有找到待审支付"
1305
+
1306
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:265
1307
+ msgid "Not found in Trash"
1308
+ msgstr "没有在回收站中找到"
1309
+
1310
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:297
1311
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:988
1312
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1598
1313
+ msgid "Transaction ID"
1314
+ msgstr "交易 ID"
1315
+
1316
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:299
1317
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:984
1318
+ msgid "Buyer"
1319
+ msgstr "买家"
1320
+
1321
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:302
1322
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:983
1323
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1599
1324
+ #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
1325
+ msgid "Gateway"
1326
+ msgstr "网关"
1327
+
1328
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:303
1329
+ msgid "Type"
1330
+ msgstr "类型"
1331
+
1332
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:390
1333
+ msgid "Pay Out"
1334
+ msgstr "支出"
1335
+
1336
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
1337
+ msgid "buyCRED Purchase Log"
1338
+ msgstr "buyCRED 购买记录"
1339
+
1340
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:422
1341
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
1342
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1343
+ msgid "Purchase Log"
1344
+ msgstr "购买记录"
1345
+
1346
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:515
1347
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26
1348
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516
1349
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:540
1350
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423
1351
+ msgid "Payments"
1352
+ msgstr "付款"
1353
+
1354
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:545
1355
+ msgid "Please login to purchase %_plural%"
1356
+ msgstr "请登录后购买 %_plural%"
1357
+
1358
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
1359
+ msgid "Gift purchase from %display_name%."
1360
+ msgstr " %display_name% 礼品购买"
1361
+
1362
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:576
1363
+ #: ../addons/ranks/myCRED-addon-ranks.php:1079
1364
+ msgid "Minimum %plural%"
1365
+ msgstr "最小 %plural%"
1366
+
1367
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:580
1368
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
1369
+ msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
1370
+
1371
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:585
1372
+ #: ../addons/transfer/myCRED-addon-transfer.php:211
1373
+ #: ../includes/mycred-widgets.php:598
1374
+ #: ../modules/mycred-module-settings.php:617
1375
+ msgid "Point Types"
1376
+ msgstr "积分类型"
1377
+
1378
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
1379
+ msgid ""
1380
+ "Select the point types that users can buy. You must select at least one!"
1381
+ msgstr "选择用户可购的几分类型。您至少应该选择一种!"
1382
+
1383
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:599
1384
+ msgid "Login Template"
1385
+ msgstr "登录模板"
1386
+
1387
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603
1388
+ msgid "Content to show when a user is not logged in."
1389
+ msgstr "用户没有登录时显示的内容。"
1390
+
1391
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
1392
+ msgid "Thank You Page"
1393
+ msgstr "感谢页面"
1394
+
1395
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:616
1396
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:637
1397
+ msgid "Custom URL"
1398
+ msgstr "自定义链接"
1399
+
1400
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:621
1401
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642
1402
+ msgid "Page"
1403
+ msgstr "页面"
1404
+
1405
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:634
1406
+ msgid "Cancellation Page"
1407
+ msgstr "取消页面"
1408
+
1409
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:657
1410
+ msgid "Show seperate log for %_plural% purchases."
1411
+ msgstr "为 %_plural% 购买显示单独的日志。"
1412
+
1413
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
1414
+ msgid "Gifting"
1415
+ msgstr "送礼"
1416
+
1417
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:661
1418
+ msgid "Allow users to buy %_plural% for other users."
1419
+ msgstr "允许用户为其他用户购买 %_plural% 。"
1420
+
1421
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:662
1422
+ msgid "Allow users to buy %_plural% for content authors."
1423
+ msgstr "允许用户为内容作者购买 %_plural% 。"
1424
+
1425
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
1426
+ #: ../modules/mycred-module-hooks.php:2936
1427
+ msgid "Available Shortcodes"
1428
+ msgstr "可用简码"
1429
+
1430
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:752
1431
+ #, php-format
1432
+ msgid "%s Exchange Rate"
1433
+ msgstr "%s 转换率"
1434
+
1435
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:766
1436
+ msgid "Save Exchange Rates"
1437
+ msgstr "保存转换率"
1438
+
1439
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:821
1440
+ msgid "Exchange rate override saved"
1441
+ msgstr "转换率重写已保存"
1442
+
1443
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:824
1444
+ msgid "Payment completed"
1445
+ msgstr "支付已完成"
1446
+
1447
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1448
+ #, php-format
1449
+ msgid "%s Payment Gateways"
1450
+ msgstr "%s 支付网关"
1451
+
1452
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:842
1453
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1454
+ msgid "buyCRED Settings"
1455
+ msgstr "buyCRED设置"
1456
+
1457
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:863
1458
+ msgid "Test Mode"
1459
+ msgstr "测试模式"
1460
+
1461
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:865
1462
+ msgid "Enabled"
1463
+ msgstr "已启用"
1464
+
1465
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:868
1466
+ msgid "Disabled"
1467
+ msgstr "已禁用"
1468
+
1469
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:878
1470
+ msgid "Sandbox Mode"
1471
+ msgstr "沙箱模式"
1472
+
1473
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:881
1474
+ msgid "Enable for test purchases."
1475
+ msgstr "启用测试购买。"
1476
+
1477
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:898
1478
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502
1479
+ #: ../modules/mycred-module-settings.php:692
1480
+ msgid "Update Settings"
1481
+ msgstr "更新设置"
1482
+
1483
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:899
1484
+ msgid "More Gateways"
1485
+ msgstr "更多网关"
1486
+
1487
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:985
1488
+ #: ../includes/mycred-log.php:634
1489
+ msgid "Date"
1490
+ msgstr "日期"
1491
+
1492
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1493
+ msgid "Payed"
1494
+ msgstr "已支付"
1495
+
1496
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1497
+ msgid "<strong>buy</strong>CRED Purchase Log"
1498
+ msgstr "<strong>buy</strong>CRED购买日志"
1499
+
1500
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:992
1501
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367
1502
+ msgid "Gateway Settings"
1503
+ msgstr "网关设置"
1504
+
1505
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1171
1506
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1209
1507
+ msgid "No purchases found"
1508
+ msgstr "没有找到购买"
1509
+
1510
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1241
1511
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1354
1512
+ msgid "This Add-on needs to setup before you can use this shortcode."
1513
+ msgstr "你需要安装这个扩展才可以使用这个简码。"
1514
+
1515
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1260
1516
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1373
1517
+ msgid "No gateways installed."
1518
+ msgstr "没有安装网关。"
1519
+
1520
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1261
1521
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1374
1522
+ msgid "Gateway does not exist."
1523
+ msgstr "网关不存在。"
1524
+
1525
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1309
1526
+ msgid "Yourself"
1527
+ msgstr "你自己"
1528
+
1529
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1375
1530
+ msgid "No active gateways found."
1531
+ msgstr "没有活跃的网关。"
1532
+
1533
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1376
1534
+ msgid "The selected gateway is not active."
1535
+ msgstr "所选择的网关没启用。"
1536
+
1537
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1423
1538
+ msgid "Buy with %gateway%"
1539
+ msgstr "通过 %gateway% 购买。"
1540
+
1541
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1429
1542
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:44
1543
+ msgid "Buy Now"
1544
+ msgstr "立即购买"
1545
+
1546
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1474
1547
+ msgid "No users found"
1548
+ msgstr "没有找到用户"
1549
+
1550
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1484
1551
+ msgid "To"
1552
+ msgstr "给"
1553
+
1554
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1501
1555
+ msgid "Select Amount"
1556
+ msgstr "选择金额"
1557
+
1558
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1525
1559
+ msgid "min."
1560
+ msgstr "至少"
1561
+
1562
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1563
+ msgid "Select Gateway"
1564
+ msgstr "选择网关"
1565
+
1566
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1574
1567
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27
1568
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
1569
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:35
1570
+ msgid "Pay Now"
1571
+ msgstr "马上支付"
1572
+
1573
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1575
1574
+ #: ../includes/mycred-install.php:536
1575
+ msgid "Cancel"
1576
+ msgstr "取消"
1577
+
1578
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1602
1579
+ #: ../addons/ranks/myCRED-addon-ranks.php:1601
1580
+ #: ../modules/mycred-module-log.php:378
1581
+ #: ../modules/mycred-module-settings.php:589
1582
+ #: ../modules/mycred-module-settings.php:604
1583
+ msgid "Actions"
1584
+ msgstr "操作"
1585
+
1586
+ #: ../addons/coupons/includes/mycred-coupon-functions.php:158
1587
+ msgid "Coupon redemption"
1588
+ msgstr "返券"
1589
+
1590
+ #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
1591
+ #: ../addons/coupons/myCRED-addon-coupons.php:87
1592
+ msgid "Coupon"
1593
+ msgstr "优惠券"
1594
+
1595
+ #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1596
+ msgid "Apply Coupon"
1597
+ msgstr "申请优惠券"
1598
+
1599
+ #: ../addons/coupons/myCRED-addon-coupons.php:86
1600
+ #: ../addons/coupons/myCRED-addon-coupons.php:92
1601
+ #: ../addons/coupons/myCRED-addon-coupons.php:500
1602
+ #: ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1603
+ msgid "Coupons"
1604
+ msgstr "优惠券"
1605
+
1606
+ #: ../addons/coupons/myCRED-addon-coupons.php:88
1607
+ msgid "Create New"
1608
+ msgstr "新建"
1609
+
1610
+ #: ../addons/coupons/myCRED-addon-coupons.php:89
1611
+ msgid "Create New Coupon"
1612
+ msgstr "新建优惠券"
1613
+
1614
+ #: ../addons/coupons/myCRED-addon-coupons.php:90
1615
+ msgid "Edit Coupon"
1616
+ msgstr "编辑优惠券"
1617
+
1618
+ #: ../addons/coupons/myCRED-addon-coupons.php:91
1619
+ msgid "New Coupon"
1620
+ msgstr "新优惠券"
1621
+
1622
+ #: ../addons/coupons/myCRED-addon-coupons.php:94
1623
+ msgid "Search coupons"
1624
+ msgstr "搜索优惠券"
1625
+
1626
+ #: ../addons/coupons/myCRED-addon-coupons.php:95
1627
+ msgid "No coupons found"
1628
+ msgstr "没有优惠券"
1629
+
1630
+ #: ../addons/coupons/myCRED-addon-coupons.php:96
1631
+ msgid "No coupons found in Trash"
1632
+ msgstr "回收站没有优惠券"
1633
+
1634
+ #: ../addons/coupons/myCRED-addon-coupons.php:98
1635
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1636
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1637
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:177
1638
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:283
1639
+ msgid "Email Notices"
1640
+ msgstr "邮件通知"
1641
+
1642
+ #: ../addons/coupons/myCRED-addon-coupons.php:119
1643
+ #: ../addons/coupons/myCRED-addon-coupons.php:120
1644
+ #: ../addons/coupons/myCRED-addon-coupons.php:121
1645
+ #: ../addons/coupons/myCRED-addon-coupons.php:122
1646
+ msgid "Coupon updated."
1647
+ msgstr "优惠券已更新。"
1648
+
1649
+ #: ../addons/coupons/myCRED-addon-coupons.php:124
1650
+ msgid "Coupon published."
1651
+ msgstr "优惠券已发布。"
1652
+
1653
+ #: ../addons/coupons/myCRED-addon-coupons.php:125
1654
+ msgid "Coupon saved."
1655
+ msgstr "优惠券已保存。"
1656
+
1657
+ #: ../addons/coupons/myCRED-addon-coupons.php:128
1658
+ msgid "Draft Coupon saved."
1659
+ msgstr "优惠券草稿已保存。"
1660
+
1661
+ #: ../addons/coupons/myCRED-addon-coupons.php:142
1662
+ msgid "Unique Coupon Code"
1663
+ msgstr "唯一的优惠券代码"
1664
+
1665
+ #: ../addons/coupons/myCRED-addon-coupons.php:158
1666
+ msgid "Coupon Code"
1667
+ msgstr "优惠券代码"
1668
+
1669
+ #: ../addons/coupons/myCRED-addon-coupons.php:159
1670
+ #: ../addons/coupons/myCRED-addon-coupons.php:347
1671
+ msgid "Value"
1672
+ msgstr ""
1673
+
1674
+ #: ../addons/coupons/myCRED-addon-coupons.php:160
1675
+ msgid "Used"
1676
+ msgstr "已用"
1677
+
1678
+ #: ../addons/coupons/myCRED-addon-coupons.php:161
1679
+ #: ../addons/transfer/myCRED-addon-transfer.php:259
1680
+ #: ../modules/mycred-module-hooks.php:1584
1681
+ #: ../modules/mycred-module-hooks.php:1875
1682
+ msgid "Limits"
1683
+ msgstr "限制"
1684
+
1685
+ #: ../addons/coupons/myCRED-addon-coupons.php:162
1686
+ msgid "Expires"
1687
+ msgstr "过期"
1688
+
1689
+ #: ../addons/coupons/myCRED-addon-coupons.php:165
1690
+ #: ../addons/coupons/myCRED-addon-coupons.php:354
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:814
1692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1031
1693
+ #: ../addons/gateway/carts/mycred-marketpress.php:389
1694
+ #: ../addons/gateway/carts/mycred-woocommerce.php:116
1695
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:354
1696
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:437
1697
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:504
1698
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:550
1699
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
1700
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
1701
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:411
1702
+ #: ../includes/importers/mycred-cubepoints.php:365
1703
+ #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390
1704
+ msgid "Point Type"
1705
+ msgstr "积分类型"
1706
+
1707
+ #: ../addons/coupons/myCRED-addon-coupons.php:193
1708
+ #: ../addons/coupons/myCRED-addon-coupons.php:461
1709
+ msgid "not yet used"
1710
+ msgstr "还没有使用"
1711
+
1712
+ #: ../addons/coupons/myCRED-addon-coupons.php:211
1713
+ #: ../includes/mycred-admin.php:395 ../modules/mycred-module-hooks.php:2316
1714
+ msgid "Total"
1715
+ msgstr "全部"
1716
+
1717
+ #: ../addons/coupons/myCRED-addon-coupons.php:211
1718
+ msgid "Per User"
1719
+ msgstr "每用户"
1720
+
1721
+ #: ../addons/coupons/myCRED-addon-coupons.php:219
1722
+ msgid "Never"
1723
+ msgstr "从不"
1724
+
1725
+ #: ../addons/coupons/myCRED-addon-coupons.php:223
1726
+ msgid "Expired"
1727
+ msgstr "过期"
1728
+
1729
+ #: ../addons/coupons/myCRED-addon-coupons.php:226
1730
+ #, php-format
1731
+ msgid "In %s time"
1732
+ msgstr "%s 次"
1733
+
1734
+ #: ../addons/coupons/myCRED-addon-coupons.php:279
1735
+ msgid "Coupon Setup"
1736
+ msgstr "优惠券设置"
1737
+
1738
+ #: ../addons/coupons/myCRED-addon-coupons.php:288
1739
+ msgid "Coupon Limits"
1740
+ msgstr "优惠券限制"
1741
+
1742
+ #: ../addons/coupons/myCRED-addon-coupons.php:297
1743
+ msgid "Coupon Requirements"
1744
+ msgstr "优惠券要求"
1745
+
1746
+ #: ../addons/coupons/myCRED-addon-coupons.php:307
1747
+ msgid "Usage"
1748
+ msgstr "用法"
1749
+
1750
+ #: ../addons/coupons/myCRED-addon-coupons.php:350
1751
+ msgid "The amount of %plural% this coupon is worth."
1752
+ msgstr "此优惠券价值的 %plural% 数量 。"
1753
+
1754
+ #: ../addons/coupons/myCRED-addon-coupons.php:359
1755
+ msgid "Select the point type that this coupon is applied."
1756
+ msgstr "选择此优惠券适用的积分类型。"
1757
+
1758
+ #: ../addons/coupons/myCRED-addon-coupons.php:369
1759
+ msgid "Expire"
1760
+ msgstr "到期"
1761
+
1762
+ #: ../addons/coupons/myCRED-addon-coupons.php:372
1763
+ msgid ""
1764
+ "Optional date when this coupon expires. Expired coupons will be trashed."
1765
+ msgstr "(可选)此优惠券过期的日期。过期的优惠券将被丢弃。"
1766
+
1767
+ #: ../addons/coupons/myCRED-addon-coupons.php:401
1768
+ msgid "Global Maximum"
1769
+ msgstr "全局最大次数"
1770
+
1771
+ #: ../addons/coupons/myCRED-addon-coupons.php:404
1772
+ msgid ""
1773
+ "The maximum number of times this coupon can be used. Note that the coupon "
1774
+ "will be automatically trashed once this maximum is reached!"
1775
+ msgstr ""
1776
+ "此优惠券可以使用的最大次数。请注意,一旦达到最大次数,该优惠券将自动丢弃!"
1777
+
1778
+ #: ../addons/coupons/myCRED-addon-coupons.php:408
1779
+ msgid "User Maximum"
1780
+ msgstr "用户最大次数"
1781
+
1782
+ #: ../addons/coupons/myCRED-addon-coupons.php:411
1783
+ msgid "The maximum number of times this coupon can be used by a user."
1784
+ msgstr "一个用户可使用改优惠券的最大次数。"
1785
+
1786
+ #: ../addons/coupons/myCRED-addon-coupons.php:440
1787
+ msgid ""
1788
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1789
+ "zero to disable."
1790
+ msgstr "可选的必须拥有最少余额的用户才能使用此优惠券。使用零则禁用。"
1791
+
1792
+ #: ../addons/coupons/myCRED-addon-coupons.php:443
1793
+ msgid "Maximum Balance"
1794
+ msgstr "最多余额"
1795
+
1796
+ #: ../addons/coupons/myCRED-addon-coupons.php:445
1797
+ msgid ""
1798
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1799
+ "zero to disable."
1800
+ msgstr "(可选)必须拥有最多余额的用户才能使用此优惠券。使用零则禁用。"
1801
+
1802
+ #: ../addons/coupons/myCRED-addon-coupons.php:506
1803
+ msgid ""
1804
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1805
+ "code."
1806
+ msgstr "成功返券的日志条目。使用 %coupon% 以显示优惠券代码。"
1807
+
1808
+ #: ../addons/coupons/myCRED-addon-coupons.php:509
1809
+ msgid "Invalid Coupon Message"
1810
+ msgstr "无效的优惠券信息"
1811
+
1812
+ #: ../addons/coupons/myCRED-addon-coupons.php:513
1813
+ msgid "Message to show when users try to use a coupon that does not exists."
1814
+ msgstr "当用户试图使用不存在的优惠券时显示的信息。"
1815
+
1816
+ #: ../addons/coupons/myCRED-addon-coupons.php:516
1817
+ msgid "Expired Coupon Message"
1818
+ msgstr "过期优惠券信息"
1819
+
1820
+ #: ../addons/coupons/myCRED-addon-coupons.php:520
1821
+ msgid "Message to show when users try to use that has expired."
1822
+ msgstr "当用户试图使用已过期的优惠券时显示的信息。"
1823
+
1824
+ #: ../addons/coupons/myCRED-addon-coupons.php:523
1825
+ msgid "User Limit Message"
1826
+ msgstr "用户限制信息"
1827
+
1828
+ #: ../addons/coupons/myCRED-addon-coupons.php:527
1829
+ msgid "Message to show when the user limit has been reached for the coupon."
1830
+ msgstr "当用户试图使用已达到限制的优惠券时显示的信息。"
1831
+
1832
+ #: ../addons/coupons/myCRED-addon-coupons.php:530
1833
+ msgid "Minimum Balance Message"
1834
+ msgstr "最少余额信息"
1835
+
1836
+ #: ../addons/coupons/myCRED-addon-coupons.php:534
1837
+ msgid ""
1838
+ "Message to show when a user does not meet the minimum balance requirement. "
1839
+ "(if used)"
1840
+ msgstr "当用户不符合最少余额要求时显示的信息。(如果使用)"
1841
+
1842
+ #: ../addons/coupons/myCRED-addon-coupons.php:537
1843
+ msgid "Maximum Balance Message"
1844
+ msgstr "最多余额信息"
1845
+
1846
+ #: ../addons/coupons/myCRED-addon-coupons.php:541
1847
+ msgid ""
1848
+ "Message to show when a user does not meet the maximum balance requirement. "
1849
+ "(if used)"
1850
+ msgstr "当用户不符合最多余额要求时显示的信息。(如果使用)"
1851
+
1852
+ #: ../addons/coupons/myCRED-addon-coupons.php:544
1853
+ msgid "Success Message"
1854
+ msgstr "成功信息"
1855
+
1856
+ #: ../addons/coupons/myCRED-addon-coupons.php:548
1857
+ msgid ""
1858
+ "Message to show when a coupon was successfully deposited to a users account."
1859
+ msgstr "当一个优惠券已成功存入一个用户帐户时显示的信息。"
1860
+
1861
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1862
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1267
1863
+ msgid "Email Notice"
1864
+ msgstr "邮件通知"
1865
+
1866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1867
+ msgid "Add New Notice"
1868
+ msgstr "添加新通知"
1869
+
1870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1871
+ msgid "Edit Notice"
1872
+ msgstr "编辑通知"
1873
+
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1875
+ msgid "New Notice"
1876
+ msgstr "新通知"
1877
+
1878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1879
+ msgid "View Notice"
1880
+ msgstr "查看通知"
1881
+
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1883
+ msgid "Search Email Notices"
1884
+ msgstr "搜索邮件通知"
1885
+
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1887
+ msgid "No email notices found"
1888
+ msgstr "没有邮件通知"
1889
+
1890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1891
+ msgid "No email notices found in Trash"
1892
+ msgstr "没有在回收站发现邮件通知"
1893
+
1894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1895
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:341
1896
+ #: ../includes/mycred-functions.php:587
1897
+ msgid "General"
1898
+ msgstr "常规"
1899
+
1900
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1901
+ msgid "users balance changes"
1902
+ msgstr "用户余额变化"
1903
+
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1905
+ msgid "user gains %_plural%"
1906
+ msgstr "用户收入 %_plural%"
1907
+
1908
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1909
+ msgid "user lose %_plural%"
1910
+ msgstr "用户支出 %_plural%"
1911
+
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1913
+ msgid "users balance reaches zero"
1914
+ msgstr "用户余额为零"
1915
+
1916
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:205
1917
+ msgid "users balance goes minus"
1918
+ msgstr "用户余额减去"
1919
+
1920
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1921
+ msgid "Badge Add-on"
1922
+ msgstr "勋章扩展"
1923
+
1924
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1925
+ msgid "user gains a badge"
1926
+ msgstr "用户获取一个勋章"
1927
+
1928
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1929
+ msgid "Sell Content Add-on"
1930
+ msgstr "出售内容扩展"
1931
+
1932
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1933
+ msgid "user buys content"
1934
+ msgstr "用户购买的内容"
1935
+
1936
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1937
+ msgid "authors content gets sold"
1938
+ msgstr "作者内容被出售"
1939
+
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:228
1941
+ msgid "buyCREDs Add-on"
1942
+ msgstr "buyCREDs 扩展"
1943
+
1944
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
1945
+ msgid "user buys %_plural%"
1946
+ msgstr "用户购买 %_plural%"
1947
+
1948
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1949
+ msgid "Transfer Add-on"
1950
+ msgstr "传输扩展"
1951
+
1952
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:237
1953
+ msgid "user sends %_plural%"
1954
+ msgstr "用户发送 %_plural%"
1955
+
1956
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
1957
+ msgid "user receives %_plural%"
1958
+ msgstr "用户收到 %_plural%"
1959
+
1960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:245
1961
+ msgid "Ranks Add-on"
1962
+ msgstr "排名扩展"
1963
+
1964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
1965
+ msgid "user is demoted"
1966
+ msgstr "用户被降级"
1967
+
1968
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
1969
+ msgid "user is promoted"
1970
+ msgstr "用户被提拔"
1971
+
1972
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:285
1973
+ msgid ""
1974
+ "Settings that apply to all email notices and can not be overridden for "
1975
+ "individual emails."
1976
+ msgstr "设置适用于所有的电子邮件通知,这些设置不能被单个电子邮件覆盖。"
1977
+
1978
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1979
+ msgid "Email Format"
1980
+ msgstr "邮件格式"
1981
+
1982
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1983
+ msgid "Plain text emails only."
1984
+ msgstr "只有纯文本的电子邮件。"
1985
+
1986
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1987
+ msgid "HTML or Plain text emails."
1988
+ msgstr "HTML或纯文本电子邮件。"
1989
+
1990
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297
1991
+ msgid "Filters"
1992
+ msgstr "过滤器"
1993
+
1994
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
1995
+ msgid ""
1996
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1997
+ "an email is sent."
1998
+ msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的主题。"
1999
+
2000
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2001
+ msgid ""
2002
+ "Allow WordPress and Third Party Plugins to filter the email content before "
2003
+ "an email is sent."
2004
+ msgstr "让 WordPress 和第三方插件在邮件被发送前过滤邮件的内容。"
2005
+
2006
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:310
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:316
2008
+ msgid "Email Schedule"
2009
+ msgstr "电子邮件日程"
2010
+
2011
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2012
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
2013
+ msgstr "WordPress Cron已被禁用,邮件将会被马上发送。"
2014
+
2015
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2016
+ msgid "Send emails immediately"
2017
+ msgstr "马上发送邮件"
2018
+
2019
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2020
+ msgid "Send emails once an hour"
2021
+ msgstr "每小时发送邮件"
2022
+
2023
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2024
+ msgid "Send emails once a day"
2025
+ msgstr "每天发送邮件"
2026
+
2027
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2028
+ msgid "Subscriptions"
2029
+ msgstr "订阅"
2030
+
2031
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2032
+ #, php-format
2033
+ msgid ""
2034
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2035
+ "updates."
2036
+ msgstr "使用短代码%s可允许用户订阅/不再订阅邮件更新。"
2037
+
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2039
+ msgid "SMTP Override"
2040
+ msgstr "SMTP重写"
2041
+
2042
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2043
+ msgid ""
2044
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2045
+ "use a SMTP plugin for emails."
2046
+ msgstr "SMTP 调试。如果您遇到wp_mail()问题或者您使用SMTP插件可启用此项。"
2047
+
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:345
2049
+ msgid ""
2050
+ "Default email settings. These settings can be individually overridden when "
2051
+ "editing emails."
2052
+ msgstr "默认的电子邮件设置。这些设置可以在编辑邮件时被单独覆盖。"
2053
+
2054
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:900
2056
+ msgid "Email Settings"
2057
+ msgstr "邮件设置"
2058
+
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:349
2060
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2061
+ msgid "Senders Name:"
2062
+ msgstr "发件人名称:"
2063
+
2064
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353
2065
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2066
+ msgid "Senders Email:"
2067
+ msgstr "发件人的邮箱:"
2068
+
2069
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2070
+ msgid "Reply-To:"
2071
+ msgstr "回复给:"
2072
+
2073
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2074
+ msgid "Default Email Content"
2075
+ msgstr "默认邮件内容"
2076
+
2077
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2078
+ msgid "Default email content."
2079
+ msgstr "默认邮件内容。"
2080
+
2081
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2082
+ msgid "Default Email Styling"
2083
+ msgstr "默认邮件样式"
2084
+
2085
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2086
+ msgid "Ignored if HTML is not allowed in emails."
2087
+ msgstr "如果邮件不允许使用HTML,请忽略。"
2088
+
2089
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2090
+ #, php-format
2091
+ msgctxt "Badge Title - Level 1,2,3.."
2092
+ msgid "%s - Level %d"
2093
+ msgstr "%s - 等级%d"
2094
+
2095
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809
2096
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:949
2097
+ msgid "Email Subject"
2098
+ msgstr "邮件主题"
2099
+
2100
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
2101
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499
2102
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:537
2103
+ #: ../mycred.php:761 ../mycred.php:782
2104
+ msgid "Setup"
2105
+ msgstr "设置"
2106
+
2107
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2108
+ msgid "Not Active"
2109
+ msgstr "没启用"
2110
+
2111
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2112
+ #, php-format
2113
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
2114
+ msgstr "预定:<br /><strong>%1$s</strong>"
2115
+
2116
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2117
+ msgid "Active"
2118
+ msgstr "状态"
2119
+
2120
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2121
+ #, php-format
2122
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
2123
+ msgstr "使用中 - 最后运行:<br /><strong>%1$s</strong>"
2124
+
2125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2126
+ msgid "Email is sent when"
2127
+ msgstr "发送邮件,当"
2128
+
2129
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2130
+ msgid "Missing instance for this notice!"
2131
+ msgstr "本通知缺少实例!"
2132
+
2133
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868
2135
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2136
+ msgid "Sent To"
2137
+ msgstr "发送给"
2138
+
2139
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866
2140
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1019
2141
+ #: ../includes/mycred-admin.php:754 ../includes/mycred-log.php:633
2142
+ #: ../modules/mycred-module-log.php:565
2143
+ msgid "User"
2144
+ msgstr "用户"
2145
+
2146
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868
2147
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1020
2148
+ msgid "Administrator"
2149
+ msgstr "管理员"
2150
+
2151
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2152
+ msgid "Both Administrator and User"
2153
+ msgstr "管理员和用户"
2154
+
2155
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880
2156
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1037
2157
+ msgid "All types"
2158
+ msgstr "全部类型"
2159
+
2160
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2161
+ msgid "Available Template Tags"
2162
+ msgstr "可用的模板标签"
2163
+
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2165
+ msgid "Email Header"
2166
+ msgstr "邮件头部"
2167
+
2168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2169
+ msgid "Send this email notice when..."
2170
+ msgstr "发送该邮件通知当..."
2171
+
2172
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2173
+ msgid "Recipient:"
2174
+ msgstr "收件人:"
2175
+
2176
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2177
+ msgid "Both"
2178
+ msgstr "两者"
2179
+
2180
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025
2181
+ #: ../addons/gateway/carts/mycred-woocommerce.php:156
2182
+ #: ../modules/mycred-module-settings.php:632
2183
+ #: ../modules/mycred-module-settings.php:651
2184
+ #: ../modules/mycred-module-settings.php:674
2185
+ msgid "Label"
2186
+ msgstr "标签"
2187
+
2188
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2189
+ msgid "Reply-To Email:"
2190
+ msgstr "回复给邮件:"
2191
+
2192
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2193
+ msgid "Save"
2194
+ msgstr "保存"
2195
+
2196
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2197
+ msgid "CSS Styling"
2198
+ msgstr "CSS样式"
2199
+
2200
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2201
+ msgid "Site Related"
2202
+ msgstr "网站相关"
2203
+
2204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2205
+ msgid "Your websites title"
2206
+ msgstr "您的网站标题"
2207
+
2208
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2209
+ msgid "Your websites address"
2210
+ msgstr "您的网站地址"
2211
+
2212
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2213
+ msgid "Your websites tagline (description)"
2214
+ msgstr "您的网站标语(介绍)"
2215
+
2216
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2217
+ msgid "Your websites admin email"
2218
+ msgstr "您的网站管理邮箱"
2219
+
2220
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2221
+ msgid "Total number of blog members"
2222
+ msgstr "博客成员总数"
2223
+
2224
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2225
+ msgid "The users new balance"
2226
+ msgstr "用户的新余额"
2227
+
2228
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2229
+ msgid "The users old balance"
2230
+ msgstr "用户的老余额"
2231
+
2232
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2233
+ msgid "The amount of points gained or lost in this instance"
2234
+ msgstr "该实例中用户获取或失去的积分数量"
2235
+
2236
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2237
+ msgid "The log entry"
2238
+ msgstr "该日志条目"
2239
+
2240
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178
2241
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1181
2242
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1187
2243
+ msgid "Email Notice Updated."
2244
+ msgstr "邮件通知已更新。"
2245
+
2246
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2247
+ msgid "Email Notice Activated"
2248
+ msgstr "邮件通知已激活"
2249
+
2250
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2251
+ msgid "Email Notice Saved"
2252
+ msgstr "邮件通知已保存"
2253
+
2254
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2255
+ msgid ""
2256
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
2257
+ "you are not yet ready to use this email notice!"
2258
+ msgstr ""
2259
+ "一旦通知 \"发布 \" 它将被激活!如果你还没有准备好要使用此邮件通知,请选择 "
2260
+ "\"保存草案 \"!"
2261
+
2262
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2263
+ #, php-format
2264
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2265
+ msgstr "该通知将被激活于:<br /><strong>%1$s</strong>"
2266
+
2267
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2268
+ msgid "This email notice is active."
2269
+ msgstr "此邮件通知已被激活。"
2270
+
2271
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2272
+ msgid "Settings saved."
2273
+ msgstr "设置已保存。"
2274
+
2275
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2276
+ msgid "Unsubscribe"
2277
+ msgstr "不再订阅"
2278
+
2279
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2280
+ msgid "There are no email notifications yet."
2281
+ msgstr "尚无邮件通知。"
2282
+
2283
+ #: ../addons/gateway/carts/mycred-marketpress.php:147
2284
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:277
2285
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:301
2286
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:412
2287
+ #: ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2288
+ msgid "Current Balance"
2289
+ msgstr "当前余额"
2290
+
2291
+ #: ../addons/gateway/carts/mycred-marketpress.php:151
2292
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:123
2293
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:281
2294
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:305
2295
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:416
2296
+ msgid "Total Cost"
2297
+ msgstr "所有花费"
2298
+
2299
+ #: ../addons/gateway/carts/mycred-marketpress.php:155
2300
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:285
2301
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:309
2302
+ msgid "Balance After Purchase"
2303
+ msgstr "购买后的余额"
2304
+
2305
+ #: ../addons/gateway/carts/mycred-marketpress.php:182
2306
+ #: ../addons/gateway/carts/mycred-marketpress.php:231
2307
+ msgid "Go Back"
2308
+ msgstr "返回"
2309
+
2310
+ #: ../addons/gateway/carts/mycred-marketpress.php:185
2311
+ msgid "will be deducted from your account."
2312
+ msgstr "将从您的账户中扣除。"
2313
+
2314
+ #: ../addons/gateway/carts/mycred-marketpress.php:221
2315
+ #, php-format
2316
+ msgid ""
2317
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2318
+ "<a href=\"%s\">select a different payment method</a>."
2319
+ msgstr ""
2320
+ "很抱歉,您不能使用此网关,因为您的帐户被排除在外。请<a href=\"%s\">选择不同的"
2321
+ "付款方式</ a>。"
2322
+
2323
+ #: ../addons/gateway/carts/mycred-marketpress.php:247
2324
+ msgid "Paid"
2325
+ msgstr "已支付"
2326
+
2327
+ #: ../addons/gateway/carts/mycred-marketpress.php:250
2328
+ #: ../addons/gateway/carts/mycred-woocommerce.php:29
2329
+ #: ../includes/mycred-network.php:50 ../includes/mycred-network.php:51
2330
+ msgid "myCRED"
2331
+ msgstr "myCRED"
2332
+
2333
+ #: ../addons/gateway/carts/mycred-marketpress.php:356
2334
+ msgid "%_singular% Balance"
2335
+ msgstr "%_singular% 余额"
2336
+
2337
+ #: ../addons/gateway/carts/mycred-marketpress.php:359
2338
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:27
2339
+ msgid "Payment for Order: #%order_id%"
2340
+ msgstr "付款订购:#%order_id%"
2341
+
2342
+ #: ../addons/gateway/carts/mycred-marketpress.php:362
2343
+ msgid "Product Sale: %post_title%"
2344
+ msgstr "产品销售:%post_title%"
2345
+
2346
+ #: ../addons/gateway/carts/mycred-marketpress.php:363
2347
+ msgid "Pay using your account balance."
2348
+ msgstr "使用您的帐户余额支付。"
2349
+
2350
+ #: ../addons/gateway/carts/mycred-marketpress.php:364
2351
+ msgid ""
2352
+ "TOTAL amount has been deducted from your account. Your current balance is: "
2353
+ "%balance_f%"
2354
+ msgstr "总金额已从您的帐户扣除。您当前的余额为: %balance_f%"
2355
+
2356
+ #: ../addons/gateway/carts/mycred-marketpress.php:365
2357
+ #: ../addons/gateway/carts/mycred-woocommerce.php:254
2358
+ msgid "Insufficient funds."
2359
+ msgstr "资金不足。"
2360
+
2361
+ #: ../addons/gateway/carts/mycred-marketpress.php:366
2362
+ msgid ""
2363
+ "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
2364
+ "%\">login</a>."
2365
+ msgstr ""
2366
+ "您必须先登录才能使用 %_plural% 支付,请 <a href=\"%login_url_here%\">登录</"
2367
+ "a>。"
2368
+
2369
+ #: ../addons/gateway/carts/mycred-marketpress.php:371
2370
+ #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
2371
+ #: ../includes/mycred-network.php:151 ../modules/mycred-module-settings.php:20
2372
+ #: ../modules/mycred-module-settings.php:21
2373
+ #: ../modules/mycred-module-settings.php:22 ../mycred.php:763
2374
+ msgid "Settings"
2375
+ msgstr "设置"
2376
+
2377
+ #: ../addons/gateway/carts/mycred-marketpress.php:373
2378
+ #, php-format
2379
+ msgid ""
2380
+ "Let your users pay for items in their shopping cart using their %s Account. "
2381
+ "Note! This gateway requires your users to be logged in when making a "
2382
+ "purchase!"
2383
+ msgstr ""
2384
+ "让你的用户使用他们的 %s 帐户支付购买购物车中的物品。注意,该网关需要用户在购"
2385
+ "买时先登录!"
2386
+
2387
+ #: ../addons/gateway/carts/mycred-marketpress.php:376
2388
+ msgid "Method Name"
2389
+ msgstr "方法名称"
2390
+
2391
+ #: ../addons/gateway/carts/mycred-marketpress.php:378
2392
+ msgid ""
2393
+ "Enter a public name for this payment method that is displayed to users - No "
2394
+ "HTML"
2395
+ msgstr "为这种付款方式输入公开名称,用于显示给用户 - 无HTML"
2396
+
2397
+ #: ../addons/gateway/carts/mycred-marketpress.php:383
2398
+ msgid "Gateway Logo URL"
2399
+ msgstr "网关 Logo 网址"
2400
+
2401
+ #: ../addons/gateway/carts/mycred-marketpress.php:404
2402
+ #: ../addons/gateway/carts/mycred-woocommerce.php:132
2403
+ msgid "How much is 1 %_singular% worth in %currency%?"
2404
+ msgstr "1 在 %currency% 中值多少 %_singular%?"
2405
+
2406
+ #: ../addons/gateway/carts/mycred-marketpress.php:409
2407
+ #: ../addons/gateway/carts/mycred-woocommerce.php:137
2408
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:360
2409
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:450
2410
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540
2411
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:578
2412
+ #: ../includes/mycred-shortcodes.php:977
2413
+ msgid "Exchange Rate"
2414
+ msgstr "汇率"
2415
+
2416
+ #: ../addons/gateway/carts/mycred-marketpress.php:418
2417
+ #: ../addons/gateway/carts/mycred-woocommerce.php:165
2418
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:364
2419
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:462
2420
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:531
2421
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:569
2422
+ msgid "Profit Sharing"
2423
+ msgstr "利润分享"
2424
+
2425
+ #: ../addons/gateway/carts/mycred-marketpress.php:421
2426
+ msgid "Percentage"
2427
+ msgstr "百分比"
2428
+
2429
+ #: ../addons/gateway/carts/mycred-marketpress.php:423
2430
+ #: ../addons/gateway/carts/mycred-woocommerce.php:167
2431
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:368
2432
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464
2433
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:534
2434
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:572
2435
+ msgid "Option to share sales with the product owner. Use zero to disable."
2436
+ msgstr "可选和产品所有者共享销售。使用零则禁用。"
2437
+
2438
+ #: ../addons/gateway/carts/mycred-marketpress.php:435
2439
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2440
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:607
2441
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:626
2442
+ msgid "Messages"
2443
+ msgstr "信息"
2444
+
2445
+ #: ../addons/gateway/carts/mycred-marketpress.php:438
2446
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:386
2447
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:617
2448
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:636
2449
+ #: ../plugins/mycred-hook-buddypress.php:247
2450
+ msgid "Insufficient Funds"
2451
+ msgstr "资金不足"
2452
+
2453
+ #: ../addons/gateway/carts/mycred-marketpress.php:440
2454
+ msgid "Message to show when the user can not use this gateway."
2455
+ msgstr "当用户不能使用此网关时显示的信息。"
2456
+
2457
+ #: ../addons/gateway/carts/mycred-marketpress.php:446
2458
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:382
2459
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:490
2460
+ msgid "Visitors"
2461
+ msgstr "访问者"
2462
+
2463
+ #: ../addons/gateway/carts/mycred-marketpress.php:448
2464
+ msgid "Message to show to buyers that are not logged in."
2465
+ msgstr "买家未登录时显示的信息。"
2466
+
2467
+ #: ../addons/gateway/carts/mycred-marketpress.php:454
2468
+ msgid "User Instructions"
2469
+ msgstr "使用说明"
2470
+
2471
+ #: ../addons/gateway/carts/mycred-marketpress.php:456
2472
+ msgid "Information to show users before payment."
2473
+ msgstr "用户付款前显示的信息。"
2474
+
2475
+ #: ../addons/gateway/carts/mycred-marketpress.php:462
2476
+ msgid "Confirmation Information"
2477
+ msgstr "确认信息"
2478
+
2479
+ #: ../addons/gateway/carts/mycred-marketpress.php:464
2480
+ msgid "Information to display on the order confirmation page. - HTML allowed"
2481
+ msgstr "显示在订单确认页面的信息 - 允许使用HTML"
2482
+
2483
+ #: ../addons/gateway/carts/mycred-marketpress.php:470
2484
+ msgid "Order Confirmation Email"
2485
+ msgstr "订单确认邮件"
2486
+
2487
+ #: ../addons/gateway/carts/mycred-marketpress.php:472
2488
+ #, php-format
2489
+ msgid ""
2490
+ "This is the email text to send to those who have made %s checkouts. It "
2491
+ "overrides the default order checkout email. These codes will be replaced "
2492
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2493
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2494
+ msgstr ""
2495
+ "这是电子邮件的文本,用来发给那些完成了 %s 结算的用户。它覆盖了默认的订单结算"
2496
+ "邮件。这些代码将被替代为订单详细信息:CUSTOMERNAME, ORDERID, ORDERINFO, "
2497
+ "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. 不允许使用 NTML 代码。"
2498
+
2499
+ #: ../addons/gateway/carts/mycred-woocommerce.php:30
2500
+ msgid "Let users pay using their myCRED balance."
2501
+ msgstr "让用户使用他们的 myCRED 余额付款。"
2502
+
2503
+ #: ../addons/gateway/carts/mycred-woocommerce.php:81
2504
+ msgid "Enable/Disable"
2505
+ msgstr "启用/禁用"
2506
+
2507
+ #: ../addons/gateway/carts/mycred-woocommerce.php:83
2508
+ msgid "Enable myCRED Payment"
2509
+ msgstr "启用 myCRED 付款"
2510
+
2511
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2512
+ msgid ""
2513
+ "Users who are not logged in or excluded from using myCRED will not have "
2514
+ "access to this gateway!"
2515
+ msgstr "没有登录或者被 myCRED 排除使用的用户将无法访问这个网关。"
2516
+
2517
+ #: ../addons/gateway/carts/mycred-woocommerce.php:90
2518
+ msgid "Title to show for this payment option."
2519
+ msgstr "此付款方式的标题。"
2520
+
2521
+ #: ../addons/gateway/carts/mycred-woocommerce.php:91
2522
+ msgid "Pay with myCRED"
2523
+ msgstr "使用 myCRED 支付"
2524
+
2525
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2526
+ msgid "Customer Message"
2527
+ msgstr "客户留言"
2528
+
2529
+ #: ../addons/gateway/carts/mycred-woocommerce.php:106
2530
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2531
+ msgid "Refund Log Template"
2532
+ msgstr "退款记录模板"
2533
+
2534
+ #: ../addons/gateway/carts/mycred-woocommerce.php:118
2535
+ msgid "Select the point type users can use to pay."
2536
+ msgstr "选择用户可以用来支付的积分类型。"
2537
+
2538
+ #: ../addons/gateway/carts/mycred-woocommerce.php:144
2539
+ msgid "Show Total"
2540
+ msgstr "显示所有"
2541
+
2542
+ #: ../addons/gateway/carts/mycred-woocommerce.php:146
2543
+ msgid "Show the final price in %_plural% ."
2544
+ msgstr "显示最后的价格在 %_plural% 。"
2545
+
2546
+ #: ../addons/gateway/carts/mycred-woocommerce.php:149
2547
+ msgid "Show in Cart"
2548
+ msgstr "在购物车里显示"
2549
+
2550
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2551
+ msgid "Show on Checkout Page"
2552
+ msgstr "在结帐页面上显示"
2553
+
2554
+ #: ../addons/gateway/carts/mycred-woocommerce.php:151
2555
+ msgid "Show in Cart and on Checkout Page"
2556
+ msgstr "在购物车及结帐页面上显示"
2557
+
2558
+ #: ../addons/gateway/carts/mycred-woocommerce.php:158
2559
+ msgid "Order Total in %_plural%"
2560
+ msgstr "%_plural% 上的订单总额"
2561
+
2562
+ #: ../addons/gateway/carts/mycred-woocommerce.php:174
2563
+ msgid "Log entry template for profit sharing."
2564
+ msgstr "利润分享日志条目模板。"
2565
+
2566
+ #: ../addons/gateway/carts/mycred-woocommerce.php:180
2567
+ msgid "Log entry template for refunds of profit shares."
2568
+ msgstr "分成退款记录项目模板。"
2569
+
2570
+ #: ../addons/gateway/carts/mycred-woocommerce.php:206
2571
+ msgid "myCRED Payment"
2572
+ msgstr "myCRED 付款"
2573
+
2574
+ #: ../addons/gateway/carts/mycred-woocommerce.php:207
2575
+ msgid ""
2576
+ "Allows users to pay using their myCRED %_singular% balance. Please note that "
2577
+ "users with insufficient funds and users who are not logged in will not see "
2578
+ "this payment gateway on the checkout page."
2579
+ msgstr ""
2580
+ "允许用户使用他们 myCRED %_singular% 的余额来支付。请注意,资金不足或者没有登"
2581
+ "录的用户是没办法在结帐页面上看到这个支付网关的。"
2582
+
2583
+ #: ../addons/gateway/carts/mycred-woocommerce.php:228
2584
+ msgid "You must be logged in to pay with %_plural%"
2585
+ msgstr "您必须登录后通过 %_plural% 进行支付。"
2586
+
2587
+ #: ../addons/gateway/carts/mycred-woocommerce.php:234
2588
+ msgid "You can not use this gateway. Please try a different payment option."
2589
+ msgstr "您无法使用此网关。请尝试其他付款方式。"
2590
+
2591
+ #: ../addons/gateway/carts/mycred-woocommerce.php:391
2592
+ msgid "Your account has successfully been charged."
2593
+ msgstr "您的帐户已充值成功。"
2594
+
2595
+ #: ../addons/gateway/carts/mycred-woocommerce.php:722
2596
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:131
2597
+ msgid "Your current balance"
2598
+ msgstr "您当前的余额"
2599
+
2600
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2601
+ msgid "Store sale"
2602
+ msgstr "商店销售"
2603
+
2604
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2605
+ msgid "You must be logged in to use this gateway"
2606
+ msgstr "您必须登录后才能使用这个网关"
2607
+
2608
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2609
+ msgid "Insufficient Funds."
2610
+ msgstr "资金不足。"
2611
+
2612
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2613
+ msgid "Deduct the amount from your balance."
2614
+ msgstr "从您的余额中扣除金额。"
2615
+
2616
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2617
+ msgid "You can not use this gateway."
2618
+ msgstr "您无法使用此网关。"
2619
+
2620
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:344
2621
+ msgid "Log Template for Payments"
2622
+ msgstr "付款日志模板"
2623
+
2624
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:361
2625
+ #, php-format
2626
+ msgid "How much is 1 %s worth in %s"
2627
+ msgstr "1 %s 在 %s 可以价值多少"
2628
+
2629
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:378
2630
+ msgid "Instructions"
2631
+ msgstr "说明"
2632
+
2633
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2634
+ msgid ""
2635
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2636
+ "to hide."
2637
+ msgstr "(可选)用户选择网关时显示这个说明。留空则隐藏。"
2638
+
2639
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2640
+ msgid "Message to show visitors who are not logged in."
2641
+ msgstr "给未登录用户显示的信息。"
2642
+
2643
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:387
2644
+ msgid ""
2645
+ "Message to show when users does not have enough %plural% to pay using this "
2646
+ "gateway."
2647
+ msgstr "当用户没有足够的 %plural% 使用这个网关进行支付时显示的信息。"
2648
+
2649
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2650
+ msgid "Payment for Event Registration"
2651
+ msgstr "支付活动报名"
2652
+
2653
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2654
+ #, php-format
2655
+ msgid "Activate %s"
2656
+ msgstr "激活 %s"
2657
+
2658
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2659
+ #, php-format
2660
+ msgid "Deactivate %s"
2661
+ msgstr "停用 %s"
2662
+
2663
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399
2664
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490
2665
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:524
2666
+ #, php-format
2667
+ msgid "How many %s is 1 %s worth?"
2668
+ msgstr "1 %s 可以价值多少 %s"
2669
+
2670
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2671
+ msgid "Gateways Settings Successfully Updated"
2672
+ msgstr "网关设置更新成功"
2673
+
2674
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415
2675
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:576
2676
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:602
2677
+ msgid "Labels"
2678
+ msgstr "标签"
2679
+
2680
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2681
+ msgid "Gateway Title"
2682
+ msgstr "网关标题"
2683
+
2684
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2685
+ msgid "Title to show on Payment page"
2686
+ msgstr "显示在付款页面的标题"
2687
+
2688
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2689
+ msgid "Payment Type"
2690
+ msgstr "付款方式"
2691
+
2692
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2693
+ msgid "Title to show on receipts and logs"
2694
+ msgstr "显示在收据和日志上的标题"
2695
+
2696
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428
2697
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:593
2698
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:619
2699
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:459
2700
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:686
2701
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:130
2702
+ msgid "Button Label"
2703
+ msgstr "按钮标签"
2704
+
2705
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2706
+ msgid "Pay Button"
2707
+ msgstr "支付按钮"
2708
+
2709
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447
2710
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:139
2711
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:142
2712
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:336
2713
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:339
2714
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:450
2715
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:682
2716
+ msgid "Price"
2717
+ msgstr "价格"
2718
+
2719
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
2720
+ msgid "Important!"
2721
+ msgstr "重要!"
2722
+
2723
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2724
+ msgid ""
2725
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
2726
+ "<code>mycred_no_sale</code>"
2727
+ msgstr ""
2728
+ "您可以通过添加自定义的Event Meta 禁止使用此网关采购:<code>mycred_no_sale</"
2729
+ "code>"
2730
+
2731
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2732
+ msgid "Users must be logged in to use this gateway!"
2733
+ msgstr "用户必须先登录才能使用此网关!"
2734
+
2735
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467
2736
+ #: ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2737
+ msgid "Log"
2738
+ msgstr "日志"
2739
+
2740
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470
2741
+ #: ../includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2742
+ msgid "Log Entry"
2743
+ msgstr "日志条目"
2744
+
2745
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477
2746
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:473
2747
+ msgid "Templates"
2748
+ msgstr "模板"
2749
+
2750
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2751
+ msgid "Solvent users"
2752
+ msgstr "资金充足的用户"
2753
+
2754
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2755
+ msgid ""
2756
+ "Message to show users on the payment page before they are charged. Leave "
2757
+ "empty to hide."
2758
+ msgstr "用户付款前在在付款页面上展示的信息。留空则隐藏。"
2759
+
2760
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2761
+ msgid "Insolvent users"
2762
+ msgstr "资不抵债的用户"
2763
+
2764
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2765
+ msgid "Message to show users who do not have enough points to pay."
2766
+ msgstr "用户没有足够的积分进行支付时显示的信息。"
2767
+
2768
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2769
+ msgid "Message to show visitors (users not logged in) on the payment page."
2770
+ msgstr "在付款页面显示给访客(未登录的用户)的信息。"
2771
+
2772
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
2773
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:29
2774
+ msgid "Payment for tickets to %link_with_title%"
2775
+ msgstr "为 %link_with_title% 购买门票"
2776
+
2777
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
2778
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:30
2779
+ msgid "Ticket refund for %link_with_title%"
2780
+ msgstr "为 %link_with_title% 退门票"
2781
+
2782
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
2783
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:34
2784
+ msgid "Pay using your %_plural% balance"
2785
+ msgstr "使用您的 %_plural% 余额进行支付"
2786
+
2787
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
2788
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:36
2789
+ msgid "Pay"
2790
+ msgstr "支付"
2791
+
2792
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2793
+ msgid "%plural% Cost"
2794
+ msgstr "%plural% 成本"
2795
+
2796
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
2797
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:39
2798
+ msgid "Thank you for your payment!"
2799
+ msgstr "感谢您的付款!"
2800
+
2801
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
2802
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:40
2803
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2804
+ msgstr "非常抱歉,您无法使用 %_plural% 来购买这些门票"
2805
+
2806
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:136
2807
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:333
2808
+ msgid "Ticket Type"
2809
+ msgstr "门票类型"
2810
+
2811
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:145
2812
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:342
2813
+ msgid "Spaces"
2814
+ msgstr "空间"
2815
+
2816
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
2817
+ msgid "Your Balance"
2818
+ msgstr "您的余额"
2819
+
2820
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
2821
+ msgid "You can not pay using this gateway."
2822
+ msgstr "您无法使用这个网关进行支付。"
2823
+
2824
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
2825
+ msgid "Reject"
2826
+ msgstr "拒绝"
2827
+
2828
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397
2829
+ #: ../modules/mycred-module-log.php:525
2830
+ #: ../modules/mycred-module-settings.php:636
2831
+ #: ../modules/mycred-module-settings.php:655
2832
+ msgid "Delete"
2833
+ msgstr "删除"
2834
+
2835
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
2836
+ msgid "Edit/View"
2837
+ msgstr "编辑/查看"
2838
+
2839
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:518
2840
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:542
2841
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2842
+ msgstr "禁用 - 用户无法使用 %plural% 购买门票。"
2843
+
2844
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:519
2845
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:543
2846
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
2847
+ msgstr "单一 - 用户只能使用 %plural% 购买门票。"
2848
+
2849
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
2850
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:544
2851
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2852
+ msgstr "多种 - 用户可以使用其他网关或 %plural% 购买门票。"
2853
+
2854
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:524
2855
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:557
2856
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:562
2857
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:595
2858
+ msgid "Refunds"
2859
+ msgstr "退款"
2860
+
2861
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2862
+ msgid ""
2863
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2864
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2865
+ msgstr ""
2866
+ "支付金额的百分比,如果用户取消预订。使用零则不退款。没有退款给\"拒绝\"预订!"
2867
+
2868
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
2869
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:585
2870
+ msgid "Log Templates"
2871
+ msgstr "日志模板"
2872
+
2873
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:550
2874
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:588
2875
+ msgid "Purchases"
2876
+ msgstr "购买"
2877
+
2878
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:579
2879
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:605
2880
+ msgid "Payment Link Label"
2881
+ msgstr "付款链接标签"
2882
+
2883
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:582
2884
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:608
2885
+ msgid ""
2886
+ "The payment link shows / hides the payment form under \"My Bookings\". No "
2887
+ "HTML allowed."
2888
+ msgstr "付款链接显示/隐藏付款表单在 \"我的预订\"下方。不允许HTML代码。"
2889
+
2890
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:586
2891
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:612
2892
+ msgid "Payment Header"
2893
+ msgstr "付款头部"
2894
+
2895
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:589
2896
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:615
2897
+ msgid "Shown on top of the payment form. No HTML allowed."
2898
+ msgstr "显示在付款表单上方。不允许HTML代码。"
2899
+
2900
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:596
2901
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:622
2902
+ msgid "The button label for payments. No HTML allowed!"
2903
+ msgstr "付款按钮的标签。不允许HTML代码!"
2904
+
2905
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
2906
+ msgid "Cart & Checkout Cost"
2907
+ msgstr "购物车&结算成本"
2908
+
2909
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
2910
+ msgid "Label for cost in %plural%"
2911
+ msgstr "%plural%的成本标签"
2912
+
2913
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:610
2914
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:629
2915
+ msgid "Successful Payments"
2916
+ msgstr "成功付款"
2917
+
2918
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:613
2919
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:620
2920
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:632
2921
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:639
2922
+ msgid "No HTML allowed!"
2923
+ msgstr "不允许 HTML 代码!"
2924
+
2925
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2926
+ msgid "Balance After Payment"
2927
+ msgstr "付款后的余额"
2928
+
2929
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2930
+ msgid "Click to toggle"
2931
+ msgstr "点击切换"
2932
+
2933
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2934
+ #, php-format
2935
+ msgid "%s Payments"
2936
+ msgstr "%s 付款"
2937
+
2938
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2939
+ msgid ""
2940
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2941
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2942
+ msgstr ""
2943
+ "支付金额的百分比来退款,如果预订被取消。使用零则不退款。没有退款给\"拒绝\"的"
2944
+ "预订。"
2945
+
2946
+ #: ../addons/notifications/myCRED-addon-notifications.php:193
2947
+ msgid "Notifications"
2948
+ msgstr "通知"
2949
+
2950
+ #: ../addons/notifications/myCRED-addon-notifications.php:195
2951
+ msgid "Styling"
2952
+ msgstr "样式"
2953
+
2954
+ #: ../addons/notifications/myCRED-addon-notifications.php:198
2955
+ msgid "Use the included CSS Styling for notifications."
2956
+ msgstr "使用内置的CSS样式的通知。"
2957
+
2958
+ #: ../addons/notifications/myCRED-addon-notifications.php:201
2959
+ #: ../addons/ranks/myCRED-addon-ranks.php:1417
2960
+ #: ../addons/ranks/myCRED-addon-ranks.php:1463
2961
+ #: ../modules/mycred-module-buddypress.php:428
2962
+ msgid "Template"
2963
+ msgstr "模板"
2964
+
2965
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
2966
+ msgid ""
2967
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
2968
+ msgstr "在通知中使用 %entry% 来显示日志条目,使用 %amount% 显示金额。"
2969
+
2970
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
2971
+ msgid "Restore to default"
2972
+ msgstr "恢复默认"
2973
+
2974
+ #: ../addons/notifications/myCRED-addon-notifications.php:208
2975
+ msgid "Transient Lifespan"
2976
+ msgstr "保存期"
2977
+
2978
+ #: ../addons/notifications/myCRED-addon-notifications.php:212
2979
+ msgid ""
2980
+ "The number of days a users notification is saved before being automatically "
2981
+ "deleted."
2982
+ msgstr "通知保存的天数,过期则自动删除。"
2983
+
2984
+ #: ../addons/notifications/myCRED-addon-notifications.php:215
2985
+ msgid "Duration"
2986
+ msgstr "时长"
2987
+
2988
+ #: ../addons/notifications/myCRED-addon-notifications.php:219
2989
+ msgid ""
2990
+ "Number of seconds before a notice is automatically removed after being shown "
2991
+ "to user. Use zero to disable."
2992
+ msgstr "一个提示在多少秒之后自动消失。使用0则禁用。"
2993
+
2994
+ #: ../addons/ranks/includes/mycred-rank-functions.php:257
2995
+ msgid "mycred_get_users_rank() : Missing required user id"
2996
+ msgstr "mycred_get_users_rank() : 缺失必要的用户ID"
2997
+
2998
+ #: ../addons/ranks/includes/mycred-rank-functions.php:270
2999
+ msgid "no rank"
3000
+ msgstr "没有排名"
3001
+
3002
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115
3003
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:202
3004
+ msgid "No users found with this rank"
3005
+ msgstr "没有任何用户在这个等级中"
3006
+
3007
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3008
+ #: ../includes/mycred-shortcodes.php:525
3009
+ msgid "error"
3010
+ msgstr "错误"
3011
+
3012
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3013
+ msgid "Rank ID is required!"
3014
+ msgstr "等级ID是必需的!"
3015
+
3016
+ #: ../addons/ranks/myCRED-addon-ranks.php:211
3017
+ #: ../addons/ranks/myCRED-addon-ranks.php:212
3018
+ #: ../addons/ranks/myCRED-addon-ranks.php:440
3019
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3020
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3021
+ #: ../addons/ranks/myCRED-addon-ranks.php:831
3022
+ #: ../addons/ranks/myCRED-addon-ranks.php:1299
3023
+ #: ../addons/ranks/myCRED-addon-ranks.php:1590
3024
+ msgid "Ranks"
3025
+ msgstr "等级"
3026
+
3027
+ #: ../addons/ranks/myCRED-addon-ranks.php:422
3028
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
3029
+ msgstr "警告!所有排名将被删除!此操作无法撤消!"
3030
+
3031
+ #: ../addons/ranks/myCRED-addon-ranks.php:423
3032
+ msgid "Are you sure you want to re-assign user ranks?"
3033
+ msgstr "您确定要重新分配用户排名?"
3034
+
3035
+ #: ../addons/ranks/myCRED-addon-ranks.php:438
3036
+ #, php-format
3037
+ msgid "Ranks for %s"
3038
+ msgstr "%s的级别"
3039
+
3040
+ #: ../addons/ranks/myCRED-addon-ranks.php:444
3041
+ #: ../addons/ranks/myCRED-addon-ranks.php:831
3042
+ msgid "Rank"
3043
+ msgstr "等级"
3044
+
3045
+ #: ../addons/ranks/myCRED-addon-ranks.php:446
3046
+ msgid "Add New Rank"
3047
+ msgstr "添加新等级"
3048
+
3049
+ #: ../addons/ranks/myCRED-addon-ranks.php:447
3050
+ msgid "Edit Rank"
3051
+ msgstr "编辑等级"
3052
+
3053
+ #: ../addons/ranks/myCRED-addon-ranks.php:448
3054
+ msgid "New Rank"
3055
+ msgstr "新等级"
3056
+
3057
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3058
+ msgid "View Rank"
3059
+ msgstr "查看等级"
3060
+
3061
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3062
+ msgid "Search Ranks"
3063
+ msgstr "搜索等级"
3064
+
3065
+ #: ../addons/ranks/myCRED-addon-ranks.php:452
3066
+ msgid "No ranks found"
3067
+ msgstr "没有等级"
3068
+
3069
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3070
+ msgid "No ranks found in Trash"
3071
+ msgstr "回收站里没有等级"
3072
+
3073
+ #: ../addons/ranks/myCRED-addon-ranks.php:537
3074
+ #, php-format
3075
+ msgid "Completed - Total of %d users effected"
3076
+ msgstr "完成 - 总计 %d 位用户受影响"
3077
+
3078
+ #: ../addons/ranks/myCRED-addon-ranks.php:975
3079
+ #: ../addons/ranks/myCRED-addon-ranks.php:976
3080
+ #: ../addons/ranks/myCRED-addon-ranks.php:977
3081
+ #: ../addons/ranks/myCRED-addon-ranks.php:978
3082
+ #: ../addons/ranks/myCRED-addon-ranks.php:979
3083
+ #: ../addons/ranks/myCRED-addon-ranks.php:980
3084
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3085
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3086
+ msgid "Rank Updated."
3087
+ msgstr "级别已更新。"
3088
+
3089
+ #: ../addons/ranks/myCRED-addon-ranks.php:981
3090
+ msgid "Rank Enabled"
3091
+ msgstr "级别已启用"
3092
+
3093
+ #: ../addons/ranks/myCRED-addon-ranks.php:982
3094
+ msgid "Rank Saved"
3095
+ msgstr "等级已保存"
3096
+
3097
+ #: ../addons/ranks/myCRED-addon-ranks.php:1019
3098
+ #, php-format
3099
+ msgid "<strong>Rank:</strong> %s"
3100
+ msgstr "<strong>级别:</strong> %s"
3101
+
3102
+ #: ../addons/ranks/myCRED-addon-ranks.php:1035
3103
+ #: ../addons/ranks/myCRED-addon-ranks.php:1116
3104
+ msgid "Rank Title"
3105
+ msgstr "等级标题"
3106
+
3107
+ #: ../addons/ranks/myCRED-addon-ranks.php:1036
3108
+ msgid "Logo"
3109
+ msgstr "Logo"
3110
+
3111
+ #: ../addons/ranks/myCRED-addon-ranks.php:1037
3112
+ msgid "Requirement"
3113
+ msgstr "条件"
3114
+
3115
+ #: ../addons/ranks/myCRED-addon-ranks.php:1062
3116
+ msgid "No Logo Set"
3117
+ msgstr "还没设置Logo"
3118
+
3119
+ #: ../addons/ranks/myCRED-addon-ranks.php:1077
3120
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082
3121
+ msgid "Any Value"
3122
+ msgstr "任何值"
3123
+
3124
+ #: ../addons/ranks/myCRED-addon-ranks.php:1084
3125
+ msgid "Maximum %plural%"
3126
+ msgstr "最大 %plural%"
3127
+
3128
+ #: ../addons/ranks/myCRED-addon-ranks.php:1129
3129
+ msgid "Rank Settings"
3130
+ msgstr "等级设置"
3131
+
3132
+ #: ../addons/ranks/myCRED-addon-ranks.php:1182
3133
+ msgid "Minimum %plural% to reach this rank"
3134
+ msgstr "达到这个等级的最小 %plural%"
3135
+
3136
+ #: ../addons/ranks/myCRED-addon-ranks.php:1186
3137
+ msgid "Maximum %plural% to be included in this rank"
3138
+ msgstr "包含在这个等级的最大 %plural%"
3139
+
3140
+ #: ../addons/ranks/myCRED-addon-ranks.php:1204
3141
+ msgid "All Published Ranks"
3142
+ msgstr "所有已发布的等级"
3143
+
3144
+ #: ../addons/ranks/myCRED-addon-ranks.php:1214
3145
+ #: ../addons/ranks/myCRED-addon-ranks.php:1216
3146
+ msgid "Not Set"
3147
+ msgstr "还没设置"
3148
+
3149
+ #: ../addons/ranks/myCRED-addon-ranks.php:1222
3150
+ msgid "No Ranks found"
3151
+ msgstr "没有等级"
3152
+
3153
+ #: ../addons/ranks/myCRED-addon-ranks.php:1304
3154
+ msgid "Rank Features"
3155
+ msgstr "等级特色"
3156
+
3157
+ #: ../addons/ranks/myCRED-addon-ranks.php:1308
3158
+ msgid "%plural% requirement"
3159
+ msgstr "%plural% 条件"
3160
+
3161
+ #: ../addons/ranks/myCRED-addon-ranks.php:1309
3162
+ msgid "Featured Image (Logo)"
3163
+ msgstr "特色图像(Logo)"
3164
+
3165
+ #: ../addons/ranks/myCRED-addon-ranks.php:1311
3166
+ msgid "Content"
3167
+ msgstr "内容"
3168
+
3169
+ #: ../addons/ranks/myCRED-addon-ranks.php:1313
3170
+ msgid "Excerpt"
3171
+ msgstr "摘要"
3172
+
3173
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3174
+ msgid "Comments"
3175
+ msgstr "评论"
3176
+
3177
+ #: ../addons/ranks/myCRED-addon-ranks.php:1317
3178
+ msgid "Page Attributes"
3179
+ msgstr "页面属性"
3180
+
3181
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3182
+ msgid "Custom Fields"
3183
+ msgstr "自定义字段"
3184
+
3185
+ #: ../addons/ranks/myCRED-addon-ranks.php:1323
3186
+ msgid "Public"
3187
+ msgstr "公开"
3188
+
3189
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
3190
+ msgid ""
3191
+ "If you want to create a template archive for each rank, you must select to "
3192
+ "have ranks public. Defaults to disabled."
3193
+ msgstr ""
3194
+ "如果你想为每个等级创建一个模板存档,你必须选择这个选项公开等级。默认设置为禁"
3195
+ "用。"
3196
+
3197
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3198
+ msgid "Archive URL"
3199
+ msgstr "存档网址"
3200
+
3201
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3202
+ msgid "Ignored if Ranks are not public"
3203
+ msgstr "如果排名是不公开的,就忽略"
3204
+
3205
+ #: ../addons/ranks/myCRED-addon-ranks.php:1337
3206
+ msgid "Display Order"
3207
+ msgstr "显示顺序"
3208
+
3209
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3210
+ msgid "Ascending - Lowest rank to highest"
3211
+ msgstr "递增 - 最低排名到最高"
3212
+
3213
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
3214
+ msgid "Descending - Highest rank to lowest"
3215
+ msgstr "递减 - 最高排名到最低"
3216
+
3217
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3218
+ msgid ""
3219
+ "Select in what order ranks should be displayed in your admin area and/or "
3220
+ "front if ranks are \"Public\""
3221
+ msgstr "选择要显示在您的管理后台,或前台(如果排名是\"公开的\")的排名顺序。"
3222
+
3223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1363
3224
+ msgid "Rank Basis"
3225
+ msgstr "排名依据"
3226
+
3227
+ #: ../addons/ranks/myCRED-addon-ranks.php:1366
3228
+ msgid "Users are ranked according to their current balance."
3229
+ msgstr "根据用户当前余额进行排名。"
3230
+
3231
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
3232
+ msgid ""
3233
+ "Users are ranked according to the total amount of %_plural% they have "
3234
+ "accumulated."
3235
+ msgstr "根据用户已经积累的 %_plural% 总量进行排名。"
3236
+
3237
+ #: ../addons/ranks/myCRED-addon-ranks.php:1373
3238
+ #: ../addons/ranks/myCRED-addon-ranks.php:1378
3239
+ msgid "Calculate Totals"
3240
+ msgstr "计算汇总"
3241
+
3242
+ #: ../addons/ranks/myCRED-addon-ranks.php:1376
3243
+ msgid ""
3244
+ "Use this button to calculate or recalculate your users totals. If not used, "
3245
+ "the users current balance will be used as a starting point."
3246
+ msgstr ""
3247
+ "使用此按钮可以计算或者重新计算用户的总额。如果不用,用户当前的余额将会作为初"
3248
+ "始积分值。"
3249
+
3250
+ #: ../addons/ranks/myCRED-addon-ranks.php:1376
3251
+ msgid ""
3252
+ "Once a users total has been calculated, they will be assigned to their "
3253
+ "appropriate roles. For this reason, it is highly recommended that you first "
3254
+ "setup your ranks!"
3255
+ msgstr ""
3256
+ "一旦用户人数已经算出,他们将被分配给相应的角色。出于这个原因,我们强烈建议您"
3257
+ "先设置你的排名!"
3258
+
3259
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3260
+ msgid ""
3261
+ "Depending on your log size and number of users this process may take a "
3262
+ "while. Please do not leave, click \"Update Settings\" or re-fresh this page "
3263
+ "until this is completed!"
3264
+ msgstr ""
3265
+ "根据你的日志大小和用户数量,这一过程可能需要一段时间。请不要离开、单击\"更新"
3266
+ "设置\"或刷新此页面,直到这项工作完成!"
3267
+
3268
+ #: ../addons/ranks/myCRED-addon-ranks.php:1394
3269
+ #: ../addons/ranks/myCRED-addon-ranks.php:1440
3270
+ #: ../modules/mycred-module-buddypress.php:391
3271
+ msgid "Do not show."
3272
+ msgstr "不显示。"
3273
+
3274
+ #: ../addons/ranks/myCRED-addon-ranks.php:1395
3275
+ msgid "Include in Profile Header."
3276
+ msgstr "包括在个人资料头部。"
3277
+
3278
+ #: ../addons/ranks/myCRED-addon-ranks.php:1397
3279
+ msgid "Include under the \"Profile\" tab and Profile Header."
3280
+ msgstr "包括在\"个人资料\"TAB下面和个人资料头部。"
3281
+
3282
+ #: ../addons/ranks/myCRED-addon-ranks.php:1402
3283
+ msgid "Rank in BuddyPress"
3284
+ msgstr "BuddyPress的积分排名"
3285
+
3286
+ #: ../addons/ranks/myCRED-addon-ranks.php:1419
3287
+ #: ../addons/ranks/myCRED-addon-ranks.php:1465
3288
+ msgid ""
3289
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3290
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3291
+ msgstr ""
3292
+ "在BuddyPress中显示用户级别的模板。使用%rank_title% 显示级别名称使用%rank_logo"
3293
+ "%显示级别Logo。"
3294
+
3295
+ #: ../addons/ranks/myCRED-addon-ranks.php:1441
3296
+ msgid "Include in Topic Replies"
3297
+ msgstr "包含于话题回复"
3298
+
3299
+ #: ../addons/ranks/myCRED-addon-ranks.php:1443
3300
+ msgid "Include in Topic Replies and Profile"
3301
+ msgstr "包含于话题回复和资料页"
3302
+
3303
+ #: ../addons/ranks/myCRED-addon-ranks.php:1448
3304
+ msgid "Rank in bbPress"
3305
+ msgstr "bbPress中的级别"
3306
+
3307
+ #: ../addons/ranks/myCRED-addon-ranks.php:1528
3308
+ msgid "Script Communication Error"
3309
+ msgstr "脚本通讯错误"
3310
+
3311
+ #: ../addons/ranks/myCRED-addon-ranks.php:1593
3312
+ #: ../modules/mycred-module-settings.php:596
3313
+ msgid "User Meta Key"
3314
+ msgstr "用户Meta键"
3315
+
3316
+ #: ../addons/ranks/myCRED-addon-ranks.php:1597
3317
+ msgid "No. of ranks"
3318
+ msgstr "等级数量"
3319
+
3320
+ #: ../addons/ranks/myCRED-addon-ranks.php:1602
3321
+ msgid "Remove All Ranks"
3322
+ msgstr "移除所有等级"
3323
+
3324
+ #: ../addons/ranks/myCRED-addon-ranks.php:1602
3325
+ msgid "Assign Ranks to Users"
3326
+ msgstr "分配等级给用户"
3327
+
3328
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:74
3329
+ msgid "Hours"
3330
+ msgstr "小时"
3331
+
3332
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:111
3333
+ msgid "Profit Share"
3334
+ msgstr "利润分享"
3335
+
3336
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:119
3337
+ msgid "Save Profit Share"
3338
+ msgstr "保存利润分享"
3339
+
3340
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3341
+ msgid "Profit Share override saved"
3342
+ msgstr "利润分享重写已保存"
3343
+
3344
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3345
+ msgid "You can not buy this content."
3346
+ msgstr "你无法购买这个内容。"
3347
+
3348
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3349
+ msgid "Error. Try Again"
3350
+ msgstr "错误,请重试"
3351
+
3352
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3353
+ msgid "No Payout. Just charge."
3354
+ msgstr "不支付,只是充值。"
3355
+
3356
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3357
+ msgid "Pay Content Author."
3358
+ msgstr "支付内容作者。"
3359
+
3360
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:401
3361
+ #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148
3362
+ msgid "Sell Content"
3363
+ msgstr "销售内容"
3364
+
3365
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3366
+ msgid "Post Types"
3367
+ msgstr "文章类型"
3368
+
3369
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3370
+ msgid "Comma separated list of post types that can be sold."
3371
+ msgstr "用逗号分隔的可以出售的文章类型列表。"
3372
+
3373
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3374
+ msgid "Percentage to pay Author"
3375
+ msgstr "支付作者的百分比"
3376
+
3377
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3378
+ msgid ""
3379
+ "Percentage of the price to pay the author. Can not be zero and is ignored if "
3380
+ "authors are not paid."
3381
+ msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3382
+
3383
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3384
+ msgid "Defaults"
3385
+ msgstr "默认"
3386
+
3387
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3388
+ msgid "Allow authors to change price."
3389
+ msgstr "允许作者更改价格。"
3390
+
3391
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3392
+ msgid "Allow authors to change button label."
3393
+ msgstr "允许作者更改按钮标签。"
3394
+
3395
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3396
+ msgid "Purchases expire after"
3397
+ msgstr "多久后购买过期"
3398
+
3399
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3400
+ msgid "Use zero for permanent sales."
3401
+ msgstr "使用零永久销售。"
3402
+
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3404
+ msgid "For Visitors"
3405
+ msgstr "为访客"
3406
+
3407
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3408
+ msgid ""
3409
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3410
+ "be logged in to buy content!"
3411
+ msgstr ""
3412
+ "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内"
3413
+ "容!"
3414
+
3415
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3416
+ msgid "For Members"
3417
+ msgstr "为用户"
3418
+
3419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:501
3420
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:516
3421
+ msgid "Your template must contain the %buy_button% tag for purchases to work!"
3422
+ msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3423
+
3424
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3425
+ msgid "For members that can not afford to buy"
3426
+ msgstr "为买不起的会员"
3427
+
3428
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3429
+ msgid "Log template for Purchases"
3430
+ msgstr "用于购买的日志模板"
3431
+
3432
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3433
+ msgid "Log template for Sales"
3434
+ msgstr "用于销售的日志模板"
3435
+
3436
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3437
+ #, php-format
3438
+ msgid "%s Sell This"
3439
+ msgstr "%s 销售这个"
3440
+
3441
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3442
+ #, php-format
3443
+ msgid "%s Sell Content needs to be setup before you can use this feature."
3444
+ msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3445
+
3446
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3447
+ msgid "Setup add-on"
3448
+ msgstr "设置扩展"
3449
+
3450
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3451
+ msgid "Lets do it"
3452
+ msgstr "让我们开始吧"
3453
+
3454
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3455
+ #, php-format
3456
+ msgid "Enable sale of this %s"
3457
+ msgstr "售卖此 %s"
3458
+
3459
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3460
+ msgid "Purchase expires after"
3461
+ msgstr "多久后购买过期"
3462
+
3463
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3464
+ msgid "Thank you for your purchase!"
3465
+ msgstr "非常感谢您的购买!"
3466
+
3467
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1104
3468
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1190
3469
+ msgid "The following content is set for sale:"
3470
+ msgstr "下面的内容是设置来销售的:"
3471
+
3472
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3473
+ msgid "Purchased"
3474
+ msgstr "购买"
3475
+
3476
+ #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3477
+ #: ../includes/importers/mycred-balances.php:181
3478
+ #: ../includes/importers/mycred-cubepoints.php:293
3479
+ #: ../includes/importers/mycred-log-entries.php:148
3480
+ msgid "View Log"
3481
+ msgstr "查看日志"
3482
+
3483
+ #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105
3484
+ #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26
3485
+ #: ../modules/mycred-module-hooks.php:27
3486
+ msgid "Hooks"
3487
+ msgstr "钩子"
3488
+
3489
+ #: ../addons/stats/myCRED-addon-stats.php:54
3490
+ msgid "Statistics"
3491
+ msgstr "分析"
3492
+
3493
+ #: ../addons/stats/myCRED-addon-stats.php:126
3494
+ msgid "Overview"
3495
+ msgstr "概览"
3496
+
3497
+ #: ../addons/stats/myCRED-addon-stats.php:192
3498
+ msgid "Refresh"
3499
+ msgstr "刷新"
3500
+
3501
+ #: ../addons/stats/myCRED-addon-stats.php:248
3502
+ msgid "Your log is empty. No statistics can be shown."
3503
+ msgstr "您的记录为空。没有统计可显示。"
3504
+
3505
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
3506
+ #, php-format
3507
+ msgid "Total %s:"
3508
+ msgstr "共计%s:"
3509
+
3510
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:136
3511
+ #: ../includes/mycred-overview.php:78
3512
+ msgid "Total amount in circulation"
3513
+ msgstr "在流通的总金额"
3514
+
3515
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
3516
+ #, php-format
3517
+ msgid "Total amount of %s in circulation"
3518
+ msgstr "%s的流通总量"
3519
+
3520
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
3521
+ msgid "Total gains (%)"
3522
+ msgstr "共获取 (%)"
3523
+
3524
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
3525
+ msgid "Total loses (%)"
3526
+ msgstr "共失去 (%)"
3527
+
3528
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3529
+ #, php-format
3530
+ msgid "Total Gained: %s"
3531
+ msgstr "共获得: %s"
3532
+
3533
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3534
+ #, php-format
3535
+ msgid "Total Spent: %s"
3536
+ msgstr "共花去: %s"
3537
+
3538
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189
3539
+ #: ../includes/mycred-log.php:837 ../modules/mycred-module-buddypress.php:222
3540
+ msgid "Today"
3541
+ msgstr "今天"
3542
+
3543
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190
3544
+ #: ../includes/mycred-log.php:839 ../modules/mycred-module-buddypress.php:224
3545
+ msgid "This Week"
3546
+ msgstr "本周"
3547
+
3548
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191
3549
+ #: ../includes/mycred-log.php:840 ../modules/mycred-module-buddypress.php:225
3550
+ msgid "This Month"
3551
+ msgstr "本月"
3552
+
3553
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
3554
+ msgid "This Year"
3555
+ msgstr "这一年"
3556
+
3557
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196
3558
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198
3559
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:200
3560
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:202
3561
+ msgid "Gained"
3562
+ msgstr "获得"
3563
+
3564
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197
3565
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:199
3566
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:201
3567
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:203
3568
+ msgid "Lost"
3569
+ msgstr "失去"
3570
+
3571
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
3572
+ msgid "Most common ways your users have gained points during this period."
3573
+ msgstr "您的用户在此时段最常见的积分获取方式。"
3574
+
3575
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
3576
+ msgid "Most common ways your users have gained %_plural% during this period."
3577
+ msgstr "您的用户在此时段最常见的获取%_plural% 的方式。"
3578
+
3579
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
3580
+ msgid "Gains in the last 10 days"
3581
+ msgstr "最近10天获得"
3582
+
3583
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152
3584
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3585
+ msgid "View"
3586
+ msgstr "查看"
3587
+
3588
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167
3589
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3590
+ msgid "No data found"
3591
+ msgstr "没有找到数据"
3592
+
3593
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
3594
+ msgid ""
3595
+ "Most common ways your users have lost or spent points during this period."
3596
+ msgstr "您的用户在此时段最常的积分消费见方式。"
3597
+
3598
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
3599
+ msgid ""
3600
+ "Most common ways your users have lost or spent %_plural% during this period."
3601
+ msgstr "您的用户在此时段最常见的消费%_plural%的方式。"
3602
+
3603
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
3604
+ msgid "Loses in the last 10 days"
3605
+ msgstr "最近10天失去"
3606
+
3607
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
3608
+ msgid "username"
3609
+ msgstr "用户名"
3610
+
3611
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
3612
+ msgid "email"
3613
+ msgstr "邮箱"
3614
+
3615
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
3616
+ #, php-format
3617
+ msgid "recipients %s"
3618
+ msgstr "接收人 %s"
3619
+
3620
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3621
+ msgid "To:"
3622
+ msgstr "给:"
3623
+
3624
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3625
+ msgid "Amount:"
3626
+ msgstr "数目:"
3627
+
3628
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:20
3629
+ msgid "Allow transfers between users."
3630
+ msgstr "允许用户之间转让。"
3631
+
3632
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:23
3633
+ #, php-format
3634
+ msgid "(%s) Transfer"
3635
+ msgstr "(%s) 转让"
3636
+
3637
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:40
3638
+ msgid "The myCRED Transfer add-on has not yet been setup!"
3639
+ msgstr "myCRED 转让扩展还没有设置!"
3640
+
3641
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:123
3642
+ msgid "Show users balance"
3643
+ msgstr "显示用户余额"
3644
+
3645
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:127
3646
+ msgid "Show users limit"
3647
+ msgstr "显示用户限制"
3648
+
3649
+ #: ../addons/transfer/myCRED-addon-transfer.php:44
3650
+ msgid "You do not have enough %plural% to send."
3651
+ msgstr "你没有足够的 %plural% 发送。"
3652
+
3653
+ #: ../addons/transfer/myCRED-addon-transfer.php:45
3654
+ msgid "You have exceeded your %limit% transfer limit."
3655
+ msgstr "您已超出您的 %limit% 转账限额。"
3656
+
3657
+ #: ../addons/transfer/myCRED-addon-transfer.php:51
3658
+ #: ../includes/mycred-functions.php:2446
3659
+ msgid "Transfer"
3660
+ msgstr "转账"
3661
+
3662
+ #: ../addons/transfer/myCRED-addon-transfer.php:154
3663
+ msgid "Transaction completed."
3664
+ msgstr "交易完成。"
3665
+
3666
+ #: ../addons/transfer/myCRED-addon-transfer.php:155
3667
+ msgid ""
3668
+ "Security token could not be verified. Please contact your site administrator!"
3669
+ msgstr "安全令牌无法验证。请与网站管理员联系!"
3670
+
3671
+ #: ../addons/transfer/myCRED-addon-transfer.php:156
3672
+ msgid "Communications error. Please try again later."
3673
+ msgstr "通信错误。请稍后再试。"
3674
+
3675
+ #: ../addons/transfer/myCRED-addon-transfer.php:157
3676
+ msgid "Recipient not found. Please try again."
3677
+ msgstr "没有找到收件人。请再试一次。"
3678
+
3679
+ #: ../addons/transfer/myCRED-addon-transfer.php:158
3680
+ msgid "Transaction declined by recipient."
3681
+ msgstr "交易被收件人拒绝了。"
3682
+
3683
+ #: ../addons/transfer/myCRED-addon-transfer.php:159
3684
+ msgid "Incorrect amount. Please try again."
3685
+ msgstr "金额不正确。请再试一次。"
3686
+
3687
+ #: ../addons/transfer/myCRED-addon-transfer.php:160
3688
+ msgid ""
3689
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3690
+ "this has been done!"
3691
+ msgstr "这个 myCRED 扩展还没有进行设置!在完成设置前,任何转账都是不允许的!"
3692
+
3693
+ #: ../addons/transfer/myCRED-addon-transfer.php:161
3694
+ #: ../includes/mycred-functions.php:2574
3695
+ msgid "Insufficient Funds. Please try a lower amount."
3696
+ msgstr "资金不足。请尝试较低的数额。"
3697
+
3698
+ #: ../addons/transfer/myCRED-addon-transfer.php:162
3699
+ msgid "Transfer Limit exceeded."
3700
+ msgstr "超出转账限额。"
3701
+
3702
+ #: ../addons/transfer/myCRED-addon-transfer.php:189
3703
+ msgid "No limits."
3704
+ msgstr "没有限制。"
3705
+
3706
+ #: ../addons/transfer/myCRED-addon-transfer.php:190
3707
+ msgid "Impose daily limit."
3708
+ msgstr "每日强加限制。"
3709
+
3710
+ #: ../addons/transfer/myCRED-addon-transfer.php:191
3711
+ msgid "Impose weekly limit."
3712
+ msgstr "每周强加限制。"
3713
+
3714
+ #: ../addons/transfer/myCRED-addon-transfer.php:198
3715
+ msgid "User Login (user_login)"
3716
+ msgstr "用户名 (user_login)"
3717
+
3718
+ #: ../addons/transfer/myCRED-addon-transfer.php:199
3719
+ msgid "User Email (user_email)"
3720
+ msgstr "用户邮箱(user_email)"
3721
+
3722
+ #: ../addons/transfer/myCRED-addon-transfer.php:207
3723
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127
3724
+ msgid "Transfers"
3725
+ msgstr "转让"
3726
+
3727
+ #: ../addons/transfer/myCRED-addon-transfer.php:216
3728
+ msgid "Select the point types that users can transfer."
3729
+ msgstr "选择用户可以转让的积分类型。"
3730
+
3731
+ #: ../addons/transfer/myCRED-addon-transfer.php:224
3732
+ msgid "Log template for sending"
3733
+ msgstr "用于发送的日志模板"
3734
+
3735
+ #: ../addons/transfer/myCRED-addon-transfer.php:231
3736
+ msgid "Log template for receiving"
3737
+ msgstr "用于接收的日志模板"
3738
+
3739
+ #: ../addons/transfer/myCRED-addon-transfer.php:238
3740
+ msgid "Autofill Recipient"
3741
+ msgstr "自动填充收件人"
3742
+
3743
+ #: ../addons/transfer/myCRED-addon-transfer.php:250
3744
+ msgid "Select what user details recipients should be autofilled by."
3745
+ msgstr "选择用户的哪些信息可以自动填充到收件人。"
3746
+
3747
+ #: ../addons/transfer/myCRED-addon-transfer.php:253
3748
+ msgid "Reload"
3749
+ msgstr "刷新"
3750
+
3751
+ #: ../addons/transfer/myCRED-addon-transfer.php:256
3752
+ msgid "Reload page on successful transfers."
3753
+ msgstr "成功转让后刷新页面。"
3754
+
3755
+ #: ../addons/transfer/myCRED-addon-transfer.php:276
3756
+ msgid "Limit Amount"
3757
+ msgstr "限制金额"
3758
+
3759
+ #: ../addons/transfer/myCRED-addon-transfer.php:280
3760
+ msgid "Form Templates"
3761
+ msgstr "表单模板"
3762
+
3763
+ #: ../addons/transfer/myCRED-addon-transfer.php:283
3764
+ msgid "Not logged in Template"
3765
+ msgstr "没有登录模板"
3766
+
3767
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
3768
+ msgid ""
3769
+ "Text to show when users are not logged in. Leave empty to hide. No HTML "
3770
+ "elements allowed!"
3771
+ msgstr "用户没有登录时显示的文字。不允许 HTML 代码!"
3772
+
3773
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
3774
+ msgid "Balance Template"
3775
+ msgstr "余额模板"
3776
+
3777
+ #: ../addons/transfer/myCRED-addon-transfer.php:291
3778
+ msgid ""
3779
+ "Template to use when displaying the users balance (if included). No HTML "
3780
+ "elements allowed!"
3781
+ msgstr "用于显示用户余额(如果包括的话)的模板。不允许 HTML 代码!"
3782
+
3783
+ #: ../addons/transfer/myCRED-addon-transfer.php:295
3784
+ msgid "Limit Template"
3785
+ msgstr "限制模板"
3786
+
3787
+ #: ../addons/transfer/myCRED-addon-transfer.php:297
3788
+ msgid ""
3789
+ "Template to use when displaying limits (if used). No HTML elements allowed!"
3790
+ msgstr "用于显示限制(如果使用)时的模板。不允许 HTML 代码!"
3791
+
3792
+ #: ../addons/transfer/myCRED-addon-transfer.php:301
3793
+ msgid "Button Template"
3794
+ msgstr "按钮模板"
3795
+
3796
+ #: ../addons/transfer/myCRED-addon-transfer.php:303
3797
+ msgid "Send Transfer button template. No HTML elements allowed!"
3798
+ msgstr "发送转让按钮的模板。不允许 HTML 代码!"
3799
+
3800
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
3801
+ msgid "Error Messages"
3802
+ msgstr "错误信息"
3803
+
3804
+ #: ../addons/transfer/myCRED-addon-transfer.php:309
3805
+ msgid "Balance to low to send."
3806
+ msgstr "余额太少无法发送。"
3807
+
3808
+ #: ../addons/transfer/myCRED-addon-transfer.php:311
3809
+ msgid ""
3810
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3811
+ "hide. No HTML elements allowed!"
3812
+ msgstr "用于当用户余额低于转让数量时显示的文字。留空则隐藏。不允许 HTML 代码!"
3813
+
3814
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
3815
+ msgid "Transfer Limit Reached."
3816
+ msgstr "已达到转让限制。"
3817
+
3818
+ #: ../addons/transfer/myCRED-addon-transfer.php:317
3819
+ msgid ""
3820
+ "Text to show when a user has reached their transfer limit (if used). Leave "
3821
+ "empty to hide. No HTML elements allowed!"
3822
+ msgstr ""
3823
+ "用于当用户已经达到了他们的转账限额(如果使用)时显示的文字。留空则隐藏。不允"
3824
+ "许 HTML 代码!"
3825
+
3826
+ #: ../includes/importers/mycred-balances.php:81
3827
+ #: ../includes/importers/mycred-balances.php:159
3828
+ #: ../includes/importers/mycred-balances.php:198
3829
+ #: ../includes/importers/mycred-balances.php:213
3830
+ #: ../includes/importers/mycred-log-entries.php:81
3831
+ #: ../includes/importers/mycred-log-entries.php:126
3832
+ #: ../includes/importers/mycred-log-entries.php:165
3833
+ #: ../includes/importers/mycred-log-entries.php:180
3834
+ msgid "Sorry, there has been an error."
3835
+ msgstr "抱歉,出现了一个错误。"
3836
+
3837
+ #: ../includes/importers/mycred-balances.php:82
3838
+ #: ../includes/importers/mycred-log-entries.php:82
3839
+ msgid "The file does not exist, please try again."
3840
+ msgstr "该文件不存在,请重试。"
3841
+
3842
+ #: ../includes/importers/mycred-balances.php:160
3843
+ #: ../includes/importers/mycred-log-entries.php:127
3844
+ msgid "The CSV is invalid."
3845
+ msgstr "该CSV是无效的。"
3846
+
3847
+ #: ../includes/importers/mycred-balances.php:171
3848
+ #, php-format
3849
+ msgid ""
3850
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3851
+ "imported. <strong>%d</strong> was skipped."
3852
+ msgstr ""
3853
+ "导入完成 - 共<strong>%d</strong>余额已成功导入。<strong>%d</strong>被跳过。"
3854
+
3855
+ #: ../includes/importers/mycred-balances.php:181
3856
+ #: ../includes/importers/mycred-cubepoints.php:293
3857
+ #: ../includes/importers/mycred-log-entries.php:148
3858
+ msgid "Import More"
3859
+ msgstr "导入更多"
3860
+
3861
+ #: ../includes/importers/mycred-balances.php:227
3862
+ msgid "Import Balances"
3863
+ msgstr "导入余额"
3864
+
3865
+ #: ../includes/importers/mycred-balances.php:244
3866
+ msgid "Import balances from a CSV file."
3867
+ msgstr "从CSV文件导入余额。"
3868
+
3869
+ #: ../includes/importers/mycred-balances.php:252
3870
+ #: ../includes/importers/mycred-log-entries.php:219
3871
+ msgid ""
3872
+ "Before you can upload your import file, you will need to fix the following "
3873
+ "error:"
3874
+ msgstr "在上传你的导入文件之前,您需要修复以下错误:"
3875
+
3876
+ #: ../includes/importers/mycred-balances.php:261
3877
+ #: ../includes/importers/mycred-log-entries.php:228
3878
+ msgid "Choose a file from your computer:"
3879
+ msgstr "从您的电脑中选择一个文件:"
3880
+
3881
+ #: ../includes/importers/mycred-balances.php:267
3882
+ #: ../includes/importers/mycred-log-entries.php:234
3883
+ #, php-format
3884
+ msgid "Maximum size: %s"
3885
+ msgstr "最大尺寸:%s"
3886
+
3887
+ #: ../includes/importers/mycred-balances.php:272
3888
+ #: ../includes/importers/mycred-log-entries.php:239
3889
+ msgid "OR enter path to file:"
3890
+ msgstr "或输入文件的路径:"
3891
+
3892
+ #: ../includes/importers/mycred-balances.php:279
3893
+ #: ../includes/importers/mycred-log-entries.php:246
3894
+ msgid "Delimiter"
3895
+ msgstr "分隔符"
3896
+
3897
+ #: ../includes/importers/mycred-balances.php:283
3898
+ msgid "Method"
3899
+ msgstr "方法"
3900
+
3901
+ #: ../includes/importers/mycred-balances.php:285
3902
+ msgid "Replace current balances with the amount in this CSV file"
3903
+ msgstr "使用这个CSV文件里的数量替换当前的余额"
3904
+
3905
+ #: ../includes/importers/mycred-balances.php:286
3906
+ msgid "Adjust current balances according to the amount in this CSV file"
3907
+ msgstr "根据这个 CSV 文件里的数量来调整当前余额"
3908
+
3909
+ #: ../includes/importers/mycred-balances.php:292
3910
+ #: ../includes/importers/mycred-log-entries.php:252
3911
+ msgid "Upload file and import"
3912
+ msgstr "上传文件并导入"
3913
+
3914
+ #: ../includes/importers/mycred-cubepoints.php:276
3915
+ msgid "No balances were imported."
3916
+ msgstr "没有任何余额被导入。"
3917
+
3918
+ #: ../includes/importers/mycred-cubepoints.php:276
3919
+ msgid "No log entries were imported!"
3920
+ msgstr "没有任何日志条目被导入!"
3921
+
3922
+ #: ../includes/importers/mycred-cubepoints.php:282
3923
+ #: ../includes/importers/mycred-log-entries.php:138
3924
+ #, php-format
3925
+ msgid ""
3926
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
3927
+ "imported. <strong>%d</strong> was skipped."
3928
+ msgstr ""
3929
+ "导入完成 - 总共<strong>%d</strong> 条目已成功导入。 <strong>%d</strong>被跳"
3930
+ "过。"
3931
+
3932
+ #: ../includes/importers/mycred-cubepoints.php:306
3933
+ msgid "No CubePoints log."
3934
+ msgstr "没有 CubePoints 日志。"
3935
+
3936
+ #: ../includes/importers/mycred-cubepoints.php:317
3937
+ msgid "Import CubePoints Log"
3938
+ msgstr "导入 CubePoints 日志"
3939
+
3940
+ #: ../includes/importers/mycred-cubepoints.php:334
3941
+ msgid "Select what to import"
3942
+ msgstr "选择要导入什么"
3943
+
3944
+ #: ../includes/importers/mycred-cubepoints.php:335
3945
+ msgid "Log Entries Only"
3946
+ msgstr "只是日志条目"
3947
+
3948
+ #: ../includes/importers/mycred-cubepoints.php:336
3949
+ msgid "CubePoints Balances Only"
3950
+ msgstr "只是 CubePoints 余额"
3951
+
3952
+ #: ../includes/importers/mycred-cubepoints.php:337
3953
+ msgid "Log Entries and Balances"
3954
+ msgstr "日志条目和余额"
3955
+
3956
+ #: ../includes/importers/mycred-cubepoints.php:344
3957
+ #: ../includes/mycred-importer.php:76
3958
+ msgid "Import CubePoints log entries and / or balances."
3959
+ msgstr "导入 CubePoints 日志条目 和/或 余额。"
3960
+
3961
+ #: ../includes/importers/mycred-cubepoints.php:351
3962
+ msgid "Import"
3963
+ msgstr "导入"
3964
+
3965
+ #: ../includes/importers/mycred-cubepoints.php:360
3966
+ msgid ""
3967
+ "Warning! Importing CubePoints balances will replace your users myCRED "
3968
+ "balance!"
3969
+ msgstr "警告!导入 CubePoints 余额将取代你用户的 myCRED 余额!"
3970
+
3971
+ #: ../includes/importers/mycred-cubepoints.php:378
3972
+ msgid "Import Log"
3973
+ msgstr "导入日志"
3974
+
3975
+ #: ../includes/importers/mycred-log-entries.php:194
3976
+ msgid "Import Log Entries"
3977
+ msgstr "导入日志条目"
3978
+
3979
+ #: ../includes/importers/mycred-log-entries.php:211
3980
+ msgid "Import log entries from a CSV file."
3981
+ msgstr "从 CSV 文件导入日志条目。"
3982
+
3983
+ #: ../includes/mycred-about.php:77
3984
+ #, php-format
3985
+ msgid "Welcome to %s %s"
3986
+ msgstr "欢迎访问 %s %s"
3987
+
3988
+ #: ../includes/mycred-admin.php:191
3989
+ msgid "A log entry is required in order to adjust this users balance"
3990
+ msgstr "调整用户余额时必需的日志条目"
3991
+
3992
+ #: ../includes/mycred-admin.php:193
3993
+ msgid "Users balance saved"
3994
+ msgstr "用户余额已保存"
3995
+
3996
+ #: ../includes/mycred-admin.php:201
3997
+ msgid "Users excluded"
3998
+ msgstr "被排除的用户"
3999
+
4000
+ #: ../includes/mycred-admin.php:206
4001
+ msgid ""
4002
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
4003
+ "rate settings and update all premium payment gateways!"
4004
+ msgstr ""
4005
+ "全部buyCRED支付网关已被禁用!请检查您的转换率设置并更新全部付费支付网关!"
4006
+
4007
+ #: ../includes/mycred-admin.php:234
4008
+ msgid "User is excluded"
4009
+ msgstr "用户被排除在外"
4010
+
4011
+ #: ../includes/mycred-admin.php:239
4012
+ msgid "Log Entry can not be empty"
4013
+ msgstr "日志条目不能为空"
4014
+
4015
+ #: ../includes/mycred-admin.php:243
4016
+ msgid "Amount can not be zero"
4017
+ msgstr "数目不能为零"
4018
+
4019
+ #: ../includes/mycred-admin.php:264
4020
+ msgid "Failed to update this uses balance."
4021
+ msgstr "无法更新该用户的余额。"
4022
+
4023
+ #: ../includes/mycred-admin.php:385
4024
+ msgid "Excluded"
4025
+ msgstr "排除"
4026
+
4027
+ #: ../includes/mycred-admin.php:406
4028
+ msgid "Adjust"
4029
+ msgstr "调整"
4030
+
4031
+ #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
4032
+ msgid "Edit Balance"
4033
+ msgstr "编辑余额"
4034
+
4035
+ #: ../includes/mycred-admin.php:463
4036
+ msgid "Profile"
4037
+ msgstr "资料页"
4038
+
4039
+ #: ../includes/mycred-admin.php:470
4040
+ msgid "Extended Profile"
4041
+ msgstr "扩展籽料页"
4042
+
4043
+ #: ../includes/mycred-admin.php:560
4044
+ #, php-format
4045
+ msgid "This user is excluded from using %s"
4046
+ msgstr "该用户已被从可用%s的用户中排除"
4047
+
4048
+ #: ../includes/mycred-admin.php:583
4049
+ msgid "Edit User"
4050
+ msgstr "编辑用户"
4051
+
4052
+ #: ../includes/mycred-admin.php:585
4053
+ msgctxt "user"
4054
+ msgid "Add New"
4055
+ msgstr "添加新的"
4056
+
4057
+ #: ../includes/mycred-admin.php:587
4058
+ msgctxt "user"
4059
+ msgid "Add Existing"
4060
+ msgstr "添加已存在的"
4061
+
4062
+ #: ../includes/mycred-admin.php:598
4063
+ #, php-format
4064
+ msgid "Total %s Accumulated"
4065
+ msgstr "累计共%s"
4066
+
4067
+ #: ../includes/mycred-admin.php:599
4068
+ #, php-format
4069
+ msgid "Total %s Spent"
4070
+ msgstr "共消费%s"
4071
+
4072
+ #: ../includes/mycred-admin.php:610
4073
+ msgid "View History"
4074
+ msgstr "查看记录"
4075
+
4076
+ #: ../includes/mycred-admin.php:611
4077
+ msgid "Exclude User"
4078
+ msgstr "排除用户"
4079
+
4080
+ #: ../includes/mycred-admin.php:615
4081
+ msgid "Adjust Balance"
4082
+ msgstr "调整余额"
4083
+
4084
+ #: ../includes/mycred-admin.php:624
4085
+ msgid ""
4086
+ "Warning! Excluding this user will result in their balance being deleted "
4087
+ "along with any entries currently in your log! This can not be undone!"
4088
+ msgstr "警告!排除此用户将会导致不可撤销的资产和日志被删除!"
4089
+
4090
+ #: ../includes/mycred-admin.php:682
4091
+ #, php-format
4092
+ msgid "%singular% balance"
4093
+ msgstr "%singular% balance"
4094
+
4095
+ #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4096
+ msgid "Update Balance"
4097
+ msgstr "更新余额"
4098
+
4099
+ #: ../includes/mycred-admin.php:753
4100
+ msgid "ID"
4101
+ msgstr "ID"
4102
+
4103
+ #: ../includes/mycred-admin.php:759
4104
+ msgid "A positive or negative value"
4105
+ msgstr "正值或负值"
4106
+
4107
+ #: ../includes/mycred-functions.php:79
4108
+ msgid "Point"
4109
+ msgstr "积分"
4110
+
4111
+ #: ../includes/mycred-functions.php:80
4112
+ msgid "Points"
4113
+ msgstr "积分"
4114
+
4115
+ #: ../includes/mycred-functions.php:398
4116
+ msgid "Deleted"
4117
+ msgstr "已删除"
4118
+
4119
+ #: ../includes/mycred-functions.php:530
4120
+ msgid "Deleted Item"
4121
+ msgstr "删除项目"
4122
+
4123
+ #: ../includes/mycred-functions.php:594
4124
+ msgid "User Related"
4125
+ msgstr "相关用户"
4126
+
4127
+ #: ../includes/mycred-functions.php:601
4128
+ msgid "Post Related"
4129
+ msgstr "相关帖子"
4130
+
4131
+ #: ../includes/mycred-functions.php:608
4132
+ msgid "Comment Related"
4133
+ msgstr "相关评论"
4134
+
4135
+ #: ../includes/mycred-functions.php:615
4136
+ msgid "Widget Related"
4137
+ msgstr "相关小工具"
4138
+
4139
+ #: ../includes/mycred-functions.php:622
4140
+ msgid "Amount Related"
4141
+ msgstr "数目相关"
4142
+
4143
+ #: ../includes/mycred-functions.php:629
4144
+ msgid "Video Related"
4145
+ msgstr "相关视频"
4146
+
4147
+ #: ../includes/mycred-functions.php:640
4148
+ msgid "and"
4149
+ msgstr "和"
4150
+
4151
+ #: ../includes/mycred-functions.php:642
4152
+ msgid "Available Template Tags:"
4153
+ msgstr "可用的模板标签:"
4154
+
4155
+ #: ../includes/mycred-functions.php:1686
4156
+ msgid "Entire Log"
4157
+ msgstr "全部日志"
4158
+
4159
+ #: ../includes/mycred-functions.php:1691 ../includes/mycred-functions.php:1692
4160
+ msgid "Displayed Rows"
4161
+ msgstr "显示的行"
4162
+
4163
+ #: ../includes/mycred-functions.php:1699
4164
+ msgid "Search Results"
4165
+ msgstr "搜索结果"
4166
+
4167
+ #: ../includes/mycred-functions.php:1700
4168
+ msgid "My Entire Log"
4169
+ msgstr "我的整个日志"
4170
+
4171
+ #: ../includes/mycred-functions.php:1867
4172
+ msgid "ref empty"
4173
+ msgstr "ref 为空"
4174
+
4175
+ #: ../includes/mycred-functions.php:1875
4176
+ msgid "incorrect user id format"
4177
+ msgstr "不正确的用户ID格式"
4178
+
4179
+ #: ../includes/mycred-functions.php:1888
4180
+ msgid "incorrect unix timestamp (from):"
4181
+ msgstr "不正确的unix时间戳(from):"
4182
+
4183
+ #: ../includes/mycred-functions.php:1897
4184
+ msgid "incorrect unix timestamp (to):"
4185
+ msgstr "不正确的UNIX时间戳(to):"
4186
+
4187
+ #: ../includes/mycred-functions.php:2306
4188
+ msgid "Website Registration"
4189
+ msgstr "网站注册"
4190
+
4191
+ #: ../includes/mycred-functions.php:2307
4192
+ msgid "Website Visit"
4193
+ msgstr "查看网站"
4194
+
4195
+ #: ../includes/mycred-functions.php:2308
4196
+ msgid "Viewing Content (Member)"
4197
+ msgstr "查看内容 (会员)"
4198
+
4199
+ #: ../includes/mycred-functions.php:2309
4200
+ msgid "Viewing Content (Author)"
4201
+ msgstr "查看内容(作者)"
4202
+
4203
+ #: ../includes/mycred-functions.php:2310
4204
+ msgid "Logging in"
4205
+ msgstr "登录"
4206
+
4207
+ #: ../includes/mycred-functions.php:2311
4208
+ msgid "Publishing Content"
4209
+ msgstr "发布内容"
4210
+
4211
+ #: ../includes/mycred-functions.php:2312
4212
+ #: ../modules/mycred-module-hooks.php:1533
4213
+ msgid "Approved Comment"
4214
+ msgstr "批准评论"
4215
+
4216
+ #: ../includes/mycred-functions.php:2313
4217
+ msgid "Unapproved Comment"
4218
+ msgstr "评论未被批准"
4219
+
4220
+ #: ../includes/mycred-functions.php:2314
4221
+ msgid "SPAM Comment"
4222
+ msgstr "垃圾评论"
4223
+
4224
+ #: ../includes/mycred-functions.php:2315
4225
+ msgid "Deleted Comment"
4226
+ msgstr "评论被删除"
4227
+
4228
+ #: ../includes/mycred-functions.php:2316
4229
+ msgid "Link Click"
4230
+ msgstr "点击链接"
4231
+
4232
+ #: ../includes/mycred-functions.php:2317
4233
+ msgid "Watching Video"
4234
+ msgstr "查看视频"
4235
+
4236
+ #: ../includes/mycred-functions.php:2318
4237
+ msgid "Visitor Referral"
4238
+ msgstr "推荐用户"
4239
+
4240
+ #: ../includes/mycred-functions.php:2319
4241
+ msgid "Signup Referral"
4242
+ msgstr "推荐注册"
4243
+
4244
+ #: ../includes/mycred-functions.php:2323
4245
+ msgid "New Profile Update"
4246
+ msgstr "新的资料页已更新"
4247
+
4248
+ #: ../includes/mycred-functions.php:2324
4249
+ msgid "Profile Update Removal"
4250
+ msgstr "资料页更新删除"
4251
+
4252
+ #: ../includes/mycred-functions.php:2325
4253
+ msgid "Avatar Upload"
4254
+ msgstr "头像上传"
4255
+
4256
+ #: ../includes/mycred-functions.php:2326
4257
+ msgid "New Friendship"
4258
+ msgstr "新的朋友关系"
4259
+
4260
+ #: ../includes/mycred-functions.php:2327
4261
+ msgid "Ended Friendship"
4262
+ msgstr "启用朋友关系"
4263
+
4264
+ #: ../includes/mycred-functions.php:2328
4265
+ msgid "New Profile Comment"
4266
+ msgstr "新的简介评论"
4267
+
4268
+ #: ../includes/mycred-functions.php:2329
4269
+ msgid "Profile Comment Deletion"
4270
+ msgstr "简介评论删除"
4271
+
4272
+ #: ../includes/mycred-functions.php:2330
4273
+ msgid "New Message"
4274
+ msgstr "新短信"
4275
+
4276
+ #: ../includes/mycred-functions.php:2331
4277
+ msgid "Sending Gift"
4278
+ msgstr "送礼物"
4279
+
4280
+ #: ../includes/mycred-functions.php:2332
4281
+ msgid "New Group"
4282
+ msgstr "新群组"
4283
+
4284
+ #: ../includes/mycred-functions.php:2333
4285
+ msgid "Deleted Group"
4286
+ msgstr "删除群组"
4287
+
4288
+ #: ../includes/mycred-functions.php:2334
4289
+ msgid "New Group Forum Topic"
4290
+ msgstr "新的群组论坛话题"
4291
+
4292
+ #: ../includes/mycred-functions.php:2335
4293
+ msgid "Edit Group Forum Topic"
4294
+ msgstr "编辑群组论坛话题"
4295
+
4296
+ #: ../includes/mycred-functions.php:2336
4297
+ msgid "New Group Forum Post"
4298
+ msgstr "新的群组论坛文章"
4299
+
4300
+ #: ../includes/mycred-functions.php:2337
4301
+ msgid "Edit Group Forum Post"
4302
+ msgstr "编辑群组论坛文章"
4303
+
4304
+ #: ../includes/mycred-functions.php:2338
4305
+ msgid "Joining Group"
4306
+ msgstr "加入群组"
4307
+
4308
+ #: ../includes/mycred-functions.php:2339
4309
+ msgid "Leaving Group"
4310
+ msgstr "离开群组"
4311
+
4312
+ #: ../includes/mycred-functions.php:2340
4313
+ msgid "New Group Avatar"
4314
+ msgstr "新的群组头像"
4315
+
4316
+ #: ../includes/mycred-functions.php:2341
4317
+ msgid "New Group Comment"
4318
+ msgstr "新的群组评论"
4319
+
4320
+ #: ../includes/mycred-functions.php:2345
4321
+ #: ../plugins/mycred-hook-buddypress-media.php:205
4322
+ msgid "Photo Upload"
4323
+ msgstr "照片上传"
4324
+
4325
+ #: ../includes/mycred-functions.php:2346
4326
+ #: ../plugins/mycred-hook-buddypress-media.php:219
4327
+ msgid "Video Upload"
4328
+ msgstr "视频上传"
4329
+
4330
+ #: ../includes/mycred-functions.php:2347
4331
+ #: ../plugins/mycred-hook-buddypress-media.php:233
4332
+ msgid "Music Upload"
4333
+ msgstr "音乐上传"
4334
+
4335
+ #: ../includes/mycred-functions.php:2351
4336
+ msgid "New Link"
4337
+ msgstr "新链接"
4338
+
4339
+ #: ../includes/mycred-functions.php:2352
4340
+ msgid "Link Voting"
4341
+ msgstr "链接投票"
4342
+
4343
+ #: ../includes/mycred-functions.php:2353
4344
+ msgid "Link Update"
4345
+ msgstr "链接更新"
4346
+
4347
+ #: ../includes/mycred-functions.php:2357
4348
+ msgid "New Forum (bbPress)"
4349
+ msgstr "新论坛(bbPress)"
4350
+
4351
+ #: ../includes/mycred-functions.php:2358
4352
+ msgid "New Forum Topic (bbPress)"
4353
+ msgstr "新的论坛话题(bbPress)"
4354
+
4355
+ #: ../includes/mycred-functions.php:2359
4356
+ msgid "Favorited Topic (bbPress)"
4357
+ msgstr "收藏主题 (bbPress)"
4358
+
4359
+ #: ../includes/mycred-functions.php:2360
4360
+ msgid "New Topic Reply (bbPress)"
4361
+ msgstr "新的话题回复 (bbPress)"
4362
+
4363
+ #: ../includes/mycred-functions.php:2364
4364
+ msgid "Form Submission (Contact Form 7)"
4365
+ msgstr "表单提交 (Contact Form 7)"
4366
+
4367
+ #: ../includes/mycred-functions.php:2367
4368
+ msgid "Form Submission (Gravity Form)"
4369
+ msgstr "表单提交(Gravity Form)"
4370
+
4371
+ #: ../includes/mycred-functions.php:2370
4372
+ msgid "New Forum Topic (SimplePress)"
4373
+ msgstr "新的论坛话题 (SimplePress)"
4374
+
4375
+ #: ../includes/mycred-functions.php:2371
4376
+ msgid "New Forum Post (SimplePress)"
4377
+ msgstr "新的论坛文章 (SimplePress)"
4378
+
4379
+ #: ../includes/mycred-functions.php:2380
4380
+ msgid "Affiliate Signup (AffiliateWP)"
4381
+ msgstr "推荐注册 (AffiliateWP)"
4382
+
4383
+ #: ../includes/mycred-functions.php:2381
4384
+ msgid "Referred Visit (AffiliateWP)"
4385
+ msgstr "推荐浏览 (AffiliateWP)"
4386
+
4387
+ #: ../includes/mycred-functions.php:2382
4388
+ msgid "Affiliate Referral (AffiliateWP)"
4389
+ msgstr "推荐消费(AffiliateWP)"
4390
+
4391
+ #: ../includes/mycred-functions.php:2383
4392
+ msgid "Referral Refund (AffiliateWP)"
4393
+ msgstr "推荐退款 (AffiliateWP)"
4394
+
4395
+ #: ../includes/mycred-functions.php:2387
4396
+ #: ../plugins/mycred-hook-wp-postratings.php:150
4397
+ msgid "Adding a Rating"
4398
+ msgstr "添加一条评价"
4399
+
4400
+ #: ../includes/mycred-functions.php:2388
4401
+ #: ../plugins/mycred-hook-wp-postratings.php:169
4402
+ msgid "Receiving a Rating"
4403
+ msgstr "收到一条评价"
4404
+
4405
+ #: ../includes/mycred-functions.php:2392
4406
+ msgid "Poll Voting"
4407
+ msgstr "投票表决"
4408
+
4409
+ #: ../includes/mycred-functions.php:2395
4410
+ msgid "Sending an Invite"
4411
+ msgstr "发送一个邀请"
4412
+
4413
+ #: ../includes/mycred-functions.php:2396
4414
+ msgid "Accepting an Invite"
4415
+ msgstr "接受一个邀请"
4416
+
4417
+ #: ../includes/mycred-functions.php:2402
4418
+ msgid "Banking Payout"
4419
+ msgstr "银行支出"
4420
+
4421
+ #: ../includes/mycred-functions.php:2405
4422
+ msgid "buyCRED Purchase (PayPal Standard)"
4423
+ msgstr "buyCRED购买 (PayPal Standard)"
4424
+
4425
+ #: ../includes/mycred-functions.php:2406
4426
+ msgid "buyCRED Purchase (Skrill)"
4427
+ msgstr "buyCRED购买 (Skrill)"
4428
+
4429
+ #: ../includes/mycred-functions.php:2407
4430
+ msgid "buyCRED Purchase (Zombaio)"
4431
+ msgstr "buyCRED购买 (Zombaio)"
4432
+
4433
+ #: ../includes/mycred-functions.php:2408
4434
+ msgid "buyCRED Purchase (NETBilling)"
4435
+ msgstr "buyCRED购买 (NETBilling)"
4436
+
4437
+ #: ../includes/mycred-functions.php:2409
4438
+ msgid "buyCRED Purchase (BitPay)"
4439
+ msgstr "buyCRED购买 (BitPay)"
4440
+
4441
+ #: ../includes/mycred-functions.php:2414
4442
+ msgid "Coupon Purchase"
4443
+ msgstr "购买优惠券"
4444
+
4445
+ #: ../includes/mycred-functions.php:2418
4446
+ msgid "Store Purchase (WooCommerce)"
4447
+ msgstr "商城消费 (WooCommerce)"
4448
+
4449
+ #: ../includes/mycred-functions.php:2419
4450
+ msgid "Store Reward (WooCommerce)"
4451
+ msgstr "商城奖励 (WooCommerce)"
4452
+
4453
+ #: ../includes/mycred-functions.php:2420
4454
+ msgid "Product Review (WooCommerce)"
4455
+ msgstr "产品评测 (WooCommerce)"
4456
+
4457
+ #: ../includes/mycred-functions.php:2423
4458
+ msgid "Store Purchase (MarketPress)"
4459
+ msgstr "商城购买 (MarketPress)"
4460
+
4461
+ #: ../includes/mycred-functions.php:2424
4462
+ msgid "Store Reward (MarketPress)"
4463
+ msgstr "商城奖励 (MarketPress)"
4464
+
4465
+ #: ../includes/mycred-functions.php:2427
4466
+ msgid "Store Purchase (WP E-Commerce)"
4467
+ msgstr "商城购买 (WP E-Commerce)"
4468
+
4469
+ #: ../includes/mycred-functions.php:2433
4470
+ msgid "Event Payment (Event Espresso)"
4471
+ msgstr "活动支付 (Event Espresso)"
4472
+
4473
+ #: ../includes/mycred-functions.php:2434
4474
+ msgid "Event Sale (Event Espresso)"
4475
+ msgstr "购买活动 (Event Espresso)"
4476
+
4477
+ #: ../includes/mycred-functions.php:2438
4478
+ msgid "Event Payment (Events Manager)"
4479
+ msgstr "活动支付 (Events Manager)"
4480
+
4481
+ #: ../includes/mycred-functions.php:2439
4482
+ msgid "Event Sale (Events Manager)"
4483
+ msgstr "活动售出 (Events Manager)"
4484
+
4485
+ #: ../includes/mycred-functions.php:2443
4486
+ msgid "Content Purchase / Sale"
4487
+ msgstr "内容购买/售出"
4488
+
4489
+ #: ../includes/mycred-functions.php:2450
4490
+ msgid "Manual Adjustment by Admin"
4491
+ msgstr "管理员手动调整"
4492
+
4493
+ #: ../includes/mycred-functions.php:2520 ../includes/mycred-shortcodes.php:925
4494
+ msgid "Point types not found."
4495
+ msgstr "未找到积分类型。"
4496
+
4497
+ #: ../includes/mycred-functions.php:2532 ../includes/mycred-functions.php:2552
4498
+ #: ../includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4499
+ #, php-format
4500
+ msgid "You are excluded from using %s."
4501
+ msgstr "您被从可用%s的用户中排除了。"
4502
+
4503
+ #: ../includes/mycred-functions.php:2542 ../includes/mycred-shortcodes.php:935
4504
+ msgid "Your balance is too low to use this feature."
4505
+ msgstr "您的余额不足以使用此特性。"
4506
+
4507
+ #: ../includes/mycred-functions.php:2565
4508
+ #, php-format
4509
+ msgid "You must exchange at least %s!"
4510
+ msgstr "您至少应该换取%s!"
4511
+
4512
+ #: ../includes/mycred-functions.php:2587
4513
+ #, php-format
4514
+ msgid "Exchange from %s"
4515
+ msgstr "兑换%s"
4516
+
4517
+ #: ../includes/mycred-functions.php:2599
4518
+ #, php-format
4519
+ msgid "Exchange to %s"
4520
+ msgstr "兑换为%s"
4521
+
4522
+ #: ../includes/mycred-functions.php:2607
4523
+ #, php-format
4524
+ msgid "You have successfully exchanged %s into %s."
4525
+ msgstr "您已成功兑换 %s为 %s。"
4526
+
4527
+ #: ../includes/mycred-functions.php:2638
4528
+ msgid "per day"
4529
+ msgstr "每天"
4530
+
4531
+ #: ../includes/mycred-functions.php:2640
4532
+ msgid "per week"
4533
+ msgstr "每周"
4534
+
4535
+ #: ../includes/mycred-functions.php:2642
4536
+ msgid "per month"
4537
+ msgstr "每月"
4538
+
4539
+ #: ../includes/mycred-functions.php:2644
4540
+ msgid "in total"
4541
+ msgstr "共计"
4542
+
4543
+ #: ../includes/mycred-functions.php:2646 ../includes/mycred-functions.php:2650
4544
+ #, php-format
4545
+ msgid "Maximum once"
4546
+ msgid_plural "Maximum %d times"
4547
+ msgstr[0] "最多一次"
4548
+ msgstr[1] "最多%d次"
4549
+
4550
+ #: ../includes/mycred-importer.php:11
4551
+ #, php-format
4552
+ msgid "%s Log Import"
4553
+ msgstr "%s 日志导入"
4554
+
4555
+ #: ../includes/mycred-importer.php:12
4556
+ msgid "Import log entries via a CSV file."
4557
+ msgstr "通过CSV文件导入的日志条目。"
4558
+
4559
+ #: ../includes/mycred-importer.php:43
4560
+ #, php-format
4561
+ msgid "%s Balance Import"
4562
+ msgstr "%s 余额导入"
4563
+
4564
+ #: ../includes/mycred-importer.php:44
4565
+ msgid "Import balances."
4566
+ msgstr "导入余额。"
4567
+
4568
+ #: ../includes/mycred-importer.php:75
4569
+ #, php-format
4570
+ msgid "%s CubePoints Import"
4571
+ msgstr "%s CubePoints 导入"
4572
+
4573
+ #: ../includes/mycred-importer.php:92
4574
+ msgid "No CubePoints log exists."
4575
+ msgstr "不存在 CubePoints 日志。"
4576
+
4577
+ #: ../includes/mycred-install.php:39
4578
+ msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
4579
+ msgstr "myCRED需要运行在WordPress 3.8或更新版本。您现在使用的是:"
4580
+
4581
+ #: ../includes/mycred-install.php:44
4582
+ msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4583
+ msgstr "myCRED需要 PHP5.2.4 或更高版本。版本检测:"
4584
+
4585
+ #: ../includes/mycred-install.php:49
4586
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4587
+ msgstr "myCRED需要 SQL5.0 或更高版本。版本检测:"
4588
+
4589
+ #: ../includes/mycred-install.php:54
4590
+ msgid ""
4591
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4592
+ "check your PHP configuration or contact your host and ask them to enable it "
4593
+ "for you!"
4594
+ msgstr ""
4595
+ "mcrypt PHP库必需启用才能使用次插件!请检查您的PHP配置或联系您的主机上并请他们"
4596
+ "启用!"
4597
+
4598
+ #: ../includes/mycred-install.php:59
4599
+ msgid ""
4600
+ "Sorry but your WordPress installation does not reach the minimum "
4601
+ "requirements for running myCRED. The following errors were given:"
4602
+ msgstr ""
4603
+ "对不起,您的WordPress安装没有达到运行myCRED的最低要求。分别给予以下错误:"
4604
+
4605
+ #: ../includes/mycred-install.php:268
4606
+ msgid "myCRED needs your attention."
4607
+ msgstr "myCRED需要你的关注。"
4608
+
4609
+ #: ../includes/mycred-install.php:268
4610
+ msgid "Run Setup"
4611
+ msgstr "运行设置程序"
4612
+
4613
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4614
+ msgid "myCRED Setup"
4615
+ msgstr "myCRED 设置"
4616
+
4617
+ #: ../includes/mycred-install.php:410
4618
+ #, php-format
4619
+ msgid "%s Setup"
4620
+ msgstr "%s 设置"
4621
+
4622
+ #: ../includes/mycred-install.php:412
4623
+ msgid "Step"
4624
+ msgstr "步骤"
4625
+
4626
+ #: ../includes/mycred-install.php:436
4627
+ msgid ""
4628
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4629
+ "points format, layout and security settings."
4630
+ msgstr ""
4631
+ "点击 \"开始设置 \" 来设置myCRED。你可以选择你的积分格式、布局和安全设置。"
4632
+
4633
+ #: ../includes/mycred-install.php:437
4634
+ msgid "Begin Setup"
4635
+ msgstr "开始设置"
4636
+
4637
+ #: ../includes/mycred-install.php:492
4638
+ msgid "Select the format you want to use for your points."
4639
+ msgstr "选择您要使用的积分格式。"
4640
+
4641
+ #: ../includes/mycred-install.php:493
4642
+ msgid "Format"
4643
+ msgstr "格式"
4644
+
4645
+ #: ../includes/mycred-install.php:496
4646
+ msgid "Separators"
4647
+ msgstr "分离器"
4648
+
4649
+ #: ../includes/mycred-install.php:506
4650
+ #: ../modules/mycred-module-settings.php:501
4651
+ msgid "Decimals"
4652
+ msgstr "小数"
4653
+
4654
+ #: ../includes/mycred-install.php:508
4655
+ msgid "Use zero for no decimals or maximum 20."
4656
+ msgstr "使用0意味着没有小数或者最多20."
4657
+
4658
+ #: ../includes/mycred-install.php:511
4659
+ #: ../modules/mycred-module-settings.php:505
4660
+ msgid "Presentation"
4661
+ msgstr "介绍"
4662
+
4663
+ #: ../includes/mycred-install.php:514
4664
+ #: ../modules/mycred-module-settings.php:488
4665
+ msgid "Name (Singular)"
4666
+ msgstr "名称(单数)"
4667
+
4668
+ #: ../includes/mycred-install.php:518
4669
+ #: ../modules/mycred-module-settings.php:493
4670
+ msgid "Name (Plural)"
4671
+ msgstr "名称(复数)"
4672
+
4673
+ #: ../includes/mycred-install.php:524
4674
+ #: ../modules/mycred-module-settings.php:508
4675
+ msgid "Prefix"
4676
+ msgstr "前缀"
4677
+
4678
+ #: ../includes/mycred-install.php:532
4679
+ #: ../modules/mycred-module-settings.php:516
4680
+ msgid "Suffix"
4681
+ msgstr "后缀"
4682
+
4683
+ #: ../includes/mycred-install.php:536
4684
+ msgid "Cancel Setup"
4685
+ msgstr "取消设置"
4686
+
4687
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4688
+ msgid "Next"
4689
+ msgstr "下一页"
4690
+
4691
+ #: ../includes/mycred-install.php:568
4692
+ #: ../modules/mycred-module-settings.php:524
4693
+ msgid "Security"
4694
+ msgstr "安全"
4695
+
4696
+ #: ../includes/mycred-install.php:571
4697
+ msgid "Edit Settings Capability"
4698
+ msgstr "编辑设置能力"
4699
+
4700
+ #: ../includes/mycred-install.php:575
4701
+ msgid "Edit Users %plural% Capability"
4702
+ msgstr "编辑用户 %plural% 能力"
4703
+
4704
+ #: ../includes/mycred-install.php:579
4705
+ #: ../modules/mycred-module-settings.php:537
4706
+ msgid "Maximum %plural% payouts"
4707
+ msgstr "最大 %plural% 支出"
4708
+
4709
+ #: ../includes/mycred-install.php:581
4710
+ #: ../modules/mycred-module-settings.php:539
4711
+ msgid ""
4712
+ "As an added security, you can set the maximum amount a user can gain or "
4713
+ "loose in a single instance. If used, make sure this is the maximum amount a "
4714
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
4715
+ "disable."
4716
+ msgstr ""
4717
+ "作为一个附加的安全性,您可以设置用户在一个单一实例中能够获得或失去的最大金额"
4718
+ "数量。如果使用,确保这是一个用户能够转让、购买、或在您的商店花费的最高金额。"
4719
+ "使用零禁用。"
4720
+
4721
+ #: ../includes/mycred-install.php:584
4722
+ #: ../modules/mycred-module-settings.php:542
4723
+ msgid "Excludes"
4724
+ msgstr "排除"
4725
+
4726
+ #: ../includes/mycred-install.php:588
4727
+ #: ../modules/mycred-module-settings.php:546
4728
+ msgid "Exclude those who can \"Edit Settings\"."
4729
+ msgstr "排除那些可以\"编辑设置\"的用户。"
4730
+
4731
+ #: ../includes/mycred-install.php:592
4732
+ #: ../modules/mycred-module-settings.php:550
4733
+ msgid "Exclude those who can \"Edit Users %plural%\"."
4734
+ msgstr "排除那些可以\"编辑用户 %plural%\"的用户。"
4735
+
4736
+ #: ../includes/mycred-install.php:595
4737
+ #: ../modules/mycred-module-settings.php:554
4738
+ msgid "Exclude the following user IDs:"
4739
+ msgstr "排除以下用户ID:"
4740
+
4741
+ #: ../includes/mycred-install.php:599
4742
+ #: ../modules/mycred-module-settings.php:559
4743
+ msgid "User Deletions"
4744
+ msgstr "用户删除"
4745
+
4746
+ #: ../includes/mycred-install.php:603
4747
+ #: ../modules/mycred-module-settings.php:562
4748
+ msgid "Delete log entries when user is deleted."
4749
+ msgstr "用户被删除时,删除与之相关的日志条目。"
4750
+
4751
+ #: ../includes/mycred-install.php:624
4752
+ msgid "Ready"
4753
+ msgstr "准备"
4754
+
4755
+ #: ../includes/mycred-install.php:625
4756
+ msgid "Almost done! Click the button below to finish this setup."
4757
+ msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
4758
+
4759
+ #: ../includes/mycred-install.php:626
4760
+ msgid "Install & Run"
4761
+ msgstr "安装与运行"
4762
+
4763
+ #: ../includes/mycred-log.php:398
4764
+ #, php-format
4765
+ msgid "Showing %d %s"
4766
+ msgstr "显示为 %d %s"
4767
+
4768
+ #: ../includes/mycred-log.php:398
4769
+ msgid "entry"
4770
+ msgid_plural "entries"
4771
+ msgstr[0] "条目"
4772
+ msgstr[1] "条目"
4773
+
4774
+ #: ../includes/mycred-log.php:412
4775
+ msgid "Go to the first page"
4776
+ msgstr "转到第页"
4777
+
4778
+ #: ../includes/mycred-log.php:419
4779
+ msgid "Go to the previous page"
4780
+ msgstr "转到前一页"
4781
+
4782
+ #: ../includes/mycred-log.php:428
4783
+ msgid "Current page"
4784
+ msgstr "当前页"
4785
+
4786
+ #: ../includes/mycred-log.php:434
4787
+ #, php-format
4788
+ msgctxt "mycred"
4789
+ msgid "%1$s of %2$s"
4790
+ msgstr "%1$s / %2$s"
4791
+
4792
+ #: ../includes/mycred-log.php:438
4793
+ msgid "Go to the next page"
4794
+ msgstr "转到下一个页面"
4795
+
4796
+ #: ../includes/mycred-log.php:445
4797
+ msgid "Go to the last page"
4798
+ msgstr "转到最后一页"
4799
+
4800
+ #: ../includes/mycred-log.php:512
4801
+ msgid "Show all references"
4802
+ msgstr "显示所有引用"
4803
+
4804
+ #: ../includes/mycred-log.php:525 ../modules/mycred-module-settings.php:705
4805
+ msgid "User ID"
4806
+ msgstr "用户 ID"
4807
+
4808
+ #: ../includes/mycred-log.php:531
4809
+ msgid "Show in order"
4810
+ msgstr "显示顺序"
4811
+
4812
+ #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:426
4813
+ msgid "Ascending"
4814
+ msgstr "升序"
4815
+
4816
+ #: ../includes/mycred-log.php:532 ../includes/mycred-widgets.php:427
4817
+ msgid "Descending"
4818
+ msgstr "降序"
4819
+
4820
+ #: ../includes/mycred-log.php:550
4821
+ msgid "Filter"
4822
+ msgstr "过滤器"
4823
+
4824
+ #: ../includes/mycred-log.php:603
4825
+ msgid ""
4826
+ "Log entries are exported to a CSV file and depending on the number of "
4827
+ "entries selected, the process may take a few seconds."
4828
+ msgstr "日志条目导出到CSV文件,根据所选条目的数量,这个过程可能需要几秒钟。"
4829
+
4830
+ #: ../includes/mycred-log.php:607
4831
+ msgid "No export options available."
4832
+ msgstr "没有可用的导出选项。"
4833
+
4834
+ #: ../includes/mycred-log.php:636
4835
+ msgid "Entry"
4836
+ msgstr "条目"
4837
+
4838
+ #: ../includes/mycred-log.php:737 ../modules/mycred-module-log.php:487
4839
+ msgid "User Missing"
4840
+ msgstr "用户丢失"
4841
+
4842
+ #: ../includes/mycred-log.php:807
4843
+ msgid "No log entries found"
4844
+ msgstr "没有找到日志条目"
4845
+
4846
+ #: ../includes/mycred-log.php:822 ../includes/mycred-log.php:824
4847
+ msgid "Search Log"
4848
+ msgstr "搜索日志"
4849
+
4850
+ #: ../includes/mycred-log.php:823
4851
+ msgid "search log entries"
4852
+ msgstr "搜索日志条目"
4853
+
4854
+ #: ../includes/mycred-log.php:836 ../modules/mycred-module-buddypress.php:221
4855
+ #: ../modules/mycred-module-buddypress.php:234
4856
+ msgid "All"
4857
+ msgstr "所有"
4858
+
4859
+ #: ../includes/mycred-log.php:838 ../modules/mycred-module-buddypress.php:223
4860
+ msgid "Yesterday"
4861
+ msgstr "昨天"
4862
+
4863
+ #: ../includes/mycred-network.php:59 ../includes/mycred-network.php:60
4864
+ msgid "Network Settings"
4865
+ msgstr "网络设置"
4866
+
4867
+ #: ../includes/mycred-network.php:134
4868
+ #, php-format
4869
+ msgid "%s Network"
4870
+ msgstr "%s 网络"
4871
+
4872
+ #: ../includes/mycred-network.php:140
4873
+ #, php-format
4874
+ msgid "Note! %s has not yet been setup."
4875
+ msgstr "注意! %s 尚未设置。"
4876
+
4877
+ #: ../includes/mycred-network.php:144
4878
+ msgid "Network Settings Updated"
4879
+ msgstr "网络设置已更新"
4880
+
4881
+ #: ../includes/mycred-network.php:146
4882
+ #, php-format
4883
+ msgid "Configure network settings for %s."
4884
+ msgstr "为 %s 配置网络设置。"
4885
+
4886
+ #: ../includes/mycred-network.php:153
4887
+ msgid "Master Template"
4888
+ msgstr "主模板"
4889
+
4890
+ #: ../includes/mycred-network.php:164
4891
+ #, php-format
4892
+ msgid ""
4893
+ "If enabled, %s will use your main site's settings for all other sites in "
4894
+ "your network."
4895
+ msgstr "如果启用,%s 将使用你的主站点的设置适用于网络中所有其他站点。"
4896
+
4897
+ #: ../includes/mycred-network.php:167
4898
+ msgid "Central Logging"
4899
+ msgstr "中央日志"
4900
+
4901
+ #: ../includes/mycred-network.php:178
4902
+ #, php-format
4903
+ msgid "If enabled, %s will log all site actions in your main site's log."
4904
+ msgstr "如果启用,%s 将在您的主站点的日志中记录所有网站的操作。"
4905
+
4906
+ #: ../includes/mycred-network.php:181
4907
+ msgid "Site Block"
4908
+ msgstr "网站阻止"
4909
+
4910
+ #: ../includes/mycred-network.php:185
4911
+ #, php-format
4912
+ msgid "Comma separated list of blog ids where %s is to be disabled."
4913
+ msgstr "逗号分隔的博客ID 列表,它们将不使用 %s。"
4914
+
4915
+ #: ../includes/mycred-network.php:194
4916
+ msgid "Save Network Settings"
4917
+ msgstr "保存网络设置"
4918
+
4919
+ #: ../includes/mycred-overview.php:25
4920
+ #, php-format
4921
+ msgid "%s Overview"
4922
+ msgstr "%s 概览"
4923
+
4924
+ #: ../includes/mycred-overview.php:81
4925
+ msgid "Awarded"
4926
+ msgstr "奖励"
4927
+
4928
+ #: ../includes/mycred-overview.php:84
4929
+ msgid "Deducted"
4930
+ msgstr "扣除"
4931
+
4932
+ #: ../includes/mycred-overview.php:208
4933
+ msgid "Manual"
4934
+ msgstr "手动"
4935
+
4936
+ #: ../includes/mycred-remote.php:523
4937
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4938
+ msgstr "此功能需要设置和启用 WordPress 的固定链接!"
4939
+
4940
+ #: ../includes/mycred-remote.php:526
4941
+ msgid "Click Update Settings to load the Remote API settings."
4942
+ msgstr "单击更新设置以加载远程API设置。"
4943
+
4944
+ #: ../includes/mycred-remote.php:528
4945
+ msgid "Allow Remote Access"
4946
+ msgstr "允许远程访问"
4947
+
4948
+ #: ../includes/mycred-remote.php:549
4949
+ msgid "Remote Access"
4950
+ msgstr "远程访问"
4951
+
4952
+ #: ../includes/mycred-remote.php:554
4953
+ msgid "Key"
4954
+ msgstr "密钥"
4955
+
4956
+ #: ../includes/mycred-remote.php:555
4957
+ msgid "16, 24 or 32 characters"
4958
+ msgstr "16, 24 或 32 个字符"
4959
+
4960
+ #: ../includes/mycred-remote.php:556
4961
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
4962
+ msgstr "需要此功能工作!<br/>最少12个字符。"
4963
+
4964
+ #: ../includes/mycred-remote.php:559
4965
+ msgid "Key Length"
4966
+ msgstr "密钥长度"
4967
+
4968
+ #: ../includes/mycred-remote.php:564
4969
+ msgid "Generate New Key"
4970
+ msgstr "生成新密钥"
4971
+
4972
+ #: ../includes/mycred-remote.php:566
4973
+ msgid "Warning!"
4974
+ msgstr "警告!"
4975
+
4976
+ #: ../includes/mycred-remote.php:566
4977
+ msgid ""
4978
+ "Keep this key safe! Those you share this key with will be able to remotely "
4979
+ "deduct / add / transfer %plural%!"
4980
+ msgstr ""
4981
+ "保证这个密钥的安全!那些你一起分享这个密钥的人就能远程扣除/添加/转让 %plural"
4982
+ "%!"
4983
+
4984
+ #: ../includes/mycred-remote.php:568
4985
+ msgid "Incoming URI"
4986
+ msgstr "传入的URI"
4987
+
4988
+ #: ../includes/mycred-remote.php:572
4989
+ msgid ""
4990
+ "The incoming call address. Remote calls made to any other URL will be "
4991
+ "ignored."
4992
+ msgstr "传入的地址。任何其他的URL做远程调用将被忽略。"
4993
+
4994
+ #: ../includes/mycred-remote.php:575
4995
+ msgid "Debug Mode"
4996
+ msgstr "调试模式"
4997
+
4998
+ #: ../includes/mycred-remote.php:578
4999
+ msgid ""
5000
+ "Remember to disable when not used to prevent mischievous calls from learning "
5001
+ "about your setup!"
5002
+ msgstr "如果不使用,记住要关闭!防止恶意传入请求来获取你的设置!"
5003
+
5004
+ #: ../includes/mycred-shortcodes.php:175
5005
+ msgid "Leaderboard is empty."
5006
+ msgstr "排行榜是空的。"
5007
+
5008
+ #: ../includes/mycred-shortcodes.php:525
5009
+ msgid "Anchor missing URL!"
5010
+ msgstr "缺失锚文本链接"
5011
+
5012
+ #: ../includes/mycred-shortcodes.php:637
5013
+ msgid "Sent"
5014
+ msgstr "已发送"
5015
+
5016
+ #: ../includes/mycred-shortcodes.php:638
5017
+ msgid "Error - Try Again"
5018
+ msgstr "错误 - 请重试"
5019
+
5020
+ #: ../includes/mycred-shortcodes.php:764
5021
+ msgid "A video ID is required for this shortcode"
5022
+ msgstr "这个简码需要一个视频ID"
5023
+
5024
+ #: ../includes/mycred-shortcodes.php:957
5025
+ #, php-format
5026
+ msgid "Convert <span>%s</span> to <span>%s</span>"
5027
+ msgstr "转换<span>%s</span>为<span>%s</span>"
5028
+
5029
+ #: ../includes/mycred-shortcodes.php:966
5030
+ #, php-format
5031
+ msgid "Your current %s balance"
5032
+ msgstr "您当前的 %s 余额"
5033
+
5034
+ #: ../includes/mycred-shortcodes.php:974
5035
+ #, php-format
5036
+ msgid "Minimum %s"
5037
+ msgstr "至少%s"
5038
+
5039
+ #: ../includes/mycred-shortcodes.php:978
5040
+ #, php-format
5041
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
5042
+ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
5043
+
5044
+ #: ../includes/mycred-shortcodes.php:984
5045
+ msgid "Exchange"
5046
+ msgstr "兑换"
5047
+
5048
+ #: ../includes/mycred-shortcodes.php:1049
5049
+ msgid "No instances found for this point type"
5050
+ msgstr "未找到该积分类型的实例。"
5051
+
5052
+ #: ../includes/mycred-shortcodes.php:1053
5053
+ msgid "Invalid point type"
5054
+ msgstr "无效的积分类型"
5055
+
5056
+ #: ../includes/mycred-shortcodes.php:1112
5057
+ msgid "Instance"
5058
+ msgstr "实例"
5059
+
5060
+ #: ../includes/mycred-shortcodes.php:1114
5061
+ #: ../modules/mycred-module-hooks.php:600
5062
+ #: ../modules/mycred-module-hooks.php:607
5063
+ #: ../modules/mycred-module-hooks.php:631
5064
+ #: ../modules/mycred-module-hooks.php:638
5065
+ #: ../modules/mycred-module-hooks.php:706
5066
+ #: ../modules/mycred-module-hooks.php:713
5067
+ #: ../modules/mycred-module-hooks.php:919
5068
+ #: ../modules/mycred-module-hooks.php:1050
5069
+ #: ../modules/mycred-module-hooks.php:1067
5070
+ #: ../modules/mycred-module-hooks.php:1114
5071
+ #: ../modules/mycred-module-hooks.php:2817
5072
+ #: ../modules/mycred-module-hooks.php:2846
5073
+ #: ../plugins/mycred-hook-affiliatewp.php:237
5074
+ #: ../plugins/mycred-hook-bbPress.php:410
5075
+ #: ../plugins/mycred-hook-bbPress.php:440
5076
+ #: ../plugins/mycred-hook-bbPress.php:475
5077
+ #: ../plugins/mycred-hook-bbPress.php:492
5078
+ #: ../plugins/mycred-hook-buddypress-gallery.php:102
5079
+ #: ../plugins/mycred-hook-buddypress-links.php:250
5080
+ #: ../plugins/mycred-hook-buddypress-links.php:267
5081
+ #: ../plugins/mycred-hook-buddypress-links.php:284
5082
+ #: ../plugins/mycred-hook-buddypress-links.php:294
5083
+ #: ../plugins/mycred-hook-buddypress-links.php:303
5084
+ #: ../plugins/mycred-hook-buddypress-links.php:320
5085
+ #: ../plugins/mycred-hook-buddypress-media.php:209
5086
+ #: ../plugins/mycred-hook-buddypress-media.php:223
5087
+ #: ../plugins/mycred-hook-buddypress-media.php:237
5088
+ #: ../plugins/mycred-hook-buddypress.php:490
5089
+ #: ../plugins/mycred-hook-buddypress.php:507
5090
+ #: ../plugins/mycred-hook-buddypress.php:524
5091
+ #: ../plugins/mycred-hook-buddypress.php:541
5092
+ #: ../plugins/mycred-hook-buddypress.php:574
5093
+ #: ../plugins/mycred-hook-buddypress.php:604
5094
+ #: ../plugins/mycred-hook-buddypress.php:621
5095
+ #: ../plugins/mycred-hook-buddypress.php:1193
5096
+ #: ../plugins/mycred-hook-buddypress.php:1210
5097
+ #: ../plugins/mycred-hook-buddypress.php:1227
5098
+ #: ../plugins/mycred-hook-buddypress.php:1244
5099
+ #: ../plugins/mycred-hook-buddypress.php:1262
5100
+ #: ../plugins/mycred-hook-buddypress.php:1292
5101
+ #: ../plugins/mycred-hook-buddypress.php:1309
5102
+ #: ../plugins/mycred-hook-contact-form7.php:147
5103
+ #: ../plugins/mycred-hook-events-manager-light.php:192
5104
+ #: ../plugins/mycred-hook-gravityforms.php:148
5105
+ #: ../plugins/mycred-hook-invite-anyone.php:202
5106
+ #: ../plugins/mycred-hook-invite-anyone.php:205
5107
+ #: ../plugins/mycred-hook-invite-anyone.php:223
5108
+ #: ../plugins/mycred-hook-invite-anyone.php:226
5109
+ #: ../plugins/mycred-hook-sharethis.php:278
5110
+ #: ../plugins/mycred-hook-simplepress.php:284
5111
+ #: ../plugins/mycred-hook-simplepress.php:314
5112
+ #: ../plugins/mycred-hook-woocommerce.php:300
5113
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:213
5114
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:231
5115
+ #: ../plugins/mycred-hook-wp-postratings.php:156
5116
+ #: ../plugins/mycred-hook-wp-postratings.php:175
5117
+ msgid "Limit"
5118
+ msgstr "限制"
5119
+
5120
+ #: ../includes/mycred-widgets.php:22
5121
+ #, php-format
5122
+ msgid "Show the current users %s balance"
5123
+ msgstr "显示当前用户 %s 的余额"
5124
+
5125
+ #: ../includes/mycred-widgets.php:25
5126
+ #, php-format
5127
+ msgid "(%s) My Balance"
5128
+ msgstr "(%s) 我的余额"
5129
+
5130
+ #: ../includes/mycred-widgets.php:212
5131
+ msgid "Layout"
5132
+ msgstr "布局"
5133
+
5134
+ #: ../includes/mycred-widgets.php:220
5135
+ msgid "Include history"
5136
+ msgstr "包括历史"
5137
+
5138
+ #: ../includes/mycred-widgets.php:222
5139
+ msgid "History Title"
5140
+ msgstr "历史标题"
5141
+
5142
+ #: ../includes/mycred-widgets.php:224
5143
+ msgid "Number of entires"
5144
+ msgstr "条目数量"
5145
+
5146
+ #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:411
5147
+ msgid "Row layout"
5148
+ msgstr "行布局"
5149
+
5150
+ #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:612
5151
+ msgid "Show message when not logged in"
5152
+ msgstr "用户没有登录时显示信息"
5153
+
5154
+ #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:613
5155
+ msgid "Message"
5156
+ msgstr "信息"
5157
+
5158
+ #: ../includes/mycred-widgets.php:306
5159
+ #, php-format
5160
+ msgid "Show a list of users sorted by their %s balance"
5161
+ msgstr "显示用户排序根据他们的 %s 余额"
5162
+
5163
+ #: ../includes/mycred-widgets.php:309
5164
+ #, php-format
5165
+ msgid "(%s) Leaderboard"
5166
+ msgstr "(%s)排行榜"
5167
+
5168
+ #: ../includes/mycred-widgets.php:398
5169
+ msgid "Based On"
5170
+ msgstr "基于"
5171
+
5172
+ #: ../includes/mycred-widgets.php:400
5173
+ msgid ""
5174
+ "Use \"balance\" to base the leaderboard on your users current balances or "
5175
+ "use a specific reference."
5176
+ msgstr "使用 \"balance\" 可基于用户当前的余额来排序排行榜或者使用特定的参数。"
5177
+
5178
+ #: ../includes/mycred-widgets.php:400
5179
+ msgid "Reference Guide"
5180
+ msgstr "参数向导"
5181
+
5182
+ #: ../includes/mycred-widgets.php:405
5183
+ msgid "Visible to non-members"
5184
+ msgstr "对非会员可见"
5185
+
5186
+ #: ../includes/mycred-widgets.php:407
5187
+ msgid "Number of users"
5188
+ msgstr "用户数量"
5189
+
5190
+ #: ../includes/mycred-widgets.php:416
5191
+ msgid "Offset"
5192
+ msgstr "抵销"
5193
+
5194
+ #: ../includes/mycred-widgets.php:418
5195
+ msgid "Optional offset of order. Use zero to return the first in the list."
5196
+ msgstr "(可选)订单抵销。使用零返回第一个在列表中。"
5197
+
5198
+ #: ../includes/mycred-widgets.php:421
5199
+ msgid "Order"
5200
+ msgstr "订单"
5201
+
5202
+ #: ../includes/mycred-widgets.php:441
5203
+ msgid "Append current users position"
5204
+ msgstr "追加当前用户位置"
5205
+
5206
+ #: ../includes/mycred-widgets.php:442
5207
+ msgid ""
5208
+ "If the current user is not in this leaderboard, you can select to append "
5209
+ "them at the end with their current position."
5210
+ msgstr ""
5211
+ "如果当前用户不是在这个排行榜中,您可以选择追加他们到与他们的当前位置的尾部。"
5212
+
5213
+ #: ../includes/mycred-widgets.php:493
5214
+ msgid "Shows the current users balances for each point type."
5215
+ msgstr "显示当前用户每种积分类型的余额。"
5216
+
5217
+ #: ../includes/mycred-widgets.php:496
5218
+ #, php-format
5219
+ msgid "(%s) Wallet"
5220
+ msgstr "(%s) 钱包"
5221
+
5222
+ #: ../includes/mycred-widgets.php:604
5223
+ msgid "Row Layout"
5224
+ msgstr "行布局"
5225
+
5226
+ #: ../modules/mycred-module-addons.php:24
5227
+ #: ../modules/mycred-module-addons.php:25
5228
+ msgid "Add-ons"
5229
+ msgstr "扩展"
5230
+
5231
+ #: ../modules/mycred-module-addons.php:152
5232
+ msgid "Give your users badges based on their interaction with your website."
5233
+ msgstr "基于您的用户的活跃度奖励他们勋章。"
5234
+
5235
+ #: ../modules/mycred-module-addons.php:163
5236
+ msgid ""
5237
+ "Setup recurring payouts or offer / charge interest on user account balances."
5238
+ msgstr "设置经常性支出或支付/收取用户帐户余额的利息。"
5239
+
5240
+ #: ../modules/mycred-module-addons.php:174
5241
+ msgid ""
5242
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5243
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5244
+ "also let your users buy points for other members."
5245
+ msgstr ""
5246
+ "<strong>buy</strong>CRED 扩展允许用户使用PayPal、Skrill (Moneybookers) 或 "
5247
+ "NETbilling 购买积分。 <strong>buy</strong>CRED 也可以让你的用户为其他用户购买"
5248
+ "积分。"
5249
+
5250
+ #: ../modules/mycred-module-addons.php:185
5251
+ msgid ""
5252
+ "The coupons add-on allows you to create coupons that users can use to add "
5253
+ "points to their accounts."
5254
+ msgstr "优惠券扩展允许您创建优惠券,用户可以用它添加积分到他们的帐户。"
5255
+
5256
+ #: ../modules/mycred-module-addons.php:196
5257
+ msgid "Create email notices for any type of myCRED instance."
5258
+ msgstr "为任何类型的 myCRED 实例创建电子邮件通知。"
5259
+
5260
+ #: ../modules/mycred-module-addons.php:207
5261
+ msgid ""
5262
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
5263
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5264
+ "Bookings: Event Espresso and Events Manager (free & pro)."
5265
+ msgstr ""
5266
+ "让用户使用他们的 <strong>my</strong>CRED 积分余额进行支付。支持购物车:"
5267
+ "WooCommerce、 MarketPress 和 WP E-Commerce。支持活动预订:Event Espresso 和 "
5268
+ "Events Manager (免费版和专业版)。"
5269
+
5270
+ #: ../modules/mycred-module-addons.php:218
5271
+ msgid "Create pop-up notifications for when users gain or loose points."
5272
+ msgstr "当用户获得或失去积分时创建弹出通知。"
5273
+
5274
+ #: ../modules/mycred-module-addons.php:230
5275
+ msgid ""
5276
+ "Create ranks for users reaching a certain number of %_plural% with the "
5277
+ "option to add logos for each rank."
5278
+ msgstr ""
5279
+ "当用户达到一定数量的 %_plural% 时创建等级,使用这个选项为每个等级添加图标。"
5280
+
5281
+ #: ../modules/mycred-module-addons.php:241
5282
+ msgid ""
5283
+ "This add-on allows you to sell posts, pages or any public post types on your "
5284
+ "website. You can either sell the entire content or using our shortcode, sell "
5285
+ "parts of your content allowing you to offer \"teasers\"."
5286
+ msgstr ""
5287
+ "这个扩展允许您在您的网站上销售文章、页面或任何公开的文章类型。您可以销售文章"
5288
+ "的全部内容,或使用我们的简码来销售文章的部分内容。"
5289
+
5290
+ #: ../modules/mycred-module-addons.php:252
5291
+ msgid ""
5292
+ "Gives you access to your myCRED Staticstics based on your users gains and "
5293
+ "loses."
5294
+ msgstr "myCRED Staticstics为您提供基于用户的收益和失去的分析。"
5295
+
5296
+ #: ../modules/mycred-module-addons.php:263
5297
+ msgid ""
5298
+ "Allow your users to send or \"donate\" points to other members by either "
5299
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
5300
+ msgstr ""
5301
+ "通过使用 mycred_transfer 简码或 myCRED转让 小工具,允许用户发送或\"捐献\"积分"
5302
+ "给其他用户。"
5303
+
5304
+ #: ../modules/mycred-module-addons.php:302
5305
+ #, php-format
5306
+ msgid "%s Add-ons"
5307
+ msgstr "%s 扩展"
5308
+
5309
+ #: ../modules/mycred-module-addons.php:307
5310
+ msgid "Add-on Activated"
5311
+ msgstr "扩展已启用"
5312
+
5313
+ #: ../modules/mycred-module-addons.php:310
5314
+ msgid "Add-on Deactivated"
5315
+ msgstr "扩展已停用"
5316
+
5317
+ #: ../modules/mycred-module-addons.php:313
5318
+ msgid "Add-ons Reloaded"
5319
+ msgstr "扩展已重载"
5320
+
5321
+ #: ../modules/mycred-module-addons.php:316
5322
+ msgid "Add-ons can expand your current installation with further features."
5323
+ msgstr "扩展可以进一步扩展你目前所安装的功能。"
5324
+
5325
+ #: ../modules/mycred-module-addons.php:337
5326
+ msgid "Reload Add-ons"
5327
+ msgstr "重载扩展"
5328
+
5329
+ #: ../modules/mycred-module-addons.php:338
5330
+ #, php-format
5331
+ msgid "You can find more add-ons in our %s."
5332
+ msgstr "您可以在我们的 %s 找到更多扩展。"
5333
+
5334
+ #: ../modules/mycred-module-addons.php:338
5335
+ msgid "online store"
5336
+ msgstr "网上商店"
5337
+
5338
+ #: ../modules/mycred-module-addons.php:359
5339
+ msgid "Deactivate Add-on"
5340
+ msgstr "停用扩展"
5341
+
5342
+ #: ../modules/mycred-module-addons.php:360
5343
+ msgid "Deactivate"
5344
+ msgstr "停用"
5345
+
5346
+ #: ../modules/mycred-module-addons.php:367
5347
+ msgid "Activate Add-on"
5348
+ msgstr "启用扩展"
5349
+
5350
+ #: ../modules/mycred-module-addons.php:368
5351
+ msgid "Activate"
5352
+ msgstr "启用"
5353
+
5354
+ #: ../modules/mycred-module-addons.php:384
5355
+ msgid "Version"
5356
+ msgstr "版本"
5357
+
5358
+ #: ../modules/mycred-module-addons.php:388
5359
+ msgid "By"
5360
+ msgstr "由 "
5361
+
5362
+ #: ../modules/mycred-module-addons.php:392
5363
+ msgid "About"
5364
+ msgstr "关于"
5365
+
5366
+ #: ../modules/mycred-module-addons.php:396
5367
+ msgid "Get Pro"
5368
+ msgstr "获取专业版"
5369
+
5370
+ #: ../modules/mycred-module-buddypress.php:30
5371
+ msgid "My History"
5372
+ msgstr "我的历史"
5373
+
5374
+ #: ../modules/mycred-module-buddypress.php:31
5375
+ #, php-format
5376
+ msgid "%s's History"
5377
+ msgstr "%s 的历史"
5378
+
5379
+ #: ../modules/mycred-module-buddypress.php:121
5380
+ msgid "Current balance"
5381
+ msgstr "当前余额"
5382
+
5383
+ #: ../modules/mycred-module-buddypress.php:336
5384
+ msgid "Go"
5385
+ msgstr "访问"
5386
+
5387
+ #: ../modules/mycred-module-buddypress.php:392
5388
+ msgid "Show in Profile"
5389
+ msgstr "显示在个人资料"
5390
+
5391
+ #: ../modules/mycred-module-buddypress.php:407
5392
+ msgid "%singular% Balance"
5393
+ msgstr "%singular% 余额"
5394
+
5395
+ #: ../modules/mycred-module-buddypress.php:423
5396
+ msgid "Members and visitors can other members %_singular% balance."
5397
+ msgstr "用户和访客可以查看其他用户的 %_singular% 余额。"
5398
+
5399
+ #: ../modules/mycred-module-buddypress.php:433
5400
+ msgid "%plural% History"
5401
+ msgstr "%plural% 历史"
5402
+
5403
+ #: ../modules/mycred-module-buddypress.php:449
5404
+ msgid "Members can view each others %_plural% history."
5405
+ msgstr "用户可以查看对方的 %_plural% 历史。"
5406
+
5407
+ #: ../modules/mycred-module-buddypress.php:454
5408
+ msgid "Menu Title"
5409
+ msgstr "菜单标题"
5410
+
5411
+ #: ../modules/mycred-module-buddypress.php:456
5412
+ msgid "Title shown to me"
5413
+ msgstr "为我显示的标题"
5414
+
5415
+ #: ../modules/mycred-module-buddypress.php:461
5416
+ #, php-format
5417
+ msgid "Title shown to others. Use %s to show the first name."
5418
+ msgstr "为其他用户显示的标题。使用 %s 来显示名字。"
5419
+
5420
+ #: ../modules/mycred-module-buddypress.php:466
5421
+ msgid "Menu Position"
5422
+ msgstr "菜单位置"
5423
+
5424
+ #: ../modules/mycred-module-buddypress.php:468
5425
+ msgid "Current menu positions:"
5426
+ msgstr "当前菜单位置:"
5427
+
5428
+ #: ../modules/mycred-module-buddypress.php:473
5429
+ msgid "History URL slug"
5430
+ msgstr "历史URL别名"
5431
+
5432
+ #: ../modules/mycred-module-buddypress.php:475
5433
+ msgid "Do not use empty spaces!"
5434
+ msgstr "不要使用空格!"
5435
+
5436
+ #: ../modules/mycred-module-buddypress.php:480
5437
+ msgid "Number of history entries to show"
5438
+ msgstr "历史日志条目的显示数量"
5439
+
5440
+ #: ../modules/mycred-module-hooks.php:87
5441
+ msgid "%plural% for registrations"
5442
+ msgstr "%plural% 给注册"
5443
+
5444
+ #: ../modules/mycred-module-hooks.php:88
5445
+ msgid "Award %_plural% for users joining your website."
5446
+ msgstr "奖励 %_plural% 给注册您网站的用户。"
5447
+
5448
+ #: ../modules/mycred-module-hooks.php:94
5449
+ msgid "%plural% for daily visits"
5450
+ msgstr "%plural% 为每天查看"
5451
+
5452
+ #: ../modules/mycred-module-hooks.php:95
5453
+ msgid "Award %_plural% for users visiting your website on a daily basis."
5454
+ msgstr "奖励%_plural%为每天查看您的网站的用户。"
5455
+
5456
+ #: ../modules/mycred-module-hooks.php:101
5457
+ msgid "%plural% for viewing content"
5458
+ msgstr "%plural% 为查看内容"
5459
+
5460
+ #: ../modules/mycred-module-hooks.php:102
5461
+ msgid ""
5462
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5463
+ "authors for members viewing their content."
5464
+ msgstr "奖励%plural%给查看文章和/或奖励%plural%给内容作者或查看者。"
5465
+
5466
+ #: ../modules/mycred-module-hooks.php:108
5467
+ msgid "%plural% for logins"
5468
+ msgstr "%plural% 给登录"
5469
+
5470
+ #: ../modules/mycred-module-hooks.php:109
5471
+ msgid ""
5472
+ "Award %_plural% for logging in to your website. You can also set an optional "
5473
+ "limit."
5474
+ msgstr "奖励 %plural% 给登录您网站的用户。您还可以设置一个可选的限制。"
5475
+
5476
+ #: ../modules/mycred-module-hooks.php:115
5477
+ msgid "%plural% for publishing content"
5478
+ msgstr "%plural% 给发布内容"
5479
+
5480
+ #: ../modules/mycred-module-hooks.php:116
5481
+ msgid ""
5482
+ "Award %_plural% for publishing content on your website. If your custom post "
5483
+ "type is not shown bellow, make sure it is set to \"Public\"."
5484
+ msgstr ""
5485
+ "奖励 %_plural% 给在您的网站上发布内容。如果您的自定义文章类型没有显示在下面,"
5486
+ "请确保它是设置为 \"公开 \"。"
5487
+
5488
+ #: ../modules/mycred-module-hooks.php:122
5489
+ msgid "%plural% for comments"
5490
+ msgstr "%plural% 给评论"
5491
+
5492
+ #: ../modules/mycred-module-hooks.php:122
5493
+ msgid "%plural% for Disqus comments"
5494
+ msgstr "%plural% 给 Disqus 评论"
5495
+
5496
+ #: ../modules/mycred-module-hooks.php:123
5497
+ msgid "Award %_plural% for making comments."
5498
+ msgstr "奖励 %_plural% 给发布评论。"
5499
+
5500
+ #: ../modules/mycred-module-hooks.php:129
5501
+ msgid "%plural% for clicking on links"
5502
+ msgstr "%plural% 给点击链接"
5503
+
5504
+ #: ../modules/mycred-module-hooks.php:130
5505
+ msgid ""
5506
+ "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5507
+ "shortcode."
5508
+ msgstr "奖励 %_plural% 给那些点击使用 [mycred_link] 简码生成的链接的用户。"
5509
+
5510
+ #: ../modules/mycred-module-hooks.php:136
5511
+ msgid "%plural% for viewing Videos"
5512
+ msgstr "%plural% 给观看视频"
5513
+
5514
+ #: ../modules/mycred-module-hooks.php:137
5515
+ msgid ""
5516
+ "Award %_plural% to users who watches videos embedded using the "
5517
+ "[mycred_video] shortcode."
5518
+ msgstr "奖励 %_plural% 给那些观看使用 [mycred_video] 简码添加的视频的用户。"
5519
+
5520
+ #: ../modules/mycred-module-hooks.php:143
5521
+ msgid "%plural% for referrals"
5522
+ msgstr "%plural% 给推介"
5523
+
5524
+ #: ../modules/mycred-module-hooks.php:144
5525
+ msgid ""
5526
+ "Award %_plural% to users who refer either visitors and/or new member signups."
5527
+ msgstr "奖励 %_plural% 给那些推介其他访客和/或新用户注册的用户。"
5528
+
5529
+ #: ../modules/mycred-module-hooks.php:177
5530
+ #, php-format
5531
+ msgid "%s Hooks"
5532
+ msgstr "%s 钩子"
5533
+
5534
+ #: ../modules/mycred-module-hooks.php:180
5535
+ msgid ""
5536
+ "Hooks are instances where %_plural% are awarded or deducted from a user, "
5537
+ "depending on their actions around your website."
5538
+ msgstr ""
5539
+ "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们在您网站的操作实例。"
5540
+
5541
+ #: ../modules/mycred-module-hooks.php:362
5542
+ #: ../modules/mycred-module-hooks.php:459
5543
+ #: ../modules/mycred-module-hooks.php:611
5544
+ #: ../modules/mycred-module-hooks.php:642
5545
+ #: ../modules/mycred-module-hooks.php:717
5546
+ #: ../modules/mycred-module-hooks.php:1054
5547
+ #: ../modules/mycred-module-hooks.php:1071
5548
+ #: ../modules/mycred-module-hooks.php:1118
5549
+ #: ../modules/mycred-module-hooks.php:1545
5550
+ #: ../modules/mycred-module-hooks.php:1562
5551
+ #: ../modules/mycred-module-hooks.php:1579
5552
+ #: ../modules/mycred-module-hooks.php:2809
5553
+ #: ../modules/mycred-module-hooks.php:2838
5554
+ #: ../plugins/mycred-hook-affiliatewp.php:225
5555
+ #: ../plugins/mycred-hook-affiliatewp.php:242
5556
+ #: ../plugins/mycred-hook-badgeOS.php:298
5557
+ #: ../plugins/mycred-hook-bbPress.php:415
5558
+ #: ../plugins/mycred-hook-bbPress.php:428
5559
+ #: ../plugins/mycred-hook-bbPress.php:445
5560
+ #: ../plugins/mycred-hook-bbPress.php:463
5561
+ #: ../plugins/mycred-hook-bbPress.php:480
5562
+ #: ../plugins/mycred-hook-bbPress.php:497
5563
+ #: ../plugins/mycred-hook-bbPress.php:519
5564
+ #: ../plugins/mycred-hook-buddypress-gallery.php:107
5565
+ #: ../plugins/mycred-hook-buddypress-links.php:255
5566
+ #: ../plugins/mycred-hook-buddypress-links.php:272
5567
+ #: ../plugins/mycred-hook-buddypress-links.php:289
5568
+ #: ../plugins/mycred-hook-buddypress-links.php:308
5569
+ #: ../plugins/mycred-hook-buddypress-links.php:325
5570
+ #: ../plugins/mycred-hook-buddypress-links.php:338
5571
+ #: ../plugins/mycred-hook-buddypress-media.php:213
5572
+ #: ../plugins/mycred-hook-buddypress-media.php:227
5573
+ #: ../plugins/mycred-hook-buddypress-media.php:241
5574
+ #: ../plugins/mycred-hook-buddypress-media.php:254
5575
+ #: ../plugins/mycred-hook-buddypress-media.php:264
5576
+ #: ../plugins/mycred-hook-buddypress-media.php:274
5577
+ #: ../plugins/mycred-hook-buddypress.php:495
5578
+ #: ../plugins/mycred-hook-buddypress.php:512
5579
+ #: ../plugins/mycred-hook-buddypress.php:529
5580
+ #: ../plugins/mycred-hook-buddypress.php:549
5581
+ #: ../plugins/mycred-hook-buddypress.php:562
5582
+ #: ../plugins/mycred-hook-buddypress.php:579
5583
+ #: ../plugins/mycred-hook-buddypress.php:592
5584
+ #: ../plugins/mycred-hook-buddypress.php:609
5585
+ #: ../plugins/mycred-hook-buddypress.php:626
5586
+ #: ../plugins/mycred-hook-buddypress.php:1168
5587
+ #: ../plugins/mycred-hook-buddypress.php:1181
5588
+ #: ../plugins/mycred-hook-buddypress.php:1198
5589
+ #: ../plugins/mycred-hook-buddypress.php:1215
5590
+ #: ../plugins/mycred-hook-buddypress.php:1232
5591
+ #: ../plugins/mycred-hook-buddypress.php:1249
5592
+ #: ../plugins/mycred-hook-buddypress.php:1267
5593
+ #: ../plugins/mycred-hook-buddypress.php:1280
5594
+ #: ../plugins/mycred-hook-buddypress.php:1297
5595
+ #: ../plugins/mycred-hook-buddypress.php:1314
5596
+ #: ../plugins/mycred-hook-contact-form7.php:152
5597
+ #: ../plugins/mycred-hook-gravityforms.php:153
5598
+ #: ../plugins/mycred-hook-invite-anyone.php:197
5599
+ #: ../plugins/mycred-hook-invite-anyone.php:218
5600
+ #: ../plugins/mycred-hook-jetpack.php:506
5601
+ #: ../plugins/mycred-hook-jetpack.php:519
5602
+ #: ../plugins/mycred-hook-sharethis.php:283
5603
+ #: ../plugins/mycred-hook-simplepress.php:289
5604
+ #: ../plugins/mycred-hook-simplepress.php:302
5605
+ #: ../plugins/mycred-hook-simplepress.php:319
5606
+ #: ../plugins/mycred-hook-simplepress.php:337
5607
+ #: ../plugins/mycred-hook-wp-postratings.php:164
5608
+ #: ../plugins/mycred-hook-wp-postratings.php:183
5609
+ msgid "Log template"
5610
+ msgstr "日志模板"
5611
+
5612
+ #: ../modules/mycred-module-hooks.php:594
5613
+ msgid "%plural% for viewing Posts"
5614
+ msgstr "%plural%为查看文章"
5615
+
5616
+ #: ../modules/mycred-module-hooks.php:597
5617
+ #: ../modules/mycred-module-hooks.php:614
5618
+ #: ../modules/mycred-module-hooks.php:628
5619
+ #: ../modules/mycred-module-hooks.php:645
5620
+ #: ../modules/mycred-module-hooks.php:703
5621
+ #: ../modules/mycred-module-hooks.php:720
5622
+ msgid "Member"
5623
+ msgstr "会员"
5624
+
5625
+ #: ../modules/mycred-module-hooks.php:604
5626
+ #: ../modules/mycred-module-hooks.php:620
5627
+ #: ../modules/mycred-module-hooks.php:635
5628
+ #: ../modules/mycred-module-hooks.php:651
5629
+ #: ../modules/mycred-module-hooks.php:710
5630
+ #: ../modules/mycred-module-hooks.php:726
5631
+ #: ../modules/mycred-module-hooks.php:1540
5632
+ #: ../modules/mycred-module-hooks.php:1557
5633
+ #: ../modules/mycred-module-hooks.php:1574
5634
+ msgid "Content Author"
5635
+ msgstr "内容作者"
5636
+
5637
+ #: ../modules/mycred-module-hooks.php:625
5638
+ msgid "%plural% for viewing Pages"
5639
+ msgstr "%plural%为查看页面"
5640
+
5641
+ #: ../modules/mycred-module-hooks.php:700
5642
+ msgid "%plural% for viewing %s"
5643
+ msgstr "%plural% 为查看 %s"
5644
+
5645
+ #: ../modules/mycred-module-hooks.php:1044
5646
+ msgid "%plural% for Posts"
5647
+ msgstr "%plural% 给文章"
5648
+
5649
+ #: ../modules/mycred-module-hooks.php:1061
5650
+ msgid "%plural% for Pages"
5651
+ msgstr "%plural% 给页面"
5652
+
5653
+ #: ../modules/mycred-module-hooks.php:1108
5654
+ msgid "%plural% for %s"
5655
+ msgstr "%plural% 给 %s"
5656
+
5657
+ #: ../modules/mycred-module-hooks.php:1531
5658
+ msgid ""
5659
+ "%plural% are only awarded when your website has been synced with the Disqus "
5660
+ "server!"
5661
+ msgstr "只在你的网站和 Disqus 服务器同步的时候才奖励 %plural% 。"
5662
+
5663
+ #: ../modules/mycred-module-hooks.php:1536
5664
+ #: ../modules/mycred-module-hooks.php:1553
5665
+ #: ../modules/mycred-module-hooks.php:1570
5666
+ msgid "Comment Author"
5667
+ msgstr "评论作者"
5668
+
5669
+ #: ../modules/mycred-module-hooks.php:1550
5670
+ msgid "Comment Marked SPAM"
5671
+ msgstr "评论标识为垃圾"
5672
+
5673
+ #: ../modules/mycred-module-hooks.php:1567
5674
+ msgid "Trashed / Unapproved Comments"
5675
+ msgstr "丢弃/未经批准的评论"
5676
+
5677
+ #: ../modules/mycred-module-hooks.php:1587
5678
+ msgid "Limit per post"
5679
+ msgstr "每篇文章的限制"
5680
+
5681
+ #: ../modules/mycred-module-hooks.php:1589
5682
+ msgid ""
5683
+ "The number of comments per post that grants %_plural% to the comment author. "
5684
+ "Use zero for unlimited."
5685
+ msgstr "奖励 %_plural% 至评论作者的每个帖子的评论数。使用零为无限。"
5686
+
5687
+ #: ../modules/mycred-module-hooks.php:1593
5688
+ msgid "Limit per day"
5689
+ msgstr "每天的限制"
5690
+
5691
+ #: ../modules/mycred-module-hooks.php:1595
5692
+ msgid ""
5693
+ "Number of comments per day that grants %_plural%. Use zero for unlimited."
5694
+ msgstr "每天奖励 %_plural% 的留言数。使用零为无限。"
5695
+
5696
+ #: ../modules/mycred-module-hooks.php:1600
5697
+ msgid ""
5698
+ "%plural% is to be awarded even when comment authors reply to their own "
5699
+ "comment."
5700
+ msgstr "当评论作者回复自己的评论时同样奖励 %plural% "
5701
+
5702
+ #: ../modules/mycred-module-hooks.php:1671
5703
+ msgid "Once for each unique URL"
5704
+ msgstr "每个唯一的链接奖励一次"
5705
+
5706
+ #: ../modules/mycred-module-hooks.php:1672
5707
+ msgid "Once for each unique link id"
5708
+ msgstr "每个唯一的链接ID 奖励一次"
5709
+
5710
+ #: ../modules/mycred-module-hooks.php:1865
5711
+ msgid ""
5712
+ "The default amount to award for clicking on links. You can override this in "
5713
+ "the shortcode."
5714
+ msgstr "预设的点击链接的奖励数量。您可以在简码中覆盖它。"
5715
+
5716
+ #: ../modules/mycred-module-hooks.php:1872
5717
+ msgid "Custom tags: %url%, %title% or %id%."
5718
+ msgstr "自定义标签:%url% 、%title% 或 %id%。"
5719
+
5720
+ #: ../modules/mycred-module-hooks.php:1883
5721
+ #: ../modules/mycred-module-hooks.php:2922
5722
+ msgid "Note!"
5723
+ msgstr "注意!"
5724
+
5725
+ #: ../modules/mycred-module-hooks.php:1883
5726
+ msgid ""
5727
+ "If no ID is set when using the mycred_link shortcode, the shortcode will "
5728
+ "generate one automatically based on the value set under href. If you are "
5729
+ "using this feature for \"sharing\" content, it is recommended that you limit "
5730
+ "by ID."
5731
+ msgstr ""
5732
+ "如果使用 mycred_link 简码时没有设置ID,简码会自动根据 href 的值来生成一个。如"
5733
+ "果您使用这个函数来 \"共享 \"内容,建议您通过ID进行限制。"
5734
+
5735
+ #: ../modules/mycred-module-hooks.php:1885
5736
+ #: ../modules/mycred-module-hooks.php:2244
5737
+ msgid "Available Shortcode"
5738
+ msgstr "可用简码"
5739
+
5740
+ #: ../modules/mycred-module-hooks.php:2208
5741
+ msgid "Amount to award for viewing videos."
5742
+ msgstr "奖励给观看视频的数量"
5743
+
5744
+ #: ../modules/mycred-module-hooks.php:2218
5745
+ msgid "Award Logic"
5746
+ msgstr "奖励逻辑"
5747
+
5748
+ #: ../modules/mycred-module-hooks.php:2220
5749
+ msgid "Select when %_plural% should be awarded or deducted."
5750
+ msgstr "选择什么时候奖励或扣除 %_plural% 。"
5751
+
5752
+ #: ../modules/mycred-module-hooks.php:2221
5753
+ msgid "Play - As soon as video starts playing."
5754
+ msgstr "播放 - 当视频开始播放。"
5755
+
5756
+ #: ../modules/mycred-module-hooks.php:2222
5757
+ msgid "Full - First when the entire video has played."
5758
+ msgstr "完整 - 当整个视频已经播放完。"
5759
+
5760
+ #: ../modules/mycred-module-hooks.php:2223
5761
+ msgid "Interval - For each x number of seconds watched."
5762
+ msgstr "间隔 - 每个观看了 X 秒。"
5763
+
5764
+ #: ../modules/mycred-module-hooks.php:2228
5765
+ msgid "Number of seconds"
5766
+ msgstr "秒数"
5767
+
5768
+ #: ../modules/mycred-module-hooks.php:2235
5769
+ msgid "Leniency"
5770
+ msgstr "宽大"
5771
+
5772
+ #: ../modules/mycred-module-hooks.php:2237
5773
+ msgid ""
5774
+ "The maximum percentage a users view of a movie can differ from the actual "
5775
+ "length."
5776
+ msgstr "用户观看电影的最大百分比,可以不同于电影的实际长度。"
5777
+
5778
+ #: ../modules/mycred-module-hooks.php:2240
5779
+ msgid ""
5780
+ "Do not set this value to zero! A lot of thing can happen while a user "
5781
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
5782
+ "buffering or play back errors."
5783
+ msgstr ""
5784
+ "不要设置此值为零!用户观看一部电影可能发生很多事情,有时由于缓冲或播放错误,"
5785
+ "几秒钟就可以删除计数器。"
5786
+
5787
+ #: ../modules/mycred-module-hooks.php:2308
5788
+ msgid "Affiliate Program"
5789
+ msgstr "联盟计划"
5790
+
5791
+ #: ../modules/mycred-module-hooks.php:2317
5792
+ msgid "Per Day"
5793
+ msgstr "每天"
5794
+
5795
+ #: ../modules/mycred-module-hooks.php:2467
5796
+ msgid "Link"
5797
+ msgstr "链接"
5798
+
5799
+ #: ../modules/mycred-module-hooks.php:2471
5800
+ msgid "Visitors Referred"
5801
+ msgstr "游客推介"
5802
+
5803
+ #: ../modules/mycred-module-hooks.php:2475
5804
+ msgid "Signups Referred"
5805
+ msgstr "注册推介"
5806
+
5807
+ #: ../modules/mycred-module-hooks.php:2803
5808
+ #: ../plugins/mycred-hook-affiliatewp.php:231
5809
+ msgid "Referring Visitors"
5810
+ msgstr "推介访客"
5811
+
5812
+ #: ../modules/mycred-module-hooks.php:2827
5813
+ #: ../modules/mycred-module-hooks.php:2856
5814
+ msgid "The number of referrals each member can make. Use zero for unlimited."
5815
+ msgstr "每个用户可以推介的人数。使用零为无限。"
5816
+
5817
+ #: ../modules/mycred-module-hooks.php:2831
5818
+ #: ../modules/mycred-module-hooks.php:2860
5819
+ msgid "Referring Signups"
5820
+ msgstr "推介注册"
5821
+
5822
+ #: ../modules/mycred-module-hooks.php:2835
5823
+ msgid "Visitors who have Cookies disabled will not award %_plural%."
5824
+ msgstr "访客禁用 Cookies 的话是不奖励 %_plural% 的。"
5825
+
5826
+ #: ../modules/mycred-module-hooks.php:2862
5827
+ msgid "Registrations are disabled."
5828
+ msgstr "注册被禁用。"
5829
+
5830
+ #: ../modules/mycred-module-hooks.php:2870
5831
+ msgid "Referral Links"
5832
+ msgstr "推介链接"
5833
+
5834
+ #: ../modules/mycred-module-hooks.php:2874
5835
+ msgid "Assign numeric referral IDs to each user."
5836
+ msgstr "分配数字推介ID给每个用户。"
5837
+
5838
+ #: ../modules/mycred-module-hooks.php:2875
5839
+ #: ../modules/mycred-module-hooks.php:2881
5840
+ msgid "Example"
5841
+ msgstr "例如"
5842
+
5843
+ #: ../modules/mycred-module-hooks.php:2880
5844
+ msgid "Assign usernames as IDs for each user."
5845
+ msgstr "分配用户名作为ID给每个用户。"
5846
+
5847
+ #: ../modules/mycred-module-hooks.php:2884
5848
+ msgid "IP Limit"
5849
+ msgstr "IP限制"
5850
+
5851
+ #: ../modules/mycred-module-hooks.php:2888
5852
+ msgid ""
5853
+ "The number of times each IP address grants %_plural%. Use zero for unlimited."
5854
+ msgstr "每个IP可获得奖励 %_plural% 的次数。使用零为无限。"
5855
+
5856
+ #: ../modules/mycred-module-hooks.php:2892
5857
+ #: ../modules/mycred-module-hooks.php:2926
5858
+ msgid "BuddyPress Profile"
5859
+ msgstr "BuddyPress 个人资料"
5860
+
5861
+ #: ../modules/mycred-module-hooks.php:2895
5862
+ msgid "Insert Link in users Profile"
5863
+ msgstr "在用户的个人资料插入链接"
5864
+
5865
+ #: ../modules/mycred-module-hooks.php:2896
5866
+ msgid ""
5867
+ "Option to inser the referral link in users profiles. Links will only be "
5868
+ "visible to users viewing their own profiles or administrators."
5869
+ msgstr ""
5870
+ "选项用来在用户的个人资料中插入推介链接。链接只对管理员或用户自己查看他们的个"
5871
+ "人资料时可见。"
5872
+
5873
+ #: ../modules/mycred-module-hooks.php:2902
5874
+ msgid "Leave empty to hide."
5875
+ msgstr "留空则隐藏。"
5876
+
5877
+ #: ../modules/mycred-module-hooks.php:2905
5878
+ msgid "Description"
5879
+ msgstr "描述"
5880
+
5881
+ #: ../modules/mycred-module-hooks.php:2906
5882
+ msgid "Optional description to insert under the link."
5883
+ msgstr "(可选)插入到链接中的描述"
5884
+
5885
+ #: ../modules/mycred-module-hooks.php:2919
5886
+ msgid "Profile Positioning"
5887
+ msgstr "个人资料定位"
5888
+
5889
+ #: ../modules/mycred-module-hooks.php:2921
5890
+ msgid ""
5891
+ "You can move around the referral link on your users profile by changing the "
5892
+ "position. Increase to move up, decrease to move down."
5893
+ msgstr "您可以在个人资料中更改推荐链接的位置。增加则向上移动,减少则向下移动。"
5894
+
5895
+ #: ../modules/mycred-module-hooks.php:2922
5896
+ msgid ""
5897
+ "You can not move the referral link above the users \"Base\" profile details!"
5898
+ msgstr "你不能移动推介链接到用户的\"基本\"资料信息上方!"
5899
+
5900
+ #: ../modules/mycred-module-hooks.php:2928
5901
+ msgid "Requires BuddyPress Extended Profiles to be enabled."
5902
+ msgstr "需要启用 BuddyPress 个人资料扩展。"
5903
+
5904
+ #: ../modules/mycred-module-log.php:192 ../modules/mycred-module-log.php:213
5905
+ #: ../modules/mycred-module-settings.php:61
5906
+ #: ../modules/mycred-module-settings.php:102
5907
+ msgid "Access denied for this action"
5908
+ msgstr "拒绝访问这个动作"
5909
+
5910
+ #: ../modules/mycred-module-log.php:199
5911
+ msgid "Row Deleted"
5912
+ msgstr "行已删除"
5913
+
5914
+ #: ../modules/mycred-module-log.php:226
5915
+ msgid "Log entry not found"
5916
+ msgstr "没有找到日志条目"
5917
+
5918
+ #: ../modules/mycred-module-log.php:239
5919
+ msgid "Entry Updated"
5920
+ msgstr "项目更新"
5921
+
5922
+ #: ../modules/mycred-module-log.php:293
5923
+ #: ../modules/mycred-module-settings.php:585
5924
+ msgid "Entries"
5925
+ msgstr "条目"
5926
+
5927
+ #: ../modules/mycred-module-log.php:308 ../modules/mycred-module-log.php:403
5928
+ #: ../modules/mycred-module-log.php:653
5929
+ #: ../modules/mycred-module-settings.php:722
5930
+ msgid "Export"
5931
+ msgstr "导出"
5932
+
5933
+ #: ../modules/mycred-module-log.php:314
5934
+ msgid "Search results for"
5935
+ msgstr "搜索结果"
5936
+
5937
+ #: ../modules/mycred-module-log.php:382
5938
+ #, php-format
5939
+ msgid "%s Log"
5940
+ msgstr "%s 日志"
5941
+
5942
+ #: ../modules/mycred-module-log.php:393
5943
+ msgid ""
5944
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
5945
+ "Certain hooks and shortcodes will not work correctly!"
5946
+ msgstr "警告。Mcrypt PHP库未在该服务器上安装!中央银行和缎带吗将不会正常工作!"
5947
+
5948
+ #: ../modules/mycred-module-log.php:525
5949
+ msgid "Edit"
5950
+ msgstr "编辑"
5951
+
5952
+ #: ../modules/mycred-module-log.php:566
5953
+ msgid "Time"
5954
+ msgstr "时间"
5955
+
5956
+ #: ../modules/mycred-module-log.php:570
5957
+ msgid "Current Log Entry"
5958
+ msgstr "当前日志条目"
5959
+
5960
+ #: ../modules/mycred-module-log.php:572
5961
+ msgid "The current saved log entry"
5962
+ msgstr "当前保存的日志条目"
5963
+
5964
+ #: ../modules/mycred-module-log.php:575
5965
+ msgid "Adjust Log Entry"
5966
+ msgstr "调整日志条目"
5967
+
5968
+ #: ../modules/mycred-module-log.php:577
5969
+ msgid "The new log entry"
5970
+ msgstr "新的日志条目"
5971
+
5972
+ #: ../modules/mycred-module-log.php:580
5973
+ msgid "Update Log Entry"
5974
+ msgstr "更新日志条目"
5975
+
5976
+ #: ../modules/mycred-module-log.php:647
5977
+ #, php-format
5978
+ msgid "My %s History"
5979
+ msgstr "我的 %s 历史"
5980
+
5981
+ #: ../modules/mycred-module-settings.php:65
5982
+ #: ../modules/mycred-module-settings.php:106
5983
+ #: ../modules/mycred-module-settings.php:158
5984
+ msgid "Missing point type"
5985
+ msgstr "缺失积分类型"
5986
+
5987
+ #: ../modules/mycred-module-settings.php:137
5988
+ msgid "Accounts successfully reset"
5989
+ msgstr "账户成功重置"
5990
+
5991
+ #: ../modules/mycred-module-settings.php:184
5992
+ msgid "No users found to export"
5993
+ msgstr "没有找到用户要导出"
5994
+
5995
+ #: ../modules/mycred-module-settings.php:234
5996
+ msgid "Invalid decimal value."
5997
+ msgstr "无效的小数值。"
5998
+
5999
+ #: ../modules/mycred-module-settings.php:281
6000
+ msgid "Log Updated"
6001
+ msgstr "记录已更新"
6002
+
6003
+ #: ../modules/mycred-module-settings.php:397
6004
+ msgid "Update Database"
6005
+ msgstr "更新数据库"
6006
+
6007
+ #: ../modules/mycred-module-settings.php:398
6008
+ msgid "Zero for no decimals or maximum 20."
6009
+ msgstr "0意味着没有小数或者最多20."
6010
+
6011
+ #: ../modules/mycred-module-settings.php:401
6012
+ #: ../modules/mycred-module-settings.php:498
6013
+ msgid "Tip"
6014
+ msgstr "提示"
6015
+
6016
+ #: ../modules/mycred-module-settings.php:401
6017
+ msgid ""
6018
+ "As this is your main point type, the value you select here will be the "
6019
+ "largest number of decimals your installation will support."
6020
+ msgstr ""
6021
+ "由于这是您的默认的几分类型,您在此选定的值将会成为该实例支持的最大的小数位"
6022
+ "数。"
6023
+
6024
+ #: ../modules/mycred-module-settings.php:414
6025
+ #: ../modules/mycred-module-settings.php:427
6026
+ msgid "No decimals"
6027
+ msgstr "五小数"
6028
+
6029
+ #: ../modules/mycred-module-settings.php:439
6030
+ #, php-format
6031
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
6032
+ msgstr "<a href=\"%s\">点击这里</a> 以修改您的默认积分类型设置。"
6033
+
6034
+ #: ../modules/mycred-module-settings.php:475
6035
+ #, php-format
6036
+ msgid "%s Settings"
6037
+ msgstr "%s 设置"
6038
+
6039
+ #: ../modules/mycred-module-settings.php:478
6040
+ msgid "Adjust your core or add-on settings."
6041
+ msgstr "调整您的核心或扩展设置。"
6042
+
6043
+ #: ../modules/mycred-module-settings.php:483
6044
+ msgid "Core Settings"
6045
+ msgstr "核心设置"
6046
+
6047
+ #: ../modules/mycred-module-settings.php:485
6048
+ msgid "Name"
6049
+ msgstr "名字"
6050
+
6051
+ #: ../modules/mycred-module-settings.php:490
6052
+ msgid "Accessible though the %singular% template tag."
6053
+ msgstr "可通过 %singular% 模板标签访问。"
6054
+
6055
+ #: ../modules/mycred-module-settings.php:495
6056
+ msgid "Accessible though the %plural% template tag."
6057
+ msgstr "可通过 %plural% 模板标签访问。"
6058
+
6059
+ #: ../modules/mycred-module-settings.php:498
6060
+ msgid ""
6061
+ "Adding an underscore at the beginning of template tag for names will return "
6062
+ "them in lowercase. i.e. %_singular%"
6063
+ msgstr "在模板标签名字前面添加下划线将返回小写字母。例如 %_singular%"
6064
+
6065
+ #: ../modules/mycred-module-settings.php:520
6066
+ msgid "Separator"
6067
+ msgid_plural "Separators"
6068
+ msgstr[0] "分隔符"
6069
+ msgstr[1] "分隔符"
6070
+
6071
+ #: ../modules/mycred-module-settings.php:527
6072
+ msgid "Edit Settings"
6073
+ msgstr "编辑设置"
6074
+
6075
+ #: ../modules/mycred-module-settings.php:529
6076
+ #: ../modules/mycred-module-settings.php:534
6077
+ msgid "Capability to check for."
6078
+ msgstr "操作能力检查。"
6079
+
6080
+ #: ../modules/mycred-module-settings.php:532
6081
+ msgid "Edit Users %plural%"
6082
+ msgstr "编辑用户 %plural%"
6083
+
6084
+ #: ../modules/mycred-module-settings.php:556
6085
+ msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6086
+ msgstr "逗号分隔的用户id列表将被排除。不允许使用空格!"
6087
+
6088
+ #: ../modules/mycred-module-settings.php:576
6089
+ msgid "Management"
6090
+ msgstr "管理"
6091
+
6092
+ #: ../modules/mycred-module-settings.php:578
6093
+ msgid "The Log"
6094
+ msgstr "日志"
6095
+
6096
+ #: ../modules/mycred-module-settings.php:581
6097
+ msgid "Table Name"
6098
+ msgstr "标签名称"
6099
+
6100
+ #: ../modules/mycred-module-settings.php:590
6101
+ msgid "Empty Log"
6102
+ msgstr "空日志"
6103
+
6104
+ #: ../modules/mycred-module-settings.php:605
6105
+ msgid "Set all to zero"
6106
+ msgstr "全部设为零"
6107
+
6108
+ #: ../modules/mycred-module-settings.php:605
6109
+ msgid "CSV Export"
6110
+ msgstr "CSV导出"
6111
+
6112
+ #: ../modules/mycred-module-settings.php:625
6113
+ msgid "Default"
6114
+ msgstr "默认"
6115
+
6116
+ #: ../modules/mycred-module-settings.php:628
6117
+ #: ../modules/mycred-module-settings.php:647
6118
+ #: ../modules/mycred-module-settings.php:669
6119
+ msgid "Meta Key"
6120
+ msgstr "Meta键"
6121
+
6122
+ #: ../modules/mycred-module-settings.php:666
6123
+ msgid "Add New Type"
6124
+ msgstr "添加新类型"
6125
+
6126
+ #: ../modules/mycred-module-settings.php:671
6127
+ msgid "A unique ID for this type."
6128
+ msgstr "给这种类型一个唯一的ID。"
6129
+
6130
+ #: ../modules/mycred-module-settings.php:676
6131
+ msgid "Menu and page title."
6132
+ msgstr "菜单和页面标题。"
6133
+
6134
+ #: ../modules/mycred-module-settings.php:679
6135
+ msgid ""
6136
+ "The meta key must be lowercase and only contain letters or underscores. All "
6137
+ "other characters will be deleted!"
6138
+ msgstr "meta key仅可使用小写字母和下划线。全部其它字符将会被删除!"
6139
+
6140
+ #: ../modules/mycred-module-settings.php:700
6141
+ msgid "Identify users by"
6142
+ msgstr "通过什么识别用户"
6143
+
6144
+ #: ../modules/mycred-module-settings.php:706
6145
+ msgid "User Email"
6146
+ msgstr "用户邮件"
6147
+
6148
+ #: ../modules/mycred-module-settings.php:707
6149
+ msgid "User Login"
6150
+ msgstr "用户登录"
6151
+
6152
+ #: ../modules/mycred-module-settings.php:714
6153
+ msgid ""
6154
+ "Use ID if you intend to use this export as a backup of your current site "
6155
+ "while Email is recommended if you want to export to a different site."
6156
+ msgstr ""
6157
+ "如果你打算使用这个导出作为当前网站的备份,并且导入到另一个不同的站点的话,推"
6158
+ "荐使用ID。"
6159
+
6160
+ #: ../modules/mycred-module-settings.php:717
6161
+ msgid "Import Log Entry"
6162
+ msgstr "导入日志条目"
6163
+
6164
+ #: ../modules/mycred-module-settings.php:719
6165
+ #, php-format
6166
+ msgid ""
6167
+ "Optional log entry to use if you intend to import this file in a different "
6168
+ "%s installation."
6169
+ msgstr "(可选)使用日志条目,如果你打算在一个不同的 %s 安装中导入这个文件。"
6170
+
6171
+ #: ../mycred.php:449
6172
+ msgid "Balance"
6173
+ msgstr "余额"
6174
+
6175
+ #: ../mycred.php:474
6176
+ msgid "%label% History"
6177
+ msgstr "%label% 历史"
6178
+
6179
+ #: ../mycred.php:567
6180
+ #, php-format
6181
+ msgid "About %s"
6182
+ msgstr "关于 %s"
6183
+
6184
+ #: ../mycred.php:576
6185
+ msgid "Awesome People"
6186
+ msgstr "太棒了"
6187
+
6188
+ #: ../mycred.php:662
6189
+ msgid ""
6190
+ "Warning! All entries in your log will be permanently removed! This can not "
6191
+ "be undone!"
6192
+ msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
6193
+
6194
+ #: ../mycred.php:663
6195
+ msgid ""
6196
+ "All log entries belonging to deleted users will be permanently deleted! This "
6197
+ "can not be undone!"
6198
+ msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
6199
+
6200
+ #: ../mycred.php:664
6201
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
6202
+ msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
6203
+
6204
+ #: ../mycred.php:665
6205
+ msgid "Done!"
6206
+ msgstr "完成了!"
6207
+
6208
+ #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
6209
+ msgid "Close"
6210
+ msgstr "关闭"
6211
+
6212
+ #: ../mycred.php:667
6213
+ msgid "Export users %plural%"
6214
+ msgstr "导出用户 %plural%"
6215
+
6216
+ #: ../mycred.php:668
6217
+ msgid ""
6218
+ "In order to adjust the number of decimal places you want to use we must "
6219
+ "update your log. It is highly recommended that you backup your current log "
6220
+ "before continuing!"
6221
+ msgstr ""
6222
+ "为了调整为您想使用的小数位,我们必须更新您的日志。强烈推荐您在继续之前备份当"
6223
+ "前的日志!"
6224
+
6225
+ #: ../mycred.php:684
6226
+ msgid "Edit Users Balance"
6227
+ msgstr "编辑用户余额"
6228
+
6229
+ #: ../mycred.php:702
6230
+ msgid "Edit Log Entry"
6231
+ msgstr "编辑日志条目"
6232
+
6233
+ #: ../mycred.php:706
6234
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
6235
+ msgstr "您确定要删除此日志条目?此操作无法撤消!"
6236
+
6237
+ #: ../mycred.php:707
6238
+ msgid "Log entry updated"
6239
+ msgstr "日志条目更新"
6240
+
6241
+ #: ../mycred.php:803
6242
+ msgid ""
6243
+ "Make sure to backup your database and files before updating, in case "
6244
+ "anything goes wrong!"
6245
+ msgstr "请务必在更新前备份你的数据库和文件,以防出错!"
6246
+
6247
+ #: ../plugins/mycred-hook-affiliatewp.php:18
6248
+ msgid "AffiliateWP"
6249
+ msgstr "AffiliateWP"
6250
+
6251
+ #: ../plugins/mycred-hook-affiliatewp.php:19
6252
+ msgid ""
6253
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
6254
+ "referrals."
6255
+ msgstr "为推介注册,推介访客和商城消费推广奖励%_plural%。"
6256
+
6257
+ #: ../plugins/mycred-hook-affiliatewp.php:218
6258
+ msgid "Affiliate Signup"
6259
+ msgstr "推介注册"
6260
+
6261
+ #: ../plugins/mycred-hook-affiliatewp.php:248
6262
+ msgid "Referring Sales"
6263
+ msgstr "销售推广"
6264
+
6265
+ #: ../plugins/mycred-hook-affiliatewp.php:251
6266
+ msgid "Pay a set amount for all referrals."
6267
+ msgstr "所有推荐支付固定金额。"
6268
+
6269
+ #: ../plugins/mycred-hook-affiliatewp.php:252
6270
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
6271
+ msgstr "AffiliateWP 将会使用%plural% 作为币种以支付推介费用。"
6272
+
6273
+ #: ../plugins/mycred-hook-affiliatewp.php:253
6274
+ msgid "Apply an exchange rate against the referral amount."
6275
+ msgstr "应用一个用于推介数额的转换率。"
6276
+
6277
+ #: ../plugins/mycred-hook-affiliatewp.php:261
6278
+ msgid "Log template - Payout"
6279
+ msgstr "记录模板 - 支付完毕"
6280
+
6281
+ #: ../plugins/mycred-hook-affiliatewp.php:266
6282
+ msgid "Log template - Refund"
6283
+ msgstr "记录模板- 退款"
6284
+
6285
+ #: ../plugins/mycred-hook-badgeOS.php:18
6286
+ msgid "BadgeOS"
6287
+ msgstr "BadgeOS"
6288
+
6289
+ #: ../plugins/mycred-hook-badgeOS.php:19
6290
+ msgid ""
6291
+ "Default settings for each BadgeOS Achievement type. These settings may be "
6292
+ "overridden for individual achievement type."
6293
+ msgstr "为每个 BadgeOS 成就类型的默认设置。这些设置可以被单个成就类型覆盖。"
6294
+
6295
+ #: ../plugins/mycred-hook-badgeOS.php:105
6296
+ #, php-format
6297
+ msgid ""
6298
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
6299
+ "feature."
6300
+ msgstr "在使用这个功能前,请设置您的 <a href=\"%s\">默认设置</a>。"
6301
+
6302
+ #: ../plugins/mycred-hook-badgeOS.php:118
6303
+ #: ../plugins/mycred-hook-badgeOS.php:120
6304
+ msgid "%plural% to Award"
6305
+ msgstr "%plural% 要奖励"
6306
+
6307
+ #: ../plugins/mycred-hook-badgeOS.php:122
6308
+ msgid "Use zero to disable"
6309
+ msgstr "使用零禁用"
6310
+
6311
+ #: ../plugins/mycred-hook-badgeOS.php:133
6312
+ msgid "Deduction Log Template"
6313
+ msgstr "扣除日志模板"
6314
+
6315
+ #: ../plugins/mycred-hook-badgeOS.php:278
6316
+ #, php-format
6317
+ msgid "Default %s for %s"
6318
+ msgstr "%s 的默认 %s"
6319
+
6320
+ #: ../plugins/mycred-hook-badgeOS.php:284
6321
+ msgid "Use zero to disable users gaining %_plural%"
6322
+ msgstr "使用零来禁用用户获得 %_plural%"
6323
+
6324
+ #: ../plugins/mycred-hook-badgeOS.php:288
6325
+ msgid "Default Log template"
6326
+ msgstr "默认日志模板"
6327
+
6328
+ #: ../plugins/mycred-hook-badgeOS.php:294
6329
+ msgid "Deduct %_plural% if user looses "
6330
+ msgstr "如果用户失去了 减少 %_plural% "
6331
+
6332
+ #: ../plugins/mycred-hook-bbPress.php:18
6333
+ msgid "bbPress"
6334
+ msgstr "bbPress"
6335
+
6336
+ #: ../plugins/mycred-hook-bbPress.php:19
6337
+ msgid "Awards %_plural% for bbPress actions."
6338
+ msgstr "奖励 %_plural% bbPress 的操作。"
6339
+
6340
+ #: ../plugins/mycred-hook-bbPress.php:404
6341
+ msgid "%plural% for New Forum"
6342
+ msgstr "%plural% 给新建论坛"
6343
+
6344
+ #: ../plugins/mycred-hook-bbPress.php:421
6345
+ msgid "%plural% for Forum Deletion"
6346
+ msgstr "%plural% 给删除论坛"
6347
+
6348
+ #: ../plugins/mycred-hook-bbPress.php:434
6349
+ #: ../plugins/mycred-hook-simplepress.php:278
6350
+ msgid "%plural% for New Topic"
6351
+ msgstr "%plural% 给新话题"
6352
+
6353
+ #: ../plugins/mycred-hook-bbPress.php:452
6354
+ msgid "Forum authors can receive %_plural% for creating new topics."
6355
+ msgstr "论坛作者新建话题可以获得 %_plural% 。"
6356
+
6357
+ #: ../plugins/mycred-hook-bbPress.php:456
6358
+ #: ../plugins/mycred-hook-simplepress.php:295
6359
+ msgid "%plural% for Topic Deletion"
6360
+ msgstr "%plural% 给删除话题"
6361
+
6362
+ #: ../plugins/mycred-hook-bbPress.php:469
6363
+ msgid "%plural% for Favorited Topic"
6364
+ msgstr "%plural% 给收藏话题"
6365
+
6366
+ #: ../plugins/mycred-hook-bbPress.php:486
6367
+ msgid "%plural% for New Reply"
6368
+ msgstr "%plural% 给新回复"
6369
+
6370
+ #: ../plugins/mycred-hook-bbPress.php:504
6371
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
6372
+ msgstr "当话题作者回复自己的话题时同样奖励 %_plural%"
6373
+
6374
+ #: ../plugins/mycred-hook-bbPress.php:508
6375
+ msgid "Show users %_plural% balance in replies"
6376
+ msgstr "在回复中显示用户的 %_plural% 余额"
6377
+
6378
+ #: ../plugins/mycred-hook-bbPress.php:512
6379
+ msgid "%plural% for Reply Deletion"
6380
+ msgstr "%plural% 回复被删"
6381
+
6382
+ #: ../plugins/mycred-hook-buddypress-gallery.php:19
6383
+ msgid "BuddyPress: Gallery Actions"
6384
+ msgstr "BuddyPress:相册操作"
6385
+
6386
+ #: ../plugins/mycred-hook-buddypress-gallery.php:20
6387
+ msgid ""
6388
+ "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
6389
+ "Gallery."
6390
+ msgstr "奖励 %_plural% 给使用BP相册或BP库创建新相册的用户"
6391
+
6392
+ #: ../plugins/mycred-hook-buddypress-gallery.php:96
6393
+ msgid "%plural% for New Gallery"
6394
+ msgstr "%plural% 给新相册"
6395
+
6396
+ #: ../plugins/mycred-hook-buddypress-links.php:19
6397
+ msgid "BuddyPress: Links"
6398
+ msgstr "BuddyPress:链接"
6399
+
6400
+ #: ../plugins/mycred-hook-buddypress-links.php:20
6401
+ msgid "Awards %_plural% for link related actions."
6402
+ msgstr "奖励 %_plural% 给链接相关的操作"
6403
+
6404
+ #: ../plugins/mycred-hook-buddypress-links.php:244
6405
+ msgid "%plural% for New Links"
6406
+ msgstr "%plural% 给新链接"
6407
+
6408
+ #: ../plugins/mycred-hook-buddypress-links.php:261
6409
+ msgid "%plural% for Vote on Link"
6410
+ msgstr "%plural% 给投票链接"
6411
+
6412
+ #: ../plugins/mycred-hook-buddypress-links.php:277
6413
+ msgid "%plural% per received Vote"
6414
+ msgstr "%plural% 每次收到投票"
6415
+
6416
+ #: ../plugins/mycred-hook-buddypress-links.php:280
6417
+ msgid "Vote Up"
6418
+ msgstr "支持"
6419
+
6420
+ #: ../plugins/mycred-hook-buddypress-links.php:299
6421
+ msgid "Vote Down"
6422
+ msgstr "反对"
6423
+
6424
+ #: ../plugins/mycred-hook-buddypress-links.php:314
6425
+ msgid "%plural% for Updating Links"
6426
+ msgstr "%plural% 给更新链接"
6427
+
6428
+ #: ../plugins/mycred-hook-buddypress-links.php:331
6429
+ msgid "%plural% for Deleting Links"
6430
+ msgstr "%plural% 给删除链接"
6431
+
6432
+ #: ../plugins/mycred-hook-buddypress-media.php:18
6433
+ msgid "rtMedia Galleries"
6434
+ msgstr "rtMedia 相册"
6435
+
6436
+ #: ../plugins/mycred-hook-buddypress-media.php:19
6437
+ msgid ""
6438
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
6439
+ msgstr "奖励/扣除 %_plural% 给创建或上传新照片的用户"
6440
+
6441
+ #: ../plugins/mycred-hook-buddypress-media.php:202
6442
+ msgid "New Media Upload"
6443
+ msgstr "新媒体上传"
6444
+
6445
+ #: ../plugins/mycred-hook-buddypress-media.php:247
6446
+ msgid "Delete Media"
6447
+ msgstr "删除媒体"
6448
+
6449
+ #: ../plugins/mycred-hook-buddypress-media.php:250
6450
+ msgid "Delete Photo"
6451
+ msgstr "删除照片"
6452
+
6453
+ #: ../plugins/mycred-hook-buddypress-media.php:260
6454
+ msgid "Delete Video"
6455
+ msgstr "删除视频"
6456
+
6457
+ #: ../plugins/mycred-hook-buddypress-media.php:270
6458
+ msgid "Delete Music"
6459
+ msgstr "删除音乐"
6460
+
6461
+ #: ../plugins/mycred-hook-buddypress.php:20
6462
+ msgid "BuddyPress: Members"
6463
+ msgstr "BuddyPress:会员"
6464
+
6465
+ #: ../plugins/mycred-hook-buddypress.php:21
6466
+ msgid "Awards %_plural% for profile related actions."
6467
+ msgstr "奖励 %_plural% 给个人资料的相关操作。"
6468
+
6469
+ #: ../plugins/mycred-hook-buddypress.php:28
6470
+ msgid "BuddyPress: Groups"
6471
+ msgstr "BuddyPress:群组"
6472
+
6473
+ #: ../plugins/mycred-hook-buddypress.php:29
6474
+ msgid ""
6475
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6476
+ "zero to disable a specific hook."
6477
+ msgstr ""
6478
+ "奖励 %_plural% 给群组的相关操作。使用减号 - 来扣除 %_plural% 或者零来禁用特定"
6479
+ "的钩子。"
6480
+
6481
+ #: ../plugins/mycred-hook-buddypress.php:484
6482
+ msgid "%plural% for Profile Updates"
6483
+ msgstr "%plural% 给个人资料更新"
6484
+
6485
+ #: ../plugins/mycred-hook-buddypress.php:501
6486
+ msgid "%plural% for Removing Profile Update"
6487
+ msgstr "%plural% 移除简介更新"
6488
+
6489
+ #: ../plugins/mycred-hook-buddypress.php:518
6490
+ msgid "%plural% for New Avatar"
6491
+ msgstr "%plural% 给新头像"
6492
+
6493
+ #: ../plugins/mycred-hook-buddypress.php:535
6494
+ msgid "%plural% for New Friendships"
6495
+ msgstr "%plural% 给新朋友关系"
6496
+
6497
+ #: ../plugins/mycred-hook-buddypress.php:545
6498
+ msgid ""
6499
+ "Users with zero balance can not add friends. Requires that you deduct "
6500
+ "%_plural% for adding a new friend."
6501
+ msgstr "余额为0的用户不能添加朋友。需要您减去%_plural%以添加一个新朋友。"
6502
+
6503
+ #: ../plugins/mycred-hook-buddypress.php:555
6504
+ msgid "%plural% for Leaving Friendship"
6505
+ msgstr "%plural% 给解除朋友关系"
6506
+
6507
+ #: ../plugins/mycred-hook-buddypress.php:568
6508
+ msgid "%plural% for New Comment"
6509
+ msgstr "%plural% 给新评论"
6510
+
6511
+ #: ../plugins/mycred-hook-buddypress.php:585
6512
+ msgid "%plural% for Deleting Comment"
6513
+ msgstr "%plural% 给删除评论"
6514
+
6515
+ #: ../plugins/mycred-hook-buddypress.php:598
6516
+ msgid "%plural% for New Messages"
6517
+ msgstr "%plural% 给新信息"
6518
+
6519
+ #: ../plugins/mycred-hook-buddypress.php:615
6520
+ msgid "%plural% for Sending Gift"
6521
+ msgstr "%plural% 给发送礼物"
6522
+
6523
+ #: ../plugins/mycred-hook-buddypress.php:1154
6524
+ msgid "%plural% for Creating Groups"
6525
+ msgstr "%plural% 给创建群组"
6526
+
6527
+ #: ../plugins/mycred-hook-buddypress.php:1158
6528
+ msgid ""
6529
+ "If you use a negative value and the user does not have enough %_plural% the "
6530
+ "\"Create Group\" button will be disabled."
6531
+ msgstr ""
6532
+ "如果你使用一个负值,并且用户没有足够的 %_plural%,\"创建群组\"按钮将被禁用。"
6533
+
6534
+ #: ../plugins/mycred-hook-buddypress.php:1162
6535
+ msgid "Number of members before awarding %_plural%"
6536
+ msgstr "获取 %_plural% 奖励所需的会员数量"
6537
+
6538
+ #: ../plugins/mycred-hook-buddypress.php:1164
6539
+ msgid "Use zero to award %_plural% when group is created."
6540
+ msgstr "使用零则在群组创建时就奖励 %_plural%"
6541
+
6542
+ #: ../plugins/mycred-hook-buddypress.php:1174
6543
+ msgid "%plural% for Deleting Groups"
6544
+ msgstr "%plural% 给删除群组"
6545
+
6546
+ #: ../plugins/mycred-hook-buddypress.php:1187
6547
+ msgid "%plural% for New Forum Topic"
6548
+ msgstr "%plural% 给发布论坛话题"
6549
+
6550
+ #: ../plugins/mycred-hook-buddypress.php:1204
6551
+ msgid "%plural% for Editing Forum Topic"
6552
+ msgstr "%plural% 给编辑论坛话题"
6553
+
6554
+ #: ../plugins/mycred-hook-buddypress.php:1221
6555
+ msgid "%plural% for New Forum Post"
6556
+ msgstr "%plural% 给发布论坛帖子"
6557
+
6558
+ #: ../plugins/mycred-hook-buddypress.php:1238
6559
+ msgid "%plural% for Editing Forum Post"
6560
+ msgstr "%plural% 给编辑论坛帖子"
6561
+
6562
+ #: ../plugins/mycred-hook-buddypress.php:1255
6563
+ msgid "%plural% for Joining Groups"
6564
+ msgstr "%plural% 给加入群组"
6565
+
6566
+ #: ../plugins/mycred-hook-buddypress.php:1259
6567
+ msgid ""
6568
+ "If you use a negative value and the user does not have enough %_plural% the "
6569
+ "\"Join Group\" button will be disabled."
6570
+ msgstr ""
6571
+ "如果你使用一个负值,或者用户没有足够的 %_plural%,\"加入群组\"按钮将被禁用。"
6572
+
6573
+ #: ../plugins/mycred-hook-buddypress.php:1273
6574
+ msgid "%plural% for Leaving Groups"
6575
+ msgstr "%plural% 给离开群组"
6576
+
6577
+ #: ../plugins/mycred-hook-buddypress.php:1286
6578
+ msgid "%plural% for New Group Avatar"
6579
+ msgstr "%plural% 给上传群组头像"
6580
+
6581
+ #: ../plugins/mycred-hook-buddypress.php:1303
6582
+ msgid "%plural% for New Group Comment"
6583
+ msgstr "%plural% 给新群组评论"
6584
+
6585
+ #: ../plugins/mycred-hook-contact-form7.php:18
6586
+ msgid "Contact Form 7 Form Submissions"
6587
+ msgstr "Contact Form 7 表单提交"
6588
+
6589
+ #: ../plugins/mycred-hook-contact-form7.php:19
6590
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
6591
+ msgstr "奖励 %_plural% 给成功的表单提交(由登录的用户)。"
6592
+
6593
+ #: ../plugins/mycred-hook-contact-form7.php:117
6594
+ #: ../plugins/mycred-hook-gravityforms.php:118
6595
+ msgid "No forms found."
6596
+ msgstr "没有找到形式。"
6597
+
6598
+ #: ../plugins/mycred-hook-events-manager-light.php:18
6599
+ msgid "Events Manager"
6600
+ msgstr "活动管理器"
6601
+
6602
+ #: ../plugins/mycred-hook-events-manager-light.php:19
6603
+ msgid "Awards %_plural% for users attending events."
6604
+ msgstr "奖励 %_plural% 给参加活动的用户"
6605
+
6606
+ #: ../plugins/mycred-hook-events-manager-light.php:186
6607
+ msgid "Attending Event"
6608
+ msgstr "参加活动"
6609
+
6610
+ #: ../plugins/mycred-hook-events-manager-light.php:203
6611
+ msgid "Cancelling Attendance"
6612
+ msgstr "取消出席"
6613
+
6614
+ #: ../plugins/mycred-hook-gd-star-rating.php:18
6615
+ msgid "GD Star Rating"
6616
+ msgstr "GD Star Rating"
6617
+
6618
+ #: ../plugins/mycred-hook-gd-star-rating.php:19
6619
+ msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
6620
+ msgstr "奖励 %_plural% 给使用 GD Star Rating 插件评分项目的用户"
6621
+
6622
+ #: ../plugins/mycred-hook-gd-star-rating.php:103
6623
+ msgid "Rating"
6624
+ msgstr "等级"
6625
+
6626
+ #: ../plugins/mycred-hook-gd-star-rating.php:116
6627
+ msgid "Up / Down Vote"
6628
+ msgstr "支持/反对投票"
6629
+
6630
+ #: ../plugins/mycred-hook-gravityforms.php:18
6631
+ msgid "Gravityform Submissions"
6632
+ msgstr "Gravityform 提交"
6633
+
6634
+ #: ../plugins/mycred-hook-gravityforms.php:19
6635
+ msgid "Awards %_plural% for successful form submissions."
6636
+ msgstr "奖励 %_plural% 给成功的表单提交"
6637
+
6638
+ #: ../plugins/mycred-hook-invite-anyone.php:18
6639
+ msgid "Invite Anyone Plugin"
6640
+ msgstr "Invite Anyone 插件"
6641
+
6642
+ #: ../plugins/mycred-hook-invite-anyone.php:19
6643
+ msgid ""
6644
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6645
+ "accepted."
6646
+ msgstr "奖励 %_plural% 给发送邀请以及/或者 %_plural% 如果邀请被接受。"
6647
+
6648
+ #: ../plugins/mycred-hook-invite-anyone.php:190
6649
+ msgid "%plural% for Sending An Invite"
6650
+ msgstr "%plural% 给发送一个邀请"
6651
+
6652
+ #: ../plugins/mycred-hook-invite-anyone.php:210
6653
+ msgid "%plural% for Accepting An Invite"
6654
+ msgstr "%plural% 给接受一个邀请"
6655
+
6656
+ #: ../plugins/mycred-hook-invite-anyone.php:214
6657
+ msgid "%plural% for each invited user that accepts an invitation."
6658
+ msgstr "%plural% 给接受每一个邀请的用户"
6659
+
6660
+ #: ../plugins/mycred-hook-jetpack.php:18
6661
+ msgid "Jetpack Subscriptions"
6662
+ msgstr "Jetpack 订阅"
6663
+
6664
+ #: ../plugins/mycred-hook-jetpack.php:19
6665
+ msgid ""
6666
+ "Awards %_plural% for users signing up for site or comment updates using "
6667
+ "Jetpack."
6668
+ msgstr "奖励 %_plural% 给使用 Jetpack 注册网站或更新评论的用户。"
6669
+
6670
+ #: ../plugins/mycred-hook-jetpack.php:499
6671
+ msgid "Site Subscriptions"
6672
+ msgstr "网站订阅"
6673
+
6674
+ #: ../plugins/mycred-hook-jetpack.php:512
6675
+ msgid "Comment Subscriptions"
6676
+ msgstr "评论订阅"
6677
+
6678
+ #: ../plugins/mycred-hook-marketpress.php:63
6679
+ #: ../plugins/mycred-hook-woocommerce.php:63
6680
+ msgid "Reward with %plural%"
6681
+ msgstr "奖励%plural%"
6682
+
6683
+ #: ../plugins/mycred-hook-sharethis.php:18
6684
+ msgid "%plural% for Sharing"
6685
+ msgstr "%plural% 为分享"
6686
+
6687
+ #: ../plugins/mycred-hook-sharethis.php:19
6688
+ msgid ""
6689
+ "Awards %_plural% for users sharing / liking your website content to popular "
6690
+ "social media sites."
6691
+ msgstr "奖励用户%_plural%当他们分享/链接您的网站内容到流行的社交媒体网络时。"
6692
+
6693
+ #: ../plugins/mycred-hook-sharethis.php:232
6694
+ msgid "Your ShareThis public key is not set."
6695
+ msgstr "您的ShareThis公钥尚未设置。"
6696
+
6697
+ #: ../plugins/mycred-hook-sharethis.php:237
6698
+ msgid "No ShareThis services detected. Please check your installation."
6699
+ msgstr "未检测到ShareThis。请检查您的安装。"
6700
+
6701
+ #: ../plugins/mycred-hook-simplepress.php:19
6702
+ msgid "Awards %_plural% for Simple:Press actions."
6703
+ msgstr "奖励 %_plural% 给Simple:Press操作。"
6704
+
6705
+ #: ../plugins/mycred-hook-simplepress.php:308
6706
+ msgid "%plural% for New Topic Post"
6707
+ msgstr "%plural% 给新话题帖子"
6708
+
6709
+ #: ../plugins/mycred-hook-simplepress.php:326
6710
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
6711
+ msgstr "当话题作者在他们自己的话题发布帖子时同样奖励 %_plural%。"
6712
+
6713
+ #: ../plugins/mycred-hook-simplepress.php:330
6714
+ msgid "%plural% for Topic Post Deletion"
6715
+ msgstr "%plural% 给话题帖子删除"
6716
+
6717
+ #: ../plugins/mycred-hook-woocommerce.php:193
6718
+ msgid "WooCommerce Product Reviews"
6719
+ msgstr "WooCommerce Product Reviews"
6720
+
6721
+ #: ../plugins/mycred-hook-woocommerce.php:194
6722
+ msgid ""
6723
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
6724
+ msgstr "当有用户评论您的WooCommerce商品时奖励 %_plural%。"
6725
+
6726
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:18
6727
+ msgid "WP Favorite Posts"
6728
+ msgstr "WP Favorite Posts"
6729
+
6730
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:19
6731
+ msgid "Awards %_plural% for users adding posts to their favorites."
6732
+ msgstr "奖励 %_plural% 给收藏文章的用户。"
6733
+
6734
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:207
6735
+ msgid "Adding Content to Favorites"
6736
+ msgstr "将内容添加到收藏"
6737
+
6738
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:225
6739
+ msgid "Authors Content added to favorites"
6740
+ msgstr "作者内容被添加到我的最爱"
6741
+
6742
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:243
6743
+ msgid "Removing Content from Favorites"
6744
+ msgstr "从收藏中删除内容"
6745
+
6746
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:256
6747
+ msgid "Removing Content from Favorites (Author)"
6748
+ msgstr "从我的最爱中移除文章(作者)"
6749
+
6750
+ #: ../plugins/mycred-hook-wp-polls.php:18
6751
+ msgid "WP-Polls"
6752
+ msgstr "WP-Polls"
6753
+
6754
+ #: ../plugins/mycred-hook-wp-polls.php:19
6755
+ msgid "Awards %_plural% for users voting in polls."
6756
+ msgstr ""
6757
+ "奖励 %_plural% 给在投票调查中投票的用户。奖励 %_plural% 给在投票调查中投票的"
6758
+ "用户。"
6759
+
6760
+ #: ../plugins/mycred-hook-wp-postratings.php:18
6761
+ msgid "Post Ratings"
6762
+ msgstr "文章评价"
6763
+
6764
+ #: ../plugins/mycred-hook-wp-postratings.php:19
6765
+ msgid ""
6766
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6767
+ "author and the user rating."
6768
+ msgstr "评价文章奖励 %_plural% 。支持同时奖励 %_plural%给文章作者和评价者。"
6769
+
6770
+ #: ../plugins/mycred-hook-wp-postratings.php:76
6771
+ msgid "Based on rating"
6772
+ msgstr "基于评价"
6773
+
6774
+ #: ../plugins/mycred-hook-wp-postratings.php:160
6775
+ #: ../plugins/mycred-hook-wp-postratings.php:179
6776
+ msgid "Use the Rating Value instead of the amount set here."
6777
+ msgstr "使用评价值替换这里的数字设定。"
6778
+
6779
+ #~ msgid ""
6780
+ #~ "Thank you for choosing %s as your points management tool!<br />I hope you "
6781
+ #~ "have as much fun using it as I had developing it."
6782
+ #~ msgstr ""
6783
+ #~ "感谢您使用 %s 作为您的积分管理工具!<br />我希望您在使用它是能像我开发它时"
6784
+ #~ "那样开心。"
6785
+
6786
+ #~ msgid "What&#8217;s New"
6787
+ #~ msgstr "新特性"
6788
+
6789
+ #~ msgid "Credits"
6790
+ #~ msgstr "信用"
6791
+
6792
+ #~ msgid "Documentation"
6793
+ #~ msgstr "文档"
6794
+
6795
+ #~ msgid "Support Forum"
6796
+ #~ msgstr "支持论坛"
6797
+
6798
+ #~ msgid "Store"
6799
+ #~ msgstr "商店"
6800
+
6801
+ #~ msgid "Version Changes"
6802
+ #~ msgstr "版本变化"
6803
+
6804
+ #~ msgid "New Statistics Add-on"
6805
+ #~ msgstr "新的统计扩展"
6806
+
6807
+ #~ msgid ""
6808
+ #~ "Gain a quick overview of how points a re earned and spent on your website "
6809
+ #~ "via this new Statistics add-on."
6810
+ #~ msgstr "新的统计扩展能让您方便的了解您网站的积分增减情况。"
6811
+
6812
+ #~ msgid "Hook Limits"
6813
+ #~ msgstr "Hooks限制"
6814
+
6815
+ #~ msgid ""
6816
+ #~ "All built-in hooks now support limits! You can select to have no limits, "
6817
+ #~ "total limits, daily, weekly or monthly limit."
6818
+ #~ msgstr ""
6819
+ #~ "全部内置Hooks现在已支持限制!您可以选择没有限制,总的限制,每天,每周或者"
6820
+ #~ "每月的限制。"
6821
+
6822
+ #~ msgid "Ranks for all types"
6823
+ #~ msgstr "支持全部积分类型的虚拟银行"
6824
+
6825
+ #~ msgid ""
6826
+ #~ "myCRED 1.6 now supports ranks for multiple point types! You are no longer "
6827
+ #~ "limited to the main point type for ranks."
6828
+ #~ msgstr ""
6829
+ #~ "myCRED 1.6的虚拟银行现已支持多种积分类型!您已经不再仅限于使用主积分类型的"
6830
+ #~ "虚拟银行了。"
6831
+
6832
+ #~ msgid "Badge Levels"
6833
+ #~ msgstr "勋章等级"
6834
+
6835
+ #~ msgid ""
6836
+ #~ "The badges add-on now supports Badge levels and manually assigning badges "
6837
+ #~ "to users via the admin area!"
6838
+ #~ msgstr "勋章扩展现已支持勋章等级并且可在后台人工指定勋章给用户!"
6839
+
6840
+ #~ msgid "Added Support"
6841
+ #~ msgstr "已添加的支持"
6842
+
6843
+ #~ msgid ""
6844
+ #~ "Award points for affiliates referring visitors or store sales. You can "
6845
+ #~ "also select to use points as your affiliate currency!"
6846
+ #~ msgstr ""
6847
+ #~ "奖励推荐用户或者促成销售的用户积分。您也可以选择使用积分作为推广币种!"
6848
+
6849
+ #~ msgid ""
6850
+ #~ "In 1.6 I have added in support for deducting points from users when they "
6851
+ #~ "delete their profile updates."
6852
+ #~ msgstr "我已经在1.6版本添加了支持扣减删除更新的用户积分的功能。"
6853
+
6854
+ #~ msgid ""
6855
+ #~ "Want to help further development of %1$s ? %2$s Here is a list %3$s of "
6856
+ #~ "things you can do to help!"
6857
+ #~ msgstr "想帮助开发%1$s?%2$s 这个列表 %3$s 会帮助您的!"
6858
+
6859
+ #~ msgid "myCRED Users"
6860
+ #~ msgstr "myCRED 用户"
6861
+
6862
+ #~ msgid "Bug Finders"
6863
+ #~ msgstr "Bug报告者"
6864
+
6865
+ #~ msgid ""
6866
+ #~ "Users who have taken the time to help beta test version 1.6. A big thank "
6867
+ #~ "you to all."
6868
+ #~ msgstr "花费时间帮助测试1.6beta版本的用户,在此致谢!"
6869
+
6870
+ #~ msgid "Plugin Translators"
6871
+ #~ msgstr "插件翻译者"
6872
+
6873
+ #~ msgid "Users who have helped with translating this plugin."
6874
+ #~ msgstr "帮助翻译了该插件的人。"
6875
+
6876
+ #~ msgid "Find out more"
6877
+ #~ msgstr "了解更多"
6878
+
6879
+ #~ msgid ""
6880
+ #~ "You can always find more information about this plugin on the %1$s %2$s "
6881
+ #~ "website %3$s."
6882
+ #~ msgstr "您可在%1$s %2$s 网站 %3$s 了解到更多关于此插件的信息。"
6883
+
6884
+ #~ msgid "You can always find more information about this plugin on the %1$s ."
6885
+ #~ msgstr "您可以在%1$s获取更多关于此插件的信息。"
modules/mycred-module-addons.php CHANGED
@@ -34,7 +34,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
34
  * Admin Init
35
  * Catch activation and deactivations
36
  * @since 0.1
37
- * @version 1.1
38
  */
39
  public function module_admin_init() {
40
 
@@ -44,6 +44,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
44
  $addon_id = sanitize_text_field( $_GET['addon_id'] );
45
  $action = sanitize_text_field( $_GET['addon_action'] );
46
 
 
47
  if ( array_key_exists( $addon_id, $this->installed ) ) {
48
 
49
  // Activation
@@ -284,7 +285,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
284
  /**
285
  * Admin Page
286
  * @since 0.1
287
- * @version 1.1.1
288
  */
289
  public function admin_page() {
290
  // Security
@@ -292,7 +293,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
292
  wp_die( __( 'Access Denied', 'mycred' ) );
293
 
294
  $save = false;
295
- if ( empty( $this->installed ) || ! array_key_exists( 'stats', $this->installed ) )
296
  $save = true;
297
 
298
  $installed = $this->get( $save ); ?>
@@ -300,14 +301,16 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
300
  <div class="wrap" id="myCRED-wrap">
301
  <h2><?php echo sprintf( __( '%s Add-ons', 'mycred' ), mycred_label() ); ?></h2>
302
  <?php
303
- // Message
304
  if ( isset( $_GET['addon_action'] ) ) {
305
  if ( $_GET['addon_action'] == 'activate' )
306
- echo '<div class="updated"><p>' . __( 'Add-on Activated', 'mycred' ) . '</p></div>';
307
 
308
  elseif ( $_GET['addon_action'] == 'deactivate' )
309
- echo '<div class="error"><p>' . __( 'Add-on Deactivated', 'mycred' ) . '</p></div>';
310
  }
 
 
311
  ?>
312
 
313
  <p><?php _e( 'Add-ons can expand your current installation with further features.', 'mycred' ); ?></p>
@@ -331,6 +334,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) {
331
  } ?>
332
 
333
  </div>
 
334
  <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>
335
  </div>
336
  <?php
34
  * Admin Init
35
  * Catch activation and deactivations
36
  * @since 0.1
37
+ * @version 1.1.1
38
  */
39
  public function module_admin_init() {
40
 
44
  $addon_id = sanitize_text_field( $_GET['addon_id'] );
45
  $action = sanitize_text_field( $_GET['addon_action'] );
46
 
47
+ $this->installed = $this->get();
48
  if ( array_key_exists( $addon_id, $this->installed ) ) {
49
 
50
  // Activation
285
  /**
286
  * Admin Page
287
  * @since 0.1
288
+ * @version 1.2
289
  */
290
  public function admin_page() {
291
  // Security
293
  wp_die( __( 'Access Denied', 'mycred' ) );
294
 
295
  $save = false;
296
+ if ( empty( $this->installed ) || ( isset( $_GET['reload-addons'] ) && $_GET['reload-addons'] == 1 ) )
297
  $save = true;
298
 
299
  $installed = $this->get( $save ); ?>
301
  <div class="wrap" id="myCRED-wrap">
302
  <h2><?php echo sprintf( __( '%s Add-ons', 'mycred' ), mycred_label() ); ?></h2>
303
  <?php
304
+ // Messages
305
  if ( isset( $_GET['addon_action'] ) ) {
306
  if ( $_GET['addon_action'] == 'activate' )
307
+ echo '<div id="message" class="updated"><p>' . __( 'Add-on Activated', 'mycred' ) . '</p></div>';
308
 
309
  elseif ( $_GET['addon_action'] == 'deactivate' )
310
+ echo '<div id="message" class="error"><p>' . __( 'Add-on Deactivated', 'mycred' ) . '</p></div>';
311
  }
312
+ elseif ( isset( $_GET['reload-addons'] ) && $_GET['reload-addons'] == 1 )
313
+ echo '<div id="message" class="updated"><p>' . __( 'Add-ons Reloaded', 'mycred' ) . '</p></div>';
314
  ?>
315
 
316
  <p><?php _e( 'Add-ons can expand your current installation with further features.', 'mycred' ); ?></p>
334
  } ?>
335
 
336
  </div>
337
+ <p><a href="<?php echo admin_url( 'admin.php?page=' . $_GET['page'] . '&reload-addons=1' ); ?>" class="button button-secondary"><?php _e( 'Reload Add-ons', 'mycred' ); ?></a></p>
338
  <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>
339
  </div>
340
  <?php
modules/mycred-module-buddypress.php CHANGED
@@ -179,7 +179,7 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
179
  /**
180
  * Setup Navigation
181
  * @since 0.1
182
- * @version 1.3.1
183
  */
184
  public function setup_nav() {
185
  global $bp;
@@ -187,7 +187,7 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) {
187
  $user_id = bp_displayed_user_id();
188
 
189
  // User is excluded
190
- if ( $this->core->exclude_user( $user_id ) ) return;
191
 
192
  // If visibility is not set for visitors
193
  if ( ! is_user_logged_in() && ! $this->buddypress['visibility']['history'] ) return;
179
  /**
180
  * Setup Navigation
181
  * @since 0.1
182
+ * @version 1.3.2
183
  */
184
  public function setup_nav() {
185
  global $bp;
187
  $user_id = bp_displayed_user_id();
188
 
189
  // User is excluded
190
+ if ( $this->core->exclude_user( $user_id ) || $this->buddypress['history_location'] == '' ) return;
191
 
192
  // If visibility is not set for visitors
193
  if ( ! is_user_logged_in() && ! $this->buddypress['visibility']['history'] ) return;
modules/mycred-module-hooks.php CHANGED
@@ -374,7 +374,7 @@ if ( ! class_exists( 'myCRED_Hook_Registration' ) ) {
374
  /**
375
  * Hook for site visits
376
  * @since 1.5
377
- * @version 1.0
378
  */
379
  if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
380
  class myCRED_Hook_Site_Visits extends myCRED_Hook {
@@ -395,13 +395,13 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
395
  /**
396
  * Run
397
  * @since 1.5
398
- * @version 1.0.1
399
  */
400
  public function run() {
401
  // Make sure user is logged in. Also to prevent unneccery db queries we
402
  // check to make sure the user does not have the cookie.
403
  if ( is_user_logged_in() && ! isset( $_COOKIE['mycred_site_visit'] ) )
404
- $this->site_visit();
405
  }
406
 
407
  /**
@@ -471,7 +471,7 @@ if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
471
  /**
472
  * Hook for viewing content
473
  * @since 1.5.1
474
- * @version 1.0
475
  */
476
  if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
477
  class myCRED_Hook_View_Contents extends myCRED_Hook {
@@ -586,7 +586,7 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
586
  /**
587
  * Preference for read content hook
588
  * @since 1.5.1
589
- * @version 1.0
590
  */
591
  public function preferences() {
592
  $prefs = $this->prefs; ?>
@@ -684,17 +684,17 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
684
  else
685
  $_acreds = 0;
686
 
 
 
 
 
 
687
  // Log template
688
  if ( isset( $prefs[ $post_type->name ]['alog'] ) )
689
  $_alog = $prefs[ $post_type->name ]['alog'];
690
  else
691
  $_alog = '%plural% for view of your ' . $post_type->labels->name;
692
 
693
- if ( isset( $prefs[ $post_type->name ]['limit'] ) )
694
- $alimit = $prefs[ $post_type->name ]['limit'];
695
- else
696
- $alimit = '0/x';
697
-
698
  ?>
699
 
700
  <label class="subheader"><?php echo sprintf( $this->core->template_tags_general( __( '%plural% for viewing %s', 'mycred' ) ), $post_type->labels->name ); ?></label>
@@ -703,8 +703,8 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
703
  <label for="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
704
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>" value="<?php echo $this->core->number( $_creds ); ?>" size="8" /></div>
705
 
706
- <label for="<?php echo $this->field_id( array( 'page', 'limit' ) ); ?>"><?php _e( 'Limit', 'mycred' ); ?></label>
707
- <?php echo $this->hook_limit_setting( $this->field_name( array( 'page', 'limit' ) ), $this->field_id( array( 'page', 'limit' ) ), $limit ); ?>
708
  </li>
709
  <li>
710
  <label for="<?php echo $this->field_id( array( $post_type->name => 'acreds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
@@ -735,7 +735,7 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
735
  /**
736
  * Sanitise Preferences
737
  * @since 1.6
738
- * @version 1.0
739
  */
740
  function sanitise_preferences( $data ) {
741
 
@@ -746,12 +746,26 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
746
  unset( $data['post']['limit_by'] );
747
  }
748
 
 
 
 
 
 
 
 
749
  if ( isset( $data['page']['limit'] ) && isset( $data['page']['limit_by'] ) ) {
750
  $limit = sanitize_text_field( $data['page']['limit'] );
751
  if ( $limit == '' ) $limit = 0;
752
  $data['page']['limit'] = $limit . '/' . $data['page']['limit_by'];
753
  unset( $data['page']['limit_by'] );
754
  }
 
 
 
 
 
 
 
755
 
756
  $post_type_args = array(
757
  'public' => true,
@@ -767,6 +781,13 @@ if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
767
  unset( $data[ $post_type->name ]['limit_by'] );
768
  }
769
 
 
 
 
 
 
 
 
770
  }
771
 
772
  return $data;
@@ -1263,7 +1284,7 @@ if ( ! class_exists( 'myCRED_Hook_Comments' ) ) {
1263
  /**
1264
  * Comment Transitions
1265
  * @since 1.1.2
1266
- * @version 1.4
1267
  */
1268
  public function comment_transitions( $new_status, $old_status, $comment ) {
1269
  // Passing an integer instead of an object means we need to grab the comment object ourselves
@@ -1279,6 +1300,8 @@ if ( ! class_exists( 'myCRED_Hook_Comments' ) ) {
1279
  // Logged out users miss out
1280
  if ( $comment->user_id == 0 ) return;
1281
 
 
 
1282
  // Get comment author
1283
  $comment_author = $comment->user_id;
1284
 
374
  /**
375
  * Hook for site visits
376
  * @since 1.5
377
+ * @version 1.1
378
  */
379
  if ( ! class_exists( 'myCRED_Hook_Site_Visits' ) ) {
380
  class myCRED_Hook_Site_Visits extends myCRED_Hook {
395
  /**
396
  * Run
397
  * @since 1.5
398
+ * @version 1.0.2
399
  */
400
  public function run() {
401
  // Make sure user is logged in. Also to prevent unneccery db queries we
402
  // check to make sure the user does not have the cookie.
403
  if ( is_user_logged_in() && ! isset( $_COOKIE['mycred_site_visit'] ) )
404
+ add_action( 'wp_head', array( $this, 'site_visit' ) );
405
  }
406
 
407
  /**
471
  /**
472
  * Hook for viewing content
473
  * @since 1.5.1
474
+ * @version 1.1
475
  */
476
  if ( ! class_exists( 'myCRED_Hook_View_Contents' ) ) {
477
  class myCRED_Hook_View_Contents extends myCRED_Hook {
586
  /**
587
  * Preference for read content hook
588
  * @since 1.5.1
589
+ * @version 1.0.1
590
  */
591
  public function preferences() {
592
  $prefs = $this->prefs; ?>
684
  else
685
  $_acreds = 0;
686
 
687
+ if ( isset( $prefs[ $post_type->name ]['alimit'] ) )
688
+ $alimit = $prefs[ $post_type->name ]['alimit'];
689
+ else
690
+ $alimit = '0/x';
691
+
692
  // Log template
693
  if ( isset( $prefs[ $post_type->name ]['alog'] ) )
694
  $_alog = $prefs[ $post_type->name ]['alog'];
695
  else
696
  $_alog = '%plural% for view of your ' . $post_type->labels->name;
697
 
 
 
 
 
 
698
  ?>
699
 
700
  <label class="subheader"><?php echo sprintf( $this->core->template_tags_general( __( '%plural% for viewing %s', 'mycred' ) ), $post_type->labels->name ); ?></label>
703
  <label for="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>"><?php _e( 'Member', 'mycred' ); ?></label>
704
  <div class="h2"><input type="text" name="<?php echo $this->field_name( array( $post_type->name => 'creds' ) ); ?>" id="<?php echo $this->field_id( array( $post_type->name => 'creds' ) ); ?>" value="<?php echo $this->core->number( $_creds ); ?>" size="8" /></div>
705
 
706
+ <label for="<?php echo $this->field_id( array( $post_type->name, 'limit' ) ); ?>"><?php _e( 'Limit', 'mycred' ); ?></label>
707
+ <?php echo $this->hook_limit_setting( $this->field_name( array( $post_type->name, 'limit' ) ), $this->field_id( array( $post_type->name, 'limit' ) ), $limit ); ?>
708
  </li>
709
  <li>
710
  <label for="<?php echo $this->field_id( array( $post_type->name => 'acreds' ) ); ?>"><?php _e( 'Content Author', 'mycred' ); ?></label>
735
  /**
736
  * Sanitise Preferences
737
  * @since 1.6
738
+ * @version 1.0.1
739
  */
740
  function sanitise_preferences( $data ) {
741
 
746
  unset( $data['post']['limit_by'] );
747
  }
748
 
749
+ if ( isset( $data['post']['alimit'] ) && isset( $data['post']['alimit_by'] ) ) {
750
+ $limit = sanitize_text_field( $data['post']['alimit'] );
751
+ if ( $limit == '' ) $limit = 0;
752
+ $data['post']['alimit'] = $limit . '/' . $data['post']['alimit_by'];
753
+ unset( $data['post']['alimit_by'] );
754
+ }
755
+
756
  if ( isset( $data['page']['limit'] ) && isset( $data['page']['limit_by'] ) ) {
757
  $limit = sanitize_text_field( $data['page']['limit'] );
758
  if ( $limit == '' ) $limit = 0;
759
  $data['page']['limit'] = $limit . '/' . $data['page']['limit_by'];
760
  unset( $data['page']['limit_by'] );
761
  }
762
+
763
+ if ( isset( $data['page']['alimit'] ) && isset( $data['page']['alimit_by'] ) ) {
764
+ $limit = sanitize_text_field( $data['page']['alimit'] );
765
+ if ( $limit == '' ) $limit = 0;
766
+ $data['page']['alimit'] = $limit . '/' . $data['page']['alimit_by'];
767
+ unset( $data['page']['alimit_by'] );
768
+ }
769
 
770
  $post_type_args = array(
771
  'public' => true,
781
  unset( $data[ $post_type->name ]['limit_by'] );
782
  }
783
 
784
+ if ( isset( $data[ $post_type->name ]['alimit'] ) && isset( $data[ $post_type->name ]['alimit_by'] ) ) {
785
+ $limit = sanitize_text_field( $data[ $post_type->name ]['alimit'] );
786
+ if ( $limit == '' ) $limit = 0;
787
+ $data[ $post_type->name ]['alimit'] = $limit . '/' . $data[ $post_type->name ]['alimit_by'];
788
+ unset( $data[ $post_type->name ]['alimit_by'] );
789
+ }
790
+
791
  }
792
 
793
  return $data;
1284
  /**
1285
  * Comment Transitions
1286
  * @since 1.1.2
1287
+ * @version 1.5
1288
  */
1289
  public function comment_transitions( $new_status, $old_status, $comment ) {
1290
  // Passing an integer instead of an object means we need to grab the comment object ourselves
1300
  // Logged out users miss out
1301
  if ( $comment->user_id == 0 ) return;
1302
 
1303
+ if ( apply_filters( 'mycred_comment_gets_cred', true, $comment, $new_status, $old_status ) === false ) return;
1304
+
1305
  // Get comment author
1306
  $comment_author = $comment->user_id;
1307
 
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.6.1
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
@@ -20,7 +20,7 @@
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.6.1' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -110,7 +110,7 @@ mycred_load();
110
  /**
111
  * Plugin Activation
112
  * @since 1.3
113
- * @version 1.1
114
  */
115
  if ( ! function_exists( 'mycred_plugin_activation' ) ) :
116
  function mycred_plugin_activation()
@@ -122,10 +122,6 @@ if ( ! function_exists( 'mycred_plugin_activation' ) ) :
122
  // Compatibility check
123
  $install->compat();
124
 
125
- // Add Cron Schedule
126
- if ( ! wp_next_scheduled( 'mycred_reset_key' ) )
127
- wp_schedule_event( date_i18n( 'U' ), apply_filters( 'mycred_cron_reset_key', 'daily' ), 'mycred_reset_key' );
128
-
129
  // First time activation
130
  if ( $install->ver === false )
131
  $install->activate();
@@ -312,11 +308,15 @@ endif;
312
  /**
313
  * Init
314
  * @since 1.3
315
- * @version 1.3
316
  */
317
  if ( ! function_exists( 'mycred_init' ) ) :
318
  function mycred_init()
319
  {
 
 
 
 
320
  // Enqueue scripts & styles
321
  add_action( 'wp_enqueue_scripts', 'mycred_enqueue_front' );
322
  add_action( 'admin_enqueue_scripts', 'mycred_enqueue_admin' );
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.6.2
7
  * Tags: points, tokens, credit, management, reward, charge, buddypress, bbpress, jetpack, woocommerce, marketpress, wp e-commerce, gravity forms, simplepress
8
  * Author: Gabriel S Merovingi
9
  * Author URI: http://www.merovingi.com
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
+ define( 'myCRED_VERSION', '1.6.2' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
110
  /**
111
  * Plugin Activation
112
  * @since 1.3
113
+ * @version 1.1.1
114
  */
115
  if ( ! function_exists( 'mycred_plugin_activation' ) ) :
116
  function mycred_plugin_activation()
122
  // Compatibility check
123
  $install->compat();
124
 
 
 
 
 
125
  // First time activation
126
  if ( $install->ver === false )
127
  $install->activate();
308
  /**
309
  * Init
310
  * @since 1.3
311
+ * @version 1.3.1
312
  */
313
  if ( ! function_exists( 'mycred_init' ) ) :
314
  function mycred_init()
315
  {
316
+ // Add Cron Schedule
317
+ if ( ! wp_next_scheduled( 'mycred_reset_key' ) )
318
+ wp_schedule_event( date_i18n( 'U' ), apply_filters( 'mycred_cron_reset_key', 'daily' ), 'mycred_reset_key' );
319
+
320
  // Enqueue scripts & styles
321
  add_action( 'wp_enqueue_scripts', 'mycred_enqueue_front' );
322
  add_action( 'admin_enqueue_scripts', 'mycred_enqueue_admin' );
plugins/mycred-hook-woocommerce.php CHANGED
@@ -4,18 +4,35 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * WooCommerce Setup
6
  * @since 1.5
7
- * @version 1.0
8
  */
9
  add_action( 'after_setup_theme', 'mycred_load_woocommerce_reward', 99 );
10
  if ( ! function_exists( 'mycred_load_woocommerce_reward' ) ) :
11
  function mycred_load_woocommerce_reward()
12
  {
 
13
  add_action( 'add_meta_boxes_product', 'mycred_woo_add_product_metabox' );
14
  add_action( 'save_post', 'mycred_woo_save_reward_settings' );
15
  add_action( 'woocommerce_payment_complete', 'mycred_woo_payout_rewards' );
16
  }
17
  endif;
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  /**
20
  * Add Reward Metabox
21
  * @since 1.5
4
  /**
5
  * WooCommerce Setup
6
  * @since 1.5
7
+ * @version 1.1
8
  */
9
  add_action( 'after_setup_theme', 'mycred_load_woocommerce_reward', 99 );
10
  if ( ! function_exists( 'mycred_load_woocommerce_reward' ) ) :
11
  function mycred_load_woocommerce_reward()
12
  {
13
+ add_filter( 'mycred_comment_gets_cred', 'mycred_woo_remove_review_from_comments', 10, 2 );
14
  add_action( 'add_meta_boxes_product', 'mycred_woo_add_product_metabox' );
15
  add_action( 'save_post', 'mycred_woo_save_reward_settings' );
16
  add_action( 'woocommerce_payment_complete', 'mycred_woo_payout_rewards' );
17
  }
18
  endif;
19
 
20
+ /**
21
+ * Remove Reviews from Comment Hook
22
+ * Prevents the comment hook from granting points twice for a review.
23
+ * @since 1.6.3
24
+ * @version 1.0
25
+ */
26
+ if ( ! function_exists( 'mycred_woo_remove_review_from_comments' ) ) :
27
+ function mycred_woo_remove_review_from_comments( $reply, $comment ) {
28
+
29
+ if ( get_post_type( $comment->comment_post_ID ) == 'product' ) return false;
30
+
31
+ return $reply;
32
+
33
+ }
34
+ endif;
35
+
36
  /**
37
  * Add Reward Metabox
38
  * @since 1.5
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, buddypress, jetpack, bbpress, simple press, woocommerce, marketpress, wp e-commerce, gravity forms, share-this
4
  Requires at least: 3.8
5
- Tested up to: 4.1
6
- Stable tag: 1.6.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -16,7 +16,7 @@ myCRED is an adaptive points management system that lets you award / charge your
16
 
17
 
18
  > #### Plugin Support
19
- > Free support is offered Monday - Friday 9 - 5 (UTC+1). Please note that myCRED has it's own [support forum](http://mycred.me/support/forums/) which is prioritised over the wordpress.org support forum!
20
 
21
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
22
 
@@ -107,8 +107,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
107
 
108
  == Upgrade Notice ==
109
 
110
- = 1.6 =
111
- New Features, Big Improvements and Bug Fixes.
112
 
113
 
114
  == Other Notes ==
@@ -131,14 +131,26 @@ New Features, Big Improvements and Bug Fixes.
131
 
132
  == Changelog ==
133
 
134
- = 1.6.1 =
135
- FIX - Points for viewing content hook causes logged in authors not to see their own content.
136
- FIX - Google Chrome form validation issue for settings.
137
- FIX - Removed incorrect link on about page in admin area.
138
- FIX - Added "transfer" reference to ignore by central bank. When using custom references, this still has to be added by the user.
139
- FIX - Added support for multiple point types for the mycred_video shortcode.
140
- FIX - Added missing $type variable for the mycred_has_entry filter.
141
- FIX - Removed legend template for statistics add-on as the library seems to have issues handling RTL setups.
 
 
 
 
 
 
 
 
 
 
 
 
142
 
143
  = 1.6 =
144
  http://mycred.me/support/changelog/
2
  Contributors: designbymerovingi
3
  Tags:points, tokens, credit, management, reward, charge, community, contest, buddypress, jetpack, bbpress, simple press, woocommerce, marketpress, wp e-commerce, gravity forms, share-this
4
  Requires at least: 3.8
5
+ Tested up to: 4.1.1
6
+ Stable tag: 1.6.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
16
 
17
 
18
  > #### Plugin Support
19
+ > Free support is offered Monday - Friday 9 - 5 (UTC+1) via the [myCRED Support Forum](http://mycred.me/support/forums/).
20
 
21
  I felt that todays WordPress community lacks a flexible points management system. Existing system often feel restrictive, stale or lack support for popular plugins.
22
 
107
 
108
  == Upgrade Notice ==
109
 
110
+ = 1.6.2 =
111
+ Bugfixes for hooks, ranks and badges.
112
 
113
 
114
  == Other Notes ==
131
 
132
  == Changelog ==
133
 
134
+ = 1.6.2 =
135
+ UPDATE - Updated the uninstall script to include post metas, badge and rank connections.
136
+ FIX - Added support for future scheduled posts in the "Points for publishing content" hook.
137
+ FIX - Invite Anyone hook is checking for exclusion of an non existent variable.
138
+ FIX - Misspelled variable in settings module causes warning on update.
139
+ FIX - Daily hook limits are not generating the correct unix timestamp for checks.
140
+ FIX - When using 1 custom point type for the mycred_transfer shortcode, the balance is formatted incorrectly.
141
+ FIX - Using $user_id instead of $user->ID when getting a users rank during template tag parsing.
142
+ FIX - mycred_total_balance does not format the value as intended.
143
+ FIX - Added a "Reload Add-ons" button to re-save newly added add-ons that might not show up on the add-ons page.
144
+ FIX - If plugin is set to not to show the users points history in BuddyPress, not even admins should see the menu.
145
+ FIX - Badges are not assigned automatically with multiple point types.
146
+ TWEAK - Cleaned up woocommerce gateway code structure.
147
+ UPDATE - The mycred_transfer_acc_limit filter now also passes along the user_id and reference.
148
+ FIX - Badge auto assignment not working with single point type setups.
149
+ FIX - Points for viewing content hook is not saving limits correctly due to incorrect variables being passed to the form.
150
+ UPDATE - mycred_badges shortcode can now show the number of users with each badge.
151
+
152
+ = 1.6.1 =
153
+ http://mycred.me/support/changelog/
154
 
155
  = 1.6 =
156
  http://mycred.me/support/changelog/