myCRED - Version 1.6.4

Version Description

WP 4.3 compatibility update, clean up of code and Japanese language support.

=

Download this release

Release Info

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

Code changes from version 1.6.3 to 1.6.4

Files changed (51) hide show
  1. abstracts/mycred-abstract-module.php +4 -3
  2. addons/banking/services/mycred-bank-service-interest.php +1 -1
  3. addons/buy-creds/myCRED-addon-buy-creds.php +104 -50
  4. addons/coupons/myCRED-addon-coupons.php +3 -3
  5. addons/email-notices/myCRED-addon-email-notices.php +6 -2
  6. addons/gateway/carts/mycred-woocommerce.php +4 -4
  7. addons/gateway/event-booking/mycred-eventespresso3.php +2 -2
  8. addons/sell-content/myCRED-addon-sell-content.php +1 -1
  9. addons/stats/abstracts/mycred-abstract-stat-widget.php +4 -4
  10. addons/stats/includes/mycred-stats-functions.php +3 -3
  11. addons/stats/myCRED-addon-stats.php +2 -2
  12. addons/stats/widgets/mycred-stats-widget-circulation.php +5 -5
  13. addons/stats/widgets/mycred-stats-widget-daily-gains.php +7 -8
  14. addons/stats/widgets/mycred-stats-widget-daily-loses.php +7 -8
  15. addons/transfer/includes/mycred-transfer-widgets.php +14 -12
  16. assets/css/inline-edit.css +1 -1
  17. includes/mycred-admin.php +63 -19
  18. includes/mycred-log.php +193 -55
  19. includes/mycred-overview.php +3 -3
  20. includes/mycred-referrals.php +1 -1
  21. includes/mycred-shortcodes.php +2 -2
  22. includes/mycred-widgets.php +42 -39
  23. lang/mycred-en_US.mo +0 -0
  24. lang/mycred-en_US.po +245 -245
  25. lang/mycred-es_ES.mo +0 -0
  26. lang/mycred-es_ES.po +245 -245
  27. lang/mycred-es_VE.mo +0 -0
  28. lang/mycred-es_VE.po +245 -245
  29. lang/mycred-fa_IR.mo +0 -0
  30. lang/mycred-fa_IR.po +245 -245
  31. lang/mycred-fr_FR.mo +0 -0
  32. lang/mycred-fr_FR.po +245 -245
  33. lang/mycred-ja_JP.mo +0 -0
  34. lang/mycred-ja_JP.po +6663 -0
  35. lang/mycred-pt_BR.mo +0 -0
  36. lang/mycred-pt_BR.po +245 -245
  37. lang/mycred-ru_RU.mo +0 -0
  38. lang/mycred-ru_RU.po +245 -245
  39. lang/mycred-sv_SE.mo +0 -0
  40. lang/mycred-sv_SE.po +245 -245
  41. lang/mycred-zh_CN.mo +0 -0
  42. lang/mycred-zh_CN.po +245 -245
  43. lang/mycred.pot +245 -245
  44. modules/mycred-module-addons.php +2 -2
  45. modules/mycred-module-buddypress.php +2 -2
  46. modules/mycred-module-hooks.php +5 -5
  47. modules/mycred-module-log.php +0 -4
  48. modules/mycred-module-settings.php +4 -4
  49. mycred.php +68 -45
  50. plugins/mycred-hook-sharethis.php +259 -233
  51. readme.txt +12 -21
abstracts/mycred-abstract-module.php CHANGED
@@ -576,14 +576,15 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
576
  /**
577
  * Get Settings URL
578
  * @since 1.4
579
- * @version 1.0
580
  */
581
  function get_settings_url( $module = '' ) {
582
  $variables = array( 'page' => 'myCRED_page_settings' );
583
  if ( ! empty( $module ) )
584
  $variables['open-tab'] = $module;
585
-
586
- return add_query_arg( $variables, admin_url( 'admin.php' ) );
 
587
  }
588
 
589
  /**
576
  /**
577
  * Get Settings URL
578
  * @since 1.4
579
+ * @version 1.0.1
580
  */
581
  function get_settings_url( $module = '' ) {
582
  $variables = array( 'page' => 'myCRED_page_settings' );
583
  if ( ! empty( $module ) )
584
  $variables['open-tab'] = $module;
585
+
586
+ $url = add_query_arg( $variables, admin_url( 'admin.php' ) );
587
+ return esc_url( $url );
588
  }
589
 
590
  /**
addons/banking/services/mycred-bank-service-interest.php CHANGED
@@ -568,7 +568,7 @@ if ( ! class_exists( 'myCRED_Banking_Service_Interest' ) ) :
568
  /**
569
  * Save User Override
570
  * @since 1.5.2
571
- * @version 1.0.1
572
  */
573
  function save_user_override() {
574
 
568
  /**
569
  * Save User Override
570
  * @since 1.5.2
571
+ * @version 1.0.2
572
  */
573
  function save_user_override() {
574
 
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -115,7 +115,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
115
  * Process
116
  * Processes Gateway returns and IPN calls
117
  * @since 0.1
118
- * @version 1.1
119
  */
120
  public function module_init() {
121
 
@@ -127,16 +127,9 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
127
  add_shortcode( 'mycred_buy_form', array( $this, 'render_shortcode_form' ) );
128
  add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
129
 
130
- if ( isset( $_REQUEST['buycred_cancel'] ) && $_REQUEST['buycred_cancel'] != '' ) {
131
- $post_title = sanitize_key( $_REQUEST['buycred_cancel'] );
132
- $check = get_page_by_title( $post_title, ARRAY_A, 'buycred_payment' );
133
- if ( $check !== NULL ) {
134
- wp_delete_post( $check['ID'], true );
135
- $url = remove_query_arg( array( 'buycred_cancel' ) );
136
- wp_redirect( $url );
137
- exit;
138
- }
139
- }
140
 
141
  $gateway = NULL;
142
 
@@ -151,8 +144,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
151
  * for to determen if they are responsible for handling the return.
152
  */
153
  foreach ( $installed as $id => $data ) {
 
154
  if ( ! $this->is_active( $id ) ) continue;
155
  $this->call( 'returning', $installed[ $id ]['callback'] );
 
156
  }
157
 
158
  /**
@@ -160,17 +155,23 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
160
  * Checks to see if a gateway should be loaded.
161
  */
162
  $gateway_id = '';
 
163
  if ( isset( $_REQUEST['mycred_call'] ) )
164
  $gateway_id = trim( $_REQUEST['mycred_call'] );
 
165
  elseif ( isset( $_REQUEST['mycred_buy'] ) && is_user_logged_in() )
166
  $gateway_id = trim( $_REQUEST['mycred_buy'] );
167
- elseif ( isset( $_REQUEST['wp_zombaio_ips'] ) || isset( $_REQUEST['ZombaioGWPass'] ) )
 
168
  $gateway_id = 'zombaio';
 
 
169
 
170
  $gateway_id = apply_filters( 'mycred_gateway_id', $gateway_id );
171
 
172
  // If we have a valid gateway ID and the gateway is active, lets run that gateway.
173
  if ( ! empty( $gateway_id ) && array_key_exists( $gateway_id, $installed ) && $this->is_active( $gateway_id ) ) {
 
174
  // Gateway Class
175
  $class = $installed[ $gateway_id ]['callback'][0];
176
 
@@ -178,32 +179,39 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
178
  $gateway = new $class( $this->gateway_prefs );
179
 
180
  // Check payment processing
181
- if ( isset( $_REQUEST['mycred_call'] ) || $gateway_id == 'zombaio' ) {
 
182
  $gateway->process();
183
 
184
  do_action( 'mycred_buycred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
185
  do_action( 'mycred_buycred_process_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
 
186
  }
187
 
188
  // Check purchase request
189
  if ( isset( $_REQUEST['mycred_buy'] ) ) {
 
190
  // Validate token
191
  $token = false;
192
  if ( isset( $_REQUEST['token'] ) && wp_verify_nonce( $_REQUEST['token'], 'mycred-buy-creds' ) )
193
  $token = true;
194
 
195
- // Validate amount
196
  $amount = false;
197
  if ( isset( $_REQUEST['amount'] ) && $_REQUEST['amount'] != 0 && $_REQUEST['amount'] >= $this->core->buy_creds['minimum'] )
198
  $amount = true;
199
 
200
  if ( $token && $amount ) {
 
201
  $gateway->buy();
202
 
203
  do_action( 'mycred_buycred_buy', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
204
  do_action( 'mycred_buycred_buy_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
 
205
  }
 
206
  }
 
207
  }
208
 
209
  }
@@ -219,12 +227,13 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
219
 
220
  $pending_id = absint( $_GET['credit'] );
221
  $point_type = sanitize_text_field( $_GET['ctype'] );
222
- $mycred = mycred( $point_type );
223
 
224
  if ( ! $mycred->can_edit_creds() ) return;
225
 
226
  $gateway_id = sanitize_text_field( $_GET['gateway'] );
227
- $installed = $this->get();
 
228
  if ( array_key_exists( $gateway_id, $installed ) ) {
229
 
230
  $class = $installed[ $gateway_id ]['callback'][0];
@@ -239,9 +248,11 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
239
  $gateway->complete_payment( $pending_payment, get_the_title( $pending_id ) );
240
 
241
  wp_delete_post( $pending_id );
 
242
  $url = remove_query_arg( array( 'credit', 'ctype', 'gateway' ) );
243
  $url = add_query_arg( array( 'credited' => 1 ), $url );
244
  wp_safe_redirect( $url );
 
245
  exit;
246
 
247
  }
@@ -293,6 +304,31 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
293
 
294
  }
295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  /**
297
  * Pending Payment Column Headers
298
  * @since 1.5
@@ -385,7 +421,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
385
  /**
386
  * Pending Payment Row Actions
387
  * @since 1.5
388
- * @version 1.0
389
  */
390
  function adjust_row_actions( $actions, $post ) {
391
 
@@ -402,7 +438,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
402
  'post_type' => $post->post_type,
403
  'gateway' => get_post_meta( $post->ID, 'gateway', true )
404
  ) );
405
- $actions['credit'] = '<a href="' . $credit . '">' . __( 'Pay Out', 'mycred' ) . '</a>';
406
  }
407
  }
408
 
@@ -418,6 +454,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
418
  function add_to_menu() {
419
 
420
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
 
421
  // Menu Slug
422
  $menu_slug = 'myCRED';
423
 
@@ -441,14 +478,18 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
441
  'myCRED_page_gateways_log_' . $type,
442
  array( $this, 'purchase_log_page' )
443
  );
 
444
  }
445
 
446
  foreach ( $pages as $page ) {
 
447
  add_action( 'admin_print_styles-' . $page, array( $this, 'settings_page_enqueue' ) );
448
  add_action( 'load-' . $page, array( $this, 'screen_options' ) );
 
449
  }
450
 
451
  $this->purchase_log = $pages;
 
452
  }
453
 
454
  }
@@ -658,8 +699,6 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
658
  wp_dropdown_pages( $thankyou_args );
659
 
660
  ?>
661
-
662
-
663
  </li>
664
  </ol>
665
  <label class="subheader"><?php _e( 'Cancellation Page', 'mycred' ); ?></label>
@@ -727,22 +766,22 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
727
  else
728
  $new_data['buy_creds']['types'] = $data['buy_creds']['types'];
729
 
730
- $new_data['buy_creds']['log'] = sanitize_text_field( $data['buy_creds']['log'] );
731
  $new_data['buy_creds']['login'] = trim( $data['buy_creds']['login'] );
732
 
733
- $new_data['buy_creds']['thankyou']['use'] = sanitize_text_field( $data['buy_creds']['thankyou']['use'] );
734
- $new_data['buy_creds']['thankyou']['custom'] = sanitize_text_field( $data['buy_creds']['thankyou']['custom'] );
735
- $new_data['buy_creds']['thankyou']['page'] = abs( $data['buy_creds']['thankyou']['page'] );
736
 
737
- $new_data['buy_creds']['cancelled']['use'] = sanitize_text_field( $data['buy_creds']['cancelled']['use'] );
738
  $new_data['buy_creds']['cancelled']['custom'] = sanitize_text_field( $data['buy_creds']['cancelled']['custom'] );
739
- $new_data['buy_creds']['cancelled']['page'] = abs( $data['buy_creds']['cancelled']['page'] );
740
 
741
- $new_data['buy_creds']['custom_log'] = ( ! isset( $data['buy_creds']['custom_log'] ) ) ? 0 : 1;
742
 
743
- $new_data['buy_creds']['gifting']['members'] = ( ! isset( $data['buy_creds']['gifting']['members'] ) ) ? 0 : 1;
744
- $new_data['buy_creds']['gifting']['authors'] = ( ! isset( $data['buy_creds']['gifting']['authors'] ) ) ? 0 : 1;
745
- $new_data['buy_creds']['gifting']['log'] = sanitize_text_field( $data['buy_creds']['gifting']['log'] );
746
 
747
  delete_option( 'mycred_buycred_reset' );
748
 
@@ -766,21 +805,26 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
766
 
767
  $usable = array();
768
  foreach ( $installed as $gateway_id => $prefs ) {
 
769
  if ( ! $this->is_active( $gateway_id ) || ! isset( $this->gateway_prefs[ $gateway_id ] ) ) continue;
 
770
  $gateway_prefs = $this->gateway_prefs[ $gateway_id ];
 
771
  if ( ! isset( $gateway_prefs['exchange'][ $type ] ) || ( isset( $gateway_prefs['currency'] ) && $gateway_prefs['currency'] == '' ) ) continue;
 
772
  $usable[ $gateway_id ] = $gateway_prefs;
773
  $usable[ $gateway_id ]['title'] = $prefs['title'];
774
 
775
  if ( ! isset( $users_saved_overrides[ $gateway_id ] ) )
776
  $users_saved_overrides[ $gateway_id ] = '';
 
777
  }
 
778
  if ( empty( $usable ) ) return;
779
 
780
  $mycred = mycred( $type );
781
 
782
  ?>
783
-
784
  <h3><strong>buy</strong>CRED</h3>
785
  <table class="form-table">
786
  <?php foreach ( $usable as $gateway_id => $gateway_prefs ) : if ( ! isset( $gateway_prefs['currency'] ) ) $gateway_prefs['currency'] = 'USD'; ?>
@@ -809,16 +853,15 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
809
  /**
810
  * Save Override
811
  * @since 1.5
812
- * @version 1.1
813
  */
814
  public function save_user_override() {
815
 
816
  if ( isset( $_POST['mycred_adjust_users_buyrates_run'] ) && isset( $_POST['mycred_adjust_users_buyrates'] ) ) {
817
 
818
- $ctype = sanitize_key( $_GET['ctype'] );
819
  $user_id = absint( $_GET['user_id'] );
820
-
821
- $mycred = mycred( $ctype );
822
 
823
  if ( $mycred->edit_plugin_cap() && ! $mycred->exclude_user( $user_id ) ) {
824
 
@@ -838,6 +881,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
838
  mycred_delete_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype );
839
 
840
  wp_safe_redirect( add_query_arg( array( 'result' => 'buycred_rates' ) ) );
 
841
  exit;
842
 
843
  }
@@ -891,9 +935,11 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
891
 
892
  <div class="list-items expandable-li" id="accordion">
893
  <?php
 
894
  if ( ! empty( $installed ) ) {
895
- foreach ( $installed as $key => $data ) { ?>
896
 
 
897
  <h4><div class="gate-icon <?php
898
 
899
  // Mark
@@ -921,16 +967,20 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
921
  </li>
922
  </ol>
923
  <?php
 
924
  endif;
925
 
926
- echo $this->call( 'preferences', $data['callback'] ); ?>
927
 
 
928
  <input type="hidden" name="mycred_pref_buycreds[installed]" value="<?php echo $key; ?>" />
929
  </div>
930
  <?php
 
931
  }
932
- } ?>
933
 
 
934
  </div>
935
  <?php do_action( 'mycred_after_buycreds_page', $this ); ?>
936
 
@@ -957,7 +1007,7 @@ jQuery(function($) {
957
  /**
958
  * Custom Log Page
959
  * @since 1.4
960
- * @version 1.3
961
  */
962
  public function purchase_log_page() {
963
 
@@ -1029,10 +1079,12 @@ jQuery(function($) {
1029
  'column-tranid' => __( 'Transaction ID', 'mycred' )
1030
  ) );
1031
 
 
 
1032
  ?>
1033
  <div class="wrap list" id="myCRED-wrap">
1034
  <h2><?php _e( '<strong>buy</strong>CRED Purchase Log', 'mycred' ); ?> <a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'Gateway Settings', 'mycred' ); ?></a> <a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
1035
- <?php $log->filter_dates( admin_url( 'admin.php?page=myCRED_page_gateways_log_' . $type ) ); ?>
1036
 
1037
  <div class="clear"></div>
1038
  <form method="get" action="">
@@ -1058,7 +1110,7 @@ jQuery(function($) {
1058
 
1059
  $log->search(); ?>
1060
 
1061
- <input type="hidden" name="page" value="<?php echo $_GET['page']; ?>" />
1062
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
1063
 
1064
  <div class="tablenav top">
@@ -1238,7 +1290,7 @@ jQuery(function($) {
1238
  /**
1239
  * Get Sales Data from Log Data
1240
  * @since 1.4
1241
- * @version 1.0
1242
  */
1243
  public function get_sales_data_from_log_data( $log_data = '' ) {
1244
 
@@ -1258,7 +1310,7 @@ jQuery(function($) {
1258
  $found_data = $log_data;
1259
  }
1260
 
1261
- return mycred_apply_defaults( $defaults, $found_data );
1262
 
1263
  }
1264
 
@@ -1286,7 +1338,7 @@ jQuery(function($) {
1286
  * Render Shortcode Basic
1287
  * This shortcode returns a link element to a specified payment gateway.
1288
  * @since 0.1
1289
- * @version 1.5
1290
  */
1291
  public function render_shortcode_basic( $atts, $title = '' ) {
1292
 
@@ -1321,7 +1373,7 @@ jQuery(function($) {
1321
 
1322
  $buy_author = false;
1323
  $buy_member = false;
1324
- $buy_self = false;
1325
 
1326
  // Gifting is allowed
1327
  if ( $this->core->buy_creds['gifting']['authors'] == 1 ) {
@@ -1355,9 +1407,9 @@ jQuery(function($) {
1355
 
1356
  // Adjust title
1357
  if ( $buy_self === false ) {
1358
- $user = get_userdata( (int) $user_id );
1359
  $username = $user->user_login;
1360
- $title = $this->core->template_tags_user( $title, $user );
1361
  unset( $user );
1362
  }
1363
  else {
@@ -1383,15 +1435,17 @@ jQuery(function($) {
1383
 
1384
  // Classes
1385
  $classes = explode( ' ', $class );
 
1386
  if ( empty( $classes ) )
1387
  $classes = array( 'mycred-buy-link', 'button large', 'custom' );
 
1388
  $classes[] = $gateway;
1389
 
1390
  if ( $buy_author || $buy_member )
1391
  $args = array_merge_recursive( $args, array( 'gift_to' => $user_id ) );
1392
 
1393
  // Element to return
1394
- $element = '<a href="' . add_query_arg( $args, $url ) . '" class="' . implode( ' ', $classes ) . '" title="' . $title . '">' . $title . '</a>';
1395
 
1396
  return $element;
1397
 
@@ -1436,8 +1490,8 @@ jQuery(function($) {
1436
  $buy_author = false;
1437
  $buy_member = false;
1438
  $buy_others = false;
1439
- $buy_self = false;
1440
- $classes = array( 'myCRED-buy-form' );
1441
 
1442
  // Gifting is enabled
1443
  if ( $this->core->buy_creds['gifting']['authors'] ) {
115
  * Process
116
  * Processes Gateway returns and IPN calls
117
  * @since 0.1
118
+ * @version 1.2.1
119
  */
120
  public function module_init() {
121
 
127
  add_shortcode( 'mycred_buy_form', array( $this, 'render_shortcode_form' ) );
128
  add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
129
 
130
+ // Intercept payment cancellations
131
+ if ( isset( $_REQUEST['buycred_cancel'] ) && strlen( $_REQUEST['buycred_cancel'] ) > 5 )
132
+ $this->delete_pending_payment( $_REQUEST['buycred_cancel'] );
 
 
 
 
 
 
 
133
 
134
  $gateway = NULL;
135
 
144
  * for to determen if they are responsible for handling the return.
145
  */
146
  foreach ( $installed as $id => $data ) {
147
+
148
  if ( ! $this->is_active( $id ) ) continue;
149
  $this->call( 'returning', $installed[ $id ]['callback'] );
150
+
151
  }
152
 
153
  /**
155
  * Checks to see if a gateway should be loaded.
156
  */
157
  $gateway_id = '';
158
+ $process = false;
159
  if ( isset( $_REQUEST['mycred_call'] ) )
160
  $gateway_id = trim( $_REQUEST['mycred_call'] );
161
+
162
  elseif ( isset( $_REQUEST['mycred_buy'] ) && is_user_logged_in() )
163
  $gateway_id = trim( $_REQUEST['mycred_buy'] );
164
+
165
+ elseif ( isset( $_REQUEST['wp_zombaio_ips'] ) || isset( $_REQUEST['ZombaioGWPass'] ) ) {
166
  $gateway_id = 'zombaio';
167
+ $process = true;
168
+ }
169
 
170
  $gateway_id = apply_filters( 'mycred_gateway_id', $gateway_id );
171
 
172
  // If we have a valid gateway ID and the gateway is active, lets run that gateway.
173
  if ( ! empty( $gateway_id ) && array_key_exists( $gateway_id, $installed ) && $this->is_active( $gateway_id ) ) {
174
+
175
  // Gateway Class
176
  $class = $installed[ $gateway_id ]['callback'][0];
177
 
179
  $gateway = new $class( $this->gateway_prefs );
180
 
181
  // Check payment processing
182
+ if ( isset( $_REQUEST['mycred_call'] ) || ( $gateway_id == 'zombaio' && $process ) ) {
183
+
184
  $gateway->process();
185
 
186
  do_action( 'mycred_buycred_process', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
187
  do_action( 'mycred_buycred_process_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
188
+
189
  }
190
 
191
  // Check purchase request
192
  if ( isset( $_REQUEST['mycred_buy'] ) ) {
193
+
194
  // Validate token
195
  $token = false;
196
  if ( isset( $_REQUEST['token'] ) && wp_verify_nonce( $_REQUEST['token'], 'mycred-buy-creds' ) )
197
  $token = true;
198
 
199
+ // Validate amount ( amount is not zero and higher then minimum required
200
  $amount = false;
201
  if ( isset( $_REQUEST['amount'] ) && $_REQUEST['amount'] != 0 && $_REQUEST['amount'] >= $this->core->buy_creds['minimum'] )
202
  $amount = true;
203
 
204
  if ( $token && $amount ) {
205
+
206
  $gateway->buy();
207
 
208
  do_action( 'mycred_buycred_buy', $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
209
  do_action( 'mycred_buycred_buy_' . $gateway_id, $this->gateway_prefs, $this->core->buy_creds );
210
+
211
  }
212
+
213
  }
214
+
215
  }
216
 
217
  }
227
 
228
  $pending_id = absint( $_GET['credit'] );
229
  $point_type = sanitize_text_field( $_GET['ctype'] );
230
+ $mycred = mycred( $point_type );
231
 
232
  if ( ! $mycred->can_edit_creds() ) return;
233
 
234
  $gateway_id = sanitize_text_field( $_GET['gateway'] );
235
+ $installed = $this->get();
236
+
237
  if ( array_key_exists( $gateway_id, $installed ) ) {
238
 
239
  $class = $installed[ $gateway_id ]['callback'][0];
248
  $gateway->complete_payment( $pending_payment, get_the_title( $pending_id ) );
249
 
250
  wp_delete_post( $pending_id );
251
+
252
  $url = remove_query_arg( array( 'credit', 'ctype', 'gateway' ) );
253
  $url = add_query_arg( array( 'credited' => 1 ), $url );
254
  wp_safe_redirect( $url );
255
+
256
  exit;
257
 
258
  }
304
 
305
  }
306
 
307
+ /**
308
+ * Delete Pending Payment
309
+ * @since 1.6.4
310
+ * @version 1.0
311
+ */
312
+ function delete_pending_payment( $payment_id = '' ) {
313
+
314
+ if ( $this->current_user_id == 0 ) return;
315
+
316
+ $payment_id = sanitize_key( $payment_id );
317
+ $payment = get_page_by_title( strtoupper( $post_title ), OBJECT, 'buycred_payment' );
318
+
319
+ // If the pending transaction is found and it is ours, delete it now.
320
+ if ( isset( $payment->ID ) && get_post_meta( $payment->ID, 'from', true ) == $this->current_user_id ) {
321
+
322
+ wp_delete_post( $payment_id, true );
323
+
324
+ wp_redirect( remove_query_arg( array( 'buycred_cancel' ) ) );
325
+
326
+ exit;
327
+
328
+ }
329
+
330
+ }
331
+
332
  /**
333
  * Pending Payment Column Headers
334
  * @since 1.5
421
  /**
422
  * Pending Payment Row Actions
423
  * @since 1.5
424
+ * @version 1.0.1
425
  */
426
  function adjust_row_actions( $actions, $post ) {
427
 
438
  'post_type' => $post->post_type,
439
  'gateway' => get_post_meta( $post->ID, 'gateway', true )
440
  ) );
441
+ $actions['credit'] = '<a href="' . esc_url( $credit ) . '">' . __( 'Pay Out', 'mycred' ) . '</a>';
442
  }
443
  }
444
 
454
  function add_to_menu() {
455
 
456
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
457
+
458
  // Menu Slug
459
  $menu_slug = 'myCRED';
460
 
478
  'myCRED_page_gateways_log_' . $type,
479
  array( $this, 'purchase_log_page' )
480
  );
481
+
482
  }
483
 
484
  foreach ( $pages as $page ) {
485
+
486
  add_action( 'admin_print_styles-' . $page, array( $this, 'settings_page_enqueue' ) );
487
  add_action( 'load-' . $page, array( $this, 'screen_options' ) );
488
+
489
  }
490
 
491
  $this->purchase_log = $pages;
492
+
493
  }
494
 
495
  }
699
  wp_dropdown_pages( $thankyou_args );
700
 
701
  ?>
 
 
702
  </li>
703
  </ol>
704
  <label class="subheader"><?php _e( 'Cancellation Page', 'mycred' ); ?></label>
766
  else
767
  $new_data['buy_creds']['types'] = $data['buy_creds']['types'];
768
 
769
+ $new_data['buy_creds']['log'] = sanitize_text_field( $data['buy_creds']['log'] );
770
  $new_data['buy_creds']['login'] = trim( $data['buy_creds']['login'] );
771
 
772
+ $new_data['buy_creds']['thankyou']['use'] = sanitize_text_field( $data['buy_creds']['thankyou']['use'] );
773
+ $new_data['buy_creds']['thankyou']['custom'] = sanitize_text_field( $data['buy_creds']['thankyou']['custom'] );
774
+ $new_data['buy_creds']['thankyou']['page'] = absint( $data['buy_creds']['thankyou']['page'] );
775
 
776
+ $new_data['buy_creds']['cancelled']['use'] = sanitize_text_field( $data['buy_creds']['cancelled']['use'] );
777
  $new_data['buy_creds']['cancelled']['custom'] = sanitize_text_field( $data['buy_creds']['cancelled']['custom'] );
778
+ $new_data['buy_creds']['cancelled']['page'] = absint( $data['buy_creds']['cancelled']['page'] );
779
 
780
+ $new_data['buy_creds']['custom_log'] = ( ! isset( $data['buy_creds']['custom_log'] ) ) ? 0 : 1;
781
 
782
+ $new_data['buy_creds']['gifting']['members'] = ( ! isset( $data['buy_creds']['gifting']['members'] ) ) ? 0 : 1;
783
+ $new_data['buy_creds']['gifting']['authors'] = ( ! isset( $data['buy_creds']['gifting']['authors'] ) ) ? 0 : 1;
784
+ $new_data['buy_creds']['gifting']['log'] = sanitize_text_field( $data['buy_creds']['gifting']['log'] );
785
 
786
  delete_option( 'mycred_buycred_reset' );
787
 
805
 
806
  $usable = array();
807
  foreach ( $installed as $gateway_id => $prefs ) {
808
+
809
  if ( ! $this->is_active( $gateway_id ) || ! isset( $this->gateway_prefs[ $gateway_id ] ) ) continue;
810
+
811
  $gateway_prefs = $this->gateway_prefs[ $gateway_id ];
812
+
813
  if ( ! isset( $gateway_prefs['exchange'][ $type ] ) || ( isset( $gateway_prefs['currency'] ) && $gateway_prefs['currency'] == '' ) ) continue;
814
+
815
  $usable[ $gateway_id ] = $gateway_prefs;
816
  $usable[ $gateway_id ]['title'] = $prefs['title'];
817
 
818
  if ( ! isset( $users_saved_overrides[ $gateway_id ] ) )
819
  $users_saved_overrides[ $gateway_id ] = '';
820
+
821
  }
822
+
823
  if ( empty( $usable ) ) return;
824
 
825
  $mycred = mycred( $type );
826
 
827
  ?>
 
828
  <h3><strong>buy</strong>CRED</h3>
829
  <table class="form-table">
830
  <?php foreach ( $usable as $gateway_id => $gateway_prefs ) : if ( ! isset( $gateway_prefs['currency'] ) ) $gateway_prefs['currency'] = 'USD'; ?>
853
  /**
854
  * Save Override
855
  * @since 1.5
856
+ * @version 1.1.1
857
  */
858
  public function save_user_override() {
859
 
860
  if ( isset( $_POST['mycred_adjust_users_buyrates_run'] ) && isset( $_POST['mycred_adjust_users_buyrates'] ) ) {
861
 
862
+ $ctype = sanitize_key( $_GET['ctype'] );
863
  $user_id = absint( $_GET['user_id'] );
864
+ $mycred = mycred( $ctype );
 
865
 
866
  if ( $mycred->edit_plugin_cap() && ! $mycred->exclude_user( $user_id ) ) {
867
 
881
  mycred_delete_user_meta( $user_id, 'mycred_buycred_rates_' . $ctype );
882
 
883
  wp_safe_redirect( add_query_arg( array( 'result' => 'buycred_rates' ) ) );
884
+
885
  exit;
886
 
887
  }
935
 
936
  <div class="list-items expandable-li" id="accordion">
937
  <?php
938
+
939
  if ( ! empty( $installed ) ) {
940
+ foreach ( $installed as $key => $data ) {
941
 
942
+ ?>
943
  <h4><div class="gate-icon <?php
944
 
945
  // Mark
967
  </li>
968
  </ol>
969
  <?php
970
+
971
  endif;
972
 
973
+ echo $this->call( 'preferences', $data['callback'] );
974
 
975
+ ?>
976
  <input type="hidden" name="mycred_pref_buycreds[installed]" value="<?php echo $key; ?>" />
977
  </div>
978
  <?php
979
+
980
  }
981
+ }
982
 
983
+ ?>
984
  </div>
985
  <?php do_action( 'mycred_after_buycreds_page', $this ); ?>
986
 
1007
  /**
1008
  * Custom Log Page
1009
  * @since 1.4
1010
+ * @version 1.3.1
1011
  */
1012
  public function purchase_log_page() {
1013
 
1079
  'column-tranid' => __( 'Transaction ID', 'mycred' )
1080
  ) );
1081
 
1082
+ $filter_url = admin_url( 'admin.php?page=myCRED_page_gateways_log_' . $type );
1083
+
1084
  ?>
1085
  <div class="wrap list" id="myCRED-wrap">
1086
  <h2><?php _e( '<strong>buy</strong>CRED Purchase Log', 'mycred' ); ?> <a href="<?php echo admin_url( 'admin.php?page=myCRED_page_gateways' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'Gateway Settings', 'mycred' ); ?></a> <a href="<?php echo $this->get_settings_url( 'buycred_module' ); ?>" class="click-to-toggle add-new-h2"><?php _e( 'buyCRED Settings', 'mycred' ); ?></a></h2>
1087
+ <?php $log->filter_dates( esc_url( $filter_url ) ); ?>
1088
 
1089
  <div class="clear"></div>
1090
  <form method="get" action="">
1110
 
1111
  $log->search(); ?>
1112
 
1113
+ <input type="hidden" name="page" value="<?php echo esc_attr( $_GET['page'] ); ?>" />
1114
  <?php do_action( 'mycred_above_payment_log_table', $this ); ?>
1115
 
1116
  <div class="tablenav top">
1290
  /**
1291
  * Get Sales Data from Log Data
1292
  * @since 1.4
1293
+ * @version 1.0.1
1294
  */
1295
  public function get_sales_data_from_log_data( $log_data = '' ) {
1296
 
1310
  $found_data = $log_data;
1311
  }
1312
 
1313
+ return wp_parse_args( $found_data, $defaults );
1314
 
1315
  }
1316
 
1338
  * Render Shortcode Basic
1339
  * This shortcode returns a link element to a specified payment gateway.
1340
  * @since 0.1
1341
+ * @version 1.5.1
1342
  */
1343
  public function render_shortcode_basic( $atts, $title = '' ) {
1344
 
1373
 
1374
  $buy_author = false;
1375
  $buy_member = false;
1376
+ $buy_self = false;
1377
 
1378
  // Gifting is allowed
1379
  if ( $this->core->buy_creds['gifting']['authors'] == 1 ) {
1407
 
1408
  // Adjust title
1409
  if ( $buy_self === false ) {
1410
+ $user = get_userdata( (int) $user_id );
1411
  $username = $user->user_login;
1412
+ $title = $this->core->template_tags_user( $title, $user );
1413
  unset( $user );
1414
  }
1415
  else {
1435
 
1436
  // Classes
1437
  $classes = explode( ' ', $class );
1438
+
1439
  if ( empty( $classes ) )
1440
  $classes = array( 'mycred-buy-link', 'button large', 'custom' );
1441
+
1442
  $classes[] = $gateway;
1443
 
1444
  if ( $buy_author || $buy_member )
1445
  $args = array_merge_recursive( $args, array( 'gift_to' => $user_id ) );
1446
 
1447
  // Element to return
1448
+ $element = '<a href="' . esc_url( add_query_arg( $args, $url ) ) . '" class="' . implode( ' ', $classes ) . '" title="' . $title . '">' . $title . '</a>';
1449
 
1450
  return $element;
1451
 
1490
  $buy_author = false;
1491
  $buy_member = false;
1492
  $buy_others = false;
1493
+ $buy_self = false;
1494
+ $classes = array( 'myCRED-buy-form' );
1495
 
1496
  // Gifting is enabled
1497
  if ( $this->core->buy_creds['gifting']['authors'] ) {
addons/coupons/myCRED-addon-coupons.php CHANGED
@@ -170,7 +170,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
170
  /**
171
  * Adjust Column Body
172
  * @since 1.4
173
- * @version 1.1
174
  */
175
  public function adjust_column_content( $column_name, $post_id ) {
176
  global $mycred;
@@ -199,7 +199,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
199
  $page .= '_' . $set_type;
200
 
201
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => get_the_title( $post_id ) ), admin_url( 'admin.php' ) );
202
- echo '<a href="' . $url . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
203
  }
204
 
205
  break;
@@ -466,7 +466,7 @@ table td textarea { width: 95%; }
466
  $page .= '_' . $set_type;
467
 
468
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
469
- echo '<a href="' . $url . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
470
  }
471
 
472
  }
170
  /**
171
  * Adjust Column Body
172
  * @since 1.4
173
+ * @version 1.1.1
174
  */
175
  public function adjust_column_content( $column_name, $post_id ) {
176
  global $mycred;
199
  $page .= '_' . $set_type;
200
 
201
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => get_the_title( $post_id ) ), admin_url( 'admin.php' ) );
202
+ echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
203
  }
204
 
205
  break;
466
  $page .= '_' . $set_type;
467
 
468
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
469
+ echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
470
  }
471
 
472
  }
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -1257,9 +1257,12 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1257
  ob_start();
1258
 
1259
  if ( $saved )
1260
- echo '<p class="updated-email-subscriptions">' . $success . '</p>'; ?>
1261
 
1262
- <form action="<?php echo add_query_arg( array( 'do' => 'mycred-unsubscribe', 'user' => get_current_user_id(), 'token' => wp_create_nonce( 'update-mycred-email-subscriptions' ) ) ); ?>" id="mycred-email-subscriptions" method="post">
 
 
 
1263
  <table class="table">
1264
  <thead>
1265
  <tr>
@@ -1293,6 +1296,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
1293
  <input type="submit" class="btn btn-primary button button-primary pull-right" value="<?php _e( 'Save Changes', 'mycred' ); ?>" />
1294
  </form>
1295
  <?php
 
1296
  $content = ob_get_contents();
1297
  ob_end_clean();
1298
 
1257
  ob_start();
1258
 
1259
  if ( $saved )
1260
+ echo '<p class="updated-email-subscriptions">' . $success . '</p>';
1261
 
1262
+ $url = add_query_arg( array( 'do' => 'mycred-unsubscribe', 'user' => get_current_user_id(), 'token' => wp_create_nonce( 'update-mycred-email-subscriptions' ) ) );
1263
+
1264
+ ?>
1265
+ <form action="<?php echo esc_url( $url ); ?>" id="mycred-email-subscriptions" method="post">
1266
  <table class="table">
1267
  <thead>
1268
  <tr>
1296
  <input type="submit" class="btn btn-primary button button-primary pull-right" value="<?php _e( 'Save Changes', 'mycred' ); ?>" />
1297
  </form>
1298
  <?php
1299
+
1300
  $content = ob_get_contents();
1301
  ob_end_clean();
1302
 
addons/gateway/carts/mycred-woocommerce.php CHANGED
@@ -417,7 +417,7 @@ endif;
417
  /**
418
  * Log Entry: Payment
419
  * @since 0.1
420
- * @version 1.3.1
421
  */
422
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
423
  if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
@@ -445,7 +445,7 @@ if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
445
  // Link to order if we can edit plugin or are the user who made the order
446
  if ( $cui == $order->user_id || $mycred->can_edit_plugin( $cui ) ) {
447
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
448
- $content = str_replace( '%order_link%', '<a href="' . $url . '">#' . $order->id . '</a>', $content );
449
  }
450
  else {
451
  $content = str_replace( '%order_link%', '#' . $order->id, $content );
@@ -510,7 +510,7 @@ endif;
510
  /**
511
  * Parse Email Notice
512
  * @since 1.2.2
513
- * @version 1.0.1
514
  */
515
  add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
516
  if ( ! function_exists( 'mycred_woo_parse_email' ) ) :
@@ -527,7 +527,7 @@ if ( ! function_exists( 'mycred_woo_parse_email' ) ) :
527
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
528
 
529
  $content = str_replace( '%order_id%', $order->id, $email['request']['entry'] );
530
- $email['request']['entry'] = str_replace( '%order_link%', '<a href="' . $url . '">#' . $order->id . '</a>', $content );
531
  }
532
 
533
  }
417
  /**
418
  * Log Entry: Payment
419
  * @since 0.1
420
+ * @version 1.3.2
421
  */
422
  add_filter( 'mycred_parse_log_entry_woocommerce_payment', 'mycred_woo_log_entry_payment', 90, 2 );
423
  if ( ! function_exists( 'mycred_woo_log_entry_payment' ) ) :
445
  // Link to order if we can edit plugin or are the user who made the order
446
  if ( $cui == $order->user_id || $mycred->can_edit_plugin( $cui ) ) {
447
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
448
+ $content = str_replace( '%order_link%', '<a href="' . esc_url( $url ) . '">#' . $order->id . '</a>', $content );
449
  }
450
  else {
451
  $content = str_replace( '%order_link%', '#' . $order->id, $content );
510
  /**
511
  * Parse Email Notice
512
  * @since 1.2.2
513
+ * @version 1.0.2
514
  */
515
  add_filter( 'mycred_email_before_send', 'mycred_woo_parse_email' );
516
  if ( ! function_exists( 'mycred_woo_parse_email' ) ) :
527
  $url = esc_url( add_query_arg( 'order', $order->id, get_permalink( woocommerce_get_page_id( 'view_order' ) ) ) );
528
 
529
  $content = str_replace( '%order_id%', $order->id, $email['request']['entry'] );
530
+ $email['request']['entry'] = str_replace( '%order_link%', '<a href="' . esc_url( $url ) . '">#' . $order->id . '</a>', $content );
531
  }
532
 
533
  }
addons/gateway/event-booking/mycred-eventespresso3.php CHANGED
@@ -224,7 +224,7 @@ if ( ! class_exists( 'myCRED_Espresso_Gateway' ) ) {
224
  /**
225
  * Payment Page
226
  * @since 1.2
227
- * @version 1.1
228
  */
229
  public function payment_page( $payment_data ) {
230
  extract( $payment_data );
@@ -286,7 +286,7 @@ if ( ! class_exists( 'myCRED_Espresso_Gateway' ) ) {
286
  <td class="amount"><?php echo $this->core->format_creds( $after_purchase ); ?></td>
287
  </tr>
288
  </table>
289
- <p><a href="<?php echo $finalize_link; ?>" class="button button-large button-primary" style="float:right;"><?php echo $this->prefs['labels']['button']; ?></a></p>
290
  </div>
291
  <?php elseif ( $member && ! $solvent ) : ?>
292
 
224
  /**
225
  * Payment Page
226
  * @since 1.2
227
+ * @version 1.1.1
228
  */
229
  public function payment_page( $payment_data ) {
230
  extract( $payment_data );
286
  <td class="amount"><?php echo $this->core->format_creds( $after_purchase ); ?></td>
287
  </tr>
288
  </table>
289
+ <p><a href="<?php echo esc_url( $finalize_link ); ?>" class="button button-large button-primary" style="float:right;"><?php echo $this->prefs['labels']['button']; ?></a></p>
290
  </div>
291
  <?php elseif ( $member && ! $solvent ) : ?>
292
 
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -125,7 +125,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
125
  /**
126
  * Save Override
127
  * @since 1.5
128
- * @version 1.1
129
  */
130
  function save_user_override() {
131
 
125
  /**
126
  * Save Override
127
  * @since 1.5
128
+ * @version 1.1.1
129
  */
130
  function save_user_override() {
131
 
addons/stats/abstracts/mycred-abstract-stat-widget.php CHANGED
@@ -83,7 +83,7 @@ if ( ! class_exists( 'myCRED_Statistics_Widget' ) ) :
83
 
84
  /**
85
  * Action Buttons
86
- * @version 1.0
87
  */
88
  function action_buttons() {
89
 
@@ -99,13 +99,13 @@ if ( ! class_exists( 'myCRED_Statistics_Widget' ) ) :
99
  $screen_id .= '_' . $this->args['ctypes'];
100
 
101
  $url = add_query_arg( array( 'page' => $screen_id ), admin_url( 'admin.php' ) );
102
- $buttons[] = '<a href="' . $url . '" class="button button-secondary button-large">' . __( 'View Log', 'mycred' ) . '</a>';
103
 
104
  $url = add_query_arg( array( 'page' => $screen_id . '_page_hooks' ), admin_url( 'admin.php' ) );
105
- $buttons[] = '<a href="' . $url . '" class="button button-secondary button-large">' . __( 'Hooks', 'mycred' ) . '</a>';
106
 
107
  $url = add_query_arg( array( 'page' => $screen_id . '_page_settings' ), admin_url( 'admin.php' ) );
108
- $buttons[] = '<a href="' . $url . '" class="button button-secondary button-large">' . __( 'Settings', 'mycred' ) . '</a>';
109
 
110
  }
111
 
83
 
84
  /**
85
  * Action Buttons
86
+ * @version 1.0.1
87
  */
88
  function action_buttons() {
89
 
99
  $screen_id .= '_' . $this->args['ctypes'];
100
 
101
  $url = add_query_arg( array( 'page' => $screen_id ), admin_url( 'admin.php' ) );
102
+ $buttons[] = '<a href="' . esc_url( $url ) . '" class="button button-secondary button-large">' . __( 'View Log', 'mycred' ) . '</a>';
103
 
104
  $url = add_query_arg( array( 'page' => $screen_id . '_page_hooks' ), admin_url( 'admin.php' ) );
105
+ $buttons[] = '<a href="' . esc_url( $url ) . '" class="button button-secondary button-large">' . __( 'Hooks', 'mycred' ) . '</a>';
106
 
107
  $url = add_query_arg( array( 'page' => $screen_id . '_page_settings' ), admin_url( 'admin.php' ) );
108
+ $buttons[] = '<a href="' . esc_url( $url ) . '" class="button button-secondary button-large">' . __( 'Settings', 'mycred' ) . '</a>';
109
 
110
  }
111
 
addons/stats/includes/mycred-stats-functions.php CHANGED
@@ -81,11 +81,11 @@ if ( ! function_exists( 'mycred_get_type_color' ) ) :
81
 
82
  //$set = array( 'rgba(221,73,167,1)', 'rgba(106,187,218,1)', 'rgba(111,70,161,1)' );
83
  //$set = array( 'rgba(213,78,33,1)', 'rgba(46,162,204,1)', 'rgba(34,34,34,1)' );
84
- $set = array( 'rgba(204,175,11,1)', 'rgba(221,130,59,1)', 'rgba(207,73,68,1)', 'rgba(180,60,56,1)', 'rgba(34,34,34,1)' );
85
  $types = mycred_get_types();
86
 
87
  $colors = array();
88
- $row = 0;
89
  foreach ( $types as $type_id => $label ) {
90
  $colors[ $type_id ] = $set[ $row ];
91
  $row ++;
@@ -182,7 +182,7 @@ endif;
182
  if ( ! function_exists( 'mycred_inverse_rgb_color' ) ) :
183
  function mycred_inverse_rgb_color( $color = '' ) {
184
 
185
- $color = mycred_rgb_to_hex( $color );
186
  $inversed = mycred_inverse_hex_color( $color );
187
  $inversed = mycred_hex_to_rgb( $inversed );
188
  return $inversed;
81
 
82
  //$set = array( 'rgba(221,73,167,1)', 'rgba(106,187,218,1)', 'rgba(111,70,161,1)' );
83
  //$set = array( 'rgba(213,78,33,1)', 'rgba(46,162,204,1)', 'rgba(34,34,34,1)' );
84
+ $set = array( 'rgba(204,175,11,1)', 'rgba(221,130,59,1)', 'rgba(207,73,68,1)', 'rgba(180,60,56,1)', 'rgba(34,34,34,1)' );
85
  $types = mycred_get_types();
86
 
87
  $colors = array();
88
+ $row = 0;
89
  foreach ( $types as $type_id => $label ) {
90
  $colors[ $type_id ] = $set[ $row ];
91
  $row ++;
182
  if ( ! function_exists( 'mycred_inverse_rgb_color' ) ) :
183
  function mycred_inverse_rgb_color( $color = '' ) {
184
 
185
+ $color = mycred_rgb_to_hex( $color );
186
  $inversed = mycred_inverse_hex_color( $color );
187
  $inversed = mycred_hex_to_rgb( $inversed );
188
  return $inversed;
addons/stats/myCRED-addon-stats.php CHANGED
@@ -174,7 +174,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
174
  /**
175
  * Admin Page
176
  * @since 1.6
177
- * @version 1.0
178
  */
179
  public function admin_page() {
180
  // Security
@@ -211,7 +211,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) {
211
  else
212
  $url = add_query_arg( array( 'page' => $_GET['page'] ), admin_url( 'admin.php' ) );
213
 
214
- echo '<li class="' . $classes . '"><a href="' . $url . '">' . $tab['label'] . '</a></li>';
215
 
216
  }
217
 
174
  /**
175
  * Admin Page
176
  * @since 1.6
177
+ * @version 1.0.1
178
  */
179
  public function admin_page() {
180
  // Security
211
  else
212
  $url = add_query_arg( array( 'page' => $_GET['page'] ), admin_url( 'admin.php' ) );
213
 
214
+ echo '<li class="' . $classes . '"><a href="' . esc_url( $url ) . '">' . $tab['label'] . '</a></li>';
215
 
216
  }
217
 
addons/stats/widgets/mycred-stats-widget-circulation.php CHANGED
@@ -2,7 +2,7 @@
2
  if ( ! defined( 'myCRED_STATS_VERSION' ) ) exit;
3
 
4
  /**
5
- * Stats Widget:
6
  * @version 1.0
7
  */
8
  if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
@@ -127,8 +127,8 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
127
  }
128
 
129
  /**
130
- *
131
- * @version 1.0
132
  */
133
  function widget() {
134
 
@@ -222,9 +222,9 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
222
  $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
223
  foreach ( $dates as $key => $item ) {
224
  $url = add_query_arg( array( 'show' => $key ), $base_url );
225
- echo '<td class="cell"><a href="' . $url . '">' . $mycred->format_number( $item['gains'] ) . '</a></td>';
226
  $url = add_query_arg( array( 'show' => $key, 'num' => 0, 'compare' => urlencode( '<' ) ), $base_url );
227
- echo '<td class="cell"><a href="' . $url . '">' . $mycred->format_number( $item['loses'] ) . '</a></td>';
228
  }
229
 
230
  }
2
  if ( ! defined( 'myCRED_STATS_VERSION' ) ) exit;
3
 
4
  /**
5
+ * Stats Widget: Circulation
6
  * @version 1.0
7
  */
8
  if ( ! class_exists( 'myCRED_Stats_Widget_Circulation' ) ) :
127
  }
128
 
129
  /**
130
+ * Display
131
+ * @version 1.0.1
132
  */
133
  function widget() {
134
 
222
  $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
223
  foreach ( $dates as $key => $item ) {
224
  $url = add_query_arg( array( 'show' => $key ), $base_url );
225
+ echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['gains'] ) . '</a></td>';
226
  $url = add_query_arg( array( 'show' => $key, 'num' => 0, 'compare' => urlencode( '<' ) ), $base_url );
227
+ echo '<td class="cell"><a href="' . esc_url( $url ) . '">' . $mycred->format_number( $item['loses'] ) . '</a></td>';
228
  }
229
 
230
  }
addons/stats/widgets/mycred-stats-widget-daily-gains.php CHANGED
@@ -20,7 +20,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Gains' ) ) :
20
  }
21
 
22
  /**
23
- *
24
  * @version 1.0
25
  */
26
  function get_data() {
@@ -42,7 +42,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Gains' ) ) :
42
  }
43
 
44
  /**
45
- *
46
  * @version 1.0
47
  */
48
  function get_gains() {
@@ -110,8 +110,8 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Gains' ) ) :
110
  }
111
 
112
  /**
113
- *
114
- * @version 1.0
115
  */
116
  function widget() {
117
 
@@ -142,14 +142,13 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Gains' ) ) :
142
  if ( $item->type != 'mycred_default' )
143
  $page_id .= '_' . $item->type;
144
 
145
- $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
146
-
147
- $url = add_query_arg( array( 'ref' => $item->ref ), $base_url );
148
 
149
  ?>
150
  <li>
151
  <strong style="color:<?php echo $this->colors[ $item->type ]; ?>;"><?php echo $label; ?></strong>
152
- <span class="view"><a href="<?php echo $url; ?>"><?php _e( 'View', 'mycred' ); ?></a></span>
153
  <ul>
154
  <li><?php echo number_format( $item->total, 0, '.', ' ' ); ?></li>
155
  <li><?php echo $item->count; ?></li>
20
  }
21
 
22
  /**
23
+ * Get Data
24
  * @version 1.0
25
  */
26
  function get_data() {
42
  }
43
 
44
  /**
45
+ * Get Gains
46
  * @version 1.0
47
  */
48
  function get_gains() {
110
  }
111
 
112
  /**
113
+ * Display
114
+ * @version 1.0.1
115
  */
116
  function widget() {
117
 
142
  if ( $item->type != 'mycred_default' )
143
  $page_id .= '_' . $item->type;
144
 
145
+ $base_url = admin_url( 'admin.php' );
146
+ $url = add_query_arg( array( 'ref' => $item->ref, 'page' => $page_id ), $base_url );
 
147
 
148
  ?>
149
  <li>
150
  <strong style="color:<?php echo $this->colors[ $item->type ]; ?>;"><?php echo $label; ?></strong>
151
+ <span class="view"><a href="<?php echo esc_url( $url ); ?>"><?php _e( 'View', 'mycred' ); ?></a></span>
152
  <ul>
153
  <li><?php echo number_format( $item->total, 0, '.', ' ' ); ?></li>
154
  <li><?php echo $item->count; ?></li>
addons/stats/widgets/mycred-stats-widget-daily-loses.php CHANGED
@@ -20,7 +20,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Loses' ) ) :
20
  }
21
 
22
  /**
23
- *
24
  * @version 1.0
25
  */
26
  function get_data() {
@@ -42,7 +42,7 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Loses' ) ) :
42
  }
43
 
44
  /**
45
- *
46
  * @version 1.0
47
  */
48
  function get_spending() {
@@ -110,8 +110,8 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Loses' ) ) :
110
  }
111
 
112
  /**
113
- *
114
- * @version 1.0
115
  */
116
  function widget() {
117
 
@@ -142,14 +142,13 @@ if ( ! class_exists( 'myCRED_Stats_Widget_Daily_Loses' ) ) :
142
  if ( $item->type != 'mycred_default' )
143
  $page_id .= '_' . $item->type;
144
 
145
- $base_url = add_query_arg( array( 'page' => $page_id ), admin_url( 'admin.php' ) );
146
-
147
- $url = add_query_arg( array( 'ref' => $item->ref ), $base_url );
148
 
149
  ?>
150
  <li>
151
  <strong style="color:<?php echo $this->colors[ $item->type ]; ?>;"><?php echo $label; ?></strong>
152
- <span class="view"><a href="<?php echo $url; ?>"><?php _e( 'View', 'mycred' ); ?></a></span>
153
  <ul>
154
  <li><?php echo number_format( $item->total, 0, '.', ' ' ); ?></li>
155
  <li><?php echo $item->count; ?></li>
20
  }
21
 
22
  /**
23
+ * Get Data
24
  * @version 1.0
25
  */
26
  function get_data() {
42
  }
43
 
44
  /**
45
+ * Get Spending
46
  * @version 1.0
47
  */
48
  function get_spending() {
110
  }
111
 
112
  /**
113
+ * Display
114
+ * @version 1.0.1
115
  */
116
  function widget() {
117
 
142
  if ( $item->type != 'mycred_default' )
143
  $page_id .= '_' . $item->type;
144
 
145
+ $base_url = admin_url( 'admin.php' );
146
+ $url = add_query_arg( array( 'ref' => $item->ref, 'page' => $page_id ), $base_url );
 
147
 
148
  ?>
149
  <li>
150
  <strong style="color:<?php echo $this->colors[ $item->type ]; ?>;"><?php echo $label; ?></strong>
151
+ <span class="view"><a href="<?php echo esc_url( $url ); ?>"><?php _e( 'View', 'mycred' ); ?></a></span>
152
  <ul>
153
  <li><?php echo number_format( $item->total, 0, '.', ' ' ); ?></li>
154
  <li><?php echo $item->count; ?></li>
addons/transfer/includes/mycred-transfer-widgets.php CHANGED
@@ -12,23 +12,25 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
12
  /**
13
  * Construct
14
  */
15
- function myCRED_Widget_Transfer() {
16
 
17
- // Basic details about our widget
18
- $widget_ops = array(
19
- 'classname' => 'widget-my-cred-transfer',
20
- 'description' => __( 'Allow transfers between users.', 'mycred' )
21
- );
22
 
23
- $this->WP_Widget( 'mycred_widget_transfer', sprintf( __( '(%s) Transfer', 'mycred' ), mycred_label( true ) ), $widget_ops );
24
- $this->alt_option_name = 'mycred_widget_transfer';
 
 
 
 
 
 
25
 
26
  }
27
 
28
  /**
29
  * Widget Output
30
  */
31
- function widget( $args, $instance ) {
32
 
33
  extract( $args, EXTR_SKIP );
34
 
@@ -104,7 +106,7 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
104
  /**
105
  * Outputs the options form on admin
106
  */
107
- function form( $instance ) {
108
 
109
  // Defaults
110
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Transfer %plural%';
@@ -137,12 +139,12 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
137
  /**
138
  * Processes widget options to be saved
139
  */
140
- function update( $new_instance, $old_instance ) {
141
 
142
  global $mycred;
143
 
144
  $instance = $old_instance;
145
- $allowed = $mycred->allowed_html_tags();
146
 
147
  $instance['title'] = wp_kses( $new_instance['title'], $allowed );
148
  $instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? $new_instance['show_balance'] : 0;
12
  /**
13
  * Construct
14
  */
15
+ public function __construct() {
16
 
17
+ $name = mycred_label( true );
 
 
 
 
18
 
19
+ parent::__construct(
20
+ 'mycred_widget_transfer',
21
+ sprintf( __( '(%s) Transfer', 'mycred' ), $name ),
22
+ array(
23
+ 'classname' => 'widget-my-cred-transfer',
24
+ 'description' => __( 'Allow transfers between users.', 'mycred' )
25
+ )
26
+ );
27
 
28
  }
29
 
30
  /**
31
  * Widget Output
32
  */
33
+ public function widget( $args, $instance ) {
34
 
35
  extract( $args, EXTR_SKIP );
36
 
106
  /**
107
  * Outputs the options form on admin
108
  */
109
+ public function form( $instance ) {
110
 
111
  // Defaults
112
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Transfer %plural%';
139
  /**
140
  * Processes widget options to be saved
141
  */
142
+ public function update( $new_instance, $old_instance ) {
143
 
144
  global $mycred;
145
 
146
  $instance = $old_instance;
147
+ $allowed = $mycred->allowed_html_tags();
148
 
149
  $instance['title'] = wp_kses( $new_instance['title'], $allowed );
150
  $instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? $new_instance['show_balance'] : 0;
assets/css/inline-edit.css CHANGED
@@ -1,4 +1,4 @@
1
- .mycred-update-balance { background-color:white; z-index: 9999; }.mycred-update-balance>div { padding:12px; }.mycred-update-balance .ui-dialog-titlebar { line-height:24px; border-bottom: 1px solid #dedede; }.mycred-update-balance .ui-dialog-titlebar:hover { cursor:move; }.mycred-update-balance .ui-dialog-titlebar-close { float:right; }body.users-php .ui-widget-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background: repeat-x scroll 50% 50% #AAA; opacity:0.3; overflow:hidden; background: repeat-x scroll 50% 50% #333; z-index: 99; }.mycred-adjustment-form { display:block; float:none; clear:both; padding:0; margin:0; }.mycred-adjustment-form .row { line-height:24px; margin:0; padding:0; float:none; margin: 0 0 4px 0; clear:both; }.mycred-adjustment-form .row.inline { float:left; clear:none; }}.mycred-update-balance .mycred-adjustment-form .row.inline span { font-size:18px; }.mycred-adjustment-form .row label { display:block; margin-bottom:0; }.mycred-adjustment-form .row input[type="text"] { width:90%; }.mycred-adjustment-form .row input[type="button"] { float:right; }input#mycred-update-users-balance-amount { width:25%; }#edit-mycred-balance #mycred-current.done { color:green; }.mycred-adjustment-form .row input.error { border-color:red; }
2
 
3
  .mycred-edit-log-entry { background-color:white; z-index: 99; }.mycred-edit-log-entry>div { padding:12px; }.mycred-edit-log-entry .ui-dialog-titlebar { line-height:24px; border-bottom: 1px solid #dedede; }.mycred-edit-log-entry .ui-dialog-titlebar:hover { cursor:move; }.mycred-edit-log-entry .ui-dialog-titlebar-close { float:right; }body .ui-widget-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background: repeat-x scroll 50% 50% #AAA; opacity:0.3; overflow:hidden; background: repeat-x scroll 50% 50% #333; z-index: 99; }#edit-mycred-log-entry .mycred-adjustment-form .row label{ font-weight:bold; }#edit-mycred-log-entry .mycred-adjustment-form .row input[type="button"] { float:right; margin-left: 24px; }#edit-mycred-log-entry #mycred-current.done { color:green; }.mycred-adjustment-form .row input.error { border-color:red; }
4
 
1
+ .mycred-update-balance { background-color:white; z-index: 9999; }.mycred-update-balance>div { padding:12px; }.mycred-update-balance .ui-dialog-titlebar { line-height:24px; border-bottom: 1px solid #dedede; }.mycred-update-balance .ui-dialog-titlebar:hover { cursor:move; }.mycred-update-balance .ui-dialog-titlebar-close { float:right; }body.users-php .ui-widget-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background: repeat-x scroll 50% 50% #AAA; opacity:0.3; overflow:hidden; background: repeat-x scroll 50% 50% #333; z-index: 99; }.mycred-adjustment-form { display:block; float:none; clear:both; padding:0; margin:0; }.mycred-adjustment-form .row { line-height:24px; margin:0; padding:0; float:none; margin: 0 0 4px 0; clear:both; }.mycred-adjustment-form .row.inline { float:left; clear:none; }.mycred-update-balance .mycred-adjustment-form .row.inline span { font-size:18px; }.mycred-adjustment-form .row label { display:block; margin-bottom:0; }.mycred-adjustment-form .row input[type="text"] { width:90%; }.mycred-adjustment-form .row input[type="button"] { float:right; }input#mycred-update-users-balance-amount { width:25%; }#edit-mycred-balance #mycred-current.done { color:green; }.mycred-adjustment-form .row input.error { border-color:red; }
2
 
3
  .mycred-edit-log-entry { background-color:white; z-index: 99; }.mycred-edit-log-entry>div { padding:12px; }.mycred-edit-log-entry .ui-dialog-titlebar { line-height:24px; border-bottom: 1px solid #dedede; }.mycred-edit-log-entry .ui-dialog-titlebar:hover { cursor:move; }.mycred-edit-log-entry .ui-dialog-titlebar-close { float:right; }body .ui-widget-overlay { position:fixed; top:0; left:0; width:100%; height:100%; background: repeat-x scroll 50% 50% #AAA; opacity:0.3; overflow:hidden; background: repeat-x scroll 50% 50% #333; z-index: 99; }#edit-mycred-log-entry .mycred-adjustment-form .row label{ font-weight:bold; }#edit-mycred-log-entry .mycred-adjustment-form .row input[type="button"] { float:right; margin-left: 24px; }#edit-mycred-log-entry #mycred-current.done { color:green; }.mycred-adjustment-form .row input.error { border-color:red; }
4
 
includes/mycred-admin.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
7
  * @since 0.1
8
  * @version 1.3
9
  */
10
- if ( ! class_exists( 'myCRED_Admin' ) ) {
11
  class myCRED_Admin {
12
 
13
  public $core;
@@ -19,15 +19,18 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
19
  * @version 1.0
20
  */
21
  function __construct( $settings = array() ) {
 
22
  $this->core = mycred();
 
23
  }
24
 
25
  /**
26
  * Load
27
  * @since 0.1
28
- * @version 1.3
29
  */
30
  public function load() {
 
31
  // Admin Styling
32
  add_action( 'admin_head', array( $this, 'admin_header' ) );
33
  add_action( 'admin_notices', array( $this, 'admin_notices' ) );
@@ -58,6 +61,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
58
  // Inline Editing
59
  add_action( 'wp_ajax_mycred-inline-edit-users-balance', array( $this, 'inline_edit_user_balance' ) );
60
  add_action( 'in_admin_footer', array( $this, 'admin_footer' ) );
 
61
  }
62
 
63
  /**
@@ -215,6 +219,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
215
  * @version 1.1
216
  */
217
  public function inline_edit_user_balance() {
 
218
  // Security
219
  check_ajax_referer( 'mycred-update-users-balance', 'token' );
220
 
@@ -262,6 +267,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
262
  wp_send_json_success( $mycred->get_users_cred( $user_id, $type ) );
263
  else
264
  wp_send_json_error( array( 'error' => 'ERROR_5', 'message' => __( 'Failed to update this uses balance.', 'mycred' ) ) );
 
265
  }
266
 
267
  /**
@@ -270,11 +276,13 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
270
  * @version 1.4
271
  */
272
  public function admin_header() {
 
273
  $screen = get_current_screen();
274
  if ( $screen->id == 'users' ) {
275
  wp_enqueue_script( 'mycred-inline-edit' );
276
  wp_enqueue_style( 'mycred-inline-edit' );
277
  }
 
278
  }
279
 
280
  /**
@@ -283,10 +291,12 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
283
  * @version 1.1
284
  */
285
  public function custom_user_column( $columns ) {
 
286
  global $mycred_types;
287
 
288
  if ( count( $mycred_types ) == 1 )
289
  $columns['mycred_default'] = $this->core->plural();
 
290
  else {
291
  foreach ( $mycred_types as $type => $label ) {
292
  if ( $type == 'mycred_default' ) $label = $this->core->plural();
@@ -295,6 +305,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
295
  }
296
 
297
  return $columns;
 
298
  }
299
 
300
  /**
@@ -303,6 +314,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
303
  * @version 1.1
304
  */
305
  public function sortable_points_column( $columns ) {
 
306
  $mycred_types = mycred_get_types();
307
 
308
  if ( count( $mycred_types ) == 1 )
@@ -313,6 +325,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
313
  }
314
 
315
  return $columns;
 
316
  }
317
 
318
  /**
@@ -321,11 +334,14 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
321
  * @version 1.3
322
  */
323
  public function sort_by_points( $query ) {
 
324
  if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || ! function_exists( 'get_current_screen' ) ) return;
 
325
  $screen = get_current_screen();
326
  if ( $screen === NULL || $screen->id != 'users' ) return;
327
 
328
  if ( isset( $query->query_vars['orderby'] ) ) {
 
329
  global $wpdb;
330
 
331
  $mycred_types = mycred_get_types();
@@ -366,6 +382,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
366
  }
367
 
368
  }
 
369
  }
370
 
371
  /**
@@ -375,6 +392,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
375
  * @version 1.3.2
376
  */
377
  public function custom_user_column_content( $value, $column_name, $user_id ) {
 
378
  global $mycred_types;
379
 
380
  if ( ! array_key_exists( $column_name, $mycred_types ) ) return $value;
@@ -402,13 +420,14 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
402
 
403
  // Row actions
404
  $row = array();
405
- $row['history'] = '<a href="' . admin_url( 'admin.php?page=' . $page . '&user_id=' . $user_id ) . '">' . __( 'History', 'mycred' ) . '</a>';
406
  $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '" data-type="' . $column_name . '" data-username="' . $user->display_name . '">' . __( 'Adjust', 'mycred' ) . '</a>';
407
 
408
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
409
  $balance .= $this->row_actions( $rows );
410
 
411
  return $balance;
 
412
  }
413
 
414
  /**
@@ -417,6 +436,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
417
  * @version 1.0
418
  */
419
  public function row_actions( $actions, $always_visible = false ) {
 
420
  $action_count = count( $actions );
421
  $i = 0;
422
 
@@ -432,6 +452,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
432
  $out .= '</div>';
433
 
434
  return $out;
 
435
  }
436
 
437
  /**
@@ -440,6 +461,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
440
  * @version 1.0.1
441
  */
442
  public function edit_profile_menu( $pages = array(), $mycred ) {
 
443
  $pages[] = add_users_page(
444
  __( 'Edit Balance', 'mycred' ),
445
  __( 'Edit Balance', 'mycred' ),
@@ -448,27 +470,29 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
448
  array( $this, 'edit_profile_screen' )
449
  );
450
  return $pages;
 
451
  }
452
 
453
  /**
454
  * User Nav
455
  * @since 1.5
456
- * @version 1.0
457
  */
458
  public function user_nav( $user, $current = NULL ) {
 
459
  $types = mycred_get_types();
460
 
461
  $tabs = array();
462
  $tabs[] = array(
463
  'label' => __( 'Profile', 'mycred' ),
464
- 'url' => add_query_arg( array( 'user_id' => $user->ID ), admin_url( 'user-edit.php' ) ),
465
  'classes' => ( $current === NULL ) ? 'nav-tab nav-tab-active' : 'nav-tab'
466
  );
467
 
468
  if ( $this->using_bp )
469
  $tabs[] = array(
470
  'label' => __( 'Extended Profile', 'mycred' ),
471
- 'url' => add_query_arg( array( 'page' => 'bp-profile-edit', 'user_id' => $user->ID ), admin_url( 'users.php' ) ),
472
  'classes' => 'nav-tab'
473
  );
474
 
@@ -481,7 +505,7 @@ if ( ! class_exists( 'myCRED_Admin' ) ) {
481
 
482
  $tabs[] = array(
483
  'label' => $mycred->plural(),
484
- 'url' => add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user->ID, 'ctype' => $type ), admin_url( 'users.php' ) ),
485
  'classes' => $classes
486
  );
487
  }
@@ -506,14 +530,16 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
506
 
507
  </ul>
508
  <?php
 
509
  }
510
 
511
  /**
512
  * BuddyPress User Nav
513
  * @since 1.5
514
- * @version 1.0
515
  */
516
  public function bp_user_nav( $active, $user ) {
 
517
  $types = mycred_get_types();
518
 
519
  $tabs = array();
@@ -523,7 +549,7 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
523
 
524
  $tabs[] = array(
525
  'label' => $mycred->plural(),
526
- 'url' => add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user->ID, 'ctype' => $type ), admin_url( 'users.php' ) ),
527
  'classes' => 'nav-tab'
528
  );
529
  }
@@ -532,14 +558,16 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
532
 
533
  if ( ! empty( $tabs ) )
534
  foreach ( $tabs as $tab ) echo '<li class="' . $tab['classes'] . '"><a href="' . $tab['url'] . '">' . $tab['label'] . '</a></li>';
 
535
  }
536
 
537
  /**
538
  * Edit Profile Screen
539
  * @since 1.5
540
- * @version 1.0.1
541
  */
542
  public function edit_profile_screen() {
 
543
  if ( ! isset( $_GET['user_id'] ) ) return;
544
 
545
  $user_id = absint( $_GET['user_id'] );
@@ -568,8 +596,9 @@ ul#profile-nav li a:hover, ul#profile-nav li.nav-tab-active a {text-decoration:
568
  $log_slug = 'myCRED_' . $type;
569
 
570
  $history_url = add_query_arg( array( 'page' => $log_slug, 'user_id' => $user->ID ), admin_url( 'admin.php' ) );
571
- $exclude_url = add_query_arg( array( 'action' => 'exclude' ) ) ?>
572
 
 
573
  <style type="text/css">
574
  div#edit-balance-page table.table { width: 100%; margin-top: 24px; }
575
  div#edit-balance-page table.table th { text-align: left; }
@@ -607,8 +636,8 @@ div#edit-balance-page.wrap form#your-profile h3 { margin-top: 3em; }
607
  </tr>
608
  </tbody>
609
  </table>
610
- <a href="<?php echo $history_url; ?>" class="button button-secondary"><?php _e( 'View History', 'mycred' ); ?></a>
611
- <a href="<?php echo $exclude_url; ?>" class="button button-primary" id="mycred-exclude-this-user"><?php _e( 'Exclude User', 'mycred' ); ?></a>
612
 
613
  <?php do_action( 'mycred_before_edit_profile', $user, $type ); ?>
614
 
@@ -628,6 +657,7 @@ jQuery(function($) {
628
  </script>
629
  </div>
630
  <?php
 
631
  }
632
 
633
  /**
@@ -636,6 +666,7 @@ jQuery(function($) {
636
  * @version 1.0
637
  */
638
  public function get_users_total_accumulated( $user_id, $type ) {
 
639
  global $wpdb;
640
 
641
  return $wpdb->get_var( $wpdb->prepare( "
@@ -644,6 +675,7 @@ jQuery(function($) {
644
  WHERE ctype = %s
645
  AND user_id = %d
646
  AND creds > 0;", $type, $user_id ) );
 
647
  }
648
 
649
  /**
@@ -652,6 +684,7 @@ jQuery(function($) {
652
  * @version 1.0
653
  */
654
  public function get_users_total_spent( $user_id, $type ) {
 
655
  global $wpdb;
656
 
657
  return $wpdb->get_var( $wpdb->prepare( "
@@ -660,6 +693,7 @@ jQuery(function($) {
660
  WHERE ctype = %s
661
  AND user_id = %d
662
  AND creds < 0;", $type, $user_id ) );
 
663
  }
664
 
665
  /**
@@ -668,6 +702,7 @@ jQuery(function($) {
668
  * @version 1.1
669
  */
670
  public function show_my_balance( $user ) {
 
671
  $user_id = $user->ID;
672
  $mycred_types = mycred_get_types();
673
 
@@ -676,14 +711,17 @@ jQuery(function($) {
676
  if ( $mycred->exclude_user( $user_id ) ) continue;
677
 
678
  $balance = $mycred->get_users_cred( $user_id, $type );
679
- $balance = $mycred->format_creds( $balance ); ?>
680
 
 
681
  <tr>
682
  <th scope="row"><?php echo $mycred->template_tags_general( __( '%singular% balance', 'mycred' ) ); ?></th>
683
  <td><h2 style="margin:0;padding:0;"><?php echo $balance; ?></h2></td>
684
  </tr>
685
  <?php
 
686
  }
 
687
  }
688
 
689
  /**
@@ -692,6 +730,7 @@ jQuery(function($) {
692
  * @version 1.2.1
693
  */
694
  public function adjust_users_balance( $user ) {
 
695
  if ( ! isset( $_GET['ctype'] ) )
696
  $type = 'mycred_default';
697
  else
@@ -702,8 +741,9 @@ jQuery(function($) {
702
  if ( $mycred->can_edit_creds() && ! $mycred->can_edit_plugin() )
703
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
704
  else
705
- $req = '(' . __( 'optional', 'mycred' ) . ')'; ?>
706
 
 
707
  <table class="form-table">
708
  <tr>
709
  <th scope="row"><label for="myCRED-manual-add-points"><?php _e( 'Amount', 'mycred' ) ?></label></th>
@@ -724,13 +764,14 @@ jQuery(function($) {
724
  </tr>
725
  </table>
726
  <?php
 
727
  }
728
 
729
  /**
730
  * Admin Footer
731
  * Inserts the Inline Edit Form modal.
732
  * @since 1.2
733
- * @version 1.3
734
  */
735
  public function admin_footer() {
736
 
@@ -746,8 +787,9 @@ jQuery(function($) {
746
  else
747
  $req = '(' . __( 'optional', 'mycred' ) . ')';
748
 
749
- ob_start(); ?>
750
 
 
751
  <div id="edit-mycred-balance" style="display: none;">
752
  <div class="mycred-adjustment-form">
753
  <p class="row inline" style="width: 20%"><label><?php _e( 'ID', 'mycred' ); ?>:</label><span id="mycred-userid"></span></p>
@@ -776,6 +818,7 @@ jQuery(function($) {
776
  elseif ( $screen->id == 'user-edit' || $screen->id == 'profile' || $screen->id == 'users_page_bp-profile-edit' ) {
777
 
778
  global $bp;
 
779
  if ( $this->using_bp && version_compare( $bp->version, '2.1', '>=' ) ) {
780
 
781
  $types = mycred_get_types();
@@ -794,7 +837,7 @@ jQuery(function($) {
794
 
795
  $tabs[] = array(
796
  'label' => $mycred->plural(),
797
- 'url' => add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user_id, 'ctype' => $type ), admin_url( 'users.php' ) ),
798
  'classes' => $classes
799
  );
800
  }
@@ -828,6 +871,7 @@ jQuery(document).ready(function($) {
828
  }
829
 
830
  }
 
831
  }
832
- }
833
  ?>
7
  * @since 0.1
8
  * @version 1.3
9
  */
10
+ if ( ! class_exists( 'myCRED_Admin' ) ) :
11
  class myCRED_Admin {
12
 
13
  public $core;
19
  * @version 1.0
20
  */
21
  function __construct( $settings = array() ) {
22
+
23
  $this->core = mycred();
24
+
25
  }
26
 
27
  /**
28
  * Load
29
  * @since 0.1
30
+ * @version 1.3.1
31
  */
32
  public function load() {
33
+
34
  // Admin Styling
35
  add_action( 'admin_head', array( $this, 'admin_header' ) );
36
  add_action( 'admin_notices', array( $this, 'admin_notices' ) );
61
  // Inline Editing
62
  add_action( 'wp_ajax_mycred-inline-edit-users-balance', array( $this, 'inline_edit_user_balance' ) );
63
  add_action( 'in_admin_footer', array( $this, 'admin_footer' ) );
64
+
65
  }
66
 
67
  /**
219
  * @version 1.1
220
  */
221
  public function inline_edit_user_balance() {
222
+
223
  // Security
224
  check_ajax_referer( 'mycred-update-users-balance', 'token' );
225
 
267
  wp_send_json_success( $mycred->get_users_cred( $user_id, $type ) );
268
  else
269
  wp_send_json_error( array( 'error' => 'ERROR_5', 'message' => __( 'Failed to update this uses balance.', 'mycred' ) ) );
270
+
271
  }
272
 
273
  /**
276
  * @version 1.4
277
  */
278
  public function admin_header() {
279
+
280
  $screen = get_current_screen();
281
  if ( $screen->id == 'users' ) {
282
  wp_enqueue_script( 'mycred-inline-edit' );
283
  wp_enqueue_style( 'mycred-inline-edit' );
284
  }
285
+
286
  }
287
 
288
  /**
291
  * @version 1.1
292
  */
293
  public function custom_user_column( $columns ) {
294
+
295
  global $mycred_types;
296
 
297
  if ( count( $mycred_types ) == 1 )
298
  $columns['mycred_default'] = $this->core->plural();
299
+
300
  else {
301
  foreach ( $mycred_types as $type => $label ) {
302
  if ( $type == 'mycred_default' ) $label = $this->core->plural();
305
  }
306
 
307
  return $columns;
308
+
309
  }
310
 
311
  /**
314
  * @version 1.1
315
  */
316
  public function sortable_points_column( $columns ) {
317
+
318
  $mycred_types = mycred_get_types();
319
 
320
  if ( count( $mycred_types ) == 1 )
325
  }
326
 
327
  return $columns;
328
+
329
  }
330
 
331
  /**
334
  * @version 1.3
335
  */
336
  public function sort_by_points( $query ) {
337
+
338
  if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || ! function_exists( 'get_current_screen' ) ) return;
339
+
340
  $screen = get_current_screen();
341
  if ( $screen === NULL || $screen->id != 'users' ) return;
342
 
343
  if ( isset( $query->query_vars['orderby'] ) ) {
344
+
345
  global $wpdb;
346
 
347
  $mycred_types = mycred_get_types();
382
  }
383
 
384
  }
385
+
386
  }
387
 
388
  /**
392
  * @version 1.3.2
393
  */
394
  public function custom_user_column_content( $value, $column_name, $user_id ) {
395
+
396
  global $mycred_types;
397
 
398
  if ( ! array_key_exists( $column_name, $mycred_types ) ) return $value;
420
 
421
  // Row actions
422
  $row = array();
423
+ $row['history'] = '<a href="' . esc_url( admin_url( 'admin.php?page=' . $page . '&user_id=' . $user_id ) ) . '">' . __( 'History', 'mycred' ) . '</a>';
424
  $row['adjust'] = '<a href="javascript:void(0)" class="mycred-open-points-editor" data-userid="' . $user_id . '" data-current="' . $ubalance . '" data-type="' . $column_name . '" data-username="' . $user->display_name . '">' . __( 'Adjust', 'mycred' ) . '</a>';
425
 
426
  $rows = apply_filters( 'mycred_user_row_actions', $row, $user_id, $mycred );
427
  $balance .= $this->row_actions( $rows );
428
 
429
  return $balance;
430
+
431
  }
432
 
433
  /**
436
  * @version 1.0
437
  */
438
  public function row_actions( $actions, $always_visible = false ) {
439
+
440
  $action_count = count( $actions );
441
  $i = 0;
442
 
452
  $out .= '</div>';
453
 
454
  return $out;
455
+
456
  }
457
 
458
  /**
461
  * @version 1.0.1
462
  */
463
  public function edit_profile_menu( $pages = array(), $mycred ) {
464
+
465
  $pages[] = add_users_page(
466
  __( 'Edit Balance', 'mycred' ),
467
  __( 'Edit Balance', 'mycred' ),
470
  array( $this, 'edit_profile_screen' )
471
  );
472
  return $pages;
473
+
474
  }
475
 
476
  /**
477
  * User Nav
478
  * @since 1.5
479
+ * @version 1.0.1
480
  */
481
  public function user_nav( $user, $current = NULL ) {
482
+
483
  $types = mycred_get_types();
484
 
485
  $tabs = array();
486
  $tabs[] = array(
487
  'label' => __( 'Profile', 'mycred' ),
488
+ 'url' => esc_url( add_query_arg( array( 'user_id' => $user->ID ), admin_url( 'user-edit.php' ) ) ),
489
  'classes' => ( $current === NULL ) ? 'nav-tab nav-tab-active' : 'nav-tab'
490
  );
491
 
492
  if ( $this->using_bp )
493
  $tabs[] = array(
494
  'label' => __( 'Extended Profile', 'mycred' ),
495
+ 'url' => esc_url( add_query_arg( array( 'page' => 'bp-profile-edit', 'user_id' => $user->ID ), admin_url( 'users.php' ) ) ),
496
  'classes' => 'nav-tab'
497
  );
498
 
505
 
506
  $tabs[] = array(
507
  'label' => $mycred->plural(),
508
+ 'url' => esc_url( add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user->ID, 'ctype' => $type ), admin_url( 'users.php' ) ) ),
509
  'classes' => $classes
510
  );
511
  }
530
 
531
  </ul>
532
  <?php
533
+
534
  }
535
 
536
  /**
537
  * BuddyPress User Nav
538
  * @since 1.5
539
+ * @version 1.0.1
540
  */
541
  public function bp_user_nav( $active, $user ) {
542
+
543
  $types = mycred_get_types();
544
 
545
  $tabs = array();
549
 
550
  $tabs[] = array(
551
  'label' => $mycred->plural(),
552
+ 'url' => esc_url( add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user->ID, 'ctype' => $type ), admin_url( 'users.php' ) ) ),
553
  'classes' => 'nav-tab'
554
  );
555
  }
558
 
559
  if ( ! empty( $tabs ) )
560
  foreach ( $tabs as $tab ) echo '<li class="' . $tab['classes'] . '"><a href="' . $tab['url'] . '">' . $tab['label'] . '</a></li>';
561
+
562
  }
563
 
564
  /**
565
  * Edit Profile Screen
566
  * @since 1.5
567
+ * @version 1.0.2
568
  */
569
  public function edit_profile_screen() {
570
+
571
  if ( ! isset( $_GET['user_id'] ) ) return;
572
 
573
  $user_id = absint( $_GET['user_id'] );
596
  $log_slug = 'myCRED_' . $type;
597
 
598
  $history_url = add_query_arg( array( 'page' => $log_slug, 'user_id' => $user->ID ), admin_url( 'admin.php' ) );
599
+ $exclude_url = add_query_arg( array( 'action' => 'exclude' ) );
600
 
601
+ ?>
602
  <style type="text/css">
603
  div#edit-balance-page table.table { width: 100%; margin-top: 24px; }
604
  div#edit-balance-page table.table th { text-align: left; }
636
  </tr>
637
  </tbody>
638
  </table>
639
+ <a href="<?php echo esc_url( $history_url ); ?>" class="button button-secondary"><?php _e( 'View History', 'mycred' ); ?></a>
640
+ <a href="<?php echo esc_url( $exclude_url ); ?>" class="button button-primary" id="mycred-exclude-this-user"><?php _e( 'Exclude User', 'mycred' ); ?></a>
641
 
642
  <?php do_action( 'mycred_before_edit_profile', $user, $type ); ?>
643
 
657
  </script>
658
  </div>
659
  <?php
660
+
661
  }
662
 
663
  /**
666
  * @version 1.0
667
  */
668
  public function get_users_total_accumulated( $user_id, $type ) {
669
+
670
  global $wpdb;
671
 
672
  return $wpdb->get_var( $wpdb->prepare( "
675
  WHERE ctype = %s
676
  AND user_id = %d
677
  AND creds > 0;", $type, $user_id ) );
678
+
679
  }
680
 
681
  /**
684
  * @version 1.0
685
  */
686
  public function get_users_total_spent( $user_id, $type ) {
687
+
688
  global $wpdb;
689
 
690
  return $wpdb->get_var( $wpdb->prepare( "
693
  WHERE ctype = %s
694
  AND user_id = %d
695
  AND creds < 0;", $type, $user_id ) );
696
+
697
  }
698
 
699
  /**
702
  * @version 1.1
703
  */
704
  public function show_my_balance( $user ) {
705
+
706
  $user_id = $user->ID;
707
  $mycred_types = mycred_get_types();
708
 
711
  if ( $mycred->exclude_user( $user_id ) ) continue;
712
 
713
  $balance = $mycred->get_users_cred( $user_id, $type );
714
+ $balance = $mycred->format_creds( $balance );
715
 
716
+ ?>
717
  <tr>
718
  <th scope="row"><?php echo $mycred->template_tags_general( __( '%singular% balance', 'mycred' ) ); ?></th>
719
  <td><h2 style="margin:0;padding:0;"><?php echo $balance; ?></h2></td>
720
  </tr>
721
  <?php
722
+
723
  }
724
+
725
  }
726
 
727
  /**
730
  * @version 1.2.1
731
  */
732
  public function adjust_users_balance( $user ) {
733
+
734
  if ( ! isset( $_GET['ctype'] ) )
735
  $type = 'mycred_default';
736
  else
741
  if ( $mycred->can_edit_creds() && ! $mycred->can_edit_plugin() )
742
  $req = '(<strong>' . __( 'required', 'mycred' ) . '</strong>)';
743
  else
744
+ $req = '(' . __( 'optional', 'mycred' ) . ')';
745
 
746
+ ?>
747
  <table class="form-table">
748
  <tr>
749
  <th scope="row"><label for="myCRED-manual-add-points"><?php _e( 'Amount', 'mycred' ) ?></label></th>
764
  </tr>
765
  </table>
766
  <?php
767
+
768
  }
769
 
770
  /**
771
  * Admin Footer
772
  * Inserts the Inline Edit Form modal.
773
  * @since 1.2
774
+ * @version 1.3.1
775
  */
776
  public function admin_footer() {
777
 
787
  else
788
  $req = '(' . __( 'optional', 'mycred' ) . ')';
789
 
790
+ ob_start();
791
 
792
+ ?>
793
  <div id="edit-mycred-balance" style="display: none;">
794
  <div class="mycred-adjustment-form">
795
  <p class="row inline" style="width: 20%"><label><?php _e( 'ID', 'mycred' ); ?>:</label><span id="mycred-userid"></span></p>
818
  elseif ( $screen->id == 'user-edit' || $screen->id == 'profile' || $screen->id == 'users_page_bp-profile-edit' ) {
819
 
820
  global $bp;
821
+
822
  if ( $this->using_bp && version_compare( $bp->version, '2.1', '>=' ) ) {
823
 
824
  $types = mycred_get_types();
837
 
838
  $tabs[] = array(
839
  'label' => $mycred->plural(),
840
+ 'url' => esc_url( add_query_arg( array( 'page' => 'mycred-edit-balance', 'user_id' => $user_id, 'ctype' => $type ), admin_url( 'users.php' ) ) ),
841
  'classes' => $classes
842
  );
843
  }
871
  }
872
 
873
  }
874
+
875
  }
876
+ endif;
877
  ?>
includes/mycred-log.php CHANGED
@@ -16,9 +16,9 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
16
  public $num_rows;
17
  public $max_num_pages;
18
  public $total_rows;
19
-
20
  public $results;
21
-
22
  public $headers;
23
  public $core;
24
 
@@ -26,6 +26,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
26
  * Construct
27
  */
28
  public function __construct( $args = array(), $array = false ) {
 
29
  if ( empty( $args ) ) return false;
30
 
31
  global $wpdb;
@@ -64,7 +65,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
64
  'paged' => $this->get_pagenum()
65
  );
66
  $this->args = wp_parse_args( $args, $defaults );
67
-
68
  // Difference between default and given args
69
  $this->diff = array_diff_assoc( $this->args, $defaults );
70
  if ( isset( $this->diff['number'] ) )
@@ -78,11 +79,12 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
78
  else
79
  $data = get_transient( 'mycred_log_query_' . $cache_id );
80
  }
 
81
  if ( $data === false ) {
82
-
83
  // Type
84
  $wheres[] = 'ctype = %s';
85
- $prep[] = $this->args['ctype'];
86
 
87
  // User ID
88
  if ( $this->args['user_id'] !== NULL && $this->args['user_id'] != '' ) {
@@ -91,28 +93,34 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
91
 
92
  if ( $user_id !== false ) {
93
  $wheres[] = 'user_id = %d';
94
- $prep[] = $user_id;
95
  }
 
96
  }
97
 
98
  // Reference
99
  if ( $this->args['ref'] !== NULL && $this->args['ref'] != '' ) {
100
- $refs = explode( ',', $this->args['ref'] );
 
101
  $ref_count = count( $refs );
 
102
  if ( $ref_count > 1 ) {
103
  $ref_count = $ref_count-1;
104
  $wheres[] = 'ref IN (%s' . str_repeat( ',%s', $ref_count ) . ')';
105
  foreach ( $refs as $ref )
106
  $prep[] = sanitize_text_field( $ref );
107
  }
 
108
  else {
109
  $wheres[] = 'ref = %s';
110
- $prep[] = sanitize_text_field( $refs[0] );
111
  }
 
112
  }
113
 
114
  // Reference ID
115
  if ( $this->args['ref_id'] !== NULL && $this->args['ref_id'] != '' ) {
 
116
  $ref_ids = explode( ',', $this->args['ref_id'] );
117
  if ( count( $ref_ids ) > 1 ) {
118
  $ref_id_count = count( $ref_ids )-1;
@@ -122,30 +130,37 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
122
  }
123
  else {
124
  $wheres[] = 'ref_id = %d';
125
- $prep[] = (int) sanitize_text_field( $this->args['ref_id'] );
126
  }
 
127
  }
128
 
129
  // Amount
130
  if ( $this->args['amount'] !== NULL && $this->args['amount'] != '' ) {
 
131
  // Advanced query
132
  if ( is_array( $this->args['amount'] ) ) {
 
133
  // Range
134
  if ( isset( $this->args['amount']['start'] ) && isset( $this->args['amount']['end'] ) ) {
135
  $wheres[] = 'creds BETWEEN ' . $format . ' AND ' . $format;
136
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['start'] ) );
137
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['end'] ) );
138
  }
 
139
  // Compare
140
  elseif ( isset( $this->args['amount']['num'] ) && isset( $this->args['amount']['compare'] ) ) {
141
  $compare = urldecode( $this->args['amount']['compare'] );
142
  $wheres[] = 'creds ' . trim( $compare ) . ' ' . $format;
143
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['num'] ) );
144
  }
 
145
  }
 
146
  // Specific amount(s)
147
  else {
148
- $amounts = explode( ',', $this->args['amount'] );
 
149
  $amount_count = count( $amounts );
150
  if ( $amount_count > 1 ) {
151
  $amount_count = $amount_count-1;
@@ -153,97 +168,119 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
153
  foreach ( $amount_count as $amount )
154
  $prep[] = $this->core->number( sanitize_text_field( $amount ) );
155
  }
 
156
  else {
157
  $wheres[] = 'creds = ' . $format;
158
- $prep[] = $this->core->number( sanitize_text_field( $amounts[0] ) );
159
  }
 
160
  }
 
161
  }
162
 
163
  // Time
164
  if ( $this->args['time'] !== NULL && $this->args['time'] != '' ) {
165
- $now = date_i18n( 'U' );
166
- $today = strtotime( date_i18n( 'Y/m/d' ) . ' midnight' );
 
167
  $todays_date = date_i18n( 'd' );
168
 
169
  // Show todays entries
170
  if ( $this->args['time'] == 'today' ) {
171
  $wheres[] = "time BETWEEN $today AND $now";
172
  }
 
173
  // Show yesterdays entries
174
  elseif ( $this->args['time'] == 'yesterday' ) {
175
  $yesterday = strtotime( '-1 day midnight' );
176
  $wheres[] = "time BETWEEN $yesterday AND $today";
177
  }
 
178
  // Show this weeks entries
179
  elseif ( $this->args['time'] == 'thisweek' ) {
 
180
  $weekday = date_i18n( 'w' );
181
  // New week started today so show only todays
182
  if ( get_option( 'start_of_week' ) == $weekday ) {
183
  $wheres[] = "time BETWEEN $today AND $now";
184
  }
 
185
  // Show rest of this week
186
  else {
187
  $week_start = strtotime( '-' . ( $weekday+1 ) . ' days midnight' );
188
- $wheres[] = "time BETWEEN $week_start AND $now";
189
  }
 
190
  }
 
191
  // Show this months entries
192
  elseif ( $this->args['time'] == 'thismonth' ) {
193
  $start_of_month = strtotime( date_i18n( 'Y/m/01' ) . ' midnight' );
194
- $wheres[] = "time BETWEEN $start_of_month AND $now";
195
  }
 
196
  else {
 
197
  $times = explode( ',', $this->args['time'] );
198
  if ( count( $times ) == 2 ) {
199
- $from = sanitize_key( $times[0] );
200
- $to = sanitize_key( $times[1] );
201
  $wheres[] = "time BETWEEN $from AND $to";
202
  }
 
203
  }
 
204
  }
205
 
206
  // Entry Search
207
  if ( $this->args['s'] !== NULL && $this->args['s'] != '' ) {
 
208
  $search_query = sanitize_text_field( $this->args['s'] );
209
 
210
  if ( is_int( $search_query ) )
211
  $search_query = (string) $search_query;
212
 
213
  $wheres[] = "entry LIKE %s";
214
- $prep[] = "%$search_query%";
 
215
  }
216
 
217
  // Data
218
  if ( $this->args['data'] !== NULL && $this->args['data'] != '' ) {
 
219
  $data_query = sanitize_text_field( $this->args['data'] );
220
 
221
  if ( is_int( $data_query ) )
222
  $data_query = (string) $data_query;
223
 
224
  $wheres[] = "data LIKE %s";
225
- $prep[] = $data_query;
 
226
  }
227
 
228
  // Order by
229
  if ( $this->args['orderby'] != '' ) {
 
230
  // Make sure $sortby is valid
231
  $sortbys = array( 'id', 'ref', 'ref_id', 'user_id', 'creds', 'ctype', 'entry', 'data', 'time' );
232
  $allowed = apply_filters( 'mycred_allowed_sortby', $sortbys );
233
  if ( in_array( $this->args['orderby'], $allowed ) ) {
234
  $sortby = "ORDER BY " . $this->args['orderby'] . " " . $this->args['order'];
235
  }
 
236
  }
237
 
238
  // Number of results
239
  $number = $this->args['number'];
240
  if ( $number < -1 )
241
  $number = abs( $number );
 
242
  elseif ( $number == 0 || $number == -1 )
243
  $number = NULL;
244
 
245
  // Limits
246
  if ( $number !== NULL ) {
 
247
  $page = 1;
248
  if ( $this->args['paged'] !== NULL ) {
249
  $page = absint( $this->args['paged'] );
@@ -254,6 +291,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
254
  if ( $this->args['offset'] == '' ) {
255
  $pgstrt = ($page - 1) * $number . ', ';
256
  }
 
257
  else {
258
  $offset = absint( $this->args['offset'] );
259
  $pgstrt = $offset . ', ';
@@ -268,9 +306,10 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
268
  // Prep return
269
  if ( $this->args['ids'] === true )
270
  $select = 'id';
 
271
  else
272
  $select = '*';
273
-
274
  $found_rows = '';
275
  if ( $limits != '' )
276
  $found_rows = 'SQL_CALC_FOUND_ROWS';
@@ -287,10 +326,9 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
287
 
288
  // Run
289
  $this->request = $wpdb->prepare( "SELECT {$found_rows} {$select} FROM {$this->core->log_table} {$where} {$sortby} {$limits}", $prep );
290
- $this->prep = $prep;
291
-
292
  $this->results = $wpdb->get_results( $this->request, $array ? ARRAY_A : OBJECT );
293
-
294
  if ( $limits != '' )
295
  $this->num_rows = $wpdb->get_var( 'SELECT FOUND_ROWS()' );
296
  else
@@ -305,20 +343,24 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
305
  else
306
  set_transient( 'mycred_log_query_' . $cache_id, $this->results, DAY_IN_SECONDS * 1 );
307
  }
308
-
309
  $this->total_rows = $wpdb->get_var( "SELECT COUNT( * ) FROM {$this->core->log_table}" );
 
310
  }
311
 
312
  // Return the transient
313
  else {
 
314
  $this->request = 'transient';
315
  $this->results = $data;
316
  $this->prep = '';
317
-
318
  $this->num_rows = count( $data );
 
319
  }
320
 
321
  $this->headers = $this->table_headers();
 
322
  }
323
 
324
  /**
@@ -333,12 +375,14 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
333
 
334
  $user = get_user_by( 'login', $string );
335
  if ( ! isset( $user->ID ) ) {
 
336
  $user = get_user_by( 'email', $string );
337
  if ( ! isset( $user->ID ) ) {
338
  $user = get_user_by( 'slug', $string );
339
  if ( ! isset( $user->ID ) )
340
  return false;
341
  }
 
342
  }
343
  return absint( $user->ID );
344
 
@@ -355,8 +399,10 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
355
  * @version 1.0
356
  */
357
  public function have_entries() {
 
358
  if ( ! empty( $this->results ) ) return true;
359
  return false;
 
360
  }
361
 
362
  /**
@@ -365,6 +411,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
365
  * @version 1.1
366
  */
367
  public function table_nav( $location = 'top', $is_profile = false ) {
 
368
  if ( $location == 'top' ) {
369
 
370
  $this->filter_options( $is_profile );
@@ -376,6 +423,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
376
  $this->navigation( $location );
377
 
378
  }
 
379
  }
380
 
381
  /**
@@ -383,13 +431,15 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
383
  * @since 0.1
384
  * @version 1.1
385
  */
386
- public function navigation( $location = 'top', $id = '' ) { ?>
387
 
 
388
  <div class="tablenav-pages<?php if ( $this->max_num_pages == 1 ) echo ' one-page'; ?>">
389
  <?php $this->pagination( $location, $id ); ?>
390
 
391
  </div>
392
  <?php
 
393
  }
394
 
395
  /**
@@ -398,8 +448,9 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
398
  * @version 1.0
399
  */
400
  public function get_pagenum() {
 
401
  global $paged;
402
-
403
  if ( $paged > 0 )
404
  $pagenum = absint( $paged );
405
 
@@ -409,6 +460,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
409
  else return 1;
410
 
411
  return max( 1, $pagenum );
 
412
  }
413
 
414
  /**
@@ -417,12 +469,15 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
417
  * @version 1.0.2
418
  */
419
  public function pagination( $location = 'top', $id = '' ) {
420
- $output = '';
 
421
  $total_pages = $this->max_num_pages;
422
- $current = $this->get_pagenum();
423
  $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . $id );
 
424
  if ( ! is_admin() )
425
  $current_url = str_replace( '/page/' . $current . '/', '/', $current_url );
 
426
  $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url );
427
 
428
  if ( $this->have_entries() ) {
@@ -436,6 +491,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
436
  $disable_first = $disable_last = '';
437
  if ( $current == 1 )
438
  $disable_first = ' disabled';
 
439
  if ( $current == $total_pages )
440
  $disable_last = ' disabled';
441
 
@@ -455,6 +511,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
455
 
456
  if ( 'bottom' == $location )
457
  $html_current_page = $current;
 
458
  else
459
  $html_current_page = sprintf( '<input class="current-page" title="%s" type="text" name="paged" value="%s" size="%d" />',
460
  esc_attr__( 'Current page', 'mycred' ),
@@ -483,10 +540,12 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
483
 
484
  if ( $total_pages )
485
  $page_class = $total_pages < 2 ? ' one-page' : '';
 
486
  else
487
  $page_class = ' no-pages';
488
 
489
  echo '<div class="tablenav-pages' . $page_class . '">' . $output . '</div>';
 
490
  }
491
 
492
  /**
@@ -496,6 +555,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
496
  * @version 1.1
497
  */
498
  public function get_refs( $req = array() ) {
 
499
  $refs = mycred_get_used_references( $this->args['ctype'] );
500
 
501
  foreach ( $refs as $i => $ref ) {
@@ -505,6 +565,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
505
  $refs = array_values( $refs );
506
 
507
  return apply_filters( 'mycred_log_get_refs', $refs );
 
508
  }
509
 
510
  /**
@@ -514,9 +575,11 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
514
  * @version 1.0
515
  */
516
  protected function get_users() {
 
517
  $users = wp_cache_get( 'mycred_users' );
518
 
519
  if ( false === $users ) {
 
520
  $users = array();
521
  $blog_users = get_users( array( 'orderby' => 'display_name' ) );
522
  foreach ( $blog_users as $user ) {
@@ -524,9 +587,11 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
524
  $users[ $user->ID ] = $user->display_name;
525
  }
526
  wp_cache_set( 'mycred_users', $users );
 
527
  }
528
 
529
  return apply_filters( 'mycred_log_get_users', $users );
 
530
  }
531
 
532
  /**
@@ -535,41 +600,52 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
535
  * @version 1.3
536
  */
537
  public function filter_options( $is_profile = false, $refs = array() ) {
 
538
  echo '<div class="alignleft actions">';
539
  $show = false;
540
 
541
  // Filter by reference
542
  $references = $this->get_refs( $refs );
543
  if ( ! empty( $references ) ) {
 
544
  echo '<select name="ref" id="myCRED-reference-filter"><option value="">' . __( 'Show all references', 'mycred' ) . '</option>';
545
  foreach ( $references as $ref ) {
 
546
  $label = str_replace( array( '_', '-' ), ' ', $ref );
547
  echo '<option value="' . $ref . '"';
548
  if ( isset( $_GET['ref'] ) && $_GET['ref'] == $ref ) echo ' selected="selected"';
549
  echo '>' . ucwords( $label ) . '</option>';
 
550
  }
551
  echo '</select>';
552
  $show = true;
 
553
  }
554
 
555
  // Filter by user
556
  if ( $this->core->can_edit_creds() && ! $is_profile && $this->num_rows > 0 ) {
 
557
  echo '<input type="text" class="form-control" name="user" id="myCRED-user-filter" size="32" placeholder="' . __( 'User ID, Username, Email or Nicename', 'mycred' ) . '" value="' . ( ( isset( $_GET['user'] ) ) ? $_GET['user'] : '' ) . '" /> ';
558
  $show = true;
 
559
  }
560
 
561
  // Filter Order
562
  if ( $this->num_rows > 0 ) {
 
563
  echo '<select name="order" id="myCRED-order-filter"><option value="">' . __( 'Show in order', 'mycred' ) . '</option>';
564
  $options = array( 'ASC' => __( 'Ascending', 'mycred' ), 'DESC' => __( 'Descending', 'mycred' ) );
565
  foreach ( $options as $value => $label ) {
 
566
  echo '<option value="' . $value . '"';
567
  if ( ! isset( $_GET['order'] ) && $value == 'DESC' ) echo ' selected="selected"';
568
  elseif ( isset( $_GET['order'] ) && $_GET['order'] == $value ) echo ' selected="selected"';
569
  echo '>' . $label . '</option>';
 
570
  }
571
  echo '</select>';
572
  $show = true;
 
573
  }
574
 
575
  // Let others play
@@ -579,18 +655,20 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
579
  }
580
 
581
  if ( $show === true )
582
- echo '<input type="submit" class="btn btn-default button button-secondary button-large" value="' . __( 'Filter', 'mycred' ) . '" />';
583
 
584
  echo '</div>';
 
585
  }
586
 
587
  /**
588
  * Exporter
589
  * Displays all available export options.
590
  * @since 0.1
591
- * @version 1.0
592
  */
593
  public function exporter( $title = '', $is_profile = false ) {
 
594
  // Must be logged in
595
  if ( ! is_user_logged_in() ) return;
596
 
@@ -606,22 +684,25 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
606
  // A difference in the default aguments should show us "search results"
607
  if ( empty( $this->diff ) || ( ! empty( $this->diff ) && $this->max_num_pages < 2 ) )
608
  unset( $exports['search'] );
609
-
610
  // Entire log export is not available when viewing our own history
611
  if ( $is_profile )
612
- unset( $exports['all'] ); ?>
613
 
 
614
  <div style="display:none;" class="clear" id="export-log-history">
615
- <?php if ( ! empty( $title ) ) : ?><h3 class="group-title"><?php echo $title; ?></h3><?php endif; ?>
616
- <form action="<?php echo add_query_arg( array( 'mycred-export' => 'do' ) ); ?>" method="post">
617
  <input type="hidden" name="token" value="<?php echo wp_create_nonce( 'mycred-run-log-export' ); ?>" />
618
  <?php
 
619
  if ( ! empty( $exports ) ) {
620
 
621
  foreach ( (array) $this->args as $arg_key => $arg_value )
622
  echo '<input type="hidden" name="' . $arg_key . '" value="' . $arg_value . '" />';
623
 
624
  foreach ( (array) $exports as $id => $data ) {
 
625
  // Label
626
  if ( $is_profile )
627
  $label = $data['my_label'];
@@ -629,15 +710,22 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
629
  $label = $data['label'];
630
 
631
  echo '<input type="submit" class="' . $data['class'] . '" name="action" value="' . $label . '" /> ';
 
632
  }
 
633
  ?>
634
  </form>
635
  <p><span class="description"><?php _e( 'Log entries are exported to a CSV file and depending on the number of entries selected, the process may take a few seconds.', 'mycred' ); ?></span></p>
636
  <?php
 
637
  }
 
638
  else {
 
639
  echo '<p>' . __( 'No export options available.', 'mycred' ) . '</p>';
 
640
  }
 
641
  ?>
642
  </div>
643
  <script type="text/javascript">
@@ -648,6 +736,7 @@ jQuery(function($) {
648
  });
649
  </script>
650
  <?php
 
651
  }
652
 
653
  /**
@@ -659,6 +748,7 @@ jQuery(function($) {
659
  * @version 1.1
660
  */
661
  public function table_headers() {
 
662
  global $mycred_types;
663
 
664
  return apply_filters( 'mycred_log_column_headers', array(
@@ -667,6 +757,7 @@ jQuery(function($) {
667
  'column-creds' => $this->core->plural(),
668
  'column-entry' => __( 'Entry', 'mycred' )
669
  ), $this );
 
670
  }
671
 
672
  /**
@@ -675,7 +766,9 @@ jQuery(function($) {
675
  * @version 1.0
676
  */
677
  public function display() {
 
678
  echo $this->get_display();
 
679
  }
680
 
681
  /**
@@ -686,6 +779,7 @@ jQuery(function($) {
686
  * @version 1.0
687
  */
688
  public function get_display() {
 
689
  $output = '
690
  <table class="table mycred-table widefat log-entries table-striped" cellspacing="0">
691
  <thead>
@@ -713,8 +807,9 @@ jQuery(function($) {
713
  // Loop
714
  if ( $this->have_entries() ) {
715
  $alt = 0;
716
-
717
  foreach ( $this->results as $log_entry ) {
 
718
  $row_class = apply_filters( 'mycred_log_row_classes', array( 'myCRED-log-row' ), $log_entry );
719
 
720
  $alt = $alt+1;
@@ -724,11 +819,15 @@ jQuery(function($) {
724
  $output .= '<tr class="' . implode( ' ', $row_class ) . '">';
725
  $output .= $this->get_the_entry( $log_entry );
726
  $output .= '</tr>';
 
727
  }
 
728
  }
729
  // No log entry
730
  else {
 
731
  $output .= '<tr><td colspan="' . count( $this->headers ) . '" class="no-entries">' . $this->get_no_entries() . '</td></tr>';
 
732
  }
733
 
734
  $output .= '
@@ -736,6 +835,7 @@ jQuery(function($) {
736
  </table>' . "\n";
737
 
738
  return $output;
 
739
  }
740
 
741
  /**
@@ -744,7 +844,9 @@ jQuery(function($) {
744
  * @version 1.1
745
  */
746
  public function the_entry( $log_entry, $wrap = 'td' ) {
 
747
  echo $this->get_the_entry( $log_entry, $wrap );
 
748
  }
749
 
750
  /**
@@ -755,12 +857,15 @@ jQuery(function($) {
755
  * @version 1.3
756
  */
757
  public function get_the_entry( $log_entry, $wrap = 'td' ) {
 
758
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
759
- $entry_data = '';
760
 
761
  // Run though columns
762
  foreach ( $this->headers as $column_id => $column_name ) {
 
763
  switch ( $column_id ) {
 
764
  // Username Column
765
  case 'column-username' :
766
 
@@ -769,16 +874,18 @@ jQuery(function($) {
769
  $content = '<span>' . __( 'User Missing', 'mycred' ) . ' (ID: ' . $log_entry->user_id . ')</span>';
770
  else
771
  $content = '<span>' . $user->display_name . '</span>';
772
-
773
  $content = apply_filters( 'mycred_log_username', $content, $log_entry->user_id, $log_entry );
774
 
775
  break;
 
776
  // Date & Time Column
777
  case 'column-time' :
778
 
779
  $content = $time = apply_filters( 'mycred_log_date', date_i18n( $date_format, $log_entry->time ), $log_entry->time, $log_entry );
780
 
781
  break;
 
782
  // Amount Column
783
  case 'column-creds' :
784
 
@@ -786,6 +893,7 @@ jQuery(function($) {
786
  $content = apply_filters( 'mycred_log_creds', $content, $log_entry->creds, $log_entry );
787
 
788
  break;
 
789
  // Log Entry Column
790
  case 'column-entry' :
791
 
@@ -794,16 +902,22 @@ jQuery(function($) {
794
  $content = apply_filters( 'mycred_log_entry', $content, $log_entry->entry, $log_entry );
795
 
796
  break;
 
797
  // Let others play
798
  default :
799
-
800
  $content = apply_filters( 'mycred_log_' . $column_id, '', $log_entry );
801
-
802
  break;
 
803
  }
 
804
  $entry_data .= '<' . $wrap . ' class="' . $column_id . '">' . $content . '</' . $wrap . '>';
 
805
  }
 
806
  return $entry_data;
 
807
  }
808
 
809
  /**
@@ -812,6 +926,7 @@ jQuery(function($) {
812
  * @version 1.0
813
  */
814
  public function mobile_support() {
 
815
  echo '<style type="text/css">' . apply_filters( 'mycred_log_mobile_support', '
816
  @media all and (max-width: 480px) {
817
  .column-time, .column-creds { display: none; }
@@ -819,6 +934,7 @@ jQuery(function($) {
819
  .mycred-mobile-log div { float: right; font-weight: bold; }
820
  }
821
  ' ) . '</style>';
 
822
  }
823
 
824
  /**
@@ -827,7 +943,9 @@ jQuery(function($) {
827
  * @version 1.0
828
  */
829
  public function no_entries() {
 
830
  echo $this->get_no_entries();
 
831
  }
832
 
833
  /**
@@ -836,26 +954,31 @@ jQuery(function($) {
836
  * @version 1.0
837
  */
838
  public function get_no_entries() {
 
839
  return __( 'No log entries found', 'mycred' );
 
840
  }
841
 
842
  /**
843
  * Log Search
844
  * @since 0.1
845
- * @version 1.0.1
846
  */
847
  public function search() {
 
848
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
849
  $serarch_string = $_GET['s'];
850
  else
851
- $serarch_string = ''; ?>
852
 
 
853
  <p class="search-box">
854
  <label class="screen-reader-text" for=""><?php _e( 'Search Log', 'mycred' ); ?>:</label>
855
- <input type="search" name="s" value="<?php echo $serarch_string; ?>" placeholder="<?php _e( 'search log entries', 'mycred' ); ?>" />
856
  <input type="submit" name="mycred-search-log" id="search-submit" class="button button-medium button-secondary" value="<?php _e( 'Search Log', 'mycred' ); ?>" />
857
  </p>
858
  <?php
 
859
  }
860
 
861
  /**
@@ -864,6 +987,7 @@ jQuery(function($) {
864
  * @version 1.0
865
  */
866
  public function filter_dates( $url = '' ) {
 
867
  $date_sorting = apply_filters( 'mycred_sort_by_time', array(
868
  '' => __( 'All', 'mycred' ),
869
  'today' => __( 'Today', 'mycred' ),
@@ -873,31 +997,41 @@ jQuery(function($) {
873
  ) );
874
 
875
  if ( ! empty( $date_sorting ) ) {
 
876
  $total = count( $date_sorting );
877
  $count = 0;
 
878
  echo '<ul class="subsubsub">';
 
879
  foreach ( $date_sorting as $sorting_id => $sorting_name ) {
 
880
  $count = $count+1;
 
881
  echo '<li class="' . $sorting_id . '"><a href="';
882
 
883
  // Build Query Args
884
  $url_args = array();
885
  if ( isset( $_GET['user_id'] ) && $_GET['user_id'] != '' )
886
  $url_args['user_id'] = $_GET['user_id'];
 
887
  if ( isset( $_GET['ref'] ) && $_GET['ref'] != '' )
888
  $url_args['ref'] = $_GET['ref'];
 
889
  if ( isset( $_GET['order'] ) && $_GET['order'] != '' )
890
  $url_args['order'] = $_GET['order'];
 
891
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
892
  $url_args['s'] = $_GET['s'];
 
893
  if ( $sorting_id != '' )
894
  $url_args['show'] = $sorting_id;
895
 
896
  // Build URL
897
  if ( ! empty( $url_args ) )
898
- echo add_query_arg( $url_args, $url );
 
899
  else
900
- echo $url;
901
 
902
  echo '"';
903
 
@@ -907,28 +1041,32 @@ jQuery(function($) {
907
  echo '>' . $sorting_name . '</a>';
908
  if ( $count != $total ) echo ' | ';
909
  echo '</li>';
 
910
  }
911
  echo '</ul>';
 
912
  }
 
913
  }
914
-
915
  /**
916
  * Reset Query
917
  * @since 1.3
918
  * @version 1.0
919
  */
920
  public function reset_query() {
921
- $this->args = NULL;
922
- $this->request = NULL;
923
- $this->prep = NULL;
924
- $this->num_rows = NULL;
 
925
  $this->max_num_pages = NULL;
926
- $this->total_rows = NULL;
927
-
928
- $this->results = NULL;
929
-
930
- $this->headers = NULL;
931
  }
 
932
  }
933
  endif;
934
  ?>
16
  public $num_rows;
17
  public $max_num_pages;
18
  public $total_rows;
19
+
20
  public $results;
21
+
22
  public $headers;
23
  public $core;
24
 
26
  * Construct
27
  */
28
  public function __construct( $args = array(), $array = false ) {
29
+
30
  if ( empty( $args ) ) return false;
31
 
32
  global $wpdb;
65
  'paged' => $this->get_pagenum()
66
  );
67
  $this->args = wp_parse_args( $args, $defaults );
68
+
69
  // Difference between default and given args
70
  $this->diff = array_diff_assoc( $this->args, $defaults );
71
  if ( isset( $this->diff['number'] ) )
79
  else
80
  $data = get_transient( 'mycred_log_query_' . $cache_id );
81
  }
82
+
83
  if ( $data === false ) {
84
+
85
  // Type
86
  $wheres[] = 'ctype = %s';
87
+ $prep[] = $this->args['ctype'];
88
 
89
  // User ID
90
  if ( $this->args['user_id'] !== NULL && $this->args['user_id'] != '' ) {
93
 
94
  if ( $user_id !== false ) {
95
  $wheres[] = 'user_id = %d';
96
+ $prep[] = $user_id;
97
  }
98
+
99
  }
100
 
101
  // Reference
102
  if ( $this->args['ref'] !== NULL && $this->args['ref'] != '' ) {
103
+
104
+ $refs = explode( ',', $this->args['ref'] );
105
  $ref_count = count( $refs );
106
+
107
  if ( $ref_count > 1 ) {
108
  $ref_count = $ref_count-1;
109
  $wheres[] = 'ref IN (%s' . str_repeat( ',%s', $ref_count ) . ')';
110
  foreach ( $refs as $ref )
111
  $prep[] = sanitize_text_field( $ref );
112
  }
113
+
114
  else {
115
  $wheres[] = 'ref = %s';
116
+ $prep[] = sanitize_text_field( $refs[0] );
117
  }
118
+
119
  }
120
 
121
  // Reference ID
122
  if ( $this->args['ref_id'] !== NULL && $this->args['ref_id'] != '' ) {
123
+
124
  $ref_ids = explode( ',', $this->args['ref_id'] );
125
  if ( count( $ref_ids ) > 1 ) {
126
  $ref_id_count = count( $ref_ids )-1;
130
  }
131
  else {
132
  $wheres[] = 'ref_id = %d';
133
+ $prep[] = (int) sanitize_text_field( $this->args['ref_id'] );
134
  }
135
+
136
  }
137
 
138
  // Amount
139
  if ( $this->args['amount'] !== NULL && $this->args['amount'] != '' ) {
140
+
141
  // Advanced query
142
  if ( is_array( $this->args['amount'] ) ) {
143
+
144
  // Range
145
  if ( isset( $this->args['amount']['start'] ) && isset( $this->args['amount']['end'] ) ) {
146
  $wheres[] = 'creds BETWEEN ' . $format . ' AND ' . $format;
147
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['start'] ) );
148
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['end'] ) );
149
  }
150
+
151
  // Compare
152
  elseif ( isset( $this->args['amount']['num'] ) && isset( $this->args['amount']['compare'] ) ) {
153
  $compare = urldecode( $this->args['amount']['compare'] );
154
  $wheres[] = 'creds ' . trim( $compare ) . ' ' . $format;
155
  $prep[] = $this->core->number( sanitize_text_field( $this->args['amount']['num'] ) );
156
  }
157
+
158
  }
159
+
160
  // Specific amount(s)
161
  else {
162
+
163
+ $amounts = explode( ',', $this->args['amount'] );
164
  $amount_count = count( $amounts );
165
  if ( $amount_count > 1 ) {
166
  $amount_count = $amount_count-1;
168
  foreach ( $amount_count as $amount )
169
  $prep[] = $this->core->number( sanitize_text_field( $amount ) );
170
  }
171
+
172
  else {
173
  $wheres[] = 'creds = ' . $format;
174
+ $prep[] = $this->core->number( sanitize_text_field( $amounts[0] ) );
175
  }
176
+
177
  }
178
+
179
  }
180
 
181
  // Time
182
  if ( $this->args['time'] !== NULL && $this->args['time'] != '' ) {
183
+
184
+ $now = date_i18n( 'U' );
185
+ $today = strtotime( date_i18n( 'Y/m/d' ) . ' midnight' );
186
  $todays_date = date_i18n( 'd' );
187
 
188
  // Show todays entries
189
  if ( $this->args['time'] == 'today' ) {
190
  $wheres[] = "time BETWEEN $today AND $now";
191
  }
192
+
193
  // Show yesterdays entries
194
  elseif ( $this->args['time'] == 'yesterday' ) {
195
  $yesterday = strtotime( '-1 day midnight' );
196
  $wheres[] = "time BETWEEN $yesterday AND $today";
197
  }
198
+
199
  // Show this weeks entries
200
  elseif ( $this->args['time'] == 'thisweek' ) {
201
+
202
  $weekday = date_i18n( 'w' );
203
  // New week started today so show only todays
204
  if ( get_option( 'start_of_week' ) == $weekday ) {
205
  $wheres[] = "time BETWEEN $today AND $now";
206
  }
207
+
208
  // Show rest of this week
209
  else {
210
  $week_start = strtotime( '-' . ( $weekday+1 ) . ' days midnight' );
211
+ $wheres[] = "time BETWEEN $week_start AND $now";
212
  }
213
+
214
  }
215
+
216
  // Show this months entries
217
  elseif ( $this->args['time'] == 'thismonth' ) {
218
  $start_of_month = strtotime( date_i18n( 'Y/m/01' ) . ' midnight' );
219
+ $wheres[] = "time BETWEEN $start_of_month AND $now";
220
  }
221
+
222
  else {
223
+
224
  $times = explode( ',', $this->args['time'] );
225
  if ( count( $times ) == 2 ) {
226
+ $from = sanitize_key( $times[0] );
227
+ $to = sanitize_key( $times[1] );
228
  $wheres[] = "time BETWEEN $from AND $to";
229
  }
230
+
231
  }
232
+
233
  }
234
 
235
  // Entry Search
236
  if ( $this->args['s'] !== NULL && $this->args['s'] != '' ) {
237
+
238
  $search_query = sanitize_text_field( $this->args['s'] );
239
 
240
  if ( is_int( $search_query ) )
241
  $search_query = (string) $search_query;
242
 
243
  $wheres[] = "entry LIKE %s";
244
+ $prep[] = "%$search_query%";
245
+
246
  }
247
 
248
  // Data
249
  if ( $this->args['data'] !== NULL && $this->args['data'] != '' ) {
250
+
251
  $data_query = sanitize_text_field( $this->args['data'] );
252
 
253
  if ( is_int( $data_query ) )
254
  $data_query = (string) $data_query;
255
 
256
  $wheres[] = "data LIKE %s";
257
+ $prep[] = $data_query;
258
+
259
  }
260
 
261
  // Order by
262
  if ( $this->args['orderby'] != '' ) {
263
+
264
  // Make sure $sortby is valid
265
  $sortbys = array( 'id', 'ref', 'ref_id', 'user_id', 'creds', 'ctype', 'entry', 'data', 'time' );
266
  $allowed = apply_filters( 'mycred_allowed_sortby', $sortbys );
267
  if ( in_array( $this->args['orderby'], $allowed ) ) {
268
  $sortby = "ORDER BY " . $this->args['orderby'] . " " . $this->args['order'];
269
  }
270
+
271
  }
272
 
273
  // Number of results
274
  $number = $this->args['number'];
275
  if ( $number < -1 )
276
  $number = abs( $number );
277
+
278
  elseif ( $number == 0 || $number == -1 )
279
  $number = NULL;
280
 
281
  // Limits
282
  if ( $number !== NULL ) {
283
+
284
  $page = 1;
285
  if ( $this->args['paged'] !== NULL ) {
286
  $page = absint( $this->args['paged'] );
291
  if ( $this->args['offset'] == '' ) {
292
  $pgstrt = ($page - 1) * $number . ', ';
293
  }
294
+
295
  else {
296
  $offset = absint( $this->args['offset'] );
297
  $pgstrt = $offset . ', ';
306
  // Prep return
307
  if ( $this->args['ids'] === true )
308
  $select = 'id';
309
+
310
  else
311
  $select = '*';
312
+
313
  $found_rows = '';
314
  if ( $limits != '' )
315
  $found_rows = 'SQL_CALC_FOUND_ROWS';
326
 
327
  // Run
328
  $this->request = $wpdb->prepare( "SELECT {$found_rows} {$select} FROM {$this->core->log_table} {$where} {$sortby} {$limits}", $prep );
329
+ $this->prep = $prep;
 
330
  $this->results = $wpdb->get_results( $this->request, $array ? ARRAY_A : OBJECT );
331
+
332
  if ( $limits != '' )
333
  $this->num_rows = $wpdb->get_var( 'SELECT FOUND_ROWS()' );
334
  else
343
  else
344
  set_transient( 'mycred_log_query_' . $cache_id, $this->results, DAY_IN_SECONDS * 1 );
345
  }
346
+
347
  $this->total_rows = $wpdb->get_var( "SELECT COUNT( * ) FROM {$this->core->log_table}" );
348
+
349
  }
350
 
351
  // Return the transient
352
  else {
353
+
354
  $this->request = 'transient';
355
  $this->results = $data;
356
  $this->prep = '';
357
+
358
  $this->num_rows = count( $data );
359
+
360
  }
361
 
362
  $this->headers = $this->table_headers();
363
+
364
  }
365
 
366
  /**
375
 
376
  $user = get_user_by( 'login', $string );
377
  if ( ! isset( $user->ID ) ) {
378
+
379
  $user = get_user_by( 'email', $string );
380
  if ( ! isset( $user->ID ) ) {
381
  $user = get_user_by( 'slug', $string );
382
  if ( ! isset( $user->ID ) )
383
  return false;
384
  }
385
+
386
  }
387
  return absint( $user->ID );
388
 
399
  * @version 1.0
400
  */
401
  public function have_entries() {
402
+
403
  if ( ! empty( $this->results ) ) return true;
404
  return false;
405
+
406
  }
407
 
408
  /**
411
  * @version 1.1
412
  */
413
  public function table_nav( $location = 'top', $is_profile = false ) {
414
+
415
  if ( $location == 'top' ) {
416
 
417
  $this->filter_options( $is_profile );
423
  $this->navigation( $location );
424
 
425
  }
426
+
427
  }
428
 
429
  /**
431
  * @since 0.1
432
  * @version 1.1
433
  */
434
+ public function navigation( $location = 'top', $id = '' ) {
435
 
436
+ ?>
437
  <div class="tablenav-pages<?php if ( $this->max_num_pages == 1 ) echo ' one-page'; ?>">
438
  <?php $this->pagination( $location, $id ); ?>
439
 
440
  </div>
441
  <?php
442
+
443
  }
444
 
445
  /**
448
  * @version 1.0
449
  */
450
  public function get_pagenum() {
451
+
452
  global $paged;
453
+
454
  if ( $paged > 0 )
455
  $pagenum = absint( $paged );
456
 
460
  else return 1;
461
 
462
  return max( 1, $pagenum );
463
+
464
  }
465
 
466
  /**
469
  * @version 1.0.2
470
  */
471
  public function pagination( $location = 'top', $id = '' ) {
472
+
473
+ $output = '';
474
  $total_pages = $this->max_num_pages;
475
+ $current = $this->get_pagenum();
476
  $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . $id );
477
+
478
  if ( ! is_admin() )
479
  $current_url = str_replace( '/page/' . $current . '/', '/', $current_url );
480
+
481
  $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url );
482
 
483
  if ( $this->have_entries() ) {
491
  $disable_first = $disable_last = '';
492
  if ( $current == 1 )
493
  $disable_first = ' disabled';
494
+
495
  if ( $current == $total_pages )
496
  $disable_last = ' disabled';
497
 
511
 
512
  if ( 'bottom' == $location )
513
  $html_current_page = $current;
514
+
515
  else
516
  $html_current_page = sprintf( '<input class="current-page" title="%s" type="text" name="paged" value="%s" size="%d" />',
517
  esc_attr__( 'Current page', 'mycred' ),
540
 
541
  if ( $total_pages )
542
  $page_class = $total_pages < 2 ? ' one-page' : '';
543
+
544
  else
545
  $page_class = ' no-pages';
546
 
547
  echo '<div class="tablenav-pages' . $page_class . '">' . $output . '</div>';
548
+
549
  }
550
 
551
  /**
555
  * @version 1.1
556
  */
557
  public function get_refs( $req = array() ) {
558
+
559
  $refs = mycred_get_used_references( $this->args['ctype'] );
560
 
561
  foreach ( $refs as $i => $ref ) {
565
  $refs = array_values( $refs );
566
 
567
  return apply_filters( 'mycred_log_get_refs', $refs );
568
+
569
  }
570
 
571
  /**
575
  * @version 1.0
576
  */
577
  protected function get_users() {
578
+
579
  $users = wp_cache_get( 'mycred_users' );
580
 
581
  if ( false === $users ) {
582
+
583
  $users = array();
584
  $blog_users = get_users( array( 'orderby' => 'display_name' ) );
585
  foreach ( $blog_users as $user ) {
587
  $users[ $user->ID ] = $user->display_name;
588
  }
589
  wp_cache_set( 'mycred_users', $users );
590
+
591
  }
592
 
593
  return apply_filters( 'mycred_log_get_users', $users );
594
+
595
  }
596
 
597
  /**
600
  * @version 1.3
601
  */
602
  public function filter_options( $is_profile = false, $refs = array() ) {
603
+
604
  echo '<div class="alignleft actions">';
605
  $show = false;
606
 
607
  // Filter by reference
608
  $references = $this->get_refs( $refs );
609
  if ( ! empty( $references ) ) {
610
+
611
  echo '<select name="ref" id="myCRED-reference-filter"><option value="">' . __( 'Show all references', 'mycred' ) . '</option>';
612
  foreach ( $references as $ref ) {
613
+
614
  $label = str_replace( array( '_', '-' ), ' ', $ref );
615
  echo '<option value="' . $ref . '"';
616
  if ( isset( $_GET['ref'] ) && $_GET['ref'] == $ref ) echo ' selected="selected"';
617
  echo '>' . ucwords( $label ) . '</option>';
618
+
619
  }
620
  echo '</select>';
621
  $show = true;
622
+
623
  }
624
 
625
  // Filter by user
626
  if ( $this->core->can_edit_creds() && ! $is_profile && $this->num_rows > 0 ) {
627
+
628
  echo '<input type="text" class="form-control" name="user" id="myCRED-user-filter" size="32" placeholder="' . __( 'User ID, Username, Email or Nicename', 'mycred' ) . '" value="' . ( ( isset( $_GET['user'] ) ) ? $_GET['user'] : '' ) . '" /> ';
629
  $show = true;
630
+
631
  }
632
 
633
  // Filter Order
634
  if ( $this->num_rows > 0 ) {
635
+
636
  echo '<select name="order" id="myCRED-order-filter"><option value="">' . __( 'Show in order', 'mycred' ) . '</option>';
637
  $options = array( 'ASC' => __( 'Ascending', 'mycred' ), 'DESC' => __( 'Descending', 'mycred' ) );
638
  foreach ( $options as $value => $label ) {
639
+
640
  echo '<option value="' . $value . '"';
641
  if ( ! isset( $_GET['order'] ) && $value == 'DESC' ) echo ' selected="selected"';
642
  elseif ( isset( $_GET['order'] ) && $_GET['order'] == $value ) echo ' selected="selected"';
643
  echo '>' . $label . '</option>';
644
+
645
  }
646
  echo '</select>';
647
  $show = true;
648
+
649
  }
650
 
651
  // Let others play
655
  }
656
 
657
  if ( $show === true )
658
+ echo '<input type="submit" class="btn btn-default button button-secondary" value="' . __( 'Filter', 'mycred' ) . '" />';
659
 
660
  echo '</div>';
661
+
662
  }
663
 
664
  /**
665
  * Exporter
666
  * Displays all available export options.
667
  * @since 0.1
668
+ * @version 1.0.1
669
  */
670
  public function exporter( $title = '', $is_profile = false ) {
671
+
672
  // Must be logged in
673
  if ( ! is_user_logged_in() ) return;
674
 
684
  // A difference in the default aguments should show us "search results"
685
  if ( empty( $this->diff ) || ( ! empty( $this->diff ) && $this->max_num_pages < 2 ) )
686
  unset( $exports['search'] );
687
+
688
  // Entire log export is not available when viewing our own history
689
  if ( $is_profile )
690
+ unset( $exports['all'] );
691
 
692
+ ?>
693
  <div style="display:none;" class="clear" id="export-log-history">
694
+ <?php if ( ! empty( $title ) ) : ?><h3 class="group-title"><?php echo $title; ?></h3><?php endif; ?>
695
+ <form action="<?php echo esc_url( add_query_arg( array( 'mycred-export' => 'do' ) ) ); ?>" method="post">
696
  <input type="hidden" name="token" value="<?php echo wp_create_nonce( 'mycred-run-log-export' ); ?>" />
697
  <?php
698
+
699
  if ( ! empty( $exports ) ) {
700
 
701
  foreach ( (array) $this->args as $arg_key => $arg_value )
702
  echo '<input type="hidden" name="' . $arg_key . '" value="' . $arg_value . '" />';
703
 
704
  foreach ( (array) $exports as $id => $data ) {
705
+
706
  // Label
707
  if ( $is_profile )
708
  $label = $data['my_label'];
710
  $label = $data['label'];
711
 
712
  echo '<input type="submit" class="' . $data['class'] . '" name="action" value="' . $label . '" /> ';
713
+
714
  }
715
+
716
  ?>
717
  </form>
718
  <p><span class="description"><?php _e( 'Log entries are exported to a CSV file and depending on the number of entries selected, the process may take a few seconds.', 'mycred' ); ?></span></p>
719
  <?php
720
+
721
  }
722
+
723
  else {
724
+
725
  echo '<p>' . __( 'No export options available.', 'mycred' ) . '</p>';
726
+
727
  }
728
+
729
  ?>
730
  </div>
731
  <script type="text/javascript">
736
  });
737
  </script>
738
  <?php
739
+
740
  }
741
 
742
  /**
748
  * @version 1.1
749
  */
750
  public function table_headers() {
751
+
752
  global $mycred_types;
753
 
754
  return apply_filters( 'mycred_log_column_headers', array(
757
  'column-creds' => $this->core->plural(),
758
  'column-entry' => __( 'Entry', 'mycred' )
759
  ), $this );
760
+
761
  }
762
 
763
  /**
766
  * @version 1.0
767
  */
768
  public function display() {
769
+
770
  echo $this->get_display();
771
+
772
  }
773
 
774
  /**
779
  * @version 1.0
780
  */
781
  public function get_display() {
782
+
783
  $output = '
784
  <table class="table mycred-table widefat log-entries table-striped" cellspacing="0">
785
  <thead>
807
  // Loop
808
  if ( $this->have_entries() ) {
809
  $alt = 0;
810
+
811
  foreach ( $this->results as $log_entry ) {
812
+
813
  $row_class = apply_filters( 'mycred_log_row_classes', array( 'myCRED-log-row' ), $log_entry );
814
 
815
  $alt = $alt+1;
819
  $output .= '<tr class="' . implode( ' ', $row_class ) . '">';
820
  $output .= $this->get_the_entry( $log_entry );
821
  $output .= '</tr>';
822
+
823
  }
824
+
825
  }
826
  // No log entry
827
  else {
828
+
829
  $output .= '<tr><td colspan="' . count( $this->headers ) . '" class="no-entries">' . $this->get_no_entries() . '</td></tr>';
830
+
831
  }
832
 
833
  $output .= '
835
  </table>' . "\n";
836
 
837
  return $output;
838
+
839
  }
840
 
841
  /**
844
  * @version 1.1
845
  */
846
  public function the_entry( $log_entry, $wrap = 'td' ) {
847
+
848
  echo $this->get_the_entry( $log_entry, $wrap );
849
+
850
  }
851
 
852
  /**
857
  * @version 1.3
858
  */
859
  public function get_the_entry( $log_entry, $wrap = 'td' ) {
860
+
861
  $date_format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
862
+ $entry_data = '';
863
 
864
  // Run though columns
865
  foreach ( $this->headers as $column_id => $column_name ) {
866
+
867
  switch ( $column_id ) {
868
+
869
  // Username Column
870
  case 'column-username' :
871
 
874
  $content = '<span>' . __( 'User Missing', 'mycred' ) . ' (ID: ' . $log_entry->user_id . ')</span>';
875
  else
876
  $content = '<span>' . $user->display_name . '</span>';
877
+
878
  $content = apply_filters( 'mycred_log_username', $content, $log_entry->user_id, $log_entry );
879
 
880
  break;
881
+
882
  // Date & Time Column
883
  case 'column-time' :
884
 
885
  $content = $time = apply_filters( 'mycred_log_date', date_i18n( $date_format, $log_entry->time ), $log_entry->time, $log_entry );
886
 
887
  break;
888
+
889
  // Amount Column
890
  case 'column-creds' :
891
 
893
  $content = apply_filters( 'mycred_log_creds', $content, $log_entry->creds, $log_entry );
894
 
895
  break;
896
+
897
  // Log Entry Column
898
  case 'column-entry' :
899
 
902
  $content = apply_filters( 'mycred_log_entry', $content, $log_entry->entry, $log_entry );
903
 
904
  break;
905
+
906
  // Let others play
907
  default :
908
+
909
  $content = apply_filters( 'mycred_log_' . $column_id, '', $log_entry );
910
+
911
  break;
912
+
913
  }
914
+
915
  $entry_data .= '<' . $wrap . ' class="' . $column_id . '">' . $content . '</' . $wrap . '>';
916
+
917
  }
918
+
919
  return $entry_data;
920
+
921
  }
922
 
923
  /**
926
  * @version 1.0
927
  */
928
  public function mobile_support() {
929
+
930
  echo '<style type="text/css">' . apply_filters( 'mycred_log_mobile_support', '
931
  @media all and (max-width: 480px) {
932
  .column-time, .column-creds { display: none; }
934
  .mycred-mobile-log div { float: right; font-weight: bold; }
935
  }
936
  ' ) . '</style>';
937
+
938
  }
939
 
940
  /**
943
  * @version 1.0
944
  */
945
  public function no_entries() {
946
+
947
  echo $this->get_no_entries();
948
+
949
  }
950
 
951
  /**
954
  * @version 1.0
955
  */
956
  public function get_no_entries() {
957
+
958
  return __( 'No log entries found', 'mycred' );
959
+
960
  }
961
 
962
  /**
963
  * Log Search
964
  * @since 0.1
965
+ * @version 1.0.2
966
  */
967
  public function search() {
968
+
969
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
970
  $serarch_string = $_GET['s'];
971
  else
972
+ $serarch_string = '';
973
 
974
+ ?>
975
  <p class="search-box">
976
  <label class="screen-reader-text" for=""><?php _e( 'Search Log', 'mycred' ); ?>:</label>
977
+ <input type="search" name="s" value="<?php echo esc_url( $serarch_string ); ?>" placeholder="<?php _e( 'search log entries', 'mycred' ); ?>" />
978
  <input type="submit" name="mycred-search-log" id="search-submit" class="button button-medium button-secondary" value="<?php _e( 'Search Log', 'mycred' ); ?>" />
979
  </p>
980
  <?php
981
+
982
  }
983
 
984
  /**
987
  * @version 1.0
988
  */
989
  public function filter_dates( $url = '' ) {
990
+
991
  $date_sorting = apply_filters( 'mycred_sort_by_time', array(
992
  '' => __( 'All', 'mycred' ),
993
  'today' => __( 'Today', 'mycred' ),
997
  ) );
998
 
999
  if ( ! empty( $date_sorting ) ) {
1000
+
1001
  $total = count( $date_sorting );
1002
  $count = 0;
1003
+
1004
  echo '<ul class="subsubsub">';
1005
+
1006
  foreach ( $date_sorting as $sorting_id => $sorting_name ) {
1007
+
1008
  $count = $count+1;
1009
+
1010
  echo '<li class="' . $sorting_id . '"><a href="';
1011
 
1012
  // Build Query Args
1013
  $url_args = array();
1014
  if ( isset( $_GET['user_id'] ) && $_GET['user_id'] != '' )
1015
  $url_args['user_id'] = $_GET['user_id'];
1016
+
1017
  if ( isset( $_GET['ref'] ) && $_GET['ref'] != '' )
1018
  $url_args['ref'] = $_GET['ref'];
1019
+
1020
  if ( isset( $_GET['order'] ) && $_GET['order'] != '' )
1021
  $url_args['order'] = $_GET['order'];
1022
+
1023
  if ( isset( $_GET['s'] ) && $_GET['s'] != '' )
1024
  $url_args['s'] = $_GET['s'];
1025
+
1026
  if ( $sorting_id != '' )
1027
  $url_args['show'] = $sorting_id;
1028
 
1029
  // Build URL
1030
  if ( ! empty( $url_args ) )
1031
+ echo esc_url( add_query_arg( $url_args, $url ) );
1032
+
1033
  else
1034
+ echo esc_url( $url );
1035
 
1036
  echo '"';
1037
 
1041
  echo '>' . $sorting_name . '</a>';
1042
  if ( $count != $total ) echo ' | ';
1043
  echo '</li>';
1044
+
1045
  }
1046
  echo '</ul>';
1047
+
1048
  }
1049
+
1050
  }
1051
+
1052
  /**
1053
  * Reset Query
1054
  * @since 1.3
1055
  * @version 1.0
1056
  */
1057
  public function reset_query() {
1058
+
1059
+ $this->args = NULL;
1060
+ $this->request = NULL;
1061
+ $this->prep = NULL;
1062
+ $this->num_rows = NULL;
1063
  $this->max_num_pages = NULL;
1064
+ $this->total_rows = NULL;
1065
+ $this->results = NULL;
1066
+ $this->headers = NULL;
1067
+
 
1068
  }
1069
+
1070
  }
1071
  endif;
1072
  ?>
includes/mycred-overview.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Dashboard Widget: Overview
6
  * @see https://codex.wordpress.org/Example_Dashboard_Widget
7
  * @since 1.3.3
8
- * @version 1.2.2
9
  */
10
  add_action( 'wp_dashboard_setup', array( 'myCRED_Dashboard_Widget_Overview', 'init' ) );
11
  if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
@@ -78,10 +78,10 @@ div.overview-module-wrap div.mycred-type .overview .section strong { padding: 0
78
  <div class="module-title"><div class="type-icon"></div><?php echo $mycred->plural(); ?><a href="<?php echo $url; ?>" title="<?php _e( 'Total amount in circulation', 'mycred' ); ?>"><?php echo $mycred->format_creds( $total ); ?></a></div>
79
  <div class="overview clear">
80
  <div class="section border" style="width: 50%;">
81
- <p><strong style="color:green;"><?php _e( 'Awarded', 'mycred' ); ?>:</strong> <a href="<?php echo $gain_url; ?>"><?php echo $mycred->format_creds( $gained ); ?></a></p>
82
  </div>
83
  <div class="section border" style="width: 50%; margin-left: -1px;">
84
- <p><strong style="color:red;"><?php _e( 'Deducted', 'mycred' ); ?>:</strong> <a href="<?php echo $loose_url; ?>"><?php echo $mycred->format_creds( $lost ); ?></a></p>
85
  </div>
86
  </div>
87
  <div class="overview clear">
5
  * Dashboard Widget: Overview
6
  * @see https://codex.wordpress.org/Example_Dashboard_Widget
7
  * @since 1.3.3
8
+ * @version 1.2.3
9
  */
10
  add_action( 'wp_dashboard_setup', array( 'myCRED_Dashboard_Widget_Overview', 'init' ) );
11
  if ( ! class_exists( 'myCRED_Dashboard_Widget_Overview' ) ) {
78
  <div class="module-title"><div class="type-icon"></div><?php echo $mycred->plural(); ?><a href="<?php echo $url; ?>" title="<?php _e( 'Total amount in circulation', 'mycred' ); ?>"><?php echo $mycred->format_creds( $total ); ?></a></div>
79
  <div class="overview clear">
80
  <div class="section border" style="width: 50%;">
81
+ <p><strong style="color:green;"><?php _e( 'Awarded', 'mycred' ); ?>:</strong> <a href="<?php echo esc_url( $gain_url ); ?>"><?php echo $mycred->format_creds( $gained ); ?></a></p>
82
  </div>
83
  <div class="section border" style="width: 50%; margin-left: -1px;">
84
+ <p><strong style="color:red;"><?php _e( 'Deducted', 'mycred' ); ?>:</strong> <a href="<?php echo esc_url( $loose_url ); ?>"><?php echo $mycred->format_creds( $lost ); ?></a></p>
85
  </div>
86
  </div>
87
  <div class="overview clear">
includes/mycred-referrals.php CHANGED
@@ -26,7 +26,7 @@ function mycred_load_referral_program() {
26
  /**
27
  * Detect Referred Visits
28
  * @since 1.5.3
29
- * @version 1.0
30
  */
31
  if ( ! function_exists( 'mycred_detect_referred_visits' ) ) :
32
  function mycred_detect_referred_visits() {
26
  /**
27
  * Detect Referred Visits
28
  * @since 1.5.3
29
+ * @version 1.0.1
30
  */
31
  if ( ! function_exists( 'mycred_detect_referred_visits' ) ) :
32
  function mycred_detect_referred_visits() {
includes/mycred-shortcodes.php CHANGED
@@ -739,7 +739,7 @@ endif;
739
  * for watchinga YouTube video.
740
  * @see http://codex.mycred.me/shortcodes/mycred_video/
741
  * @since 1.2
742
- * @version 1.2
743
  */
744
  if ( ! function_exists( 'mycred_render_shortcode_video' ) ) :
745
  function mycred_render_shortcode_video( $atts ) {
@@ -799,7 +799,7 @@ if ( ! function_exists( 'mycred_render_shortcode_video' ) ) :
799
 
800
  ?>
801
  <div class="mycred-video-wrapper youtube-video">
802
- <iframe id="mycred_vvideo_v<?php echo $video_id; ?>" class="mycred-video mycred-youtube-video" data-vid="<?php echo $video_id; ?>" src="<?php echo $url; ?>" width="<?php echo $width; ?>" height="<?php echo $height; ?>" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
803
  <script type="text/javascript">
804
  function mycred_vvideo_v<?php echo $video_id; ?>( state ) {
805
  duration[ "<?php echo $video_id; ?>" ] = state.target.getDuration();
739
  * for watchinga YouTube video.
740
  * @see http://codex.mycred.me/shortcodes/mycred_video/
741
  * @since 1.2
742
+ * @version 1.2.1
743
  */
744
  if ( ! function_exists( 'mycred_render_shortcode_video' ) ) :
745
  function mycred_render_shortcode_video( $atts ) {
799
 
800
  ?>
801
  <div class="mycred-video-wrapper youtube-video">
802
+ <iframe id="mycred_vvideo_v<?php echo $video_id; ?>" class="mycred-video mycred-youtube-video" data-vid="<?php echo $video_id; ?>" src="<?php echo esc_url( $url ); ?>" width="<?php echo $width; ?>" height="<?php echo $height; ?>" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
803
  <script type="text/javascript">
804
  function mycred_vvideo_v<?php echo $video_id; ?>( state ) {
805
  duration[ "<?php echo $video_id; ?>" ] = state.target.getDuration();
includes/mycred-widgets.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * Widget: myCRED Balance
6
  * @since 0.1
7
- * @version 1.4
8
  */
9
  if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
10
  class myCRED_Widget_Balance extends WP_Widget {
@@ -12,25 +12,25 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
12
  /**
13
  * Construct
14
  */
15
- function myCRED_Widget_Balance() {
16
 
17
  $name = mycred_label( true );
18
 
19
- // Basic details about our widget
20
- $widget_ops = array(
21
- 'classname' => 'widget-my-cred',
22
- 'description' => sprintf( __( 'Show the current users %s balance', 'mycred' ), $name )
 
 
 
23
  );
24
 
25
- $this->WP_Widget( 'mycred_widget_balance', sprintf( __( '(%s) My Balance', 'mycred' ), $name ), $widget_ops );
26
- $this->alt_option_name = 'mycred_widget_balance';
27
-
28
  }
29
 
30
  /**
31
  * Widget Output
32
  */
33
- function widget( $args, $instance ) {
34
 
35
  extract( $args, EXTR_SKIP );
36
 
@@ -159,7 +159,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
159
  /**
160
  * Outputs the options form on admin
161
  */
162
- function form( $instance ) {
163
 
164
  // Defaults
165
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'My Balance';
@@ -243,13 +243,14 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
243
  jQuery(function($) {
244
  $(document).ready(function(){
245
 
246
- $('#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>').click(function(){
247
  $(this).next().next().next().toggleClass( 'ex-field' );
248
  });
249
 
250
- $('#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>').click(function(){
251
  $(this).next().next().next().toggleClass( 'ex-field' );
252
  });
 
253
  });
254
  });//]]>
255
  </script>
@@ -260,7 +261,7 @@ jQuery(function($) {
260
  /**
261
  * Processes widget options to be saved
262
  */
263
- function update( $new_instance, $old_instance ) {
264
 
265
  global $mycred;
266
 
@@ -288,7 +289,7 @@ endif;
288
  /**
289
  * Widget: Leaderboard
290
  * @since 0.1
291
- * @version 1.3
292
  */
293
  if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
294
  class myCRED_Widget_Leaderboard extends WP_Widget {
@@ -296,25 +297,25 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
296
  /**
297
  * Construct
298
  */
299
- function myCRED_Widget_Leaderboard() {
300
 
301
  $name = mycred_label( true );
302
 
303
- // Basic details about our widget
304
- $widget_ops = array(
305
- 'classname' => 'widget-mycred-list',
306
- 'description' => sprintf( __( 'Show a list of users sorted by their %s balance', 'mycred' ), $name )
 
 
 
307
  );
308
 
309
- $this->WP_Widget( 'mycred_widget_list', sprintf( __( '(%s) Leaderboard', 'mycred' ), $name ), $widget_ops );
310
- $this->alt_option_name = 'mycred_widget_list';
311
-
312
  }
313
 
314
  /**
315
  * Widget Output
316
  */
317
- function widget( $args, $instance ) {
318
 
319
  extract( $args, EXTR_SKIP );
320
 
@@ -362,7 +363,7 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
362
  /**
363
  * Outputs the options form on admin
364
  */
365
- function form( $instance ) {
366
 
367
  // Defaults
368
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Leaderboard';
@@ -448,7 +449,7 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
448
  /**
449
  * Processes widget options to be saved
450
  */
451
- function update( $new_instance, $old_instance ) {
452
 
453
  global $mycred;
454
 
@@ -477,7 +478,7 @@ endif;
477
  /**
478
  * Widget: myCRED Wallet
479
  * @since 1.4
480
- * @version 1.0
481
  */
482
  if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
483
  class myCRED_Widget_Wallet extends WP_Widget {
@@ -485,23 +486,25 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
485
  /**
486
  * Construct
487
  */
488
- function myCRED_Widget_Wallet() {
489
 
490
- // Basic details about our widget
491
- $widget_ops = array(
492
- 'classname' => 'widget-my-wallet',
493
- 'description' => __( 'Shows the current users balances for each point type.', 'mycred' )
494
- );
495
 
496
- $this->WP_Widget( 'mycred_widget_wallet', sprintf( __( '(%s) Wallet', 'mycred' ), mycred_label( true ) ), $widget_ops );
497
- $this->alt_option_name = 'mycred_widget_wallet';
 
 
 
 
 
 
498
 
499
  }
500
 
501
  /**
502
  * Widget Output
503
  */
504
- function widget( $args, $instance ) {
505
 
506
  extract( $args, EXTR_SKIP );
507
 
@@ -574,7 +577,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
574
  /**
575
  * Outputs the options form on admin
576
  */
577
- function form( $instance ) {
578
 
579
  $mycred = mycred();
580
 
@@ -586,7 +589,6 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
586
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : '<a href="%login_url_here%">Login</a> to view your balance.';
587
 
588
  ?>
589
-
590
  <!-- Widget Options -->
591
  <p class="myCRED-widget-field">
592
  <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
@@ -621,7 +623,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
621
  /**
622
  * Processes widget options to be saved
623
  */
624
- function update( $new_instance, $old_instance ) {
625
 
626
  global $mycred;
627
 
@@ -642,4 +644,5 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
642
 
643
  }
644
  endif;
 
645
  ?>
4
  /**
5
  * Widget: myCRED Balance
6
  * @since 0.1
7
+ * @version 1.4.1
8
  */
9
  if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
10
  class myCRED_Widget_Balance extends WP_Widget {
12
  /**
13
  * Construct
14
  */
15
+ public function __construct() {
16
 
17
  $name = mycred_label( true );
18
 
19
+ parent::__construct(
20
+ 'mycred_widget_balance',
21
+ sprintf( __( '(%s) My Balance', 'mycred' ), $name ),
22
+ array(
23
+ 'classname' => 'widget-my-cred',
24
+ 'description' => sprintf( __( 'Show the current users %s balance', 'mycred' ), $name )
25
+ )
26
  );
27
 
 
 
 
28
  }
29
 
30
  /**
31
  * Widget Output
32
  */
33
+ public function widget( $args, $instance ) {
34
 
35
  extract( $args, EXTR_SKIP );
36
 
159
  /**
160
  * Outputs the options form on admin
161
  */
162
+ public function form( $instance ) {
163
 
164
  // Defaults
165
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'My Balance';
243
  jQuery(function($) {
244
  $(document).ready(function(){
245
 
246
+ $( '#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>' ).click(function(){
247
  $(this).next().next().next().toggleClass( 'ex-field' );
248
  });
249
 
250
+ $( '#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).click(function(){
251
  $(this).next().next().next().toggleClass( 'ex-field' );
252
  });
253
+
254
  });
255
  });//]]>
256
  </script>
261
  /**
262
  * Processes widget options to be saved
263
  */
264
+ public function update( $new_instance, $old_instance ) {
265
 
266
  global $mycred;
267
 
289
  /**
290
  * Widget: Leaderboard
291
  * @since 0.1
292
+ * @version 1.3.1
293
  */
294
  if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
295
  class myCRED_Widget_Leaderboard extends WP_Widget {
297
  /**
298
  * Construct
299
  */
300
+ public function __construct() {
301
 
302
  $name = mycred_label( true );
303
 
304
+ parent::__construct(
305
+ 'mycred_widget_list',
306
+ sprintf( __( '(%s) Leaderboard', 'mycred' ), $name ),
307
+ array(
308
+ 'classname' => 'widget-mycred-list',
309
+ 'description' => sprintf( __( 'Show a list of users sorted by their %s balance', 'mycred' ), $name )
310
+ )
311
  );
312
 
 
 
 
313
  }
314
 
315
  /**
316
  * Widget Output
317
  */
318
+ public function widget( $args, $instance ) {
319
 
320
  extract( $args, EXTR_SKIP );
321
 
363
  /**
364
  * Outputs the options form on admin
365
  */
366
+ public function form( $instance ) {
367
 
368
  // Defaults
369
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Leaderboard';
449
  /**
450
  * Processes widget options to be saved
451
  */
452
+ public function update( $new_instance, $old_instance ) {
453
 
454
  global $mycred;
455
 
478
  /**
479
  * Widget: myCRED Wallet
480
  * @since 1.4
481
+ * @version 1.0.1
482
  */
483
  if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
484
  class myCRED_Widget_Wallet extends WP_Widget {
486
  /**
487
  * Construct
488
  */
489
+ public function __construct() {
490
 
491
+ $name = mycred_label( true );
 
 
 
 
492
 
493
+ parent::__construct(
494
+ 'mycred_widget_wallet',
495
+ sprintf( __( '(%s) Wallet', 'mycred' ), $name ),
496
+ array(
497
+ 'classname' => 'widget-my-wallet',
498
+ 'description' => __( 'Shows the current users balances for each point type.', 'mycred' )
499
+ )
500
+ );
501
 
502
  }
503
 
504
  /**
505
  * Widget Output
506
  */
507
+ public function widget( $args, $instance ) {
508
 
509
  extract( $args, EXTR_SKIP );
510
 
577
  /**
578
  * Outputs the options form on admin
579
  */
580
+ public function form( $instance ) {
581
 
582
  $mycred = mycred();
583
 
589
  $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : '<a href="%login_url_here%">Login</a> to view your balance.';
590
 
591
  ?>
 
592
  <!-- Widget Options -->
593
  <p class="myCRED-widget-field">
594
  <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
623
  /**
624
  * Processes widget options to be saved
625
  */
626
+ public function update( $new_instance, $old_instance ) {
627
 
628
  global $mycred;
629
 
644
 
645
  }
646
  endif;
647
+
648
  ?>
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:01:15 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -25,97 +25,97 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: en_US"
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr ""
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr ""
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr ""
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr ""
59
 
60
- #: ../mycred.php:663
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:664
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:665
71
  msgid "Done!"
72
  msgstr ""
73
 
74
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
75
  msgid "Close"
76
  msgstr ""
77
 
78
- #: ../mycred.php:667
79
  msgid "Export users %plural%"
80
  msgstr ""
81
 
82
- #: ../mycred.php:668
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
- #: ../mycred.php:684
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
- #: ../mycred.php:702
94
  msgid "Edit Log Entry"
95
  msgstr ""
96
 
97
- #: ../mycred.php:706
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr ""
100
 
101
- #: ../mycred.php:707
102
  msgid "Log entry updated"
103
  msgstr ""
104
 
105
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
118
- #: ../mycred.php:803
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
@@ -160,8 +160,8 @@ msgid "Once per day (reset at midnight)"
160
  msgstr ""
161
 
162
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
164
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
165
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -187,7 +187,7 @@ msgid "click to open"
187
  msgstr ""
188
 
189
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
- #: buy-creds.php:884
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
@@ -228,7 +228,7 @@ msgid "Badge"
228
  msgstr ""
229
 
230
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
232
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
  #: addons/ranks/myCRED-addon-ranks.php:448
234
  msgid "Add New"
@@ -460,7 +460,7 @@ msgid "Status"
460
  msgstr ""
461
 
462
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
- #: addon-email-notices.php:1293
464
  msgid "Save Changes"
465
  msgstr ""
466
 
@@ -526,11 +526,11 @@ msgid "Setup mass %_singular% payouts for your users."
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
530
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
531
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
534
  msgid "Access Denied"
535
  msgstr ""
536
 
@@ -552,7 +552,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
552
  msgstr ""
553
 
554
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
556
  msgid "Enable"
557
  msgstr ""
558
 
@@ -674,8 +674,8 @@ msgstr ""
674
 
675
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
678
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
680
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
681
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -733,7 +733,7 @@ msgid "This user role is excluded from receiving interest on this balance."
733
  msgstr ""
734
 
735
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
737
  #: content.php:114
738
  msgid "Leave empty to use the default value."
739
  msgstr ""
@@ -746,15 +746,15 @@ msgstr ""
746
  msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
750
  msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
754
  msgid "User excluded from receiving interest."
755
  msgstr ""
756
 
757
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
758
  msgid "User included in receiving interest."
759
  msgstr ""
760
 
@@ -763,7 +763,7 @@ msgid "Daily %_plural%"
763
  msgstr ""
764
 
765
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
767
  #: modules/mycred-module-log.php:277
768
  msgid "History"
769
  msgstr ""
@@ -781,10 +781,10 @@ msgid "Pay Users"
781
  msgstr ""
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
785
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
786
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
788
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
  #: plugins/mycred-hook-affiliatewp.php:256
790
  msgid "Amount"
@@ -819,306 +819,306 @@ msgstr ""
819
  msgid "Payment Gateways"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
823
  msgctxt "Post Type General Name"
824
  msgid "Pending Payments"
825
  msgstr ""
826
 
827
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
828
  msgctxt "Post Type Singular Name"
829
  msgid "Pending Payment"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
833
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
838
  msgid "Edit Pending Payment"
839
  msgstr ""
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:1699
843
  msgid "No pending payments found"
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
847
  msgid "Not found in Trash"
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
851
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
852
  msgid "Transaction ID"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:1025
857
  msgid "Buyer"
858
  msgstr ""
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
861
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
  #: gateway.php:594
863
  msgid "Cost"
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
868
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
  msgid "Gateway"
870
  msgstr ""
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
873
  msgid "Type"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
877
  msgid "Pay Out"
878
  msgstr ""
879
 
880
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
881
  msgid "buyCRED Purchase Log"
882
  msgstr ""
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
885
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
886
  msgid "Purchase Log"
887
  msgstr ""
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
893
  msgid "Payments"
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
897
  msgid "Please login to purchase %_plural%"
898
  msgstr ""
899
 
900
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
901
  #, php-format
902
  msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
906
  #: addon-ranks.php:1084
907
  msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
911
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
912
  msgstr ""
913
 
914
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
915
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
  #: module-settings.php:656
917
  msgid "Point Types"
918
  msgstr ""
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
921
  msgid "Select the point types that users can buy. You must select at least one!"
922
  msgstr ""
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
925
  msgid "Login Template"
926
  msgstr ""
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
929
  msgid "Content to show when a user is not logged in."
930
  msgstr ""
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
933
  msgid "Thank You Page"
934
  msgstr ""
935
 
936
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
937
- #: addon-buy-creds.php:668
938
  msgid "Custom URL"
939
  msgstr ""
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
942
- #: addon-buy-creds.php:673
943
  msgid "Page"
944
  msgstr ""
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
947
  msgid "Cancellation Page"
948
  msgstr ""
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
951
  msgid "Show seperate log for %_plural% purchases."
952
  msgstr ""
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
955
  msgid "Gifting"
956
  msgstr ""
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
959
  #, php-format
960
  msgid "Allow users to buy %_plural% for other users."
961
  msgstr ""
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
969
  #: hooks.php:3110
970
  msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
974
  #, php-format
975
  msgid "%s Exchange Rate"
976
  msgstr ""
977
 
978
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
979
  msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
983
  msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
987
  msgid "Payment completed"
988
  msgstr ""
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
991
  #, php-format
992
  msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
996
- #: addon-buy-creds.php:1034
997
  msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1001
  msgid "Test Mode"
1002
  msgstr ""
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1005
  msgid "Enabled"
1006
  msgstr ""
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1009
  msgid "Disabled"
1010
  msgstr ""
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1013
  msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1017
  msgid "Enable for test purchases."
1018
  msgstr ""
1019
 
1020
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1021
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
  msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1026
  msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1030
- #: 666
1031
  msgid "Date"
1032
  msgstr ""
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1035
  msgid "Payed"
1036
  msgstr ""
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1039
  msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1043
  #: booking/mycred-eventespresso3.php:367
1044
  msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1048
- #: content/myCRED-addon-sell-content.php:1209
1049
  msgid "No purchases found"
1050
  msgstr ""
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1053
- #: addon-buy-creds.php:1411
1054
  msgid "This Add-on needs to setup before you can use this shortcode."
1055
  msgstr ""
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1058
- #: addon-buy-creds.php:1430
1059
  msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1063
- #: addon-buy-creds.php:1431
1064
  msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1068
  msgid "Yourself"
1069
  msgstr ""
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1072
  msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1076
  msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1080
  #, php-format
1081
  msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1085
  #: content/myCRED-addon-sell-content.php:44
1086
  msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1090
  msgid "No users found"
1091
  msgstr ""
1092
 
1093
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1094
  msgid "To"
1095
  msgstr ""
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1098
  msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1102
  msgid "min."
1103
  msgstr ""
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1106
  msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1110
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
  #: php:35
1113
  msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1117
  #: php:536
1118
  msgid "Cancel"
1119
  msgstr ""
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1122
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
  msgid "Actions"
@@ -1159,12 +1159,12 @@ msgid "Cancel purchase"
1159
  msgstr ""
1160
 
1161
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1162
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1163
  msgid "required"
1164
  msgstr ""
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1167
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1168
  msgid "optional"
1169
  msgstr ""
1170
 
@@ -1704,7 +1704,7 @@ msgstr ""
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:1045 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1200 ../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"
@@ -1716,7 +1716,7 @@ 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:2507
1720
  msgid "Total"
1721
  msgstr ""
1722
 
@@ -1867,7 +1867,7 @@ msgid "Apply Coupon"
1867
  msgstr ""
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:1267
1871
  msgid "Email Notice"
1872
  msgstr ""
1873
 
@@ -2138,8 +2138,8 @@ msgid "Sent To"
2138
  msgstr ""
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2142
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2143
  msgid "User"
2144
  msgstr ""
2145
 
@@ -2269,18 +2269,18 @@ msgstr ""
2269
  msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2273
  msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2277
  msgid "There are no email notifications yet."
2278
  msgstr ""
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2284
  msgid "Current Balance"
2285
  msgstr ""
2286
 
@@ -2681,8 +2681,8 @@ msgstr ""
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2682
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2683
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2684
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2685
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2686
  msgid "Button Label"
2687
  msgstr ""
2688
 
@@ -2695,8 +2695,8 @@ msgstr ""
2695
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2696
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2697
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2698
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2699
- #: sell-content.php:682
2700
  msgid "Price"
2701
  msgstr ""
2702
 
@@ -2720,12 +2720,12 @@ msgid "Log"
2720
  msgstr ""
2721
 
2722
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2723
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2724
  msgid "Log Entry"
2725
  msgstr ""
2726
 
2727
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2728
- #: content/myCRED-addon-sell-content.php:473
2729
  msgid "Templates"
2730
  msgstr ""
2731
 
@@ -2809,7 +2809,7 @@ msgid "Reject"
2809
  msgstr ""
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2813
  #: modules/mycred-module-settings.php:699
2814
  msgid "Delete"
2815
  msgstr ""
@@ -3299,139 +3299,139 @@ msgstr ""
3299
  msgid "Save Profit Share"
3300
  msgstr ""
3301
 
3302
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3303
  msgid "Profit Share override saved"
3304
  msgstr ""
3305
 
3306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3307
  msgid "You can not buy this content."
3308
  msgstr ""
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3311
  msgid "Error. Try Again"
3312
  msgstr ""
3313
 
3314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3315
  msgid "No Payout. Just charge."
3316
  msgstr ""
3317
 
3318
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3319
  msgid "Pay Content Author."
3320
  msgstr ""
3321
 
3322
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3323
  #: overview.php:141 ../includes/mycred-overview.php:148
3324
  msgid "Sell Content"
3325
  msgstr ""
3326
 
3327
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3328
  msgid "Post Types"
3329
  msgstr ""
3330
 
3331
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3332
  msgid "Comma separated list of post types that can be sold."
3333
  msgstr ""
3334
 
3335
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3336
  msgid "Percentage to pay Author"
3337
  msgstr ""
3338
 
3339
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3340
  msgid ""
3341
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3342
  "authors are not paid."
3343
  msgstr ""
3344
 
3345
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3346
  msgid "Defaults"
3347
  msgstr ""
3348
 
3349
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3350
  msgid "Allow authors to change price."
3351
  msgstr ""
3352
 
3353
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3354
  msgid "Allow authors to change button label."
3355
  msgstr ""
3356
 
3357
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3358
  msgid "Purchases expire after"
3359
  msgstr ""
3360
 
3361
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3362
  msgid "Use zero for permanent sales."
3363
  msgstr ""
3364
 
3365
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3366
  msgid "For Visitors"
3367
  msgstr ""
3368
 
3369
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3370
  #, php-format
3371
  msgid ""
3372
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3373
  "be logged in to buy content!"
3374
  msgstr ""
3375
 
3376
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3377
  msgid "For Members"
3378
  msgstr ""
3379
 
3380
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3381
- #: content/myCRED-addon-sell-content.php:516
3382
  #, php-format
3383
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3384
  msgstr ""
3385
 
3386
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3387
  msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3391
  msgid "Log template for Purchases"
3392
  msgstr ""
3393
 
3394
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3395
  msgid "Log template for Sales"
3396
  msgstr ""
3397
 
3398
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3399
  #, php-format
3400
  msgid "%s Sell This"
3401
  msgstr ""
3402
 
3403
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3404
  #, php-format
3405
  msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
 
3408
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3409
  msgid "Setup add-on"
3410
  msgstr ""
3411
 
3412
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3413
  msgid "Lets do it"
3414
  msgstr ""
3415
 
3416
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3417
  #, php-format
3418
  msgid "Enable sale of this %s"
3419
  msgstr ""
3420
 
3421
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3422
  msgid "Purchase expires after"
3423
  msgstr ""
3424
 
3425
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3426
  msgid "Thank you for your purchase!"
3427
  msgstr ""
3428
 
3429
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3430
- #: content/myCRED-addon-sell-content.php:1190
3431
  msgid "The following content is set for sale:"
3432
  msgstr ""
3433
 
3434
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3435
  msgid "Purchased"
3436
  msgstr ""
3437
 
@@ -3497,17 +3497,17 @@ msgid "Total Spent: %s"
3497
  msgstr ""
3498
 
3499
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3501
  msgid "Today"
3502
  msgstr ""
3503
 
3504
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3506
  msgid "This Week"
3507
  msgstr ""
3508
 
3509
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3511
  msgid "This Month"
3512
  msgstr ""
3513
 
@@ -3542,13 +3542,13 @@ msgstr ""
3542
  msgid "Gains in the last 10 days"
3543
  msgstr ""
3544
 
3545
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3546
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3547
  msgid "View"
3548
  msgstr ""
3549
 
3550
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3551
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3552
  msgid "No data found"
3553
  msgstr ""
3554
 
@@ -3785,121 +3785,121 @@ msgstr ""
3785
  msgid "Welcome to %s %s"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-admin.php:191
3789
  msgid "A log entry is required in order to adjust this users balance"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-admin.php:193
3793
  msgid "Users balance saved"
3794
  msgstr ""
3795
 
3796
- #: ../includes/mycred-admin.php:201
3797
  msgid "Users excluded"
3798
  msgstr ""
3799
 
3800
- #: ../includes/mycred-admin.php:206
3801
  msgid ""
3802
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3803
  "rate settings and update all premium payment gateways!"
3804
  msgstr ""
3805
 
3806
- #: ../includes/mycred-admin.php:234
3807
  msgid "User is excluded"
3808
  msgstr ""
3809
 
3810
- #: ../includes/mycred-admin.php:239
3811
  msgid "Log Entry can not be empty"
3812
  msgstr ""
3813
 
3814
- #: ../includes/mycred-admin.php:243
3815
  msgid "Amount can not be zero"
3816
  msgstr ""
3817
 
3818
- #: ../includes/mycred-admin.php:264
3819
  msgid "Failed to update this uses balance."
3820
  msgstr ""
3821
 
3822
- #: ../includes/mycred-admin.php:385
3823
  msgid "Excluded"
3824
  msgstr ""
3825
 
3826
- #: ../includes/mycred-admin.php:406
3827
  msgid "Adjust"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3831
  msgid "Edit Balance"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-admin.php:463
3835
  msgid "Profile"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-admin.php:470
3839
  msgid "Extended Profile"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-admin.php:560
3843
  #, php-format
3844
  msgid "This user is excluded from using %s"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-admin.php:583
3848
  msgid "Edit User"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-admin.php:585
3852
  msgctxt "user"
3853
  msgid "Add New"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-admin.php:587
3857
  msgctxt "user"
3858
  msgid "Add Existing"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-admin.php:598
3862
  #, php-format
3863
  msgid "Total %s Accumulated"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-admin.php:599
3867
  #, php-format
3868
  msgid "Total %s Spent"
3869
  msgstr ""
3870
 
3871
- #: ../includes/mycred-admin.php:610
3872
  msgid "View History"
3873
  msgstr ""
3874
 
3875
- #: ../includes/mycred-admin.php:611
3876
  msgid "Exclude User"
3877
  msgstr ""
3878
 
3879
- #: ../includes/mycred-admin.php:615
3880
  msgid "Adjust Balance"
3881
  msgstr ""
3882
 
3883
- #: ../includes/mycred-admin.php:624
3884
  msgid ""
3885
  "Warning! Excluding this user will result in their balance being deleted "
3886
  "along with any entries currently in your log! This can not be undone!"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-admin.php:682
3890
  #, php-format
3891
  msgid "%singular% balance"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
3895
  msgid "Update Balance"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-admin.php:753
3899
  msgid "ID"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-admin.php:759
3903
  msgid "A positive or negative value"
3904
  msgstr ""
3905
 
@@ -4541,103 +4541,103 @@ msgstr ""
4541
  msgid "Install & Run"
4542
  msgstr ""
4543
 
4544
- #: ../includes/mycred-log.php:430
4545
  #, php-format
4546
  msgid "Showing %d %s"
4547
  msgstr ""
4548
 
4549
- #: ../includes/mycred-log.php:430
4550
  msgid "entry"
4551
  msgid_plural "entries"
4552
  msgstr[0] ""
4553
  msgstr[1] ""
4554
 
4555
- #: ../includes/mycred-log.php:444
4556
  msgid "Go to the first page"
4557
  msgstr ""
4558
 
4559
- #: ../includes/mycred-log.php:451
4560
  msgid "Go to the previous page"
4561
  msgstr ""
4562
 
4563
- #: ../includes/mycred-log.php:460
4564
  msgid "Current page"
4565
  msgstr ""
4566
 
4567
- #: ../includes/mycred-log.php:466
4568
  #, php-format
4569
  msgctxt "mycred"
4570
  msgid "%1$s of %2$s"
4571
  msgstr ""
4572
 
4573
- #: ../includes/mycred-log.php:470
4574
  msgid "Go to the next page"
4575
  msgstr ""
4576
 
4577
- #: ../includes/mycred-log.php:477
4578
  msgid "Go to the last page"
4579
  msgstr ""
4580
 
4581
- #: ../includes/mycred-log.php:544
4582
  msgid "Show all references"
4583
  msgstr ""
4584
 
4585
- #: ../includes/mycred-log.php:557
4586
  msgid "User ID, Username, Email or Nicename"
4587
  msgstr ""
4588
 
4589
- #: ../includes/mycred-log.php:563
4590
  msgid "Show in order"
4591
  msgstr ""
4592
 
4593
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4594
  msgid "Ascending"
4595
  msgstr ""
4596
 
4597
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4598
  msgid "Descending"
4599
  msgstr ""
4600
 
4601
- #: ../includes/mycred-log.php:582
4602
  msgid "Filter"
4603
  msgstr ""
4604
 
4605
- #: ../includes/mycred-log.php:635
4606
  msgid ""
4607
  "Log entries are exported to a CSV file and depending on the number of "
4608
  "entries selected, the process may take a few seconds."
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-log.php:639
4612
  msgid "No export options available."
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-log.php:668
4616
  msgid "Entry"
4617
  msgstr ""
4618
 
4619
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4620
  msgid "User Missing"
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-log.php:839
4624
  msgid "No log entries found"
4625
  msgstr ""
4626
 
4627
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4628
  msgid "Search Log"
4629
  msgstr ""
4630
 
4631
- #: ../includes/mycred-log.php:855
4632
  msgid "search log entries"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4636
  #: modules/mycred-module-buddypress.php:249
4637
  msgid "All"
4638
  msgstr ""
4639
 
4640
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4641
  msgid "Yesterday"
4642
  msgstr ""
4643
 
@@ -4864,7 +4864,7 @@ msgstr ""
4864
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4865
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4866
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4867
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4868
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4869
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4870
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5474,7 +5474,7 @@ msgstr ""
5474
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5475
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5476
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5477
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5478
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5479
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5480
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -5776,8 +5776,8 @@ msgstr ""
5776
  msgid "Entries"
5777
  msgstr ""
5778
 
5779
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5780
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5781
  msgid "Export"
5782
  msgstr ""
5783
 
@@ -5796,35 +5796,35 @@ msgid ""
5796
  "Certain hooks and shortcodes will not work correctly!"
5797
  msgstr ""
5798
 
5799
- #: ../modules/mycred-module-log.php:565
5800
  msgid "Edit"
5801
  msgstr ""
5802
 
5803
- #: ../modules/mycred-module-log.php:612
5804
  msgid "Time"
5805
  msgstr ""
5806
 
5807
- #: ../modules/mycred-module-log.php:616
5808
  msgid "Current Log Entry"
5809
  msgstr ""
5810
 
5811
- #: ../modules/mycred-module-log.php:618
5812
  msgid "The current saved log entry"
5813
  msgstr ""
5814
 
5815
- #: ../modules/mycred-module-log.php:621
5816
  msgid "Adjust Log Entry"
5817
  msgstr ""
5818
 
5819
- #: ../modules/mycred-module-log.php:623
5820
  msgid "The new log entry"
5821
  msgstr ""
5822
 
5823
- #: ../modules/mycred-module-log.php:626
5824
  msgid "Update Log Entry"
5825
  msgstr ""
5826
 
5827
- #: ../modules/mycred-module-log.php:697
5828
  #, php-format
5829
  msgid "My %s History"
5830
  msgstr ""
@@ -6495,23 +6495,23 @@ msgstr ""
6495
  msgid "Reward with %plural%"
6496
  msgstr ""
6497
 
6498
- #: ../plugins/mycred-hook-sharethis.php:18
6499
  #, php-format
6500
  msgid "%plural% for Sharing"
6501
  msgstr ""
6502
 
6503
- #: ../plugins/mycred-hook-sharethis.php:19
6504
  #, php-format
6505
  msgid ""
6506
  "Awards %_plural% for users sharing / liking your website content to popular "
6507
  "social media sites."
6508
  msgstr ""
6509
 
6510
- #: ../plugins/mycred-hook-sharethis.php:232
6511
  msgid "Your ShareThis public key is not set."
6512
  msgstr ""
6513
 
6514
- #: ../plugins/mycred-hook-sharethis.php:237
6515
  msgid "No ShareThis services detected. Please check your installation."
6516
  msgstr ""
6517
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:42:18 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: en_US"
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr ""
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr ""
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr ""
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr ""
59
 
60
+ #: ../mycred.php:679
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
+ #: ../mycred.php:680
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
 
70
+ #: ../mycred.php:681
71
  msgid "Done!"
72
  msgstr ""
73
 
74
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
75
  msgid "Close"
76
  msgstr ""
77
 
78
+ #: ../mycred.php:683
79
  msgid "Export users %plural%"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:684
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
+ #: ../mycred.php:700
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
+ #: ../mycred.php:718
94
  msgid "Edit Log Entry"
95
  msgstr ""
96
 
97
+ #: ../mycred.php:722
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr ""
100
 
101
+ #: ../mycred.php:723
102
  msgid "Log entry updated"
103
  msgstr ""
104
 
105
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
118
+ #: ../mycred.php:825
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
160
  msgstr ""
161
 
162
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
164
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
165
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
187
  msgstr ""
188
 
189
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
+ #: buy-creds.php:927
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
228
  msgstr ""
229
 
230
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
232
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
  #: addons/ranks/myCRED-addon-ranks.php:448
234
  msgid "Add New"
460
  msgstr ""
461
 
462
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
+ #: addon-email-notices.php:1296
464
  msgid "Save Changes"
465
  msgstr ""
466
 
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
530
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
531
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
534
  msgid "Access Denied"
535
  msgstr ""
536
 
552
  msgstr ""
553
 
554
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
556
  msgid "Enable"
557
  msgstr ""
558
 
674
 
675
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
678
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
680
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
681
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
733
  msgstr ""
734
 
735
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
737
  #: content.php:114
738
  msgid "Leave empty to use the default value."
739
  msgstr ""
746
  msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
750
  msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
754
  msgid "User excluded from receiving interest."
755
  msgstr ""
756
 
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
758
  msgid "User included in receiving interest."
759
  msgstr ""
760
 
763
  msgstr ""
764
 
765
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
767
  #: modules/mycred-module-log.php:277
768
  msgid "History"
769
  msgstr ""
781
  msgstr ""
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
785
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
786
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
788
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
  #: plugins/mycred-hook-affiliatewp.php:256
790
  msgid "Amount"
819
  msgid "Payment Gateways"
820
  msgstr ""
821
 
822
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
823
  msgctxt "Post Type General Name"
824
  msgid "Pending Payments"
825
  msgstr ""
826
 
827
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
828
  msgctxt "Post Type Singular Name"
829
  msgid "Pending Payment"
830
  msgstr ""
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
833
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
838
  msgid "Edit Pending Payment"
839
  msgstr ""
840
 
841
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
842
+ #: addon-buy-creds.php:1752
843
  msgid "No pending payments found"
844
  msgstr ""
845
 
846
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
847
  msgid "Not found in Trash"
848
  msgstr ""
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
851
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
852
  msgid "Transaction ID"
853
  msgstr ""
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:1074
857
  msgid "Buyer"
858
  msgstr ""
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
  #: gateway.php:594
863
  msgid "Cost"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
868
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
  msgid "Gateway"
870
  msgstr ""
871
 
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
873
  msgid "Type"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
877
  msgid "Pay Out"
878
  msgstr ""
879
 
880
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
881
  msgid "buyCRED Purchase Log"
882
  msgstr ""
883
 
884
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
885
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
886
  msgid "Purchase Log"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
893
  msgid "Payments"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
897
  msgid "Please login to purchase %_plural%"
898
  msgstr ""
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
901
  #, php-format
902
  msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
906
  #: addon-ranks.php:1084
907
  msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
911
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
912
  msgstr ""
913
 
914
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
915
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
  #: module-settings.php:656
917
  msgid "Point Types"
918
  msgstr ""
919
 
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
921
  msgid "Select the point types that users can buy. You must select at least one!"
922
  msgstr ""
923
 
924
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
925
  msgid "Login Template"
926
  msgstr ""
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
929
  msgid "Content to show when a user is not logged in."
930
  msgstr ""
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
933
  msgid "Thank You Page"
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
937
+ #: addon-buy-creds.php:705
938
  msgid "Custom URL"
939
  msgstr ""
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:710
943
  msgid "Page"
944
  msgstr ""
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
947
  msgid "Cancellation Page"
948
  msgstr ""
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
951
  msgid "Show seperate log for %_plural% purchases."
952
  msgstr ""
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
955
  msgid "Gifting"
956
  msgstr ""
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
959
  #, php-format
960
  msgid "Allow users to buy %_plural% for other users."
961
  msgstr ""
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
969
  #: hooks.php:3110
970
  msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
974
  #, php-format
975
  msgid "%s Exchange Rate"
976
  msgstr ""
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
979
  msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
983
  msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
987
  msgid "Payment completed"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
991
  #, php-format
992
  msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
996
+ #: addon-buy-creds.php:1085
997
  msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1001
  msgid "Test Mode"
1002
  msgstr ""
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1005
  msgid "Enabled"
1006
  msgstr ""
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1009
  msgid "Disabled"
1010
  msgstr ""
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1013
  msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1017
  msgid "Enable for test purchases."
1018
  msgstr ""
1019
 
1020
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1021
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
  msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1026
  msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1030
+ #: 756
1031
  msgid "Date"
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1035
  msgid "Payed"
1036
  msgstr ""
1037
 
1038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1039
  msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1043
  #: booking/mycred-eventespresso3.php:367
1044
  msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1048
+ #: content/myCRED-addon-sell-content.php:1210
1049
  msgid "No purchases found"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1053
+ #: addon-buy-creds.php:1464
1054
  msgid "This Add-on needs to setup before you can use this shortcode."
1055
  msgstr ""
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1058
+ #: addon-buy-creds.php:1483
1059
  msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1063
+ #: addon-buy-creds.php:1484
1064
  msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1068
  msgid "Yourself"
1069
  msgstr ""
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1072
  msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1076
  msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1080
  #, php-format
1081
  msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1085
  #: content/myCRED-addon-sell-content.php:44
1086
  msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1090
  msgid "No users found"
1091
  msgstr ""
1092
 
1093
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1094
  msgid "To"
1095
  msgstr ""
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1098
  msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1102
  msgid "min."
1103
  msgstr ""
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1106
  msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1110
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
  #: php:35
1113
  msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1117
  #: php:536
1118
  msgid "Cancel"
1119
  msgstr ""
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1122
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
  msgid "Actions"
1159
  msgstr ""
1160
 
1161
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1162
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1163
  msgid "required"
1164
  msgstr ""
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1167
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1168
  msgid "optional"
1169
  msgstr ""
1170
 
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:1045 ../addons/ranks/myCRED-
1707
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1708
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
  #: includes/importers/mycred-cubepoints.php:365
1710
  msgid "Point Type"
1716
  msgstr ""
1717
 
1718
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
+ #: 416 ../modules/mycred-module-hooks.php:2507
1720
  msgid "Total"
1721
  msgstr ""
1722
 
1867
  msgstr ""
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:1270
1871
  msgid "Email Notice"
1872
  msgstr ""
1873
 
2138
  msgstr ""
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2142
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2143
  msgid "User"
2144
  msgstr ""
2145
 
2269
  msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2273
  msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2277
  msgid "There are no email notifications yet."
2278
  msgstr ""
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2284
  msgid "Current Balance"
2285
  msgstr ""
2286
 
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2682
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2683
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2684
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2685
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2686
  msgid "Button Label"
2687
  msgstr ""
2688
 
2695
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2696
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2697
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2698
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2699
+ #: sell-content.php:683
2700
  msgid "Price"
2701
  msgstr ""
2702
 
2720
  msgstr ""
2721
 
2722
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2723
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2724
  msgid "Log Entry"
2725
  msgstr ""
2726
 
2727
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2728
+ #: content/myCRED-addon-sell-content.php:474
2729
  msgid "Templates"
2730
  msgstr ""
2731
 
2809
  msgstr ""
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2813
  #: modules/mycred-module-settings.php:699
2814
  msgid "Delete"
2815
  msgstr ""
3299
  msgid "Save Profit Share"
3300
  msgstr ""
3301
 
3302
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3303
  msgid "Profit Share override saved"
3304
  msgstr ""
3305
 
3306
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3307
  msgid "You can not buy this content."
3308
  msgstr ""
3309
 
3310
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3311
  msgid "Error. Try Again"
3312
  msgstr ""
3313
 
3314
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3315
  msgid "No Payout. Just charge."
3316
  msgstr ""
3317
 
3318
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3319
  msgid "Pay Content Author."
3320
  msgstr ""
3321
 
3322
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3323
  #: overview.php:141 ../includes/mycred-overview.php:148
3324
  msgid "Sell Content"
3325
  msgstr ""
3326
 
3327
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3328
  msgid "Post Types"
3329
  msgstr ""
3330
 
3331
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3332
  msgid "Comma separated list of post types that can be sold."
3333
  msgstr ""
3334
 
3335
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3336
  msgid "Percentage to pay Author"
3337
  msgstr ""
3338
 
3339
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3340
  msgid ""
3341
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3342
  "authors are not paid."
3343
  msgstr ""
3344
 
3345
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3346
  msgid "Defaults"
3347
  msgstr ""
3348
 
3349
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3350
  msgid "Allow authors to change price."
3351
  msgstr ""
3352
 
3353
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3354
  msgid "Allow authors to change button label."
3355
  msgstr ""
3356
 
3357
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3358
  msgid "Purchases expire after"
3359
  msgstr ""
3360
 
3361
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3362
  msgid "Use zero for permanent sales."
3363
  msgstr ""
3364
 
3365
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3366
  msgid "For Visitors"
3367
  msgstr ""
3368
 
3369
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3370
  #, php-format
3371
  msgid ""
3372
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3373
  "be logged in to buy content!"
3374
  msgstr ""
3375
 
3376
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3377
  msgid "For Members"
3378
  msgstr ""
3379
 
3380
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3381
+ #: content/myCRED-addon-sell-content.php:517
3382
  #, php-format
3383
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3384
  msgstr ""
3385
 
3386
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3387
  msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3391
  msgid "Log template for Purchases"
3392
  msgstr ""
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3395
  msgid "Log template for Sales"
3396
  msgstr ""
3397
 
3398
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3399
  #, php-format
3400
  msgid "%s Sell This"
3401
  msgstr ""
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3404
  #, php-format
3405
  msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
 
3408
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3409
  msgid "Setup add-on"
3410
  msgstr ""
3411
 
3412
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3413
  msgid "Lets do it"
3414
  msgstr ""
3415
 
3416
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3417
  #, php-format
3418
  msgid "Enable sale of this %s"
3419
  msgstr ""
3420
 
3421
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3422
  msgid "Purchase expires after"
3423
  msgstr ""
3424
 
3425
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3426
  msgid "Thank you for your purchase!"
3427
  msgstr ""
3428
 
3429
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3430
+ #: content/myCRED-addon-sell-content.php:1191
3431
  msgid "The following content is set for sale:"
3432
  msgstr ""
3433
 
3434
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3435
  msgid "Purchased"
3436
  msgstr ""
3437
 
3497
  msgstr ""
3498
 
3499
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3501
  msgid "Today"
3502
  msgstr ""
3503
 
3504
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3506
  msgid "This Week"
3507
  msgstr ""
3508
 
3509
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3511
  msgid "This Month"
3512
  msgstr ""
3513
 
3542
  msgid "Gains in the last 10 days"
3543
  msgstr ""
3544
 
3545
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3546
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3547
  msgid "View"
3548
  msgstr ""
3549
 
3550
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3551
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3552
  msgid "No data found"
3553
  msgstr ""
3554
 
3785
  msgid "Welcome to %s %s"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/mycred-admin.php:198
3789
  msgid "A log entry is required in order to adjust this users balance"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/mycred-admin.php:200
3793
  msgid "Users balance saved"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/mycred-admin.php:208
3797
  msgid "Users excluded"
3798
  msgstr ""
3799
 
3800
+ #: ../includes/mycred-admin.php:213
3801
  msgid ""
3802
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3803
  "rate settings and update all premium payment gateways!"
3804
  msgstr ""
3805
 
3806
+ #: ../includes/mycred-admin.php:242
3807
  msgid "User is excluded"
3808
  msgstr ""
3809
 
3810
+ #: ../includes/mycred-admin.php:247
3811
  msgid "Log Entry can not be empty"
3812
  msgstr ""
3813
 
3814
+ #: ../includes/mycred-admin.php:251
3815
  msgid "Amount can not be zero"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/mycred-admin.php:272
3819
  msgid "Failed to update this uses balance."
3820
  msgstr ""
3821
 
3822
+ #: ../includes/mycred-admin.php:406
3823
  msgid "Excluded"
3824
  msgstr ""
3825
 
3826
+ #: ../includes/mycred-admin.php:427
3827
  msgid "Adjust"
3828
  msgstr ""
3829
 
3830
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3831
  msgid "Edit Balance"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/mycred-admin.php:490
3835
  msgid "Profile"
3836
  msgstr ""
3837
 
3838
+ #: ../includes/mycred-admin.php:497
3839
  msgid "Extended Profile"
3840
  msgstr ""
3841
 
3842
+ #: ../includes/mycred-admin.php:591
3843
  #, php-format
3844
  msgid "This user is excluded from using %s"
3845
  msgstr ""
3846
 
3847
+ #: ../includes/mycred-admin.php:615
3848
  msgid "Edit User"
3849
  msgstr ""
3850
 
3851
+ #: ../includes/mycred-admin.php:617
3852
  msgctxt "user"
3853
  msgid "Add New"
3854
  msgstr ""
3855
 
3856
+ #: ../includes/mycred-admin.php:619
3857
  msgctxt "user"
3858
  msgid "Add Existing"
3859
  msgstr ""
3860
 
3861
+ #: ../includes/mycred-admin.php:630
3862
  #, php-format
3863
  msgid "Total %s Accumulated"
3864
  msgstr ""
3865
 
3866
+ #: ../includes/mycred-admin.php:631
3867
  #, php-format
3868
  msgid "Total %s Spent"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/mycred-admin.php:642
3872
  msgid "View History"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/mycred-admin.php:643
3876
  msgid "Exclude User"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/mycred-admin.php:647
3880
  msgid "Adjust Balance"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/mycred-admin.php:656
3884
  msgid ""
3885
  "Warning! Excluding this user will result in their balance being deleted "
3886
  "along with any entries currently in your log! This can not be undone!"
3887
  msgstr ""
3888
 
3889
+ #: ../includes/mycred-admin.php:721
3890
  #, php-format
3891
  msgid "%singular% balance"
3892
  msgstr ""
3893
 
3894
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3895
  msgid "Update Balance"
3896
  msgstr ""
3897
 
3898
+ #: ../includes/mycred-admin.php:798
3899
  msgid "ID"
3900
  msgstr ""
3901
 
3902
+ #: ../includes/mycred-admin.php:804
3903
  msgid "A positive or negative value"
3904
  msgstr ""
3905
 
4541
  msgid "Install & Run"
4542
  msgstr ""
4543
 
4544
+ #: ../includes/mycred-log.php:485
4545
  #, php-format
4546
  msgid "Showing %d %s"
4547
  msgstr ""
4548
 
4549
+ #: ../includes/mycred-log.php:485
4550
  msgid "entry"
4551
  msgid_plural "entries"
4552
  msgstr[0] ""
4553
  msgstr[1] ""
4554
 
4555
+ #: ../includes/mycred-log.php:500
4556
  msgid "Go to the first page"
4557
  msgstr ""
4558
 
4559
+ #: ../includes/mycred-log.php:507
4560
  msgid "Go to the previous page"
4561
  msgstr ""
4562
 
4563
+ #: ../includes/mycred-log.php:517
4564
  msgid "Current page"
4565
  msgstr ""
4566
 
4567
+ #: ../includes/mycred-log.php:523
4568
  #, php-format
4569
  msgctxt "mycred"
4570
  msgid "%1$s of %2$s"
4571
  msgstr ""
4572
 
4573
+ #: ../includes/mycred-log.php:527
4574
  msgid "Go to the next page"
4575
  msgstr ""
4576
 
4577
+ #: ../includes/mycred-log.php:534
4578
  msgid "Go to the last page"
4579
  msgstr ""
4580
 
4581
+ #: ../includes/mycred-log.php:611
4582
  msgid "Show all references"
4583
  msgstr ""
4584
 
4585
+ #: ../includes/mycred-log.php:628
4586
  msgid "User ID, Username, Email or Nicename"
4587
  msgstr ""
4588
 
4589
+ #: ../includes/mycred-log.php:636
4590
  msgid "Show in order"
4591
  msgstr ""
4592
 
4593
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4594
  msgid "Ascending"
4595
  msgstr ""
4596
 
4597
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4598
  msgid "Descending"
4599
  msgstr ""
4600
 
4601
+ #: ../includes/mycred-log.php:658
4602
  msgid "Filter"
4603
  msgstr ""
4604
 
4605
+ #: ../includes/mycred-log.php:718
4606
  msgid ""
4607
  "Log entries are exported to a CSV file and depending on the number of "
4608
  "entries selected, the process may take a few seconds."
4609
  msgstr ""
4610
 
4611
+ #: ../includes/mycred-log.php:725
4612
  msgid "No export options available."
4613
  msgstr ""
4614
 
4615
+ #: ../includes/mycred-log.php:758
4616
  msgid "Entry"
4617
  msgstr ""
4618
 
4619
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4620
  msgid "User Missing"
4621
  msgstr ""
4622
 
4623
+ #: ../includes/mycred-log.php:958
4624
  msgid "No log entries found"
4625
  msgstr ""
4626
 
4627
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4628
  msgid "Search Log"
4629
  msgstr ""
4630
 
4631
+ #: ../includes/mycred-log.php:977
4632
  msgid "search log entries"
4633
  msgstr ""
4634
 
4635
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4636
  #: modules/mycred-module-buddypress.php:249
4637
  msgid "All"
4638
  msgstr ""
4639
 
4640
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4641
  msgid "Yesterday"
4642
  msgstr ""
4643
 
4864
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4865
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4866
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4867
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4868
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4869
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4870
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5474
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5475
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5476
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5477
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5478
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5479
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5480
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5776
  msgid "Entries"
5777
  msgstr ""
5778
 
5779
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5780
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5781
  msgid "Export"
5782
  msgstr ""
5783
 
5796
  "Certain hooks and shortcodes will not work correctly!"
5797
  msgstr ""
5798
 
5799
+ #: ../modules/mycred-module-log.php:563
5800
  msgid "Edit"
5801
  msgstr ""
5802
 
5803
+ #: ../modules/mycred-module-log.php:610
5804
  msgid "Time"
5805
  msgstr ""
5806
 
5807
+ #: ../modules/mycred-module-log.php:614
5808
  msgid "Current Log Entry"
5809
  msgstr ""
5810
 
5811
+ #: ../modules/mycred-module-log.php:616
5812
  msgid "The current saved log entry"
5813
  msgstr ""
5814
 
5815
+ #: ../modules/mycred-module-log.php:619
5816
  msgid "Adjust Log Entry"
5817
  msgstr ""
5818
 
5819
+ #: ../modules/mycred-module-log.php:621
5820
  msgid "The new log entry"
5821
  msgstr ""
5822
 
5823
+ #: ../modules/mycred-module-log.php:624
5824
  msgid "Update Log Entry"
5825
  msgstr ""
5826
 
5827
+ #: ../modules/mycred-module-log.php:695
5828
  #, php-format
5829
  msgid "My %s History"
5830
  msgstr ""
6495
  msgid "Reward with %plural%"
6496
  msgstr ""
6497
 
6498
+ #: ../plugins/mycred-hook-sharethis.php:19
6499
  #, php-format
6500
  msgid "%plural% for Sharing"
6501
  msgstr ""
6502
 
6503
+ #: ../plugins/mycred-hook-sharethis.php:20
6504
  #, php-format
6505
  msgid ""
6506
  "Awards %_plural% for users sharing / liking your website content to popular "
6507
  "social media sites."
6508
  msgstr ""
6509
 
6510
+ #: ../plugins/mycred-hook-sharethis.php:257
6511
  msgid "Your ShareThis public key is not set."
6512
  msgstr ""
6513
 
6514
+ #: ../plugins/mycred-hook-sharethis.php:262
6515
  msgid "No ShareThis services detected. Please check your installation."
6516
  msgstr ""
6517
 
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:01:34 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -25,33 +25,33 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_ES"
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr "%label% Historial"
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre"
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr "Gente genial"
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Procesando..."
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
@@ -59,7 +59,7 @@ msgstr ""
59
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
  "¡Esto no se puede deshacer!"
61
 
62
- #: ../mycred.php:663
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
@@ -67,63 +67,63 @@ msgstr ""
67
  "¡Todas las entradas de registro perteneciendo al usuario seran "
68
  "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
- #: ../mycred.php:664
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
  "deshacer!"
75
 
76
- #: ../mycred.php:665
77
  msgid "Done!"
78
  msgstr "¡Realizado!"
79
 
80
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
81
  msgid "Close"
82
  msgstr "Cerrar"
83
 
84
- #: ../mycred.php:667
85
  msgid "Export users %plural%"
86
  msgstr "Exportar usuarios %plural%"
87
 
88
- #: ../mycred.php:668
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
- #: ../mycred.php:684
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo del usuario"
98
 
99
- #: ../mycred.php:702
100
  msgid "Edit Log Entry"
101
  msgstr "Edidar entrada de registro"
102
 
103
- #: ../mycred.php:706
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
  "deshacer!"
108
 
109
- #: ../mycred.php:707
110
  msgid "Log entry updated"
111
  msgstr "Entrada de registro actualizado"
112
 
113
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
126
- #: ../mycred.php:803
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
@@ -170,8 +170,8 @@ msgid "Once per day (reset at midnight)"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -197,7 +197,7 @@ msgid "click to open"
197
  msgstr "haga clic para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
- #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
@@ -238,7 +238,7 @@ msgid "Badge"
238
  msgstr "Insignia"
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
@@ -470,7 +470,7 @@ msgid "Status"
470
  msgstr "Estatus"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
- #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr "Guardar Cambios"
476
 
@@ -541,11 +541,11 @@ msgid "Setup mass %_singular% payouts for your users."
541
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
542
 
543
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
544
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
545
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
546
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
547
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
548
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
549
  msgid "Access Denied"
550
  msgstr "Acceso Denegado"
551
 
@@ -567,7 +567,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
567
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
568
 
569
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
570
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
571
  msgid "Enable"
572
  msgstr "Habilitar"
573
 
@@ -693,8 +693,8 @@ msgstr "Desembolso"
693
  #. can also be "Plantilla de Bitácora"
694
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
695
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
696
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
697
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
698
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
699
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
700
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -752,7 +752,7 @@ msgid "This user role is excluded from receiving interest on this balance."
752
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
753
 
754
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
755
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
756
  #: content.php:114
757
  msgid "Leave empty to use the default value."
758
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
@@ -765,15 +765,15 @@ msgstr "Guardar el tipo de interés"
765
  msgid "Exclude from receiving interest"
766
  msgstr "Excluir de recibir interés"
767
 
768
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
769
  msgid "Compound interest rate saved."
770
  msgstr "Tipo de interés compuesto guardado."
771
 
772
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
773
  msgid "User excluded from receiving interest."
774
  msgstr "Usuario excluido la concesión de interés."
775
 
776
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
777
  msgid "User included in receiving interest."
778
  msgstr "Usuario permitido la concesión de interés."
779
 
@@ -782,7 +782,7 @@ msgid "Daily %_plural%"
782
  msgstr "%_plural% diarios"
783
 
784
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
785
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
786
  #: modules/mycred-module-log.php:277
787
  msgid "History"
788
  msgstr "Historial"
@@ -800,10 +800,10 @@ msgid "Pay Users"
800
  msgstr "Pagar a los Usuarios"
801
 
802
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
803
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
804
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
805
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
806
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
807
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
808
  #: plugins/mycred-hook-affiliatewp.php:256
809
  msgid "Amount"
@@ -842,313 +842,313 @@ msgstr ""
842
  msgid "Payment Gateways"
843
  msgstr "Pasarela de Pago"
844
 
845
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
846
  msgctxt "Post Type General Name"
847
  msgid "Pending Payments"
848
  msgstr "Pagos Pendientes"
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
851
  msgctxt "Post Type Singular Name"
852
  msgid "Pending Payment"
853
  msgstr "Pago Pendiente"
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
857
  msgid "Pending Payments"
858
  msgstr "Pagos Pendientes"
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
861
  msgid "Edit Pending Payment"
862
  msgstr "Editar Pago Pendiente"
863
 
864
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
865
- #: addon-buy-creds.php:1699
866
  msgid "No pending payments found"
867
  msgstr "Ningun pago pendiente encontrado"
868
 
869
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
870
  msgid "Not found in Trash"
871
  msgstr "No ha sido encontrado en la Papelera"
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
874
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
875
  msgid "Transaction ID"
876
  msgstr "Identificación de la Transacción"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
879
- #: addon-buy-creds.php:1025
880
  msgid "Buyer"
881
  msgstr "Comprador"
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
884
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
885
  #: gateway.php:594
886
  msgid "Cost"
887
  msgstr "Coste"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
890
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
891
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
892
  msgid "Gateway"
893
  msgstr "Pasarela"
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
896
  msgid "Type"
897
  msgstr "Clase"
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
900
  msgid "Pay Out"
901
  msgstr "Desembolso"
902
 
903
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
904
  msgid "buyCRED Purchase Log"
905
  msgstr "compraCRED Registro de Compras"
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
908
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
909
  msgid "Purchase Log"
910
  msgstr "Registro de Compras"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
913
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
914
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
915
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
916
  msgid "Payments"
917
  msgstr "Pagos"
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
920
  msgid "Please login to purchase %_plural%"
921
  msgstr "Identifícate antes de comprar %_plural%"
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
924
  #, php-format
925
  msgid "Gift purchase from %display_name%."
926
  msgstr "Regalo comprado de parte de %display_name%."
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
929
  #: addon-ranks.php:1084
930
  msgid "Minimum %plural%"
931
  msgstr "Minimo %_plural%"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
934
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
935
  msgstr ""
936
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
937
  "a 1."
938
 
939
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
940
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
941
  #: module-settings.php:656
942
  msgid "Point Types"
943
  msgstr "Clase de Puntos"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
946
  msgid "Select the point types that users can buy. You must select at least one!"
947
  msgstr ""
948
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
949
  "uno!"
950
 
951
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
952
  msgid "Login Template"
953
  msgstr "Plantilla de Ingreso"
954
 
955
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
956
  msgid "Content to show when a user is not logged in."
957
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
960
  msgid "Thank You Page"
961
  msgstr "Página de Agradecimiento"
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
964
- #: addon-buy-creds.php:668
965
  msgid "Custom URL"
966
  msgstr "URL Personalizada"
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
969
- #: addon-buy-creds.php:673
970
  msgid "Page"
971
  msgstr "Página"
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
974
  msgid "Cancellation Page"
975
  msgstr "Página de Cancelación"
976
 
977
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
978
  msgid "Show seperate log for %_plural% purchases."
979
  msgstr "Mostrar registro distinto para compras de %_plural%."
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
982
  msgid "Gifting"
983
  msgstr "Regalar"
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
986
  #, php-format
987
  msgid "Allow users to buy %_plural% for other users."
988
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
991
  #, php-format
992
  msgid "Allow users to buy %_plural% for content authors."
993
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
996
  #: hooks.php:3110
997
  msgid "Available Shortcodes"
998
  msgstr "Códigos cortos Disponibles"
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
1001
  #, php-format
1002
  msgid "%s Exchange Rate"
1003
  msgstr "Tipo de Cambio %s"
1004
 
1005
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
1006
  msgid "Save Exchange Rates"
1007
  msgstr "Guardar Tipo de Cambio"
1008
 
1009
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1010
  msgid "Exchange rate override saved"
1011
  msgstr "Anulación de de tipo de cambio guardado"
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1014
  msgid "Payment completed"
1015
  msgstr "Pago finalizado"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1018
  #, php-format
1019
  msgid "%s Payment Gateways"
1020
  msgstr "%s Pasarelas de Pago"
1021
 
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1023
- #: addon-buy-creds.php:1034
1024
  msgid "buyCRED Settings"
1025
  msgstr "Configuraciones de compraCRED"
1026
 
1027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1028
  msgid "Test Mode"
1029
  msgstr "Modo de Prueba"
1030
 
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1032
  msgid "Enabled"
1033
  msgstr "Habilitado"
1034
 
1035
  #. also, "Inhabilitar"
1036
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1037
  msgid "Disabled"
1038
  msgstr "Desactivado"
1039
 
1040
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1041
  msgid "Sandbox Mode"
1042
  msgstr "Modo Entorno Aislado"
1043
 
1044
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1045
  msgid "Enable for test purchases."
1046
  msgstr "Habilitar para compras de prueba."
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1049
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1050
  msgid "Update Settings"
1051
  msgstr "Actualizar Configuraciones"
1052
 
1053
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1054
  msgid "More Gateways"
1055
  msgstr "Mas Pasarelas"
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1058
- #: 666
1059
  msgid "Date"
1060
  msgstr "Fecha"
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1063
  msgid "Payed"
1064
  msgstr "Pagado"
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1067
  msgid "<strong>buy</strong>CRED Purchase Log"
1068
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1069
 
1070
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1071
  #: booking/mycred-eventespresso3.php:367
1072
  msgid "Gateway Settings"
1073
  msgstr "Configuraciones de la Pasarela de Pago"
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1076
- #: content/myCRED-addon-sell-content.php:1209
1077
  msgid "No purchases found"
1078
  msgstr "No se encontro ninguna compra"
1079
 
1080
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1081
- #: addon-buy-creds.php:1411
1082
  msgid "This Add-on needs to setup before you can use this shortcode."
1083
  msgstr ""
1084
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1085
  "corto (shortcode)."
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1088
- #: addon-buy-creds.php:1430
1089
  msgid "No gateways installed."
1090
  msgstr "Ningun pasarela de pago instalado."
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1093
- #: addon-buy-creds.php:1431
1094
  msgid "Gateway does not exist."
1095
  msgstr "Puerta de enlace no existe."
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1098
  msgid "Yourself"
1099
  msgstr "Tu mismo"
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1102
  msgid "No active gateways found."
1103
  msgstr "No se encuentra ningun puerta de enlace activo."
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1106
  msgid "The selected gateway is not active."
1107
  msgstr "La puerta de enlace seleccionada no esta activo."
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1110
  #, php-format
1111
  msgid "Buy with %gateway%"
1112
  msgstr "Compra con %gateway%"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1115
  #: content/myCRED-addon-sell-content.php:44
1116
  msgid "Buy Now"
1117
  msgstr "Compra Ahora"
1118
 
1119
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1120
  msgid "No users found"
1121
  msgstr "Ningun Usuario Encontrado"
1122
 
1123
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1124
  msgid "To"
1125
  msgstr "A"
1126
 
1127
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1128
  msgid "Select Amount"
1129
  msgstr "Selecciona la Cantidad"
1130
 
1131
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1132
  msgid "min."
1133
  msgstr "min."
1134
 
1135
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1136
  msgid "Select Gateway"
1137
  msgstr "Selecciona la Pasarela de Pago"
1138
 
1139
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1140
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1141
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1142
  #: php:35
1143
  msgid "Pay Now"
1144
  msgstr "Pagar Ahora"
1145
 
1146
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1147
  #: php:536
1148
  msgid "Cancel"
1149
  msgstr "Cancelar"
1150
 
1151
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1152
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1153
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1154
  msgid "Actions"
@@ -1190,12 +1190,12 @@ msgid "Cancel purchase"
1190
  msgstr "Cancelar la compra"
1191
 
1192
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1193
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1194
  msgid "required"
1195
  msgstr "necesario"
1196
 
1197
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1198
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1199
  msgid "optional"
1200
  msgstr "opcional"
1201
 
@@ -1761,7 +1761,7 @@ msgstr "Expire"
1761
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1762
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1763
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1764
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1765
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1766
  #: includes/importers/mycred-cubepoints.php:365
1767
  msgid "Point Type"
@@ -1773,7 +1773,7 @@ msgid "not yet used"
1773
  msgstr "todavia no utilizado"
1774
 
1775
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1776
- #: 395 ../modules/mycred-module-hooks.php:2507
1777
  msgid "Total"
1778
  msgstr "Total"
1779
 
@@ -1940,7 +1940,7 @@ msgid "Apply Coupon"
1940
  msgstr "Aplica el Cupón"
1941
 
1942
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1943
- #: notices/myCRED-addon-email-notices.php:1267
1944
  msgid "Email Notice"
1945
  msgstr "Aviso por Correo Electrónico"
1946
 
@@ -2225,8 +2225,8 @@ msgid "Sent To"
2225
  msgstr "Enviado A:"
2226
 
2227
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2228
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2229
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2230
  msgid "User"
2231
  msgstr "Usuario"
2232
 
@@ -2358,18 +2358,18 @@ msgstr "Esta notificación de correo electrónico esta activada."
2358
  msgid "Settings saved."
2359
  msgstr "Configuraciones Guardadas"
2360
 
2361
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2362
  msgid "Unsubscribe"
2363
  msgstr "Cancelar la Suscripción"
2364
 
2365
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2366
  msgid "There are no email notifications yet."
2367
  msgstr "Todavía no hay notificaciones de email."
2368
 
2369
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2370
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2371
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2372
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2373
  msgid "Current Balance"
2374
  msgstr "Saldo Actual"
2375
 
@@ -2801,8 +2801,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2801
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2802
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2803
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2804
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2805
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2806
  msgid "Button Label"
2807
  msgstr "Eqiqueta Asignada al Botón"
2808
 
@@ -2815,8 +2815,8 @@ msgstr "Botón de Pago"
2815
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2816
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2817
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2818
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2819
- #: sell-content.php:682
2820
  msgid "Price"
2821
  msgstr "Precio"
2822
 
@@ -2842,12 +2842,12 @@ msgid "Log"
2842
  msgstr "Registro"
2843
 
2844
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2845
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2846
  msgid "Log Entry"
2847
  msgstr "Entrada de Registro"
2848
 
2849
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2850
- #: content/myCRED-addon-sell-content.php:473
2851
  msgid "Templates"
2852
  msgstr "Plantillas"
2853
 
@@ -2937,7 +2937,7 @@ msgid "Reject"
2937
  msgstr "Rechazar"
2938
 
2939
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2940
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2941
  #: modules/mycred-module-settings.php:699
2942
  msgid "Delete"
2943
  msgstr "Borrar"
@@ -3456,44 +3456,44 @@ msgstr "Reparto de Utilidades"
3456
  msgid "Save Profit Share"
3457
  msgstr "Guardar Reparto de Utilidades"
3458
 
3459
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3460
  msgid "Profit Share override saved"
3461
  msgstr "Anulación de reparto de utilidades guardado"
3462
 
3463
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3464
  msgid "You can not buy this content."
3465
  msgstr "No puedes comprar este contenido."
3466
 
3467
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3468
  msgid "Error. Try Again"
3469
  msgstr "Error. Inténtelo de nuevo"
3470
 
3471
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3472
  msgid "No Payout. Just charge."
3473
  msgstr "No Desembolsar. Solo cobrar."
3474
 
3475
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3476
  msgid "Pay Content Author."
3477
  msgstr "Pagar al Autor del Contenido"
3478
 
3479
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3480
  #: overview.php:141 ../includes/mycred-overview.php:148
3481
  msgid "Sell Content"
3482
  msgstr "Vender Contenido"
3483
 
3484
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3485
  msgid "Post Types"
3486
  msgstr "Post Types"
3487
 
3488
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3489
  msgid "Comma separated list of post types that can be sold."
3490
  msgstr "Lista separada por comas de post types que se puede vender."
3491
 
3492
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3493
  msgid "Percentage to pay Author"
3494
  msgstr "Porcentaje que pagar al Autor"
3495
 
3496
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3497
  msgid ""
3498
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3499
  "authors are not paid."
@@ -3502,31 +3502,31 @@ msgstr ""
3502
  "si no se les paga a los autores."
3503
 
3504
  #. also, "por defecto" and "predeterminados"
3505
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3506
  msgid "Defaults"
3507
  msgstr "Predefinidos"
3508
 
3509
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3510
  msgid "Allow authors to change price."
3511
  msgstr "Permitir que los Autores cambien el precio."
3512
 
3513
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3514
  msgid "Allow authors to change button label."
3515
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3516
 
3517
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3518
  msgid "Purchases expire after"
3519
  msgstr "Compras caducan despues de"
3520
 
3521
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3522
  msgid "Use zero for permanent sales."
3523
  msgstr "Usa cero para ventas permanentes."
3524
 
3525
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3526
  msgid "For Visitors"
3527
  msgstr "Para Visitantes"
3528
 
3529
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3530
  #, php-format
3531
  msgid ""
3532
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3535,69 +3535,69 @@ msgstr ""
3535
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3536
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3537
 
3538
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3539
  msgid "For Members"
3540
  msgstr "Para Miembros"
3541
 
3542
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3543
- #: content/myCRED-addon-sell-content.php:516
3544
  #, php-format
3545
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3546
  msgstr ""
3547
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3548
  "realizar compras!"
3549
 
3550
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3551
  msgid "For members that can not afford to buy"
3552
  msgstr "Para los miembros que no tienen al alcance comprar"
3553
 
3554
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3555
  msgid "Log template for Purchases"
3556
  msgstr "Plantilla de registros para Compras"
3557
 
3558
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3559
  msgid "Log template for Sales"
3560
  msgstr "Plantilla de registros para Ventas"
3561
 
3562
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3563
  #, php-format
3564
  msgid "%s Sell This"
3565
  msgstr "%s Vende Esto"
3566
 
3567
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3568
  #, php-format
3569
  msgid "%s Sell Content needs to be setup before you can use this feature."
3570
  msgstr ""
3571
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3572
  "esta característica técnica."
3573
 
3574
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3575
  msgid "Setup add-on"
3576
  msgstr "Configurar Extensión"
3577
 
3578
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3579
  msgid "Lets do it"
3580
  msgstr "Vamos a hacerlo."
3581
 
3582
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3583
  #, php-format
3584
  msgid "Enable sale of this %s"
3585
  msgstr "Habilitar la venta de esto %s"
3586
 
3587
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3588
  msgid "Purchase expires after"
3589
  msgstr "Compra caduca despues de"
3590
 
3591
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3592
  msgid "Thank you for your purchase!"
3593
  msgstr "¡Gracias por su compra!"
3594
 
3595
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3596
- #: content/myCRED-addon-sell-content.php:1190
3597
  msgid "The following content is set for sale:"
3598
  msgstr "El siguiente contenido esta listo para la venta:"
3599
 
3600
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3601
  msgid "Purchased"
3602
  msgstr "Comprado"
3603
 
@@ -3663,17 +3663,17 @@ msgid "Total Spent: %s"
3663
  msgstr ""
3664
 
3665
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3666
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3667
  msgid "Today"
3668
  msgstr "Hoy"
3669
 
3670
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3671
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3672
  msgid "This Week"
3673
  msgstr "Esta Semana"
3674
 
3675
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3676
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3677
  msgid "This Month"
3678
  msgstr "Este Mes"
3679
 
@@ -3708,13 +3708,13 @@ msgstr ""
3708
  msgid "Gains in the last 10 days"
3709
  msgstr ""
3710
 
3711
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3712
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3713
  msgid "View"
3714
  msgstr ""
3715
 
3716
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3717
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3718
  msgid "No data found"
3719
  msgstr ""
3720
 
@@ -3971,19 +3971,19 @@ msgstr "Mostrar los límites de usuarios"
3971
  msgid "Welcome to %s %s"
3972
  msgstr "Bienvenido a %s %s"
3973
 
3974
- #: ../includes/mycred-admin.php:191
3975
  msgid "A log entry is required in order to adjust this users balance"
3976
  msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
3977
 
3978
- #: ../includes/mycred-admin.php:193
3979
  msgid "Users balance saved"
3980
  msgstr "Saldo de Usuario(s) Guardado"
3981
 
3982
- #: ../includes/mycred-admin.php:201
3983
  msgid "Users excluded"
3984
  msgstr "Usuarios Excluidos"
3985
 
3986
- #: ../includes/mycred-admin.php:206
3987
  msgid ""
3988
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3989
  "rate settings and update all premium payment gateways!"
@@ -3992,84 +3992,84 @@ msgstr ""
3992
  "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3993
  "de pago!"
3994
 
3995
- #: ../includes/mycred-admin.php:234
3996
  msgid "User is excluded"
3997
  msgstr "El Usuario ha sido excluido"
3998
 
3999
- #: ../includes/mycred-admin.php:239
4000
  msgid "Log Entry can not be empty"
4001
  msgstr "Entrada de registro no puede estar vacío"
4002
 
4003
- #: ../includes/mycred-admin.php:243
4004
  msgid "Amount can not be zero"
4005
  msgstr "La Cantidad no Puede ser Cero"
4006
 
4007
- #: ../includes/mycred-admin.php:264
4008
  msgid "Failed to update this uses balance."
4009
  msgstr "No se pudo actualizar el saldo de este usuario."
4010
 
4011
- #: ../includes/mycred-admin.php:385
4012
  msgid "Excluded"
4013
  msgstr "Excluido"
4014
 
4015
- #: ../includes/mycred-admin.php:406
4016
  msgid "Adjust"
4017
  msgstr "Modificar"
4018
 
4019
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
4020
  msgid "Edit Balance"
4021
  msgstr "Editar Saldo"
4022
 
4023
- #: ../includes/mycred-admin.php:463
4024
  msgid "Profile"
4025
  msgstr "Perfil"
4026
 
4027
- #: ../includes/mycred-admin.php:470
4028
  msgid "Extended Profile"
4029
  msgstr "Perfil Extendido"
4030
 
4031
- #: ../includes/mycred-admin.php:560
4032
  #, php-format
4033
  msgid "This user is excluded from using %s"
4034
  msgstr "Este usuario esta excluido de poder utilizar %s"
4035
 
4036
- #: ../includes/mycred-admin.php:583
4037
  msgid "Edit User"
4038
  msgstr "Editar Usuario"
4039
 
4040
- #: ../includes/mycred-admin.php:585
4041
  msgctxt "user"
4042
  msgid "Add New"
4043
  msgstr "Añadir Nuevo"
4044
 
4045
- #: ../includes/mycred-admin.php:587
4046
  msgctxt "user"
4047
  msgid "Add Existing"
4048
  msgstr "Añadir Existente"
4049
 
4050
- #: ../includes/mycred-admin.php:598
4051
  #, php-format
4052
  msgid "Total %s Accumulated"
4053
  msgstr "Total %s Acumulado"
4054
 
4055
- #: ../includes/mycred-admin.php:599
4056
  #, php-format
4057
  msgid "Total %s Spent"
4058
  msgstr "Total %s Gastado"
4059
 
4060
- #: ../includes/mycred-admin.php:610
4061
  msgid "View History"
4062
  msgstr "Ver Historial"
4063
 
4064
- #: ../includes/mycred-admin.php:611
4065
  msgid "Exclude User"
4066
  msgstr "Excluir Usuario"
4067
 
4068
- #: ../includes/mycred-admin.php:615
4069
  msgid "Adjust Balance"
4070
  msgstr "Ajustar Saldo"
4071
 
4072
- #: ../includes/mycred-admin.php:624
4073
  msgid ""
4074
  "Warning! Excluding this user will result in their balance being deleted "
4075
  "along with any entries currently in your log! This can not be undone!"
@@ -4077,20 +4077,20 @@ msgstr ""
4077
  "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
4078
  "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
4079
 
4080
- #: ../includes/mycred-admin.php:682
4081
  #, php-format
4082
  msgid "%singular% balance"
4083
  msgstr "%singular% saldo"
4084
 
4085
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4086
  msgid "Update Balance"
4087
  msgstr "Actualizar Saldo"
4088
 
4089
- #: ../includes/mycred-admin.php:753
4090
  msgid "ID"
4091
  msgstr "ID"
4092
 
4093
- #: ../includes/mycred-admin.php:759
4094
  msgid "A positive or negative value"
4095
  msgstr "Un valor positivo o negativo"
4096
 
@@ -4746,67 +4746,67 @@ msgstr ""
4746
  msgid "Install & Run"
4747
  msgstr "Instalar e ejecutar"
4748
 
4749
- #: ../includes/mycred-log.php:430
4750
  #, php-format
4751
  msgid "Showing %d %s"
4752
  msgstr "Mostrando %d %s"
4753
 
4754
  #. need more context: entrada or inscripción
4755
- #: ../includes/mycred-log.php:430
4756
  msgid "entry"
4757
  msgstr "entrada"
4758
 
4759
- #: ../includes/mycred-log.php:444
4760
  msgid "Go to the first page"
4761
  msgstr "Ir a la primera página"
4762
 
4763
- #: ../includes/mycred-log.php:451
4764
  msgid "Go to the previous page"
4765
  msgstr "Ir a la página anterior"
4766
 
4767
- #: ../includes/mycred-log.php:460
4768
  msgid "Current page"
4769
  msgstr "Página corriente"
4770
 
4771
- #: ../includes/mycred-log.php:466
4772
  #, php-format
4773
  msgctxt "mycred"
4774
  msgid "%1$s of %2$s"
4775
  msgstr "%1$s de %2$s"
4776
 
4777
- #: ../includes/mycred-log.php:470
4778
  msgid "Go to the next page"
4779
  msgstr "Ir a la página siguiente"
4780
 
4781
- #: ../includes/mycred-log.php:477
4782
  msgid "Go to the last page"
4783
  msgstr "Ir a la última página"
4784
 
4785
- #: ../includes/mycred-log.php:544
4786
  msgid "Show all references"
4787
  msgstr "Muestra todas las referencias"
4788
 
4789
- #: ../includes/mycred-log.php:557
4790
  msgid "User ID, Username, Email or Nicename"
4791
  msgstr ""
4792
 
4793
- #: ../includes/mycred-log.php:563
4794
  msgid "Show in order"
4795
  msgstr "Mostrar en Orden"
4796
 
4797
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4798
  msgid "Ascending"
4799
  msgstr "Ascendente"
4800
 
4801
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4802
  msgid "Descending"
4803
  msgstr "Descendente"
4804
 
4805
- #: ../includes/mycred-log.php:582
4806
  msgid "Filter"
4807
  msgstr "Filtro"
4808
 
4809
- #: ../includes/mycred-log.php:635
4810
  msgid ""
4811
  "Log entries are exported to a CSV file and depending on the number of "
4812
  "entries selected, the process may take a few seconds."
@@ -4814,38 +4814,38 @@ msgstr ""
4814
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4815
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4816
 
4817
- #: ../includes/mycred-log.php:639
4818
  msgid "No export options available."
4819
  msgstr "No hay opciones para exportar."
4820
 
4821
  #. need more context: entrada or inscripción
4822
- #: ../includes/mycred-log.php:668
4823
  msgid "Entry"
4824
  msgstr "Entrada"
4825
 
4826
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4827
  msgid "User Missing"
4828
  msgstr "Usuario Ausente"
4829
 
4830
- #: ../includes/mycred-log.php:839
4831
  msgid "No log entries found"
4832
  msgstr "Ninguna entrada de registro encontrada"
4833
 
4834
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4835
  msgid "Search Log"
4836
  msgstr "Busqueda de Registro"
4837
 
4838
  #. buscar las entradas en el registro
4839
- #: ../includes/mycred-log.php:855
4840
  msgid "search log entries"
4841
  msgstr "Búsqueda de las entradas de registro"
4842
 
4843
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4844
  #: modules/mycred-module-buddypress.php:249
4845
  msgid "All"
4846
  msgstr "Todo"
4847
 
4848
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4849
  msgid "Yesterday"
4850
  msgstr "Ayer"
4851
 
@@ -5089,7 +5089,7 @@ msgstr ""
5089
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5090
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5091
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5092
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5093
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5094
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5095
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5751,7 +5751,7 @@ msgstr ""
5751
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5752
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5753
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5754
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5755
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5756
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5757
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -6082,8 +6082,8 @@ msgstr "Entrada Actualizada"
6082
  msgid "Entries"
6083
  msgstr "Entradas"
6084
 
6085
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6086
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6087
  msgid "Export"
6088
  msgstr "Exportar"
6089
 
@@ -6102,35 +6102,35 @@ msgid ""
6102
  "Certain hooks and shortcodes will not work correctly!"
6103
  msgstr ""
6104
 
6105
- #: ../modules/mycred-module-log.php:565
6106
  msgid "Edit"
6107
  msgstr "Editar"
6108
 
6109
- #: ../modules/mycred-module-log.php:612
6110
  msgid "Time"
6111
  msgstr "Tiempo"
6112
 
6113
- #: ../modules/mycred-module-log.php:616
6114
  msgid "Current Log Entry"
6115
  msgstr "Entrada Actual de Registro"
6116
 
6117
- #: ../modules/mycred-module-log.php:618
6118
  msgid "The current saved log entry"
6119
  msgstr "La entrada guardada actual del registro"
6120
 
6121
- #: ../modules/mycred-module-log.php:621
6122
  msgid "Adjust Log Entry"
6123
  msgstr "Ajustar entrada de registro"
6124
 
6125
- #: ../modules/mycred-module-log.php:623
6126
  msgid "The new log entry"
6127
  msgstr "La nueva entrada de registro"
6128
 
6129
- #: ../modules/mycred-module-log.php:626
6130
  msgid "Update Log Entry"
6131
  msgstr "Actualiza la entrada de registro"
6132
 
6133
- #: ../modules/mycred-module-log.php:697
6134
  #, php-format
6135
  msgid "My %s History"
6136
  msgstr "Mi Historial de %s"
@@ -6832,12 +6832,12 @@ msgstr "Suscripciónes a commentarios"
6832
  msgid "Reward with %plural%"
6833
  msgstr "Premiar con %plural%"
6834
 
6835
- #: ../plugins/mycred-hook-sharethis.php:18
6836
  #, php-format
6837
  msgid "%plural% for Sharing"
6838
  msgstr "%plural% para Compartir"
6839
 
6840
- #: ../plugins/mycred-hook-sharethis.php:19
6841
  #, php-format
6842
  msgid ""
6843
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -6846,11 +6846,11 @@ msgstr ""
6846
  "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
6847
  "web atraves de sitio de los medios de comunicación social."
6848
 
6849
- #: ../plugins/mycred-hook-sharethis.php:232
6850
  msgid "Your ShareThis public key is not set."
6851
  msgstr "Tu llave publico de ShareThis no ha sido configurado."
6852
 
6853
- #: ../plugins/mycred-hook-sharethis.php:237
6854
  msgid "No ShareThis services detected. Please check your installation."
6855
  msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
6856
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:42:27 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_ES"
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr "%label% Historial"
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre"
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr "Gente genial"
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Procesando..."
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
59
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
  "¡Esto no se puede deshacer!"
61
 
62
+ #: ../mycred.php:679
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
67
  "¡Todas las entradas de registro perteneciendo al usuario seran "
68
  "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
+ #: ../mycred.php:680
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
  "deshacer!"
75
 
76
+ #: ../mycred.php:681
77
  msgid "Done!"
78
  msgstr "¡Realizado!"
79
 
80
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
81
  msgid "Close"
82
  msgstr "Cerrar"
83
 
84
+ #: ../mycred.php:683
85
  msgid "Export users %plural%"
86
  msgstr "Exportar usuarios %plural%"
87
 
88
+ #: ../mycred.php:684
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
+ #: ../mycred.php:700
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo del usuario"
98
 
99
+ #: ../mycred.php:718
100
  msgid "Edit Log Entry"
101
  msgstr "Edidar entrada de registro"
102
 
103
+ #: ../mycred.php:722
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
  "deshacer!"
108
 
109
+ #: ../mycred.php:723
110
  msgid "Log entry updated"
111
  msgstr "Entrada de registro actualizado"
112
 
113
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
126
+ #: ../mycred.php:825
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
197
  msgstr "haga clic para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:927
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
238
  msgstr "Insignia"
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
470
  msgstr "Estatus"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1296
474
  msgid "Save Changes"
475
  msgstr "Guardar Cambios"
476
 
541
  msgstr "Configurar pago en masa &_singular% para tus usuarios."
542
 
543
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
544
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
545
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
546
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
547
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
548
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
549
  msgid "Access Denied"
550
  msgstr "Acceso Denegado"
551
 
567
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
568
 
569
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
570
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
571
  msgid "Enable"
572
  msgstr "Habilitar"
573
 
693
  #. can also be "Plantilla de Bitácora"
694
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
695
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
696
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
697
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
698
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
699
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
700
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
752
  msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
753
 
754
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
755
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
756
  #: content.php:114
757
  msgid "Leave empty to use the default value."
758
  msgstr "Dejar vacio si va a utilizar el valor predefinido."
765
  msgid "Exclude from receiving interest"
766
  msgstr "Excluir de recibir interés"
767
 
768
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
769
  msgid "Compound interest rate saved."
770
  msgstr "Tipo de interés compuesto guardado."
771
 
772
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
773
  msgid "User excluded from receiving interest."
774
  msgstr "Usuario excluido la concesión de interés."
775
 
776
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
777
  msgid "User included in receiving interest."
778
  msgstr "Usuario permitido la concesión de interés."
779
 
782
  msgstr "%_plural% diarios"
783
 
784
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
785
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
786
  #: modules/mycred-module-log.php:277
787
  msgid "History"
788
  msgstr "Historial"
800
  msgstr "Pagar a los Usuarios"
801
 
802
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
803
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
804
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
805
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
806
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
807
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
808
  #: plugins/mycred-hook-affiliatewp.php:256
809
  msgid "Amount"
842
  msgid "Payment Gateways"
843
  msgstr "Pasarela de Pago"
844
 
845
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
846
  msgctxt "Post Type General Name"
847
  msgid "Pending Payments"
848
  msgstr "Pagos Pendientes"
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
851
  msgctxt "Post Type Singular Name"
852
  msgid "Pending Payment"
853
  msgstr "Pago Pendiente"
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
857
  msgid "Pending Payments"
858
  msgstr "Pagos Pendientes"
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
861
  msgid "Edit Pending Payment"
862
  msgstr "Editar Pago Pendiente"
863
 
864
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
865
+ #: addon-buy-creds.php:1752
866
  msgid "No pending payments found"
867
  msgstr "Ningun pago pendiente encontrado"
868
 
869
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
870
  msgid "Not found in Trash"
871
  msgstr "No ha sido encontrado en la Papelera"
872
 
873
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
874
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
875
  msgid "Transaction ID"
876
  msgstr "Identificación de la Transacción"
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
879
+ #: addon-buy-creds.php:1074
880
  msgid "Buyer"
881
  msgstr "Comprador"
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
884
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
885
  #: gateway.php:594
886
  msgid "Cost"
887
  msgstr "Coste"
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
890
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
891
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
892
  msgid "Gateway"
893
  msgstr "Pasarela"
894
 
895
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
896
  msgid "Type"
897
  msgstr "Clase"
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
900
  msgid "Pay Out"
901
  msgstr "Desembolso"
902
 
903
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
904
  msgid "buyCRED Purchase Log"
905
  msgstr "compraCRED Registro de Compras"
906
 
907
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
908
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
909
  msgid "Purchase Log"
910
  msgstr "Registro de Compras"
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
913
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
914
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
915
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
916
  msgid "Payments"
917
  msgstr "Pagos"
918
 
919
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
920
  msgid "Please login to purchase %_plural%"
921
  msgstr "Identifícate antes de comprar %_plural%"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
924
  #, php-format
925
  msgid "Gift purchase from %display_name%."
926
  msgstr "Regalo comprado de parte de %display_name%."
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
929
  #: addon-ranks.php:1084
930
  msgid "Minimum %plural%"
931
  msgstr "Minimo %_plural%"
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
934
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
935
  msgstr ""
936
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
937
  "a 1."
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
940
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
941
  #: module-settings.php:656
942
  msgid "Point Types"
943
  msgstr "Clase de Puntos"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
946
  msgid "Select the point types that users can buy. You must select at least one!"
947
  msgstr ""
948
  "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
949
  "uno!"
950
 
951
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
952
  msgid "Login Template"
953
  msgstr "Plantilla de Ingreso"
954
 
955
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
956
  msgid "Content to show when a user is not logged in."
957
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
960
  msgid "Thank You Page"
961
  msgstr "Página de Agradecimiento"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
964
+ #: addon-buy-creds.php:705
965
  msgid "Custom URL"
966
  msgstr "URL Personalizada"
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
969
+ #: addon-buy-creds.php:710
970
  msgid "Page"
971
  msgstr "Página"
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
974
  msgid "Cancellation Page"
975
  msgstr "Página de Cancelación"
976
 
977
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
978
  msgid "Show seperate log for %_plural% purchases."
979
  msgstr "Mostrar registro distinto para compras de %_plural%."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
982
  msgid "Gifting"
983
  msgstr "Regalar"
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
986
  #, php-format
987
  msgid "Allow users to buy %_plural% for other users."
988
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
991
  #, php-format
992
  msgid "Allow users to buy %_plural% for content authors."
993
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
996
  #: hooks.php:3110
997
  msgid "Available Shortcodes"
998
  msgstr "Códigos cortos Disponibles"
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
1001
  #, php-format
1002
  msgid "%s Exchange Rate"
1003
  msgstr "Tipo de Cambio %s"
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
1006
  msgid "Save Exchange Rates"
1007
  msgstr "Guardar Tipo de Cambio"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1010
  msgid "Exchange rate override saved"
1011
  msgstr "Anulación de de tipo de cambio guardado"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1014
  msgid "Payment completed"
1015
  msgstr "Pago finalizado"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1018
  #, php-format
1019
  msgid "%s Payment Gateways"
1020
  msgstr "%s Pasarelas de Pago"
1021
 
1022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1023
+ #: addon-buy-creds.php:1085
1024
  msgid "buyCRED Settings"
1025
  msgstr "Configuraciones de compraCRED"
1026
 
1027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1028
  msgid "Test Mode"
1029
  msgstr "Modo de Prueba"
1030
 
1031
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1032
  msgid "Enabled"
1033
  msgstr "Habilitado"
1034
 
1035
  #. also, "Inhabilitar"
1036
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1037
  msgid "Disabled"
1038
  msgstr "Desactivado"
1039
 
1040
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1041
  msgid "Sandbox Mode"
1042
  msgstr "Modo Entorno Aislado"
1043
 
1044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1045
  msgid "Enable for test purchases."
1046
  msgstr "Habilitar para compras de prueba."
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1049
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1050
  msgid "Update Settings"
1051
  msgstr "Actualizar Configuraciones"
1052
 
1053
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1054
  msgid "More Gateways"
1055
  msgstr "Mas Pasarelas"
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1058
+ #: 756
1059
  msgid "Date"
1060
  msgstr "Fecha"
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1063
  msgid "Payed"
1064
  msgstr "Pagado"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1067
  msgid "<strong>buy</strong>CRED Purchase Log"
1068
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1069
 
1070
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1071
  #: booking/mycred-eventespresso3.php:367
1072
  msgid "Gateway Settings"
1073
  msgstr "Configuraciones de la Pasarela de Pago"
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1076
+ #: content/myCRED-addon-sell-content.php:1210
1077
  msgid "No purchases found"
1078
  msgstr "No se encontro ninguna compra"
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1081
+ #: addon-buy-creds.php:1464
1082
  msgid "This Add-on needs to setup before you can use this shortcode."
1083
  msgstr ""
1084
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1085
  "corto (shortcode)."
1086
 
1087
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1088
+ #: addon-buy-creds.php:1483
1089
  msgid "No gateways installed."
1090
  msgstr "Ningun pasarela de pago instalado."
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1093
+ #: addon-buy-creds.php:1484
1094
  msgid "Gateway does not exist."
1095
  msgstr "Puerta de enlace no existe."
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1098
  msgid "Yourself"
1099
  msgstr "Tu mismo"
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1102
  msgid "No active gateways found."
1103
  msgstr "No se encuentra ningun puerta de enlace activo."
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1106
  msgid "The selected gateway is not active."
1107
  msgstr "La puerta de enlace seleccionada no esta activo."
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1110
  #, php-format
1111
  msgid "Buy with %gateway%"
1112
  msgstr "Compra con %gateway%"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1115
  #: content/myCRED-addon-sell-content.php:44
1116
  msgid "Buy Now"
1117
  msgstr "Compra Ahora"
1118
 
1119
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1120
  msgid "No users found"
1121
  msgstr "Ningun Usuario Encontrado"
1122
 
1123
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1124
  msgid "To"
1125
  msgstr "A"
1126
 
1127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1128
  msgid "Select Amount"
1129
  msgstr "Selecciona la Cantidad"
1130
 
1131
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1132
  msgid "min."
1133
  msgstr "min."
1134
 
1135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1136
  msgid "Select Gateway"
1137
  msgstr "Selecciona la Pasarela de Pago"
1138
 
1139
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1140
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1141
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1142
  #: php:35
1143
  msgid "Pay Now"
1144
  msgstr "Pagar Ahora"
1145
 
1146
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1147
  #: php:536
1148
  msgid "Cancel"
1149
  msgstr "Cancelar"
1150
 
1151
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1152
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1153
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1154
  msgid "Actions"
1190
  msgstr "Cancelar la compra"
1191
 
1192
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1193
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1194
  msgid "required"
1195
  msgstr "necesario"
1196
 
1197
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1198
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1199
  msgid "optional"
1200
  msgstr "opcional"
1201
 
1761
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1762
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1763
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1764
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1765
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1766
  #: includes/importers/mycred-cubepoints.php:365
1767
  msgid "Point Type"
1773
  msgstr "todavia no utilizado"
1774
 
1775
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1776
+ #: 416 ../modules/mycred-module-hooks.php:2507
1777
  msgid "Total"
1778
  msgstr "Total"
1779
 
1940
  msgstr "Aplica el Cupón"
1941
 
1942
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1943
+ #: notices/myCRED-addon-email-notices.php:1270
1944
  msgid "Email Notice"
1945
  msgstr "Aviso por Correo Electrónico"
1946
 
2225
  msgstr "Enviado A:"
2226
 
2227
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2228
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2229
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2230
  msgid "User"
2231
  msgstr "Usuario"
2232
 
2358
  msgid "Settings saved."
2359
  msgstr "Configuraciones Guardadas"
2360
 
2361
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2362
  msgid "Unsubscribe"
2363
  msgstr "Cancelar la Suscripción"
2364
 
2365
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2366
  msgid "There are no email notifications yet."
2367
  msgstr "Todavía no hay notificaciones de email."
2368
 
2369
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2370
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2371
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2372
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2373
  msgid "Current Balance"
2374
  msgstr "Saldo Actual"
2375
 
2801
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2802
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2803
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2804
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2805
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2806
  msgid "Button Label"
2807
  msgstr "Eqiqueta Asignada al Botón"
2808
 
2815
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2816
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2817
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2818
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2819
+ #: sell-content.php:683
2820
  msgid "Price"
2821
  msgstr "Precio"
2822
 
2842
  msgstr "Registro"
2843
 
2844
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2845
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2846
  msgid "Log Entry"
2847
  msgstr "Entrada de Registro"
2848
 
2849
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2850
+ #: content/myCRED-addon-sell-content.php:474
2851
  msgid "Templates"
2852
  msgstr "Plantillas"
2853
 
2937
  msgstr "Rechazar"
2938
 
2939
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2940
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2941
  #: modules/mycred-module-settings.php:699
2942
  msgid "Delete"
2943
  msgstr "Borrar"
3456
  msgid "Save Profit Share"
3457
  msgstr "Guardar Reparto de Utilidades"
3458
 
3459
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3460
  msgid "Profit Share override saved"
3461
  msgstr "Anulación de reparto de utilidades guardado"
3462
 
3463
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3464
  msgid "You can not buy this content."
3465
  msgstr "No puedes comprar este contenido."
3466
 
3467
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3468
  msgid "Error. Try Again"
3469
  msgstr "Error. Inténtelo de nuevo"
3470
 
3471
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3472
  msgid "No Payout. Just charge."
3473
  msgstr "No Desembolsar. Solo cobrar."
3474
 
3475
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3476
  msgid "Pay Content Author."
3477
  msgstr "Pagar al Autor del Contenido"
3478
 
3479
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3480
  #: overview.php:141 ../includes/mycred-overview.php:148
3481
  msgid "Sell Content"
3482
  msgstr "Vender Contenido"
3483
 
3484
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3485
  msgid "Post Types"
3486
  msgstr "Post Types"
3487
 
3488
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3489
  msgid "Comma separated list of post types that can be sold."
3490
  msgstr "Lista separada por comas de post types que se puede vender."
3491
 
3492
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3493
  msgid "Percentage to pay Author"
3494
  msgstr "Porcentaje que pagar al Autor"
3495
 
3496
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3497
  msgid ""
3498
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3499
  "authors are not paid."
3502
  "si no se les paga a los autores."
3503
 
3504
  #. also, "por defecto" and "predeterminados"
3505
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3506
  msgid "Defaults"
3507
  msgstr "Predefinidos"
3508
 
3509
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3510
  msgid "Allow authors to change price."
3511
  msgstr "Permitir que los Autores cambien el precio."
3512
 
3513
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3514
  msgid "Allow authors to change button label."
3515
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3516
 
3517
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3518
  msgid "Purchases expire after"
3519
  msgstr "Compras caducan despues de"
3520
 
3521
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3522
  msgid "Use zero for permanent sales."
3523
  msgstr "Usa cero para ventas permanentes."
3524
 
3525
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3526
  msgid "For Visitors"
3527
  msgstr "Para Visitantes"
3528
 
3529
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3530
  #, php-format
3531
  msgid ""
3532
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3535
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3536
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3537
 
3538
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3539
  msgid "For Members"
3540
  msgstr "Para Miembros"
3541
 
3542
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3543
+ #: content/myCRED-addon-sell-content.php:517
3544
  #, php-format
3545
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3546
  msgstr ""
3547
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3548
  "realizar compras!"
3549
 
3550
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3551
  msgid "For members that can not afford to buy"
3552
  msgstr "Para los miembros que no tienen al alcance comprar"
3553
 
3554
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3555
  msgid "Log template for Purchases"
3556
  msgstr "Plantilla de registros para Compras"
3557
 
3558
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3559
  msgid "Log template for Sales"
3560
  msgstr "Plantilla de registros para Ventas"
3561
 
3562
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3563
  #, php-format
3564
  msgid "%s Sell This"
3565
  msgstr "%s Vende Esto"
3566
 
3567
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3568
  #, php-format
3569
  msgid "%s Sell Content needs to be setup before you can use this feature."
3570
  msgstr ""
3571
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3572
  "esta característica técnica."
3573
 
3574
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3575
  msgid "Setup add-on"
3576
  msgstr "Configurar Extensión"
3577
 
3578
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3579
  msgid "Lets do it"
3580
  msgstr "Vamos a hacerlo."
3581
 
3582
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3583
  #, php-format
3584
  msgid "Enable sale of this %s"
3585
  msgstr "Habilitar la venta de esto %s"
3586
 
3587
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3588
  msgid "Purchase expires after"
3589
  msgstr "Compra caduca despues de"
3590
 
3591
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3592
  msgid "Thank you for your purchase!"
3593
  msgstr "¡Gracias por su compra!"
3594
 
3595
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3596
+ #: content/myCRED-addon-sell-content.php:1191
3597
  msgid "The following content is set for sale:"
3598
  msgstr "El siguiente contenido esta listo para la venta:"
3599
 
3600
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3601
  msgid "Purchased"
3602
  msgstr "Comprado"
3603
 
3663
  msgstr ""
3664
 
3665
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3666
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3667
  msgid "Today"
3668
  msgstr "Hoy"
3669
 
3670
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3671
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3672
  msgid "This Week"
3673
  msgstr "Esta Semana"
3674
 
3675
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3676
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3677
  msgid "This Month"
3678
  msgstr "Este Mes"
3679
 
3708
  msgid "Gains in the last 10 days"
3709
  msgstr ""
3710
 
3711
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3712
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3713
  msgid "View"
3714
  msgstr ""
3715
 
3716
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3717
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3718
  msgid "No data found"
3719
  msgstr ""
3720
 
3971
  msgid "Welcome to %s %s"
3972
  msgstr "Bienvenido a %s %s"
3973
 
3974
+ #: ../includes/mycred-admin.php:198
3975
  msgid "A log entry is required in order to adjust this users balance"
3976
  msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
3977
 
3978
+ #: ../includes/mycred-admin.php:200
3979
  msgid "Users balance saved"
3980
  msgstr "Saldo de Usuario(s) Guardado"
3981
 
3982
+ #: ../includes/mycred-admin.php:208
3983
  msgid "Users excluded"
3984
  msgstr "Usuarios Excluidos"
3985
 
3986
+ #: ../includes/mycred-admin.php:213
3987
  msgid ""
3988
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3989
  "rate settings and update all premium payment gateways!"
3992
  "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3993
  "de pago!"
3994
 
3995
+ #: ../includes/mycred-admin.php:242
3996
  msgid "User is excluded"
3997
  msgstr "El Usuario ha sido excluido"
3998
 
3999
+ #: ../includes/mycred-admin.php:247
4000
  msgid "Log Entry can not be empty"
4001
  msgstr "Entrada de registro no puede estar vacío"
4002
 
4003
+ #: ../includes/mycred-admin.php:251
4004
  msgid "Amount can not be zero"
4005
  msgstr "La Cantidad no Puede ser Cero"
4006
 
4007
+ #: ../includes/mycred-admin.php:272
4008
  msgid "Failed to update this uses balance."
4009
  msgstr "No se pudo actualizar el saldo de este usuario."
4010
 
4011
+ #: ../includes/mycred-admin.php:406
4012
  msgid "Excluded"
4013
  msgstr "Excluido"
4014
 
4015
+ #: ../includes/mycred-admin.php:427
4016
  msgid "Adjust"
4017
  msgstr "Modificar"
4018
 
4019
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
4020
  msgid "Edit Balance"
4021
  msgstr "Editar Saldo"
4022
 
4023
+ #: ../includes/mycred-admin.php:490
4024
  msgid "Profile"
4025
  msgstr "Perfil"
4026
 
4027
+ #: ../includes/mycred-admin.php:497
4028
  msgid "Extended Profile"
4029
  msgstr "Perfil Extendido"
4030
 
4031
+ #: ../includes/mycred-admin.php:591
4032
  #, php-format
4033
  msgid "This user is excluded from using %s"
4034
  msgstr "Este usuario esta excluido de poder utilizar %s"
4035
 
4036
+ #: ../includes/mycred-admin.php:615
4037
  msgid "Edit User"
4038
  msgstr "Editar Usuario"
4039
 
4040
+ #: ../includes/mycred-admin.php:617
4041
  msgctxt "user"
4042
  msgid "Add New"
4043
  msgstr "Añadir Nuevo"
4044
 
4045
+ #: ../includes/mycred-admin.php:619
4046
  msgctxt "user"
4047
  msgid "Add Existing"
4048
  msgstr "Añadir Existente"
4049
 
4050
+ #: ../includes/mycred-admin.php:630
4051
  #, php-format
4052
  msgid "Total %s Accumulated"
4053
  msgstr "Total %s Acumulado"
4054
 
4055
+ #: ../includes/mycred-admin.php:631
4056
  #, php-format
4057
  msgid "Total %s Spent"
4058
  msgstr "Total %s Gastado"
4059
 
4060
+ #: ../includes/mycred-admin.php:642
4061
  msgid "View History"
4062
  msgstr "Ver Historial"
4063
 
4064
+ #: ../includes/mycred-admin.php:643
4065
  msgid "Exclude User"
4066
  msgstr "Excluir Usuario"
4067
 
4068
+ #: ../includes/mycred-admin.php:647
4069
  msgid "Adjust Balance"
4070
  msgstr "Ajustar Saldo"
4071
 
4072
+ #: ../includes/mycred-admin.php:656
4073
  msgid ""
4074
  "Warning! Excluding this user will result in their balance being deleted "
4075
  "along with any entries currently in your log! This can not be undone!"
4077
  "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
4078
  "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
4079
 
4080
+ #: ../includes/mycred-admin.php:721
4081
  #, php-format
4082
  msgid "%singular% balance"
4083
  msgstr "%singular% saldo"
4084
 
4085
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4086
  msgid "Update Balance"
4087
  msgstr "Actualizar Saldo"
4088
 
4089
+ #: ../includes/mycred-admin.php:798
4090
  msgid "ID"
4091
  msgstr "ID"
4092
 
4093
+ #: ../includes/mycred-admin.php:804
4094
  msgid "A positive or negative value"
4095
  msgstr "Un valor positivo o negativo"
4096
 
4746
  msgid "Install & Run"
4747
  msgstr "Instalar e ejecutar"
4748
 
4749
+ #: ../includes/mycred-log.php:485
4750
  #, php-format
4751
  msgid "Showing %d %s"
4752
  msgstr "Mostrando %d %s"
4753
 
4754
  #. need more context: entrada or inscripción
4755
+ #: ../includes/mycred-log.php:485
4756
  msgid "entry"
4757
  msgstr "entrada"
4758
 
4759
+ #: ../includes/mycred-log.php:500
4760
  msgid "Go to the first page"
4761
  msgstr "Ir a la primera página"
4762
 
4763
+ #: ../includes/mycred-log.php:507
4764
  msgid "Go to the previous page"
4765
  msgstr "Ir a la página anterior"
4766
 
4767
+ #: ../includes/mycred-log.php:517
4768
  msgid "Current page"
4769
  msgstr "Página corriente"
4770
 
4771
+ #: ../includes/mycred-log.php:523
4772
  #, php-format
4773
  msgctxt "mycred"
4774
  msgid "%1$s of %2$s"
4775
  msgstr "%1$s de %2$s"
4776
 
4777
+ #: ../includes/mycred-log.php:527
4778
  msgid "Go to the next page"
4779
  msgstr "Ir a la página siguiente"
4780
 
4781
+ #: ../includes/mycred-log.php:534
4782
  msgid "Go to the last page"
4783
  msgstr "Ir a la última página"
4784
 
4785
+ #: ../includes/mycred-log.php:611
4786
  msgid "Show all references"
4787
  msgstr "Muestra todas las referencias"
4788
 
4789
+ #: ../includes/mycred-log.php:628
4790
  msgid "User ID, Username, Email or Nicename"
4791
  msgstr ""
4792
 
4793
+ #: ../includes/mycred-log.php:636
4794
  msgid "Show in order"
4795
  msgstr "Mostrar en Orden"
4796
 
4797
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4798
  msgid "Ascending"
4799
  msgstr "Ascendente"
4800
 
4801
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4802
  msgid "Descending"
4803
  msgstr "Descendente"
4804
 
4805
+ #: ../includes/mycred-log.php:658
4806
  msgid "Filter"
4807
  msgstr "Filtro"
4808
 
4809
+ #: ../includes/mycred-log.php:718
4810
  msgid ""
4811
  "Log entries are exported to a CSV file and depending on the number of "
4812
  "entries selected, the process may take a few seconds."
4814
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4815
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4816
 
4817
+ #: ../includes/mycred-log.php:725
4818
  msgid "No export options available."
4819
  msgstr "No hay opciones para exportar."
4820
 
4821
  #. need more context: entrada or inscripción
4822
+ #: ../includes/mycred-log.php:758
4823
  msgid "Entry"
4824
  msgstr "Entrada"
4825
 
4826
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4827
  msgid "User Missing"
4828
  msgstr "Usuario Ausente"
4829
 
4830
+ #: ../includes/mycred-log.php:958
4831
  msgid "No log entries found"
4832
  msgstr "Ninguna entrada de registro encontrada"
4833
 
4834
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4835
  msgid "Search Log"
4836
  msgstr "Busqueda de Registro"
4837
 
4838
  #. buscar las entradas en el registro
4839
+ #: ../includes/mycred-log.php:977
4840
  msgid "search log entries"
4841
  msgstr "Búsqueda de las entradas de registro"
4842
 
4843
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4844
  #: modules/mycred-module-buddypress.php:249
4845
  msgid "All"
4846
  msgstr "Todo"
4847
 
4848
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4849
  msgid "Yesterday"
4850
  msgstr "Ayer"
4851
 
5089
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5090
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5091
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5092
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5093
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5094
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5095
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5751
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5752
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5753
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5754
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5755
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5756
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5757
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
6082
  msgid "Entries"
6083
  msgstr "Entradas"
6084
 
6085
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6086
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6087
  msgid "Export"
6088
  msgstr "Exportar"
6089
 
6102
  "Certain hooks and shortcodes will not work correctly!"
6103
  msgstr ""
6104
 
6105
+ #: ../modules/mycred-module-log.php:563
6106
  msgid "Edit"
6107
  msgstr "Editar"
6108
 
6109
+ #: ../modules/mycred-module-log.php:610
6110
  msgid "Time"
6111
  msgstr "Tiempo"
6112
 
6113
+ #: ../modules/mycred-module-log.php:614
6114
  msgid "Current Log Entry"
6115
  msgstr "Entrada Actual de Registro"
6116
 
6117
+ #: ../modules/mycred-module-log.php:616
6118
  msgid "The current saved log entry"
6119
  msgstr "La entrada guardada actual del registro"
6120
 
6121
+ #: ../modules/mycred-module-log.php:619
6122
  msgid "Adjust Log Entry"
6123
  msgstr "Ajustar entrada de registro"
6124
 
6125
+ #: ../modules/mycred-module-log.php:621
6126
  msgid "The new log entry"
6127
  msgstr "La nueva entrada de registro"
6128
 
6129
+ #: ../modules/mycred-module-log.php:624
6130
  msgid "Update Log Entry"
6131
  msgstr "Actualiza la entrada de registro"
6132
 
6133
+ #: ../modules/mycred-module-log.php:695
6134
  #, php-format
6135
  msgid "My %s History"
6136
  msgstr "Mi Historial de %s"
6832
  msgid "Reward with %plural%"
6833
  msgstr "Premiar con %plural%"
6834
 
6835
+ #: ../plugins/mycred-hook-sharethis.php:19
6836
  #, php-format
6837
  msgid "%plural% for Sharing"
6838
  msgstr "%plural% para Compartir"
6839
 
6840
+ #: ../plugins/mycred-hook-sharethis.php:20
6841
  #, php-format
6842
  msgid ""
6843
  "Awards %_plural% for users sharing / liking your website content to popular "
6846
  "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
6847
  "web atraves de sitio de los medios de comunicación social."
6848
 
6849
+ #: ../plugins/mycred-hook-sharethis.php:257
6850
  msgid "Your ShareThis public key is not set."
6851
  msgstr "Tu llave publico de ShareThis no ha sido configurado."
6852
 
6853
+ #: ../plugins/mycred-hook-sharethis.php:262
6854
  msgid "No ShareThis services detected. Please check your installation."
6855
  msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
6856
 
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:01:56 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -25,33 +25,33 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_VE"
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr "%lavel% Historial"
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre"
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr "Gente genial"
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Procesando..."
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
@@ -59,7 +59,7 @@ msgstr ""
59
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
  "¡Esto no se puede deshacer!"
61
 
62
- #: ../mycred.php:663
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
@@ -67,63 +67,63 @@ msgstr ""
67
  "¡Todas las entradas de registro perteneciendo al usuario seran "
68
  "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
- #: ../mycred.php:664
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
  "deshacer!"
75
 
76
- #: ../mycred.php:665
77
  msgid "Done!"
78
  msgstr "¡Realizado!"
79
 
80
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
81
  msgid "Close"
82
  msgstr "Cerrar"
83
 
84
- #: ../mycred.php:667
85
  msgid "Export users %plural%"
86
  msgstr "Exportar usuarios %plural%"
87
 
88
- #: ../mycred.php:668
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
- #: ../mycred.php:684
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo del usuario"
98
 
99
- #: ../mycred.php:702
100
  msgid "Edit Log Entry"
101
  msgstr "Edidar entrada de registro"
102
 
103
- #: ../mycred.php:706
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
  "deshacer!"
108
 
109
- #: ../mycred.php:707
110
  msgid "Log entry updated"
111
  msgstr "Entrada de registro actualizado"
112
 
113
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
126
- #: ../mycred.php:803
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
@@ -170,8 +170,8 @@ msgid "Once per day (reset at midnight)"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -197,7 +197,7 @@ msgid "click to open"
197
  msgstr "haga clic para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
- #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
@@ -238,7 +238,7 @@ msgid "Badge"
238
  msgstr ""
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
@@ -470,7 +470,7 @@ msgid "Status"
470
  msgstr "Estatus"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
- #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr ""
476
 
@@ -536,11 +536,11 @@ msgid "Setup mass %_singular% payouts for your users."
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
540
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
541
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acceso Denegado"
546
 
@@ -562,7 +562,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
562
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Activar"
568
 
@@ -686,8 +686,8 @@ msgstr "Desembolso"
686
  #. can also be "Plantilla de Bitácora"
687
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
688
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
689
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
690
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
691
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
692
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
693
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -745,7 +745,7 @@ msgid "This user role is excluded from receiving interest on this balance."
745
  msgstr ""
746
 
747
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
748
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
749
  #: content.php:114
750
  msgid "Leave empty to use the default value."
751
  msgstr ""
@@ -758,15 +758,15 @@ msgstr ""
758
  msgid "Exclude from receiving interest"
759
  msgstr ""
760
 
761
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
762
  msgid "Compound interest rate saved."
763
  msgstr ""
764
 
765
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
766
  msgid "User excluded from receiving interest."
767
  msgstr ""
768
 
769
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
770
  msgid "User included in receiving interest."
771
  msgstr ""
772
 
@@ -775,7 +775,7 @@ msgid "Daily %_plural%"
775
  msgstr "%_plural% diarios"
776
 
777
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
778
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
779
  #: modules/mycred-module-log.php:277
780
  msgid "History"
781
  msgstr "Historial"
@@ -793,10 +793,10 @@ msgid "Pay Users"
793
  msgstr "Pagar a los Usuarios"
794
 
795
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
796
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
797
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
798
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
799
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
800
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
801
  #: plugins/mycred-hook-affiliatewp.php:256
802
  msgid "Amount"
@@ -835,311 +835,311 @@ msgstr ""
835
  msgid "Payment Gateways"
836
  msgstr "Pasarela de Pago"
837
 
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
839
  msgctxt "Post Type General Name"
840
  msgid "Pending Payments"
841
  msgstr ""
842
 
843
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
844
  msgctxt "Post Type Singular Name"
845
  msgid "Pending Payment"
846
  msgstr ""
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
849
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
850
  msgid "Pending Payments"
851
  msgstr ""
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
854
  msgid "Edit Pending Payment"
855
  msgstr ""
856
 
857
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
858
- #: addon-buy-creds.php:1699
859
  msgid "No pending payments found"
860
  msgstr ""
861
 
862
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
863
  msgid "Not found in Trash"
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
868
  msgid "Transaction ID"
869
  msgstr "Identificación de la Transacción"
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
872
- #: addon-buy-creds.php:1025
873
  msgid "Buyer"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
877
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
878
  #: gateway.php:594
879
  msgid "Cost"
880
  msgstr "Costo"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
883
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
884
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
885
  msgid "Gateway"
886
  msgstr "Pasarela"
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
889
  msgid "Type"
890
  msgstr ""
891
 
892
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
893
  msgid "Pay Out"
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
897
  msgid "buyCRED Purchase Log"
898
  msgstr "compraCRED Registro de Compras"
899
 
900
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
901
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
902
  msgid "Purchase Log"
903
  msgstr "Registro de Compras"
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
906
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
907
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
908
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
909
  msgid "Payments"
910
  msgstr "Pagos"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
913
  msgid "Please login to purchase %_plural%"
914
  msgstr "Identifícate antes de comprar %_plural%"
915
 
916
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
917
  #, php-format
918
  msgid "Gift purchase from %display_name%."
919
  msgstr "Regalo comprado de parte de %display_name%."
920
 
921
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
922
  #: addon-ranks.php:1084
923
  msgid "Minimum %plural%"
924
  msgstr "Minimo %_plural%"
925
 
926
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
927
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
928
  msgstr ""
929
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
930
  "a 1."
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
933
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
934
  #: module-settings.php:656
935
  msgid "Point Types"
936
  msgstr "Tipo de Puntos"
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
939
  msgid "Select the point types that users can buy. You must select at least one!"
940
  msgstr ""
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
943
  msgid "Login Template"
944
  msgstr "Plantilla de Ingreso"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
947
  msgid "Content to show when a user is not logged in."
948
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
951
  msgid "Thank You Page"
952
  msgstr "Página de Agradecimiento"
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
955
- #: addon-buy-creds.php:668
956
  msgid "Custom URL"
957
  msgstr "URL Personalizada"
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
960
- #: addon-buy-creds.php:673
961
  msgid "Page"
962
  msgstr "Página"
963
 
964
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
965
  msgid "Cancellation Page"
966
  msgstr "Página de Cancelación"
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
969
  msgid "Show seperate log for %_plural% purchases."
970
  msgstr "Mostrar registro distinto para compras de %_plural%."
971
 
972
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
973
  msgid "Gifting"
974
  msgstr "Regalar"
975
 
976
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for other users."
979
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
982
  #, php-format
983
  msgid "Allow users to buy %_plural% for content authors."
984
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
987
  #: hooks.php:3110
988
  msgid "Available Shortcodes"
989
  msgstr "Códigos cortos Disponibles"
990
 
991
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
992
  #, php-format
993
  msgid "%s Exchange Rate"
994
  msgstr ""
995
 
996
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
997
  msgid "Save Exchange Rates"
998
  msgstr ""
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1001
  msgid "Exchange rate override saved"
1002
  msgstr ""
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1005
  msgid "Payment completed"
1006
  msgstr ""
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1009
  #, php-format
1010
  msgid "%s Payment Gateways"
1011
  msgstr "%s Pasarelas de Pago"
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1014
- #: addon-buy-creds.php:1034
1015
  msgid "buyCRED Settings"
1016
  msgstr "Configuraciones de compraCRED"
1017
 
1018
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1019
  msgid "Test Mode"
1020
  msgstr "Modo de Prueba"
1021
 
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1023
  msgid "Enabled"
1024
  msgstr "Habilitado"
1025
 
1026
  #. also, "Inhabilitar"
1027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1028
  msgid "Disabled"
1029
  msgstr "Deshactivado"
1030
 
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1032
  msgid "Sandbox Mode"
1033
  msgstr "Modo Entorno Aislado"
1034
 
1035
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1036
  msgid "Enable for test purchases."
1037
  msgstr "Habilitar para compras de prueba."
1038
 
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1040
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1041
  msgid "Update Settings"
1042
  msgstr "Actualizar Configuraciones"
1043
 
1044
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1045
  msgid "More Gateways"
1046
  msgstr ""
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1049
- #: 666
1050
  msgid "Date"
1051
  msgstr "Fecha"
1052
 
1053
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1054
  msgid "Payed"
1055
  msgstr "Pagado"
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1058
  msgid "<strong>buy</strong>CRED Purchase Log"
1059
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1060
 
1061
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1062
  #: booking/mycred-eventespresso3.php:367
1063
  msgid "Gateway Settings"
1064
  msgstr "Configuraciones de la Pasarela de Pago"
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1067
- #: content/myCRED-addon-sell-content.php:1209
1068
  msgid "No purchases found"
1069
  msgstr "No se encontro ninguna compra"
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1072
- #: addon-buy-creds.php:1411
1073
  msgid "This Add-on needs to setup before you can use this shortcode."
1074
  msgstr ""
1075
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1076
  "corto (shortcode)."
1077
 
1078
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1079
- #: addon-buy-creds.php:1430
1080
  msgid "No gateways installed."
1081
  msgstr "Ningun pasarela de pago instalado."
1082
 
1083
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1084
- #: addon-buy-creds.php:1431
1085
  msgid "Gateway does not exist."
1086
  msgstr "Puerta de enlace no existe."
1087
 
1088
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1089
  msgid "Yourself"
1090
  msgstr "Tu mismo"
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1093
  msgid "No active gateways found."
1094
  msgstr "No se encuentra ningun puerta de enlace activo."
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1097
  msgid "The selected gateway is not active."
1098
  msgstr "La puerta de enlace seleccionada no esta activo."
1099
 
1100
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1101
  #, php-format
1102
  msgid "Buy with %gateway%"
1103
  msgstr "Compra con %gateway%"
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1106
  #: content/myCRED-addon-sell-content.php:44
1107
  msgid "Buy Now"
1108
  msgstr "Compra Ahora"
1109
 
1110
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1111
  msgid "No users found"
1112
  msgstr "Ningun Usuario Encontrado"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1115
  msgid "To"
1116
  msgstr "A"
1117
 
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1119
  msgid "Select Amount"
1120
  msgstr "Selecciona la Cantidad"
1121
 
1122
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1123
  msgid "min."
1124
  msgstr "min."
1125
 
1126
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1127
  msgid "Select Gateway"
1128
  msgstr "Selecciona la Pasarela de Pago"
1129
 
1130
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1131
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1132
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1133
  #: php:35
1134
  msgid "Pay Now"
1135
  msgstr "Pagar Ahora"
1136
 
1137
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1138
  #: php:536
1139
  msgid "Cancel"
1140
  msgstr "Cancelar"
1141
 
1142
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1143
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1144
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1145
  msgid "Actions"
@@ -1181,12 +1181,12 @@ msgid "Cancel purchase"
1181
  msgstr "Cancelar la compra"
1182
 
1183
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1184
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1185
  msgid "required"
1186
  msgstr "necesario"
1187
 
1188
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1189
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1190
  msgid "optional"
1191
  msgstr "opcional"
1192
 
@@ -1752,7 +1752,7 @@ msgstr "Expire"
1752
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1753
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1754
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1755
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1756
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1757
  #: includes/importers/mycred-cubepoints.php:365
1758
  msgid "Point Type"
@@ -1764,7 +1764,7 @@ msgid "not yet used"
1764
  msgstr "todavia no utilizado"
1765
 
1766
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1767
- #: 395 ../modules/mycred-module-hooks.php:2507
1768
  msgid "Total"
1769
  msgstr "Total"
1770
 
@@ -1931,7 +1931,7 @@ msgid "Apply Coupon"
1931
  msgstr "Aplica el Cupón"
1932
 
1933
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1934
- #: notices/myCRED-addon-email-notices.php:1267
1935
  msgid "Email Notice"
1936
  msgstr "Aviso por Correo Electrónico"
1937
 
@@ -2212,8 +2212,8 @@ msgid "Sent To"
2212
  msgstr "Enviado A:"
2213
 
2214
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2215
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2216
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2217
  msgid "User"
2218
  msgstr "Usuario"
2219
 
@@ -2345,18 +2345,18 @@ msgstr "Esta notificación de correo electrónico esta activada."
2345
  msgid "Settings saved."
2346
  msgstr ""
2347
 
2348
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2349
  msgid "Unsubscribe"
2350
  msgstr ""
2351
 
2352
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2353
  msgid "There are no email notifications yet."
2354
  msgstr ""
2355
 
2356
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2357
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2358
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2359
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2360
  msgid "Current Balance"
2361
  msgstr "Saldo Actual"
2362
 
@@ -2788,8 +2788,8 @@ msgstr "El titulo a mostrar en la factura y en los registros."
2788
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2791
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2792
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2793
  msgid "Button Label"
2794
  msgstr "Eqiqueta Asignada al Botón"
2795
 
@@ -2802,8 +2802,8 @@ msgstr "Botón de Pago"
2802
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2803
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2804
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2805
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2806
- #: sell-content.php:682
2807
  msgid "Price"
2808
  msgstr "Precio"
2809
 
@@ -2829,12 +2829,12 @@ msgid "Log"
2829
  msgstr "Registro"
2830
 
2831
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2832
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2833
  msgid "Log Entry"
2834
  msgstr "Entrada de Registro"
2835
 
2836
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2837
- #: content/myCRED-addon-sell-content.php:473
2838
  msgid "Templates"
2839
  msgstr "Plantillas"
2840
 
@@ -2924,7 +2924,7 @@ msgid "Reject"
2924
  msgstr "Rechazar"
2925
 
2926
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2927
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2928
  #: modules/mycred-module-settings.php:699
2929
  msgid "Delete"
2930
  msgstr "Borrar"
@@ -3443,44 +3443,44 @@ msgstr ""
3443
  msgid "Save Profit Share"
3444
  msgstr ""
3445
 
3446
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3447
  msgid "Profit Share override saved"
3448
  msgstr ""
3449
 
3450
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3451
  msgid "You can not buy this content."
3452
  msgstr "No puedes comprar este contenido."
3453
 
3454
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3455
  msgid "Error. Try Again"
3456
  msgstr "Error. Inténtelo de nuevo"
3457
 
3458
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3459
  msgid "No Payout. Just charge."
3460
  msgstr "No Desembolsar. Solo cobrar."
3461
 
3462
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3463
  msgid "Pay Content Author."
3464
  msgstr "Pagar al Autor del Contenido"
3465
 
3466
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3467
  #: overview.php:141 ../includes/mycred-overview.php:148
3468
  msgid "Sell Content"
3469
  msgstr "Vender Contenido"
3470
 
3471
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3472
  msgid "Post Types"
3473
  msgstr "Post Types"
3474
 
3475
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3476
  msgid "Comma separated list of post types that can be sold."
3477
  msgstr "Lista separada por comas de post types que se puede vender."
3478
 
3479
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3480
  msgid "Percentage to pay Author"
3481
  msgstr "Porcentaje que pagar al Autor"
3482
 
3483
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3484
  msgid ""
3485
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3486
  "authors are not paid."
@@ -3489,31 +3489,31 @@ msgstr ""
3489
  "si no se les paga a los autores."
3490
 
3491
  #. also, "por defecto" and "predeterminados"
3492
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3493
  msgid "Defaults"
3494
  msgstr "Predefinidos"
3495
 
3496
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3497
  msgid "Allow authors to change price."
3498
  msgstr "Permitir que los Autores cambien el precio."
3499
 
3500
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3501
  msgid "Allow authors to change button label."
3502
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3503
 
3504
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3505
  msgid "Purchases expire after"
3506
  msgstr "Compras caducan despues de"
3507
 
3508
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3509
  msgid "Use zero for permanent sales."
3510
  msgstr "Usa cero para ventas permanentes."
3511
 
3512
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3513
  msgid "For Visitors"
3514
  msgstr ""
3515
 
3516
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3517
  #, php-format
3518
  msgid ""
3519
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3522,69 +3522,69 @@ msgstr ""
3522
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3523
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3524
 
3525
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3526
  msgid "For Members"
3527
  msgstr ""
3528
 
3529
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3530
- #: content/myCRED-addon-sell-content.php:516
3531
  #, php-format
3532
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3533
  msgstr ""
3534
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3535
  "realizar compras!"
3536
 
3537
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3538
  msgid "For members that can not afford to buy"
3539
  msgstr ""
3540
 
3541
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3542
  msgid "Log template for Purchases"
3543
  msgstr "Plantilla de registros para Compras"
3544
 
3545
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3546
  msgid "Log template for Sales"
3547
  msgstr "Plantilla de registros para Ventas"
3548
 
3549
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3550
  #, php-format
3551
  msgid "%s Sell This"
3552
  msgstr "%s Vende Esto"
3553
 
3554
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3555
  #, php-format
3556
  msgid "%s Sell Content needs to be setup before you can use this feature."
3557
  msgstr ""
3558
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3559
  "esta característica técnica."
3560
 
3561
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3562
  msgid "Setup add-on"
3563
  msgstr "Configurar Extensión"
3564
 
3565
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3566
  msgid "Lets do it"
3567
  msgstr "Vamos a hacerlo."
3568
 
3569
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3570
  #, php-format
3571
  msgid "Enable sale of this %s"
3572
  msgstr ""
3573
 
3574
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3575
  msgid "Purchase expires after"
3576
  msgstr "Compra caduca despues de"
3577
 
3578
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3579
  msgid "Thank you for your purchase!"
3580
  msgstr "¡Gracias por su compra!"
3581
 
3582
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3583
- #: content/myCRED-addon-sell-content.php:1190
3584
  msgid "The following content is set for sale:"
3585
  msgstr "El siguiente contenido esta listo para la venta:"
3586
 
3587
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3588
  msgid "Purchased"
3589
  msgstr "Comprado"
3590
 
@@ -3650,17 +3650,17 @@ msgid "Total Spent: %s"
3650
  msgstr ""
3651
 
3652
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3653
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3654
  msgid "Today"
3655
  msgstr "Hoy"
3656
 
3657
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3658
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3659
  msgid "This Week"
3660
  msgstr "Esta Semana"
3661
 
3662
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3663
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3664
  msgid "This Month"
3665
  msgstr "Este Mes"
3666
 
@@ -3695,13 +3695,13 @@ msgstr ""
3695
  msgid "Gains in the last 10 days"
3696
  msgstr ""
3697
 
3698
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3699
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3700
  msgid "View"
3701
  msgstr ""
3702
 
3703
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3704
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3705
  msgid "No data found"
3706
  msgstr ""
3707
 
@@ -3958,121 +3958,121 @@ msgstr "Mostrar los límites de usuarios"
3958
  msgid "Welcome to %s %s"
3959
  msgstr "Bienvenido a %s %s"
3960
 
3961
- #: ../includes/mycred-admin.php:191
3962
  msgid "A log entry is required in order to adjust this users balance"
3963
  msgstr ""
3964
 
3965
- #: ../includes/mycred-admin.php:193
3966
  msgid "Users balance saved"
3967
  msgstr ""
3968
 
3969
- #: ../includes/mycred-admin.php:201
3970
  msgid "Users excluded"
3971
  msgstr ""
3972
 
3973
- #: ../includes/mycred-admin.php:206
3974
  msgid ""
3975
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3976
  "rate settings and update all premium payment gateways!"
3977
  msgstr ""
3978
 
3979
- #: ../includes/mycred-admin.php:234
3980
  msgid "User is excluded"
3981
  msgstr "El Usuario ha sido excluido"
3982
 
3983
- #: ../includes/mycred-admin.php:239
3984
  msgid "Log Entry can not be empty"
3985
  msgstr "Entrada de registro no puede estar vacío"
3986
 
3987
- #: ../includes/mycred-admin.php:243
3988
  msgid "Amount can not be zero"
3989
  msgstr "La Cantidad no Puede ser Cero"
3990
 
3991
- #: ../includes/mycred-admin.php:264
3992
  msgid "Failed to update this uses balance."
3993
  msgstr "No se pudo actualizar el saldo de este usuario."
3994
 
3995
- #: ../includes/mycred-admin.php:385
3996
  msgid "Excluded"
3997
  msgstr "Excluido"
3998
 
3999
- #: ../includes/mycred-admin.php:406
4000
  msgid "Adjust"
4001
  msgstr "Modificar"
4002
 
4003
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
4004
  msgid "Edit Balance"
4005
  msgstr ""
4006
 
4007
- #: ../includes/mycred-admin.php:463
4008
  msgid "Profile"
4009
  msgstr ""
4010
 
4011
- #: ../includes/mycred-admin.php:470
4012
  msgid "Extended Profile"
4013
  msgstr ""
4014
 
4015
- #: ../includes/mycred-admin.php:560
4016
  #, php-format
4017
  msgid "This user is excluded from using %s"
4018
  msgstr ""
4019
 
4020
- #: ../includes/mycred-admin.php:583
4021
  msgid "Edit User"
4022
  msgstr ""
4023
 
4024
- #: ../includes/mycred-admin.php:585
4025
  msgctxt "user"
4026
  msgid "Add New"
4027
  msgstr ""
4028
 
4029
- #: ../includes/mycred-admin.php:587
4030
  msgctxt "user"
4031
  msgid "Add Existing"
4032
  msgstr ""
4033
 
4034
- #: ../includes/mycred-admin.php:598
4035
  #, php-format
4036
  msgid "Total %s Accumulated"
4037
  msgstr ""
4038
 
4039
- #: ../includes/mycred-admin.php:599
4040
  #, php-format
4041
  msgid "Total %s Spent"
4042
  msgstr ""
4043
 
4044
- #: ../includes/mycred-admin.php:610
4045
  msgid "View History"
4046
  msgstr ""
4047
 
4048
- #: ../includes/mycred-admin.php:611
4049
  msgid "Exclude User"
4050
  msgstr ""
4051
 
4052
- #: ../includes/mycred-admin.php:615
4053
  msgid "Adjust Balance"
4054
  msgstr ""
4055
 
4056
- #: ../includes/mycred-admin.php:624
4057
  msgid ""
4058
  "Warning! Excluding this user will result in their balance being deleted "
4059
  "along with any entries currently in your log! This can not be undone!"
4060
  msgstr ""
4061
 
4062
- #: ../includes/mycred-admin.php:682
4063
  #, php-format
4064
  msgid "%singular% balance"
4065
  msgstr "%singular% saldo"
4066
 
4067
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4068
  msgid "Update Balance"
4069
  msgstr "Actualizar Saldo"
4070
 
4071
- #: ../includes/mycred-admin.php:753
4072
  msgid "ID"
4073
  msgstr "ID"
4074
 
4075
- #: ../includes/mycred-admin.php:759
4076
  msgid "A positive or negative value"
4077
  msgstr "Un valor positivo o negativo"
4078
 
@@ -4725,67 +4725,67 @@ msgstr ""
4725
  msgid "Install & Run"
4726
  msgstr "Instalar e ejecutar"
4727
 
4728
- #: ../includes/mycred-log.php:430
4729
  #, php-format
4730
  msgid "Showing %d %s"
4731
  msgstr "Mostrando %d %s"
4732
 
4733
  #. need more context: entrada or inscripción
4734
- #: ../includes/mycred-log.php:430
4735
  msgid "entry"
4736
  msgstr "entrada"
4737
 
4738
- #: ../includes/mycred-log.php:444
4739
  msgid "Go to the first page"
4740
  msgstr "Ir a la primera página"
4741
 
4742
- #: ../includes/mycred-log.php:451
4743
  msgid "Go to the previous page"
4744
  msgstr "Ir a la página anterior"
4745
 
4746
- #: ../includes/mycred-log.php:460
4747
  msgid "Current page"
4748
  msgstr "Página corriente"
4749
 
4750
- #: ../includes/mycred-log.php:466
4751
  #, php-format
4752
  msgctxt "mycred"
4753
  msgid "%1$s of %2$s"
4754
  msgstr ""
4755
 
4756
- #: ../includes/mycred-log.php:470
4757
  msgid "Go to the next page"
4758
  msgstr "Ir a la página siguiente"
4759
 
4760
- #: ../includes/mycred-log.php:477
4761
  msgid "Go to the last page"
4762
  msgstr "Ir a la última página"
4763
 
4764
- #: ../includes/mycred-log.php:544
4765
  msgid "Show all references"
4766
  msgstr "Muestra todas las referencias"
4767
 
4768
- #: ../includes/mycred-log.php:557
4769
  msgid "User ID, Username, Email or Nicename"
4770
  msgstr ""
4771
 
4772
- #: ../includes/mycred-log.php:563
4773
  msgid "Show in order"
4774
  msgstr "Mostrar en Orden"
4775
 
4776
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4777
  msgid "Ascending"
4778
  msgstr "Ascendente"
4779
 
4780
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4781
  msgid "Descending"
4782
  msgstr "Descendente"
4783
 
4784
- #: ../includes/mycred-log.php:582
4785
  msgid "Filter"
4786
  msgstr "Filtro"
4787
 
4788
- #: ../includes/mycred-log.php:635
4789
  msgid ""
4790
  "Log entries are exported to a CSV file and depending on the number of "
4791
  "entries selected, the process may take a few seconds."
@@ -4793,38 +4793,38 @@ msgstr ""
4793
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4794
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4795
 
4796
- #: ../includes/mycred-log.php:639
4797
  msgid "No export options available."
4798
  msgstr "No hay opciones para exportar."
4799
 
4800
  #. need more context: entrada or inscripción
4801
- #: ../includes/mycred-log.php:668
4802
  msgid "Entry"
4803
  msgstr "Entrada"
4804
 
4805
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4806
  msgid "User Missing"
4807
  msgstr "Usuario Ausente"
4808
 
4809
- #: ../includes/mycred-log.php:839
4810
  msgid "No log entries found"
4811
  msgstr "Ninguna entrada de registro encontrada"
4812
 
4813
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4814
  msgid "Search Log"
4815
  msgstr "Busqueda de Registro"
4816
 
4817
  #. buscar las entradas en el registro
4818
- #: ../includes/mycred-log.php:855
4819
  msgid "search log entries"
4820
  msgstr "Búsqueda de las entradas de registro"
4821
 
4822
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4823
  #: modules/mycred-module-buddypress.php:249
4824
  msgid "All"
4825
  msgstr "Todo"
4826
 
4827
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4828
  msgid "Yesterday"
4829
  msgstr "Ayer"
4830
 
@@ -5068,7 +5068,7 @@ msgstr ""
5068
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5069
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5070
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5071
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5072
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5073
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5074
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5726,7 +5726,7 @@ msgstr ""
5726
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5727
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5728
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5729
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5730
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5731
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5732
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -6057,8 +6057,8 @@ msgstr "Entrada Actualizada"
6057
  msgid "Entries"
6058
  msgstr "Entradas"
6059
 
6060
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6061
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6062
  msgid "Export"
6063
  msgstr "Exportar"
6064
 
@@ -6077,35 +6077,35 @@ msgid ""
6077
  "Certain hooks and shortcodes will not work correctly!"
6078
  msgstr ""
6079
 
6080
- #: ../modules/mycred-module-log.php:565
6081
  msgid "Edit"
6082
  msgstr "Editar"
6083
 
6084
- #: ../modules/mycred-module-log.php:612
6085
  msgid "Time"
6086
  msgstr "Tiempo"
6087
 
6088
- #: ../modules/mycred-module-log.php:616
6089
  msgid "Current Log Entry"
6090
  msgstr "Entrada Actual de Registro"
6091
 
6092
- #: ../modules/mycred-module-log.php:618
6093
  msgid "The current saved log entry"
6094
  msgstr "La entrada guardada actual del registro"
6095
 
6096
- #: ../modules/mycred-module-log.php:621
6097
  msgid "Adjust Log Entry"
6098
  msgstr "Ajustar entrada de registro"
6099
 
6100
- #: ../modules/mycred-module-log.php:623
6101
  msgid "The new log entry"
6102
  msgstr "La nueva entrada de registro"
6103
 
6104
- #: ../modules/mycred-module-log.php:626
6105
  msgid "Update Log Entry"
6106
  msgstr "Actualiza la entrada de registro"
6107
 
6108
- #: ../modules/mycred-module-log.php:697
6109
  #, php-format
6110
  msgid "My %s History"
6111
  msgstr "Mi Historial de %s"
@@ -6807,23 +6807,23 @@ msgstr "Suscripciónes a commentarios"
6807
  msgid "Reward with %plural%"
6808
  msgstr ""
6809
 
6810
- #: ../plugins/mycred-hook-sharethis.php:18
6811
  #, php-format
6812
  msgid "%plural% for Sharing"
6813
  msgstr ""
6814
 
6815
- #: ../plugins/mycred-hook-sharethis.php:19
6816
  #, php-format
6817
  msgid ""
6818
  "Awards %_plural% for users sharing / liking your website content to popular "
6819
  "social media sites."
6820
  msgstr ""
6821
 
6822
- #: ../plugins/mycred-hook-sharethis.php:232
6823
  msgid "Your ShareThis public key is not set."
6824
  msgstr ""
6825
 
6826
- #: ../plugins/mycred-hook-sharethis.php:237
6827
  msgid "No ShareThis services detected. Please check your installation."
6828
  msgstr ""
6829
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:42:36 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_VE"
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr "%lavel% Historial"
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre"
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr "Gente genial"
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Procesando..."
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
59
  "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
  "¡Esto no se puede deshacer!"
61
 
62
+ #: ../mycred.php:679
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
67
  "¡Todas las entradas de registro perteneciendo al usuario seran "
68
  "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
+ #: ../mycred.php:680
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
  "deshacer!"
75
 
76
+ #: ../mycred.php:681
77
  msgid "Done!"
78
  msgstr "¡Realizado!"
79
 
80
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
81
  msgid "Close"
82
  msgstr "Cerrar"
83
 
84
+ #: ../mycred.php:683
85
  msgid "Export users %plural%"
86
  msgstr "Exportar usuarios %plural%"
87
 
88
+ #: ../mycred.php:684
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
+ #: ../mycred.php:700
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo del usuario"
98
 
99
+ #: ../mycred.php:718
100
  msgid "Edit Log Entry"
101
  msgstr "Edidar entrada de registro"
102
 
103
+ #: ../mycred.php:722
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
  "deshacer!"
108
 
109
+ #: ../mycred.php:723
110
  msgid "Log entry updated"
111
  msgstr "Entrada de registro actualizado"
112
 
113
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Configurar"
118
 
119
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configuraciones"
125
 
126
+ #: ../mycred.php:825
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
170
  msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
197
  msgstr "haga clic para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:927
201
  msgid "Settings Updated"
202
  msgstr "Configuraciones Actualizadas"
203
 
238
  msgstr ""
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
470
  msgstr "Estatus"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1296
474
  msgid "Save Changes"
475
  msgstr ""
476
 
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
540
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
541
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acceso Denegado"
546
 
562
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Activar"
568
 
686
  #. can also be "Plantilla de Bitácora"
687
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
688
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
689
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
690
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
691
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
692
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
693
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
745
  msgstr ""
746
 
747
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
748
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
749
  #: content.php:114
750
  msgid "Leave empty to use the default value."
751
  msgstr ""
758
  msgid "Exclude from receiving interest"
759
  msgstr ""
760
 
761
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
762
  msgid "Compound interest rate saved."
763
  msgstr ""
764
 
765
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
766
  msgid "User excluded from receiving interest."
767
  msgstr ""
768
 
769
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
770
  msgid "User included in receiving interest."
771
  msgstr ""
772
 
775
  msgstr "%_plural% diarios"
776
 
777
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
778
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
779
  #: modules/mycred-module-log.php:277
780
  msgid "History"
781
  msgstr "Historial"
793
  msgstr "Pagar a los Usuarios"
794
 
795
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
796
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
797
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
798
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
799
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
800
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
801
  #: plugins/mycred-hook-affiliatewp.php:256
802
  msgid "Amount"
835
  msgid "Payment Gateways"
836
  msgstr "Pasarela de Pago"
837
 
838
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
839
  msgctxt "Post Type General Name"
840
  msgid "Pending Payments"
841
  msgstr ""
842
 
843
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
844
  msgctxt "Post Type Singular Name"
845
  msgid "Pending Payment"
846
  msgstr ""
847
 
848
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
849
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
850
  msgid "Pending Payments"
851
  msgstr ""
852
 
853
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
854
  msgid "Edit Pending Payment"
855
  msgstr ""
856
 
857
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
858
+ #: addon-buy-creds.php:1752
859
  msgid "No pending payments found"
860
  msgstr ""
861
 
862
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
863
  msgid "Not found in Trash"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
868
  msgid "Transaction ID"
869
  msgstr "Identificación de la Transacción"
870
 
871
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
872
+ #: addon-buy-creds.php:1074
873
  msgid "Buyer"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
877
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
878
  #: gateway.php:594
879
  msgid "Cost"
880
  msgstr "Costo"
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
883
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
884
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
885
  msgid "Gateway"
886
  msgstr "Pasarela"
887
 
888
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
889
  msgid "Type"
890
  msgstr ""
891
 
892
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
893
  msgid "Pay Out"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
897
  msgid "buyCRED Purchase Log"
898
  msgstr "compraCRED Registro de Compras"
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
901
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
902
  msgid "Purchase Log"
903
  msgstr "Registro de Compras"
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
906
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
907
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
908
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
909
  msgid "Payments"
910
  msgstr "Pagos"
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
913
  msgid "Please login to purchase %_plural%"
914
  msgstr "Identifícate antes de comprar %_plural%"
915
 
916
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
917
  #, php-format
918
  msgid "Gift purchase from %display_name%."
919
  msgstr "Regalo comprado de parte de %display_name%."
920
 
921
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
922
  #: addon-ranks.php:1084
923
  msgid "Minimum %plural%"
924
  msgstr "Minimo %_plural%"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
927
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
928
  msgstr ""
929
  "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
930
  "a 1."
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
933
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
934
  #: module-settings.php:656
935
  msgid "Point Types"
936
  msgstr "Tipo de Puntos"
937
 
938
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
939
  msgid "Select the point types that users can buy. You must select at least one!"
940
  msgstr ""
941
 
942
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
943
  msgid "Login Template"
944
  msgstr "Plantilla de Ingreso"
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
947
  msgid "Content to show when a user is not logged in."
948
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
951
  msgid "Thank You Page"
952
  msgstr "Página de Agradecimiento"
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
955
+ #: addon-buy-creds.php:705
956
  msgid "Custom URL"
957
  msgstr "URL Personalizada"
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
960
+ #: addon-buy-creds.php:710
961
  msgid "Page"
962
  msgstr "Página"
963
 
964
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
965
  msgid "Cancellation Page"
966
  msgstr "Página de Cancelación"
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
969
  msgid "Show seperate log for %_plural% purchases."
970
  msgstr "Mostrar registro distinto para compras de %_plural%."
971
 
972
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
973
  msgid "Gifting"
974
  msgstr "Regalar"
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for other users."
979
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
982
  #, php-format
983
  msgid "Allow users to buy %_plural% for content authors."
984
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
987
  #: hooks.php:3110
988
  msgid "Available Shortcodes"
989
  msgstr "Códigos cortos Disponibles"
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
992
  #, php-format
993
  msgid "%s Exchange Rate"
994
  msgstr ""
995
 
996
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
997
  msgid "Save Exchange Rates"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1001
  msgid "Exchange rate override saved"
1002
  msgstr ""
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1005
  msgid "Payment completed"
1006
  msgstr ""
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1009
  #, php-format
1010
  msgid "%s Payment Gateways"
1011
  msgstr "%s Pasarelas de Pago"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1014
+ #: addon-buy-creds.php:1085
1015
  msgid "buyCRED Settings"
1016
  msgstr "Configuraciones de compraCRED"
1017
 
1018
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1019
  msgid "Test Mode"
1020
  msgstr "Modo de Prueba"
1021
 
1022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1023
  msgid "Enabled"
1024
  msgstr "Habilitado"
1025
 
1026
  #. also, "Inhabilitar"
1027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1028
  msgid "Disabled"
1029
  msgstr "Deshactivado"
1030
 
1031
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1032
  msgid "Sandbox Mode"
1033
  msgstr "Modo Entorno Aislado"
1034
 
1035
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1036
  msgid "Enable for test purchases."
1037
  msgstr "Habilitar para compras de prueba."
1038
 
1039
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1040
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1041
  msgid "Update Settings"
1042
  msgstr "Actualizar Configuraciones"
1043
 
1044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1045
  msgid "More Gateways"
1046
  msgstr ""
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1049
+ #: 756
1050
  msgid "Date"
1051
  msgstr "Fecha"
1052
 
1053
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1054
  msgid "Payed"
1055
  msgstr "Pagado"
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1058
  msgid "<strong>buy</strong>CRED Purchase Log"
1059
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
1060
 
1061
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1062
  #: booking/mycred-eventespresso3.php:367
1063
  msgid "Gateway Settings"
1064
  msgstr "Configuraciones de la Pasarela de Pago"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1067
+ #: content/myCRED-addon-sell-content.php:1210
1068
  msgid "No purchases found"
1069
  msgstr "No se encontro ninguna compra"
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1072
+ #: addon-buy-creds.php:1464
1073
  msgid "This Add-on needs to setup before you can use this shortcode."
1074
  msgstr ""
1075
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1076
  "corto (shortcode)."
1077
 
1078
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1079
+ #: addon-buy-creds.php:1483
1080
  msgid "No gateways installed."
1081
  msgstr "Ningun pasarela de pago instalado."
1082
 
1083
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1084
+ #: addon-buy-creds.php:1484
1085
  msgid "Gateway does not exist."
1086
  msgstr "Puerta de enlace no existe."
1087
 
1088
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1089
  msgid "Yourself"
1090
  msgstr "Tu mismo"
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1093
  msgid "No active gateways found."
1094
  msgstr "No se encuentra ningun puerta de enlace activo."
1095
 
1096
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1097
  msgid "The selected gateway is not active."
1098
  msgstr "La puerta de enlace seleccionada no esta activo."
1099
 
1100
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1101
  #, php-format
1102
  msgid "Buy with %gateway%"
1103
  msgstr "Compra con %gateway%"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1106
  #: content/myCRED-addon-sell-content.php:44
1107
  msgid "Buy Now"
1108
  msgstr "Compra Ahora"
1109
 
1110
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1111
  msgid "No users found"
1112
  msgstr "Ningun Usuario Encontrado"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1115
  msgid "To"
1116
  msgstr "A"
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1119
  msgid "Select Amount"
1120
  msgstr "Selecciona la Cantidad"
1121
 
1122
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1123
  msgid "min."
1124
  msgstr "min."
1125
 
1126
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1127
  msgid "Select Gateway"
1128
  msgstr "Selecciona la Pasarela de Pago"
1129
 
1130
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1131
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1132
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1133
  #: php:35
1134
  msgid "Pay Now"
1135
  msgstr "Pagar Ahora"
1136
 
1137
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1138
  #: php:536
1139
  msgid "Cancel"
1140
  msgstr "Cancelar"
1141
 
1142
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1143
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1144
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1145
  msgid "Actions"
1181
  msgstr "Cancelar la compra"
1182
 
1183
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1184
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1185
  msgid "required"
1186
  msgstr "necesario"
1187
 
1188
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1189
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1190
  msgid "optional"
1191
  msgstr "opcional"
1192
 
1752
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1753
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1754
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1755
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1756
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1757
  #: includes/importers/mycred-cubepoints.php:365
1758
  msgid "Point Type"
1764
  msgstr "todavia no utilizado"
1765
 
1766
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1767
+ #: 416 ../modules/mycred-module-hooks.php:2507
1768
  msgid "Total"
1769
  msgstr "Total"
1770
 
1931
  msgstr "Aplica el Cupón"
1932
 
1933
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1934
+ #: notices/myCRED-addon-email-notices.php:1270
1935
  msgid "Email Notice"
1936
  msgstr "Aviso por Correo Electrónico"
1937
 
2212
  msgstr "Enviado A:"
2213
 
2214
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2215
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2216
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2217
  msgid "User"
2218
  msgstr "Usuario"
2219
 
2345
  msgid "Settings saved."
2346
  msgstr ""
2347
 
2348
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2349
  msgid "Unsubscribe"
2350
  msgstr ""
2351
 
2352
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2353
  msgid "There are no email notifications yet."
2354
  msgstr ""
2355
 
2356
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2357
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2358
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2359
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2360
  msgid "Current Balance"
2361
  msgstr "Saldo Actual"
2362
 
2788
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2791
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2792
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2793
  msgid "Button Label"
2794
  msgstr "Eqiqueta Asignada al Botón"
2795
 
2802
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2803
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2804
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2805
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2806
+ #: sell-content.php:683
2807
  msgid "Price"
2808
  msgstr "Precio"
2809
 
2829
  msgstr "Registro"
2830
 
2831
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2832
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2833
  msgid "Log Entry"
2834
  msgstr "Entrada de Registro"
2835
 
2836
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2837
+ #: content/myCRED-addon-sell-content.php:474
2838
  msgid "Templates"
2839
  msgstr "Plantillas"
2840
 
2924
  msgstr "Rechazar"
2925
 
2926
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2927
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2928
  #: modules/mycred-module-settings.php:699
2929
  msgid "Delete"
2930
  msgstr "Borrar"
3443
  msgid "Save Profit Share"
3444
  msgstr ""
3445
 
3446
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3447
  msgid "Profit Share override saved"
3448
  msgstr ""
3449
 
3450
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3451
  msgid "You can not buy this content."
3452
  msgstr "No puedes comprar este contenido."
3453
 
3454
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3455
  msgid "Error. Try Again"
3456
  msgstr "Error. Inténtelo de nuevo"
3457
 
3458
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3459
  msgid "No Payout. Just charge."
3460
  msgstr "No Desembolsar. Solo cobrar."
3461
 
3462
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3463
  msgid "Pay Content Author."
3464
  msgstr "Pagar al Autor del Contenido"
3465
 
3466
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3467
  #: overview.php:141 ../includes/mycred-overview.php:148
3468
  msgid "Sell Content"
3469
  msgstr "Vender Contenido"
3470
 
3471
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3472
  msgid "Post Types"
3473
  msgstr "Post Types"
3474
 
3475
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3476
  msgid "Comma separated list of post types that can be sold."
3477
  msgstr "Lista separada por comas de post types que se puede vender."
3478
 
3479
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3480
  msgid "Percentage to pay Author"
3481
  msgstr "Porcentaje que pagar al Autor"
3482
 
3483
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3484
  msgid ""
3485
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3486
  "authors are not paid."
3489
  "si no se les paga a los autores."
3490
 
3491
  #. also, "por defecto" and "predeterminados"
3492
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3493
  msgid "Defaults"
3494
  msgstr "Predefinidos"
3495
 
3496
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3497
  msgid "Allow authors to change price."
3498
  msgstr "Permitir que los Autores cambien el precio."
3499
 
3500
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3501
  msgid "Allow authors to change button label."
3502
  msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3503
 
3504
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3505
  msgid "Purchases expire after"
3506
  msgstr "Compras caducan despues de"
3507
 
3508
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3509
  msgid "Use zero for permanent sales."
3510
  msgstr "Usa cero para ventas permanentes."
3511
 
3512
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3513
  msgid "For Visitors"
3514
  msgstr ""
3515
 
3516
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3517
  #, php-format
3518
  msgid ""
3519
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3522
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3523
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3524
 
3525
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3526
  msgid "For Members"
3527
  msgstr ""
3528
 
3529
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3530
+ #: content/myCRED-addon-sell-content.php:517
3531
  #, php-format
3532
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3533
  msgstr ""
3534
  "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3535
  "realizar compras!"
3536
 
3537
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3538
  msgid "For members that can not afford to buy"
3539
  msgstr ""
3540
 
3541
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3542
  msgid "Log template for Purchases"
3543
  msgstr "Plantilla de registros para Compras"
3544
 
3545
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3546
  msgid "Log template for Sales"
3547
  msgstr "Plantilla de registros para Ventas"
3548
 
3549
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3550
  #, php-format
3551
  msgid "%s Sell This"
3552
  msgstr "%s Vende Esto"
3553
 
3554
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3555
  #, php-format
3556
  msgid "%s Sell Content needs to be setup before you can use this feature."
3557
  msgstr ""
3558
  "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3559
  "esta característica técnica."
3560
 
3561
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3562
  msgid "Setup add-on"
3563
  msgstr "Configurar Extensión"
3564
 
3565
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3566
  msgid "Lets do it"
3567
  msgstr "Vamos a hacerlo."
3568
 
3569
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3570
  #, php-format
3571
  msgid "Enable sale of this %s"
3572
  msgstr ""
3573
 
3574
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3575
  msgid "Purchase expires after"
3576
  msgstr "Compra caduca despues de"
3577
 
3578
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3579
  msgid "Thank you for your purchase!"
3580
  msgstr "¡Gracias por su compra!"
3581
 
3582
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3583
+ #: content/myCRED-addon-sell-content.php:1191
3584
  msgid "The following content is set for sale:"
3585
  msgstr "El siguiente contenido esta listo para la venta:"
3586
 
3587
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3588
  msgid "Purchased"
3589
  msgstr "Comprado"
3590
 
3650
  msgstr ""
3651
 
3652
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3653
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3654
  msgid "Today"
3655
  msgstr "Hoy"
3656
 
3657
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3658
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3659
  msgid "This Week"
3660
  msgstr "Esta Semana"
3661
 
3662
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3663
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3664
  msgid "This Month"
3665
  msgstr "Este Mes"
3666
 
3695
  msgid "Gains in the last 10 days"
3696
  msgstr ""
3697
 
3698
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3699
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3700
  msgid "View"
3701
  msgstr ""
3702
 
3703
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3704
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3705
  msgid "No data found"
3706
  msgstr ""
3707
 
3958
  msgid "Welcome to %s %s"
3959
  msgstr "Bienvenido a %s %s"
3960
 
3961
+ #: ../includes/mycred-admin.php:198
3962
  msgid "A log entry is required in order to adjust this users balance"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/mycred-admin.php:200
3966
  msgid "Users balance saved"
3967
  msgstr ""
3968
 
3969
+ #: ../includes/mycred-admin.php:208
3970
  msgid "Users excluded"
3971
  msgstr ""
3972
 
3973
+ #: ../includes/mycred-admin.php:213
3974
  msgid ""
3975
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3976
  "rate settings and update all premium payment gateways!"
3977
  msgstr ""
3978
 
3979
+ #: ../includes/mycred-admin.php:242
3980
  msgid "User is excluded"
3981
  msgstr "El Usuario ha sido excluido"
3982
 
3983
+ #: ../includes/mycred-admin.php:247
3984
  msgid "Log Entry can not be empty"
3985
  msgstr "Entrada de registro no puede estar vacío"
3986
 
3987
+ #: ../includes/mycred-admin.php:251
3988
  msgid "Amount can not be zero"
3989
  msgstr "La Cantidad no Puede ser Cero"
3990
 
3991
+ #: ../includes/mycred-admin.php:272
3992
  msgid "Failed to update this uses balance."
3993
  msgstr "No se pudo actualizar el saldo de este usuario."
3994
 
3995
+ #: ../includes/mycred-admin.php:406
3996
  msgid "Excluded"
3997
  msgstr "Excluido"
3998
 
3999
+ #: ../includes/mycred-admin.php:427
4000
  msgid "Adjust"
4001
  msgstr "Modificar"
4002
 
4003
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
4004
  msgid "Edit Balance"
4005
  msgstr ""
4006
 
4007
+ #: ../includes/mycred-admin.php:490
4008
  msgid "Profile"
4009
  msgstr ""
4010
 
4011
+ #: ../includes/mycred-admin.php:497
4012
  msgid "Extended Profile"
4013
  msgstr ""
4014
 
4015
+ #: ../includes/mycred-admin.php:591
4016
  #, php-format
4017
  msgid "This user is excluded from using %s"
4018
  msgstr ""
4019
 
4020
+ #: ../includes/mycred-admin.php:615
4021
  msgid "Edit User"
4022
  msgstr ""
4023
 
4024
+ #: ../includes/mycred-admin.php:617
4025
  msgctxt "user"
4026
  msgid "Add New"
4027
  msgstr ""
4028
 
4029
+ #: ../includes/mycred-admin.php:619
4030
  msgctxt "user"
4031
  msgid "Add Existing"
4032
  msgstr ""
4033
 
4034
+ #: ../includes/mycred-admin.php:630
4035
  #, php-format
4036
  msgid "Total %s Accumulated"
4037
  msgstr ""
4038
 
4039
+ #: ../includes/mycred-admin.php:631
4040
  #, php-format
4041
  msgid "Total %s Spent"
4042
  msgstr ""
4043
 
4044
+ #: ../includes/mycred-admin.php:642
4045
  msgid "View History"
4046
  msgstr ""
4047
 
4048
+ #: ../includes/mycred-admin.php:643
4049
  msgid "Exclude User"
4050
  msgstr ""
4051
 
4052
+ #: ../includes/mycred-admin.php:647
4053
  msgid "Adjust Balance"
4054
  msgstr ""
4055
 
4056
+ #: ../includes/mycred-admin.php:656
4057
  msgid ""
4058
  "Warning! Excluding this user will result in their balance being deleted "
4059
  "along with any entries currently in your log! This can not be undone!"
4060
  msgstr ""
4061
 
4062
+ #: ../includes/mycred-admin.php:721
4063
  #, php-format
4064
  msgid "%singular% balance"
4065
  msgstr "%singular% saldo"
4066
 
4067
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4068
  msgid "Update Balance"
4069
  msgstr "Actualizar Saldo"
4070
 
4071
+ #: ../includes/mycred-admin.php:798
4072
  msgid "ID"
4073
  msgstr "ID"
4074
 
4075
+ #: ../includes/mycred-admin.php:804
4076
  msgid "A positive or negative value"
4077
  msgstr "Un valor positivo o negativo"
4078
 
4725
  msgid "Install & Run"
4726
  msgstr "Instalar e ejecutar"
4727
 
4728
+ #: ../includes/mycred-log.php:485
4729
  #, php-format
4730
  msgid "Showing %d %s"
4731
  msgstr "Mostrando %d %s"
4732
 
4733
  #. need more context: entrada or inscripción
4734
+ #: ../includes/mycred-log.php:485
4735
  msgid "entry"
4736
  msgstr "entrada"
4737
 
4738
+ #: ../includes/mycred-log.php:500
4739
  msgid "Go to the first page"
4740
  msgstr "Ir a la primera página"
4741
 
4742
+ #: ../includes/mycred-log.php:507
4743
  msgid "Go to the previous page"
4744
  msgstr "Ir a la página anterior"
4745
 
4746
+ #: ../includes/mycred-log.php:517
4747
  msgid "Current page"
4748
  msgstr "Página corriente"
4749
 
4750
+ #: ../includes/mycred-log.php:523
4751
  #, php-format
4752
  msgctxt "mycred"
4753
  msgid "%1$s of %2$s"
4754
  msgstr ""
4755
 
4756
+ #: ../includes/mycred-log.php:527
4757
  msgid "Go to the next page"
4758
  msgstr "Ir a la página siguiente"
4759
 
4760
+ #: ../includes/mycred-log.php:534
4761
  msgid "Go to the last page"
4762
  msgstr "Ir a la última página"
4763
 
4764
+ #: ../includes/mycred-log.php:611
4765
  msgid "Show all references"
4766
  msgstr "Muestra todas las referencias"
4767
 
4768
+ #: ../includes/mycred-log.php:628
4769
  msgid "User ID, Username, Email or Nicename"
4770
  msgstr ""
4771
 
4772
+ #: ../includes/mycred-log.php:636
4773
  msgid "Show in order"
4774
  msgstr "Mostrar en Orden"
4775
 
4776
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4777
  msgid "Ascending"
4778
  msgstr "Ascendente"
4779
 
4780
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4781
  msgid "Descending"
4782
  msgstr "Descendente"
4783
 
4784
+ #: ../includes/mycred-log.php:658
4785
  msgid "Filter"
4786
  msgstr "Filtro"
4787
 
4788
+ #: ../includes/mycred-log.php:718
4789
  msgid ""
4790
  "Log entries are exported to a CSV file and depending on the number of "
4791
  "entries selected, the process may take a few seconds."
4793
  "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4794
  "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4795
 
4796
+ #: ../includes/mycred-log.php:725
4797
  msgid "No export options available."
4798
  msgstr "No hay opciones para exportar."
4799
 
4800
  #. need more context: entrada or inscripción
4801
+ #: ../includes/mycred-log.php:758
4802
  msgid "Entry"
4803
  msgstr "Entrada"
4804
 
4805
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4806
  msgid "User Missing"
4807
  msgstr "Usuario Ausente"
4808
 
4809
+ #: ../includes/mycred-log.php:958
4810
  msgid "No log entries found"
4811
  msgstr "Ninguna entrada de registro encontrada"
4812
 
4813
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4814
  msgid "Search Log"
4815
  msgstr "Busqueda de Registro"
4816
 
4817
  #. buscar las entradas en el registro
4818
+ #: ../includes/mycred-log.php:977
4819
  msgid "search log entries"
4820
  msgstr "Búsqueda de las entradas de registro"
4821
 
4822
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4823
  #: modules/mycred-module-buddypress.php:249
4824
  msgid "All"
4825
  msgstr "Todo"
4826
 
4827
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4828
  msgid "Yesterday"
4829
  msgstr "Ayer"
4830
 
5068
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5069
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5070
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5071
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5072
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5073
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5074
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5726
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5727
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5728
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5729
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5730
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5731
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5732
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
6057
  msgid "Entries"
6058
  msgstr "Entradas"
6059
 
6060
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6061
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6062
  msgid "Export"
6063
  msgstr "Exportar"
6064
 
6077
  "Certain hooks and shortcodes will not work correctly!"
6078
  msgstr ""
6079
 
6080
+ #: ../modules/mycred-module-log.php:563
6081
  msgid "Edit"
6082
  msgstr "Editar"
6083
 
6084
+ #: ../modules/mycred-module-log.php:610
6085
  msgid "Time"
6086
  msgstr "Tiempo"
6087
 
6088
+ #: ../modules/mycred-module-log.php:614
6089
  msgid "Current Log Entry"
6090
  msgstr "Entrada Actual de Registro"
6091
 
6092
+ #: ../modules/mycred-module-log.php:616
6093
  msgid "The current saved log entry"
6094
  msgstr "La entrada guardada actual del registro"
6095
 
6096
+ #: ../modules/mycred-module-log.php:619
6097
  msgid "Adjust Log Entry"
6098
  msgstr "Ajustar entrada de registro"
6099
 
6100
+ #: ../modules/mycred-module-log.php:621
6101
  msgid "The new log entry"
6102
  msgstr "La nueva entrada de registro"
6103
 
6104
+ #: ../modules/mycred-module-log.php:624
6105
  msgid "Update Log Entry"
6106
  msgstr "Actualiza la entrada de registro"
6107
 
6108
+ #: ../modules/mycred-module-log.php:695
6109
  #, php-format
6110
  msgid "My %s History"
6111
  msgstr "Mi Historial de %s"
6807
  msgid "Reward with %plural%"
6808
  msgstr ""
6809
 
6810
+ #: ../plugins/mycred-hook-sharethis.php:19
6811
  #, php-format
6812
  msgid "%plural% for Sharing"
6813
  msgstr ""
6814
 
6815
+ #: ../plugins/mycred-hook-sharethis.php:20
6816
  #, php-format
6817
  msgid ""
6818
  "Awards %_plural% for users sharing / liking your website content to popular "
6819
  "social media sites."
6820
  msgstr ""
6821
 
6822
+ #: ../plugins/mycred-hook-sharethis.php:257
6823
  msgid "Your ShareThis public key is not set."
6824
  msgstr ""
6825
 
6826
+ #: ../plugins/mycred-hook-sharethis.php:262
6827
  msgid "No ShareThis services detected. Please check your installation."
6828
  msgstr ""
6829
 
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:03:53 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -24,99 +24,99 @@ msgstr ""
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: fa_IR"
26
 
27
- #: ../mycred.php:449
28
  msgid "Balance"
29
  msgstr ""
30
 
31
- #: ../mycred.php:474
32
  msgid "%label% History"
33
  msgstr ""
34
 
35
- #: ../mycred.php:567
36
  #, php-format
37
  msgid "About %s"
38
  msgstr "درباره %s"
39
 
40
- #: ../mycred.php:576
41
  msgid "Awesome People"
42
  msgstr "\"اعتبار من\""
43
 
44
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
45
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
47
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
51
  msgstr "در حال پردازش ..."
52
 
53
- #: ../mycred.php:662
54
  msgid ""
55
  "Warning! All entries in your log will be permanently removed! This can not "
56
  "be undone!"
57
  msgstr ""
58
 
59
- #: ../mycred.php:663
60
  msgid ""
61
  "All log entries belonging to deleted users will be permanently deleted! This "
62
  "can not be undone!"
63
  msgstr ""
64
 
65
- #: ../mycred.php:664
66
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
67
  msgstr ""
68
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
69
  "غیرقابل بازگشت می باشد !"
70
 
71
- #: ../mycred.php:665
72
  msgid "Done!"
73
  msgstr "انجام شد !"
74
 
75
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
76
  msgid "Close"
77
  msgstr "بستن"
78
 
79
- #: ../mycred.php:667
80
  msgid "Export users %plural%"
81
  msgstr "خروجی گرفتن از %plural% کاربران"
82
 
83
- #: ../mycred.php:668
84
  msgid ""
85
  "In order to adjust the number of decimal places you want to use we must "
86
  "update your log. It is highly recommended that you backup your current log "
87
  "before continuing!"
88
  msgstr ""
89
 
90
- #: ../mycred.php:684
91
  msgid "Edit Users Balance"
92
  msgstr ""
93
 
94
- #: ../mycred.php:702
95
  msgid "Edit Log Entry"
96
  msgstr ""
97
 
98
- #: ../mycred.php:706
99
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
100
  msgstr ""
101
 
102
- #: ../mycred.php:707
103
  msgid "Log entry updated"
104
  msgstr ""
105
 
106
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
107
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
108
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
109
  msgid "Setup"
110
  msgstr "نصب"
111
 
112
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
113
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
114
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
115
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
116
  msgid "Settings"
117
  msgstr "تنظیمات"
118
 
119
- #: ../mycred.php:803
120
  msgid ""
121
  "Make sure to backup your database and files before updating, in case "
122
  "anything goes wrong!"
@@ -161,8 +161,8 @@ msgid "Once per day (reset at midnight)"
161
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
162
 
163
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
164
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
165
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../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:356 ../addons/email-notices/myCRED-addon-email-
@@ -188,7 +188,7 @@ msgid "click to open"
188
  msgstr "برای باز شدن کلیک کنید ."
189
 
190
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
191
- #: buy-creds.php:884
192
  msgid "Settings Updated"
193
  msgstr "تنظیمات به روز شد"
194
 
@@ -229,7 +229,7 @@ msgid "Badge"
229
  msgstr ""
230
 
231
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
232
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
233
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
234
  #: addons/ranks/myCRED-addon-ranks.php:448
235
  msgid "Add New"
@@ -461,7 +461,7 @@ msgid "Status"
461
  msgstr "وضعیت"
462
 
463
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
464
- #: addon-email-notices.php:1293
465
  msgid "Save Changes"
466
  msgstr ""
467
 
@@ -527,11 +527,11 @@ msgid "Setup mass %_singular% payouts for your users."
527
  msgstr ""
528
 
529
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
530
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
531
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
532
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
533
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
534
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
535
  msgid "Access Denied"
536
  msgstr "دسترسی غیرمجاز می باشد"
537
 
@@ -556,7 +556,7 @@ msgstr ""
556
  "مدیر سایت می دهد"
557
 
558
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
559
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
560
  msgid "Enable"
561
  msgstr "فعالسازی"
562
 
@@ -678,8 +678,8 @@ msgstr "پرداخت"
678
 
679
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
680
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
681
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
682
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
683
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
684
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
685
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -737,7 +737,7 @@ msgid "This user role is excluded from receiving interest on this balance."
737
  msgstr ""
738
 
739
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
740
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
741
  #: content.php:114
742
  msgid "Leave empty to use the default value."
743
  msgstr ""
@@ -750,15 +750,15 @@ msgstr ""
750
  msgid "Exclude from receiving interest"
751
  msgstr ""
752
 
753
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
754
  msgid "Compound interest rate saved."
755
  msgstr ""
756
 
757
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
758
  msgid "User excluded from receiving interest."
759
  msgstr ""
760
 
761
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
762
  msgid "User included in receiving interest."
763
  msgstr ""
764
 
@@ -767,7 +767,7 @@ msgid "Daily %_plural%"
767
  msgstr "%_plural% روزانه"
768
 
769
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
770
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
771
  #: modules/mycred-module-log.php:277
772
  msgid "History"
773
  msgstr "لیست تغییرات"
@@ -785,10 +785,10 @@ msgid "Pay Users"
785
  msgstr "پرداخت به کاربران :"
786
 
787
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
788
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
789
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
790
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
791
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
792
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
793
  #: plugins/mycred-hook-affiliatewp.php:256
794
  msgid "Amount"
@@ -829,312 +829,312 @@ msgstr ""
829
  msgid "Payment Gateways"
830
  msgstr "درگاه های پرداخت"
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
833
  msgctxt "Post Type General Name"
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
838
  msgctxt "Post Type Singular Name"
839
  msgid "Pending Payment"
840
  msgstr ""
841
 
842
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
843
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
844
  msgid "Pending Payments"
845
  msgstr ""
846
 
847
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
848
  msgid "Edit Pending Payment"
849
  msgstr ""
850
 
851
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
852
- #: addon-buy-creds.php:1699
853
  msgid "No pending payments found"
854
  msgstr ""
855
 
856
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
857
  msgid "Not found in Trash"
858
  msgstr ""
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
861
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
862
  msgid "Transaction ID"
863
  msgstr ""
864
 
865
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
866
- #: addon-buy-creds.php:1025
867
  msgid "Buyer"
868
  msgstr ""
869
 
870
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
871
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
872
  #: gateway.php:594
873
  msgid "Cost"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
877
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
878
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
879
  msgid "Gateway"
880
  msgstr "درگاه"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
883
  msgid "Type"
884
  msgstr ""
885
 
886
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
887
  msgid "Pay Out"
888
  msgstr ""
889
 
890
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
891
  msgid "buyCRED Purchase Log"
892
  msgstr ""
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
895
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
896
  msgid "Purchase Log"
897
  msgstr ""
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
900
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
901
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
902
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
903
  msgid "Payments"
904
  msgstr "پرداخت ها"
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
907
  msgid "Please login to purchase %_plural%"
908
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
911
  #, php-format
912
  msgid "Gift purchase from %display_name%."
913
  msgstr "خرید هدیه توسط %display_name% ."
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
916
  #: addon-ranks.php:1084
917
  msgid "Minimum %plural%"
918
  msgstr "کمترین مفدار %plural%"
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
921
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
922
  msgstr ""
923
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض "
924
  "روی عدد یک تنظیم شده است ."
925
 
926
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
927
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
928
  #: module-settings.php:656
929
  msgid "Point Types"
930
  msgstr ""
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
933
  msgid "Select the point types that users can buy. You must select at least one!"
934
  msgstr ""
935
 
936
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
937
  msgid "Login Template"
938
  msgstr "نمونه طرح ورود به سایت"
939
 
940
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
941
  msgid "Content to show when a user is not logged in."
942
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
943
 
944
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
945
  msgid "Thank You Page"
946
  msgstr "صفحه ی تشکر بابت خرید"
947
 
948
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
949
- #: addon-buy-creds.php:668
950
  msgid "Custom URL"
951
  msgstr "نشانی اینترنتی متفاوت"
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
954
- #: addon-buy-creds.php:673
955
  msgid "Page"
956
  msgstr "صفحه"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
959
  msgid "Cancellation Page"
960
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
961
 
962
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
963
  msgid "Show seperate log for %_plural% purchases."
964
  msgstr ""
965
 
966
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
967
  msgid "Gifting"
968
  msgstr "هدیه دادن"
969
 
970
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
971
  #, php-format
972
  msgid "Allow users to buy %_plural% for other users."
973
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
974
 
975
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for content authors."
978
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
981
  #: hooks.php:3110
982
  msgid "Available Shortcodes"
983
  msgstr ""
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
986
  #, php-format
987
  msgid "%s Exchange Rate"
988
  msgstr ""
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
991
  msgid "Save Exchange Rates"
992
  msgstr ""
993
 
994
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
995
  msgid "Exchange rate override saved"
996
  msgstr ""
997
 
998
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
999
  msgid "Payment completed"
1000
  msgstr ""
1001
 
1002
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1003
  #, php-format
1004
  msgid "%s Payment Gateways"
1005
  msgstr "درگاه های پرداخت %s"
1006
 
1007
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1008
- #: addon-buy-creds.php:1034
1009
  msgid "buyCRED Settings"
1010
  msgstr ""
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1013
  msgid "Test Mode"
1014
  msgstr "حالت آزمایشی ( تست )"
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1017
  msgid "Enabled"
1018
  msgstr "فعال شد"
1019
 
1020
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1021
  msgid "Disabled"
1022
  msgstr "غیرفعال شد"
1023
 
1024
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1025
  msgid "Sandbox Mode"
1026
  msgstr ""
1027
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
1028
  "نمی گردد )"
1029
 
1030
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1031
  msgid "Enable for test purchases."
1032
  msgstr ""
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1035
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1036
  msgid "Update Settings"
1037
  msgstr "به روزرسانی تنظیمات"
1038
 
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1040
  msgid "More Gateways"
1041
  msgstr ""
1042
 
1043
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1044
- #: 666
1045
  msgid "Date"
1046
  msgstr "تاریخ"
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1049
  msgid "Payed"
1050
  msgstr ""
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1053
  msgid "<strong>buy</strong>CRED Purchase Log"
1054
  msgstr ""
1055
 
1056
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1057
  #: booking/mycred-eventespresso3.php:367
1058
  msgid "Gateway Settings"
1059
  msgstr "تنظیمات درگاه پرداخت"
1060
 
1061
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1062
- #: content/myCRED-addon-sell-content.php:1209
1063
  msgid "No purchases found"
1064
  msgstr "خریدی یافت نشد"
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1067
- #: addon-buy-creds.php:1411
1068
  msgid "This Add-on needs to setup before you can use this shortcode."
1069
  msgstr ""
1070
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
1071
  "جانبی را راه اندازی کنید ."
1072
 
1073
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1074
- #: addon-buy-creds.php:1430
1075
  msgid "No gateways installed."
1076
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
1077
 
1078
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1079
- #: addon-buy-creds.php:1431
1080
  msgid "Gateway does not exist."
1081
  msgstr "درگاه موجود نیست ."
1082
 
1083
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1084
  msgid "Yourself"
1085
  msgstr "خودتان"
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1088
  msgid "No active gateways found."
1089
  msgstr "درگاه پرداخت فعالی یافت نشد ."
1090
 
1091
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1092
  msgid "The selected gateway is not active."
1093
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
1094
 
1095
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1096
  #, php-format
1097
  msgid "Buy with %gateway%"
1098
  msgstr ""
1099
 
1100
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1101
  #: content/myCRED-addon-sell-content.php:44
1102
  msgid "Buy Now"
1103
  msgstr "همین الان بخرید"
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1106
  msgid "No users found"
1107
  msgstr "کاربری یافت نشد"
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1110
  msgid "To"
1111
  msgstr "به"
1112
 
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1114
  msgid "Select Amount"
1115
  msgstr "مقدار را انتخاب کنید"
1116
 
1117
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1118
  msgid "min."
1119
  msgstr "حداقل"
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1122
  msgid "Select Gateway"
1123
  msgstr "درگاه پرداخت را انتخاب کنید"
1124
 
1125
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1126
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1127
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1128
  #: php:35
1129
  msgid "Pay Now"
1130
  msgstr "همین حالا بپردازید"
1131
 
1132
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1133
  #: php:536
1134
  msgid "Cancel"
1135
  msgstr "لغو"
1136
 
1137
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1138
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1139
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1140
  msgid "Actions"
@@ -1175,12 +1175,12 @@ msgid "Cancel purchase"
1175
  msgstr ""
1176
 
1177
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1178
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1179
  msgid "required"
1180
  msgstr "ضروری"
1181
 
1182
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1183
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1184
  msgid "optional"
1185
  msgstr "اختیاری"
1186
 
@@ -1733,7 +1733,7 @@ msgstr ""
1733
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1734
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1735
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1736
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1737
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1738
  #: includes/importers/mycred-cubepoints.php:365
1739
  msgid "Point Type"
@@ -1745,7 +1745,7 @@ msgid "not yet used"
1745
  msgstr ""
1746
 
1747
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1748
- #: 395 ../modules/mycred-module-hooks.php:2507
1749
  msgid "Total"
1750
  msgstr ""
1751
 
@@ -1896,7 +1896,7 @@ msgid "Apply Coupon"
1896
  msgstr ""
1897
 
1898
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1899
- #: notices/myCRED-addon-email-notices.php:1267
1900
  msgid "Email Notice"
1901
  msgstr "اطلاعیه ایمیلی"
1902
 
@@ -2183,8 +2183,8 @@ msgid "Sent To"
2183
  msgstr "ارسال شده به"
2184
 
2185
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2186
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2187
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2188
  msgid "User"
2189
  msgstr "کاربر"
2190
 
@@ -2317,18 +2317,18 @@ msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2317
  msgid "Settings saved."
2318
  msgstr ""
2319
 
2320
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2321
  msgid "Unsubscribe"
2322
  msgstr ""
2323
 
2324
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2325
  msgid "There are no email notifications yet."
2326
  msgstr ""
2327
 
2328
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2329
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2330
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2331
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2332
  msgid "Current Balance"
2333
  msgstr "میزان امتیازات اخیر"
2334
 
@@ -2768,8 +2768,8 @@ msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ
2768
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2769
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2770
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2771
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2772
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2773
  msgid "Button Label"
2774
  msgstr "برچسب کلید"
2775
 
@@ -2782,8 +2782,8 @@ msgstr "کلید پرداخت"
2782
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2783
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2784
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2785
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2786
- #: sell-content.php:682
2787
  msgid "Price"
2788
  msgstr "هزینه"
2789
 
@@ -2809,12 +2809,12 @@ msgid "Log"
2809
  msgstr "لیست گزارش ( لوگ )"
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2812
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2813
  msgid "Log Entry"
2814
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2815
 
2816
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2817
- #: content/myCRED-addon-sell-content.php:473
2818
  msgid "Templates"
2819
  msgstr "نمونه ها ( الگوها )"
2820
 
@@ -2900,7 +2900,7 @@ msgid "Reject"
2900
  msgstr "رد کردن"
2901
 
2902
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2903
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2904
  #: modules/mycred-module-settings.php:699
2905
  msgid "Delete"
2906
  msgstr "پاک کردن"
@@ -3409,44 +3409,44 @@ msgstr ""
3409
  msgid "Save Profit Share"
3410
  msgstr ""
3411
 
3412
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3413
  msgid "Profit Share override saved"
3414
  msgstr ""
3415
 
3416
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3417
  msgid "You can not buy this content."
3418
  msgstr "شما قادر به خرید این محتوا نیستید ."
3419
 
3420
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3421
  msgid "Error. Try Again"
3422
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3423
 
3424
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3425
  msgid "No Payout. Just charge."
3426
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3427
 
3428
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3429
  msgid "Pay Content Author."
3430
  msgstr "پرداخت به نویسنده ی محتوا"
3431
 
3432
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3433
  #: overview.php:141 ../includes/mycred-overview.php:148
3434
  msgid "Sell Content"
3435
  msgstr "فروش محتوا"
3436
 
3437
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3438
  msgid "Post Types"
3439
  msgstr "انواع پست"
3440
 
3441
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3442
  msgid "Comma separated list of post types that can be sold."
3443
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3444
 
3445
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3446
  msgid "Percentage to pay Author"
3447
  msgstr "درصدی برای پرداخت به نویسنده"
3448
 
3449
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3450
  msgid ""
3451
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3452
  "authors are not paid."
@@ -3454,31 +3454,31 @@ msgstr ""
3454
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3455
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3456
 
3457
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3458
  msgid "Defaults"
3459
  msgstr "پیش فرض ها"
3460
 
3461
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3462
  msgid "Allow authors to change price."
3463
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3464
 
3465
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3466
  msgid "Allow authors to change button label."
3467
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3468
 
3469
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3470
  msgid "Purchases expire after"
3471
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3472
 
3473
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3474
  msgid "Use zero for permanent sales."
3475
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3476
 
3477
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3478
  msgid "For Visitors"
3479
  msgstr ""
3480
 
3481
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3482
  #, php-format
3483
  msgid ""
3484
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3487,67 +3487,67 @@ msgstr ""
3487
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3488
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3489
 
3490
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3491
  msgid "For Members"
3492
  msgstr ""
3493
 
3494
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3495
- #: content/myCRED-addon-sell-content.php:516
3496
  #, php-format
3497
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3498
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3499
 
3500
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3501
  msgid "For members that can not afford to buy"
3502
  msgstr ""
3503
 
3504
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3505
  msgid "Log template for Purchases"
3506
  msgstr "الگوی لیست گزارش برای خریدها"
3507
 
3508
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3509
  msgid "Log template for Sales"
3510
  msgstr "الگوی لیست گزارش برای فروش ها"
3511
 
3512
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3513
  #, php-format
3514
  msgid "%s Sell This"
3515
  msgstr "فروش %s "
3516
 
3517
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3518
  #, php-format
3519
  msgid "%s Sell Content needs to be setup before you can use this feature."
3520
  msgstr ""
3521
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3522
  "اندازی کنید ."
3523
 
3524
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3525
  msgid "Setup add-on"
3526
  msgstr "نصب افزونه"
3527
 
3528
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3529
  msgid "Lets do it"
3530
  msgstr "بریم که داشته باشیم !"
3531
 
3532
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3533
  #, php-format
3534
  msgid "Enable sale of this %s"
3535
  msgstr ""
3536
 
3537
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3538
  msgid "Purchase expires after"
3539
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3540
 
3541
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3542
  msgid "Thank you for your purchase!"
3543
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3544
 
3545
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3546
- #: content/myCRED-addon-sell-content.php:1190
3547
  msgid "The following content is set for sale:"
3548
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3549
 
3550
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3551
  msgid "Purchased"
3552
  msgstr "خریداری شده"
3553
 
@@ -3613,17 +3613,17 @@ msgid "Total Spent: %s"
3613
  msgstr ""
3614
 
3615
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3616
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3617
  msgid "Today"
3618
  msgstr "امروز"
3619
 
3620
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3621
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3622
  msgid "This Week"
3623
  msgstr "این هفته"
3624
 
3625
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3626
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3627
  msgid "This Month"
3628
  msgstr "این ماه"
3629
 
@@ -3658,13 +3658,13 @@ msgstr ""
3658
  msgid "Gains in the last 10 days"
3659
  msgstr ""
3660
 
3661
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3662
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3663
  msgid "View"
3664
  msgstr ""
3665
 
3666
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3667
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3668
  msgid "No data found"
3669
  msgstr ""
3670
 
@@ -3917,121 +3917,121 @@ msgstr "نمایش محدودیت جابجایی امتیاز برای کارب
3917
  msgid "Welcome to %s %s"
3918
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
3919
 
3920
- #: ../includes/mycred-admin.php:191
3921
  msgid "A log entry is required in order to adjust this users balance"
3922
  msgstr ""
3923
 
3924
- #: ../includes/mycred-admin.php:193
3925
  msgid "Users balance saved"
3926
  msgstr ""
3927
 
3928
- #: ../includes/mycred-admin.php:201
3929
  msgid "Users excluded"
3930
  msgstr ""
3931
 
3932
- #: ../includes/mycred-admin.php:206
3933
  msgid ""
3934
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3935
  "rate settings and update all premium payment gateways!"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-admin.php:234
3939
  msgid "User is excluded"
3940
  msgstr "کاربر بن شد !"
3941
 
3942
- #: ../includes/mycred-admin.php:239
3943
  msgid "Log Entry can not be empty"
3944
  msgstr "داده های لیست گزارش نباید خالی باشد"
3945
 
3946
- #: ../includes/mycred-admin.php:243
3947
  msgid "Amount can not be zero"
3948
  msgstr "این مقدار نباید صفر باشد"
3949
 
3950
- #: ../includes/mycred-admin.php:264
3951
  msgid "Failed to update this uses balance."
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-admin.php:385
3955
  msgid "Excluded"
3956
  msgstr "بن شده ( محروم شده )"
3957
 
3958
- #: ../includes/mycred-admin.php:406
3959
  msgid "Adjust"
3960
  msgstr "تطبیق"
3961
 
3962
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3963
  msgid "Edit Balance"
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-admin.php:463
3967
  msgid "Profile"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-admin.php:470
3971
  msgid "Extended Profile"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-admin.php:560
3975
  #, php-format
3976
  msgid "This user is excluded from using %s"
3977
  msgstr ""
3978
 
3979
- #: ../includes/mycred-admin.php:583
3980
  msgid "Edit User"
3981
  msgstr ""
3982
 
3983
- #: ../includes/mycred-admin.php:585
3984
  msgctxt "user"
3985
  msgid "Add New"
3986
  msgstr ""
3987
 
3988
- #: ../includes/mycred-admin.php:587
3989
  msgctxt "user"
3990
  msgid "Add Existing"
3991
  msgstr ""
3992
 
3993
- #: ../includes/mycred-admin.php:598
3994
  #, php-format
3995
  msgid "Total %s Accumulated"
3996
  msgstr ""
3997
 
3998
- #: ../includes/mycred-admin.php:599
3999
  #, php-format
4000
  msgid "Total %s Spent"
4001
  msgstr ""
4002
 
4003
- #: ../includes/mycred-admin.php:610
4004
  msgid "View History"
4005
  msgstr ""
4006
 
4007
- #: ../includes/mycred-admin.php:611
4008
  msgid "Exclude User"
4009
  msgstr ""
4010
 
4011
- #: ../includes/mycred-admin.php:615
4012
  msgid "Adjust Balance"
4013
  msgstr ""
4014
 
4015
- #: ../includes/mycred-admin.php:624
4016
  msgid ""
4017
  "Warning! Excluding this user will result in their balance being deleted "
4018
  "along with any entries currently in your log! This can not be undone!"
4019
  msgstr ""
4020
 
4021
- #: ../includes/mycred-admin.php:682
4022
  #, php-format
4023
  msgid "%singular% balance"
4024
  msgstr ""
4025
 
4026
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4027
  msgid "Update Balance"
4028
  msgstr "به روزرسانی میزان امتیاز"
4029
 
4030
- #: ../includes/mycred-admin.php:753
4031
  msgid "ID"
4032
  msgstr "شناسه"
4033
 
4034
- #: ../includes/mycred-admin.php:759
4035
  msgid "A positive or negative value"
4036
  msgstr "مقدار مثبت یا منفی"
4037
 
@@ -4692,101 +4692,101 @@ msgstr ""
4692
  msgid "Install & Run"
4693
  msgstr "نصب و راه اندازی"
4694
 
4695
- #: ../includes/mycred-log.php:430
4696
  #, php-format
4697
  msgid "Showing %d %s"
4698
  msgstr "نمایش %d %s"
4699
 
4700
- #: ../includes/mycred-log.php:430
4701
  msgid "entry"
4702
  msgstr "اطلاعات ورودی"
4703
 
4704
- #: ../includes/mycred-log.php:444
4705
  msgid "Go to the first page"
4706
  msgstr ""
4707
 
4708
- #: ../includes/mycred-log.php:451
4709
  msgid "Go to the previous page"
4710
  msgstr ""
4711
 
4712
- #: ../includes/mycred-log.php:460
4713
  msgid "Current page"
4714
  msgstr ""
4715
 
4716
- #: ../includes/mycred-log.php:466
4717
  #, php-format
4718
  msgctxt "mycred"
4719
  msgid "%1$s of %2$s"
4720
  msgstr ""
4721
 
4722
- #: ../includes/mycred-log.php:470
4723
  msgid "Go to the next page"
4724
  msgstr ""
4725
 
4726
- #: ../includes/mycred-log.php:477
4727
  msgid "Go to the last page"
4728
  msgstr ""
4729
 
4730
- #: ../includes/mycred-log.php:544
4731
  msgid "Show all references"
4732
  msgstr "نمایش تمام منابع"
4733
 
4734
- #: ../includes/mycred-log.php:557
4735
  msgid "User ID, Username, Email or Nicename"
4736
  msgstr ""
4737
 
4738
- #: ../includes/mycred-log.php:563
4739
  msgid "Show in order"
4740
  msgstr "نمایش بر اساس"
4741
 
4742
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4743
  msgid "Ascending"
4744
  msgstr "صعودی"
4745
 
4746
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4747
  msgid "Descending"
4748
  msgstr "نزولی"
4749
 
4750
- #: ../includes/mycred-log.php:582
4751
  msgid "Filter"
4752
  msgstr "فیــلتر"
4753
 
4754
- #: ../includes/mycred-log.php:635
4755
  msgid ""
4756
  "Log entries are exported to a CSV file and depending on the number of "
4757
  "entries selected, the process may take a few seconds."
4758
  msgstr ""
4759
 
4760
- #: ../includes/mycred-log.php:639
4761
  msgid "No export options available."
4762
  msgstr ""
4763
 
4764
- #: ../includes/mycred-log.php:668
4765
  msgid "Entry"
4766
  msgstr "ورودی"
4767
 
4768
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4769
  msgid "User Missing"
4770
  msgstr "یافت نشدن کاربر"
4771
 
4772
- #: ../includes/mycred-log.php:839
4773
  msgid "No log entries found"
4774
  msgstr "گزارشی یافت نشد !"
4775
 
4776
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4777
  msgid "Search Log"
4778
  msgstr "جستجو در میان لیست گزارش"
4779
 
4780
- #: ../includes/mycred-log.php:855
4781
  msgid "search log entries"
4782
  msgstr "جستجو در بین داده ها"
4783
 
4784
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4785
  #: modules/mycred-module-buddypress.php:249
4786
  msgid "All"
4787
  msgstr "همگی"
4788
 
4789
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4790
  msgid "Yesterday"
4791
  msgstr "دیروز"
4792
 
@@ -5028,7 +5028,7 @@ msgstr ""
5028
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5029
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5030
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5031
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5032
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5033
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5034
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5668,7 +5668,7 @@ msgstr ""
5668
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5669
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5670
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5671
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5672
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5673
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5674
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -5988,8 +5988,8 @@ msgstr ""
5988
  msgid "Entries"
5989
  msgstr "داده های ورودی"
5990
 
5991
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5992
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5993
  msgid "Export"
5994
  msgstr "خروجی گرفتن"
5995
 
@@ -6008,35 +6008,35 @@ msgid ""
6008
  "Certain hooks and shortcodes will not work correctly!"
6009
  msgstr ""
6010
 
6011
- #: ../modules/mycred-module-log.php:565
6012
  msgid "Edit"
6013
  msgstr ""
6014
 
6015
- #: ../modules/mycred-module-log.php:612
6016
  msgid "Time"
6017
  msgstr ""
6018
 
6019
- #: ../modules/mycred-module-log.php:616
6020
  msgid "Current Log Entry"
6021
  msgstr ""
6022
 
6023
- #: ../modules/mycred-module-log.php:618
6024
  msgid "The current saved log entry"
6025
  msgstr ""
6026
 
6027
- #: ../modules/mycred-module-log.php:621
6028
  msgid "Adjust Log Entry"
6029
  msgstr ""
6030
 
6031
- #: ../modules/mycred-module-log.php:623
6032
  msgid "The new log entry"
6033
  msgstr ""
6034
 
6035
- #: ../modules/mycred-module-log.php:626
6036
  msgid "Update Log Entry"
6037
  msgstr ""
6038
 
6039
- #: ../modules/mycred-module-log.php:697
6040
  #, php-format
6041
  msgid "My %s History"
6042
  msgstr ""
@@ -6727,23 +6727,23 @@ msgstr "اشتراک در دیدگاه ها"
6727
  msgid "Reward with %plural%"
6728
  msgstr ""
6729
 
6730
- #: ../plugins/mycred-hook-sharethis.php:18
6731
  #, php-format
6732
  msgid "%plural% for Sharing"
6733
  msgstr ""
6734
 
6735
- #: ../plugins/mycred-hook-sharethis.php:19
6736
  #, php-format
6737
  msgid ""
6738
  "Awards %_plural% for users sharing / liking your website content to popular "
6739
  "social media sites."
6740
  msgstr ""
6741
 
6742
- #: ../plugins/mycred-hook-sharethis.php:232
6743
  msgid "Your ShareThis public key is not set."
6744
  msgstr ""
6745
 
6746
- #: ../plugins/mycred-hook-sharethis.php:237
6747
  msgid "No ShareThis services detected. Please check your installation."
6748
  msgstr ""
6749
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:42:49 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: fa_IR"
26
 
27
+ #: ../mycred.php:461
28
  msgid "Balance"
29
  msgstr ""
30
 
31
+ #: ../mycred.php:486
32
  msgid "%label% History"
33
  msgstr ""
34
 
35
+ #: ../mycred.php:580
36
  #, php-format
37
  msgid "About %s"
38
  msgstr "درباره %s"
39
 
40
+ #: ../mycred.php:589
41
  msgid "Awesome People"
42
  msgstr "\"اعتبار من\""
43
 
44
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
45
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
46
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
47
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
48
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
49
  #: php:636
50
  msgid "Processing..."
51
  msgstr "در حال پردازش ..."
52
 
53
+ #: ../mycred.php:678
54
  msgid ""
55
  "Warning! All entries in your log will be permanently removed! This can not "
56
  "be undone!"
57
  msgstr ""
58
 
59
+ #: ../mycred.php:679
60
  msgid ""
61
  "All log entries belonging to deleted users will be permanently deleted! This "
62
  "can not be undone!"
63
  msgstr ""
64
 
65
+ #: ../mycred.php:680
66
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
67
  msgstr ""
68
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
69
  "غیرقابل بازگشت می باشد !"
70
 
71
+ #: ../mycred.php:681
72
  msgid "Done!"
73
  msgstr "انجام شد !"
74
 
75
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
76
  msgid "Close"
77
  msgstr "بستن"
78
 
79
+ #: ../mycred.php:683
80
  msgid "Export users %plural%"
81
  msgstr "خروجی گرفتن از %plural% کاربران"
82
 
83
+ #: ../mycred.php:684
84
  msgid ""
85
  "In order to adjust the number of decimal places you want to use we must "
86
  "update your log. It is highly recommended that you backup your current log "
87
  "before continuing!"
88
  msgstr ""
89
 
90
+ #: ../mycred.php:700
91
  msgid "Edit Users Balance"
92
  msgstr ""
93
 
94
+ #: ../mycred.php:718
95
  msgid "Edit Log Entry"
96
  msgstr ""
97
 
98
+ #: ../mycred.php:722
99
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
100
  msgstr ""
101
 
102
+ #: ../mycred.php:723
103
  msgid "Log entry updated"
104
  msgstr ""
105
 
106
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
107
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
108
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
109
  msgid "Setup"
110
  msgstr "نصب"
111
 
112
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
113
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
114
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
115
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
116
  msgid "Settings"
117
  msgstr "تنظیمات"
118
 
119
+ #: ../mycred.php:825
120
  msgid ""
121
  "Make sure to backup your database and files before updating, in case "
122
  "anything goes wrong!"
161
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
162
 
163
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
164
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
165
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../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:356 ../addons/email-notices/myCRED-addon-email-
188
  msgstr "برای باز شدن کلیک کنید ."
189
 
190
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
191
+ #: buy-creds.php:927
192
  msgid "Settings Updated"
193
  msgstr "تنظیمات به روز شد"
194
 
229
  msgstr ""
230
 
231
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
232
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
233
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
234
  #: addons/ranks/myCRED-addon-ranks.php:448
235
  msgid "Add New"
461
  msgstr "وضعیت"
462
 
463
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
464
+ #: addon-email-notices.php:1296
465
  msgid "Save Changes"
466
  msgstr ""
467
 
527
  msgstr ""
528
 
529
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
530
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
531
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
532
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
533
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
534
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
535
  msgid "Access Denied"
536
  msgstr "دسترسی غیرمجاز می باشد"
537
 
556
  "مدیر سایت می دهد"
557
 
558
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
559
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
560
  msgid "Enable"
561
  msgstr "فعالسازی"
562
 
678
 
679
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
680
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
681
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
682
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
683
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
684
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
685
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
737
  msgstr ""
738
 
739
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
740
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
741
  #: content.php:114
742
  msgid "Leave empty to use the default value."
743
  msgstr ""
750
  msgid "Exclude from receiving interest"
751
  msgstr ""
752
 
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
754
  msgid "Compound interest rate saved."
755
  msgstr ""
756
 
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
758
  msgid "User excluded from receiving interest."
759
  msgstr ""
760
 
761
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
762
  msgid "User included in receiving interest."
763
  msgstr ""
764
 
767
  msgstr "%_plural% روزانه"
768
 
769
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
770
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
771
  #: modules/mycred-module-log.php:277
772
  msgid "History"
773
  msgstr "لیست تغییرات"
785
  msgstr "پرداخت به کاربران :"
786
 
787
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
788
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
789
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
790
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
791
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
792
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
793
  #: plugins/mycred-hook-affiliatewp.php:256
794
  msgid "Amount"
829
  msgid "Payment Gateways"
830
  msgstr "درگاه های پرداخت"
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
833
  msgctxt "Post Type General Name"
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
838
  msgctxt "Post Type Singular Name"
839
  msgid "Pending Payment"
840
  msgstr ""
841
 
842
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
843
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
844
  msgid "Pending Payments"
845
  msgstr ""
846
 
847
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
848
  msgid "Edit Pending Payment"
849
  msgstr ""
850
 
851
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
852
+ #: addon-buy-creds.php:1752
853
  msgid "No pending payments found"
854
  msgstr ""
855
 
856
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
857
  msgid "Not found in Trash"
858
  msgstr ""
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
862
  msgid "Transaction ID"
863
  msgstr ""
864
 
865
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
866
+ #: addon-buy-creds.php:1074
867
  msgid "Buyer"
868
  msgstr ""
869
 
870
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
871
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
872
  #: gateway.php:594
873
  msgid "Cost"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
877
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
878
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
879
  msgid "Gateway"
880
  msgstr "درگاه"
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
883
  msgid "Type"
884
  msgstr ""
885
 
886
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
887
  msgid "Pay Out"
888
  msgstr ""
889
 
890
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
891
  msgid "buyCRED Purchase Log"
892
  msgstr ""
893
 
894
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
895
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
896
  msgid "Purchase Log"
897
  msgstr ""
898
 
899
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
900
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
901
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
902
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
903
  msgid "Payments"
904
  msgstr "پرداخت ها"
905
 
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
907
  msgid "Please login to purchase %_plural%"
908
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
911
  #, php-format
912
  msgid "Gift purchase from %display_name%."
913
  msgstr "خرید هدیه توسط %display_name% ."
914
 
915
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
916
  #: addon-ranks.php:1084
917
  msgid "Minimum %plural%"
918
  msgstr "کمترین مفدار %plural%"
919
 
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
921
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
922
  msgstr ""
923
  "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض "
924
  "روی عدد یک تنظیم شده است ."
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
927
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
928
  #: module-settings.php:656
929
  msgid "Point Types"
930
  msgstr ""
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
933
  msgid "Select the point types that users can buy. You must select at least one!"
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
937
  msgid "Login Template"
938
  msgstr "نمونه طرح ورود به سایت"
939
 
940
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
941
  msgid "Content to show when a user is not logged in."
942
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
945
  msgid "Thank You Page"
946
  msgstr "صفحه ی تشکر بابت خرید"
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
949
+ #: addon-buy-creds.php:705
950
  msgid "Custom URL"
951
  msgstr "نشانی اینترنتی متفاوت"
952
 
953
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
954
+ #: addon-buy-creds.php:710
955
  msgid "Page"
956
  msgstr "صفحه"
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
959
  msgid "Cancellation Page"
960
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
961
 
962
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
963
  msgid "Show seperate log for %_plural% purchases."
964
  msgstr ""
965
 
966
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
967
  msgid "Gifting"
968
  msgstr "هدیه دادن"
969
 
970
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
971
  #, php-format
972
  msgid "Allow users to buy %_plural% for other users."
973
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
974
 
975
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for content authors."
978
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
979
 
980
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
981
  #: hooks.php:3110
982
  msgid "Available Shortcodes"
983
  msgstr ""
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
986
  #, php-format
987
  msgid "%s Exchange Rate"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
991
  msgid "Save Exchange Rates"
992
  msgstr ""
993
 
994
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
995
  msgid "Exchange rate override saved"
996
  msgstr ""
997
 
998
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
999
  msgid "Payment completed"
1000
  msgstr ""
1001
 
1002
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1003
  #, php-format
1004
  msgid "%s Payment Gateways"
1005
  msgstr "درگاه های پرداخت %s"
1006
 
1007
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1008
+ #: addon-buy-creds.php:1085
1009
  msgid "buyCRED Settings"
1010
  msgstr ""
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1013
  msgid "Test Mode"
1014
  msgstr "حالت آزمایشی ( تست )"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1017
  msgid "Enabled"
1018
  msgstr "فعال شد"
1019
 
1020
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1021
  msgid "Disabled"
1022
  msgstr "غیرفعال شد"
1023
 
1024
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1025
  msgid "Sandbox Mode"
1026
  msgstr ""
1027
  "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
1028
  "نمی گردد )"
1029
 
1030
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1031
  msgid "Enable for test purchases."
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1035
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1036
  msgid "Update Settings"
1037
  msgstr "به روزرسانی تنظیمات"
1038
 
1039
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1040
  msgid "More Gateways"
1041
  msgstr ""
1042
 
1043
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1044
+ #: 756
1045
  msgid "Date"
1046
  msgstr "تاریخ"
1047
 
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1049
  msgid "Payed"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1053
  msgid "<strong>buy</strong>CRED Purchase Log"
1054
  msgstr ""
1055
 
1056
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1057
  #: booking/mycred-eventespresso3.php:367
1058
  msgid "Gateway Settings"
1059
  msgstr "تنظیمات درگاه پرداخت"
1060
 
1061
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1062
+ #: content/myCRED-addon-sell-content.php:1210
1063
  msgid "No purchases found"
1064
  msgstr "خریدی یافت نشد"
1065
 
1066
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1067
+ #: addon-buy-creds.php:1464
1068
  msgid "This Add-on needs to setup before you can use this shortcode."
1069
  msgstr ""
1070
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
1071
  "جانبی را راه اندازی کنید ."
1072
 
1073
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1074
+ #: addon-buy-creds.php:1483
1075
  msgid "No gateways installed."
1076
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
1077
 
1078
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1079
+ #: addon-buy-creds.php:1484
1080
  msgid "Gateway does not exist."
1081
  msgstr "درگاه موجود نیست ."
1082
 
1083
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1084
  msgid "Yourself"
1085
  msgstr "خودتان"
1086
 
1087
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1088
  msgid "No active gateways found."
1089
  msgstr "درگاه پرداخت فعالی یافت نشد ."
1090
 
1091
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1092
  msgid "The selected gateway is not active."
1093
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
1094
 
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1096
  #, php-format
1097
  msgid "Buy with %gateway%"
1098
  msgstr ""
1099
 
1100
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1101
  #: content/myCRED-addon-sell-content.php:44
1102
  msgid "Buy Now"
1103
  msgstr "همین الان بخرید"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1106
  msgid "No users found"
1107
  msgstr "کاربری یافت نشد"
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1110
  msgid "To"
1111
  msgstr "به"
1112
 
1113
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1114
  msgid "Select Amount"
1115
  msgstr "مقدار را انتخاب کنید"
1116
 
1117
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1118
  msgid "min."
1119
  msgstr "حداقل"
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1122
  msgid "Select Gateway"
1123
  msgstr "درگاه پرداخت را انتخاب کنید"
1124
 
1125
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1126
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1127
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1128
  #: php:35
1129
  msgid "Pay Now"
1130
  msgstr "همین حالا بپردازید"
1131
 
1132
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1133
  #: php:536
1134
  msgid "Cancel"
1135
  msgstr "لغو"
1136
 
1137
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1138
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1139
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1140
  msgid "Actions"
1175
  msgstr ""
1176
 
1177
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1178
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1179
  msgid "required"
1180
  msgstr "ضروری"
1181
 
1182
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1183
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1184
  msgid "optional"
1185
  msgstr "اختیاری"
1186
 
1733
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1734
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1735
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1736
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1737
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1738
  #: includes/importers/mycred-cubepoints.php:365
1739
  msgid "Point Type"
1745
  msgstr ""
1746
 
1747
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1748
+ #: 416 ../modules/mycred-module-hooks.php:2507
1749
  msgid "Total"
1750
  msgstr ""
1751
 
1896
  msgstr ""
1897
 
1898
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1899
+ #: notices/myCRED-addon-email-notices.php:1270
1900
  msgid "Email Notice"
1901
  msgstr "اطلاعیه ایمیلی"
1902
 
2183
  msgstr "ارسال شده به"
2184
 
2185
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2186
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2187
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2188
  msgid "User"
2189
  msgstr "کاربر"
2190
 
2317
  msgid "Settings saved."
2318
  msgstr ""
2319
 
2320
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2321
  msgid "Unsubscribe"
2322
  msgstr ""
2323
 
2324
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2325
  msgid "There are no email notifications yet."
2326
  msgstr ""
2327
 
2328
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2329
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2330
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2331
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2332
  msgid "Current Balance"
2333
  msgstr "میزان امتیازات اخیر"
2334
 
2768
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2769
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2770
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2771
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2772
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2773
  msgid "Button Label"
2774
  msgstr "برچسب کلید"
2775
 
2782
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2783
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2784
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2785
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2786
+ #: sell-content.php:683
2787
  msgid "Price"
2788
  msgstr "هزینه"
2789
 
2809
  msgstr "لیست گزارش ( لوگ )"
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2812
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2813
  msgid "Log Entry"
2814
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2815
 
2816
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2817
+ #: content/myCRED-addon-sell-content.php:474
2818
  msgid "Templates"
2819
  msgstr "نمونه ها ( الگوها )"
2820
 
2900
  msgstr "رد کردن"
2901
 
2902
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2903
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2904
  #: modules/mycred-module-settings.php:699
2905
  msgid "Delete"
2906
  msgstr "پاک کردن"
3409
  msgid "Save Profit Share"
3410
  msgstr ""
3411
 
3412
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3413
  msgid "Profit Share override saved"
3414
  msgstr ""
3415
 
3416
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3417
  msgid "You can not buy this content."
3418
  msgstr "شما قادر به خرید این محتوا نیستید ."
3419
 
3420
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3421
  msgid "Error. Try Again"
3422
  msgstr "خطا . لطفا مجددا امتحان فرمایید ."
3423
 
3424
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3425
  msgid "No Payout. Just charge."
3426
  msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز انجام می شود ."
3427
 
3428
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3429
  msgid "Pay Content Author."
3430
  msgstr "پرداخت به نویسنده ی محتوا"
3431
 
3432
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3433
  #: overview.php:141 ../includes/mycred-overview.php:148
3434
  msgid "Sell Content"
3435
  msgstr "فروش محتوا"
3436
 
3437
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3438
  msgid "Post Types"
3439
  msgstr "انواع پست"
3440
 
3441
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3442
  msgid "Comma separated list of post types that can be sold."
3443
  msgstr "لیستی از انواع پست هایی که امکان فروش دارند و با ویرگول از هم جدا شده اند ."
3444
 
3445
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3446
  msgid "Percentage to pay Author"
3447
  msgstr "درصدی برای پرداخت به نویسنده"
3448
 
3449
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3450
  msgid ""
3451
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3452
  "authors are not paid."
3454
  "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3455
  "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3456
 
3457
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3458
  msgid "Defaults"
3459
  msgstr "پیش فرض ها"
3460
 
3461
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3462
  msgid "Allow authors to change price."
3463
  msgstr "به نویسندگان اجازه ی تغییر هزینه را بدهید ."
3464
 
3465
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3466
  msgid "Allow authors to change button label."
3467
  msgstr "به نویسندگان اجازه ی تغییر متن روی کلید ( لیبل ) را بدهید ."
3468
 
3469
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3470
  msgid "Purchases expire after"
3471
  msgstr "خریدها تا چند ساعت دیگر امکان پذیر باشند ؟"
3472
 
3473
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3474
  msgid "Use zero for permanent sales."
3475
  msgstr "برای ایجاد عدم محدودیتِ زمانی بر روی خریدها ، عدد صفر را وارد کنید ."
3476
 
3477
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3478
  msgid "For Visitors"
3479
  msgstr ""
3480
 
3481
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3482
  #, php-format
3483
  msgid ""
3484
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3487
  "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3488
  "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3489
 
3490
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3491
  msgid "For Members"
3492
  msgstr ""
3493
 
3494
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3495
+ #: content/myCRED-addon-sell-content.php:517
3496
  #, php-format
3497
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3498
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3499
 
3500
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3501
  msgid "For members that can not afford to buy"
3502
  msgstr ""
3503
 
3504
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3505
  msgid "Log template for Purchases"
3506
  msgstr "الگوی لیست گزارش برای خریدها"
3507
 
3508
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3509
  msgid "Log template for Sales"
3510
  msgstr "الگوی لیست گزارش برای فروش ها"
3511
 
3512
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3513
  #, php-format
3514
  msgid "%s Sell This"
3515
  msgstr "فروش %s "
3516
 
3517
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3518
  #, php-format
3519
  msgid "%s Sell Content needs to be setup before you can use this feature."
3520
  msgstr ""
3521
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3522
  "اندازی کنید ."
3523
 
3524
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3525
  msgid "Setup add-on"
3526
  msgstr "نصب افزونه"
3527
 
3528
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3529
  msgid "Lets do it"
3530
  msgstr "بریم که داشته باشیم !"
3531
 
3532
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3533
  #, php-format
3534
  msgid "Enable sale of this %s"
3535
  msgstr ""
3536
 
3537
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3538
  msgid "Purchase expires after"
3539
  msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
3540
 
3541
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3542
  msgid "Thank you for your purchase!"
3543
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3544
 
3545
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3546
+ #: content/myCRED-addon-sell-content.php:1191
3547
  msgid "The following content is set for sale:"
3548
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3549
 
3550
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3551
  msgid "Purchased"
3552
  msgstr "خریداری شده"
3553
 
3613
  msgstr ""
3614
 
3615
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3616
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3617
  msgid "Today"
3618
  msgstr "امروز"
3619
 
3620
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3621
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3622
  msgid "This Week"
3623
  msgstr "این هفته"
3624
 
3625
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3626
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3627
  msgid "This Month"
3628
  msgstr "این ماه"
3629
 
3658
  msgid "Gains in the last 10 days"
3659
  msgstr ""
3660
 
3661
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3662
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3663
  msgid "View"
3664
  msgstr ""
3665
 
3666
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3667
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3668
  msgid "No data found"
3669
  msgstr ""
3670
 
3917
  msgid "Welcome to %s %s"
3918
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
3919
 
3920
+ #: ../includes/mycred-admin.php:198
3921
  msgid "A log entry is required in order to adjust this users balance"
3922
  msgstr ""
3923
 
3924
+ #: ../includes/mycred-admin.php:200
3925
  msgid "Users balance saved"
3926
  msgstr ""
3927
 
3928
+ #: ../includes/mycred-admin.php:208
3929
  msgid "Users excluded"
3930
  msgstr ""
3931
 
3932
+ #: ../includes/mycred-admin.php:213
3933
  msgid ""
3934
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3935
  "rate settings and update all premium payment gateways!"
3936
  msgstr ""
3937
 
3938
+ #: ../includes/mycred-admin.php:242
3939
  msgid "User is excluded"
3940
  msgstr "کاربر بن شد !"
3941
 
3942
+ #: ../includes/mycred-admin.php:247
3943
  msgid "Log Entry can not be empty"
3944
  msgstr "داده های لیست گزارش نباید خالی باشد"
3945
 
3946
+ #: ../includes/mycred-admin.php:251
3947
  msgid "Amount can not be zero"
3948
  msgstr "این مقدار نباید صفر باشد"
3949
 
3950
+ #: ../includes/mycred-admin.php:272
3951
  msgid "Failed to update this uses balance."
3952
  msgstr ""
3953
 
3954
+ #: ../includes/mycred-admin.php:406
3955
  msgid "Excluded"
3956
  msgstr "بن شده ( محروم شده )"
3957
 
3958
+ #: ../includes/mycred-admin.php:427
3959
  msgid "Adjust"
3960
  msgstr "تطبیق"
3961
 
3962
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3963
  msgid "Edit Balance"
3964
  msgstr ""
3965
 
3966
+ #: ../includes/mycred-admin.php:490
3967
  msgid "Profile"
3968
  msgstr ""
3969
 
3970
+ #: ../includes/mycred-admin.php:497
3971
  msgid "Extended Profile"
3972
  msgstr ""
3973
 
3974
+ #: ../includes/mycred-admin.php:591
3975
  #, php-format
3976
  msgid "This user is excluded from using %s"
3977
  msgstr ""
3978
 
3979
+ #: ../includes/mycred-admin.php:615
3980
  msgid "Edit User"
3981
  msgstr ""
3982
 
3983
+ #: ../includes/mycred-admin.php:617
3984
  msgctxt "user"
3985
  msgid "Add New"
3986
  msgstr ""
3987
 
3988
+ #: ../includes/mycred-admin.php:619
3989
  msgctxt "user"
3990
  msgid "Add Existing"
3991
  msgstr ""
3992
 
3993
+ #: ../includes/mycred-admin.php:630
3994
  #, php-format
3995
  msgid "Total %s Accumulated"
3996
  msgstr ""
3997
 
3998
+ #: ../includes/mycred-admin.php:631
3999
  #, php-format
4000
  msgid "Total %s Spent"
4001
  msgstr ""
4002
 
4003
+ #: ../includes/mycred-admin.php:642
4004
  msgid "View History"
4005
  msgstr ""
4006
 
4007
+ #: ../includes/mycred-admin.php:643
4008
  msgid "Exclude User"
4009
  msgstr ""
4010
 
4011
+ #: ../includes/mycred-admin.php:647
4012
  msgid "Adjust Balance"
4013
  msgstr ""
4014
 
4015
+ #: ../includes/mycred-admin.php:656
4016
  msgid ""
4017
  "Warning! Excluding this user will result in their balance being deleted "
4018
  "along with any entries currently in your log! This can not be undone!"
4019
  msgstr ""
4020
 
4021
+ #: ../includes/mycred-admin.php:721
4022
  #, php-format
4023
  msgid "%singular% balance"
4024
  msgstr ""
4025
 
4026
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4027
  msgid "Update Balance"
4028
  msgstr "به روزرسانی میزان امتیاز"
4029
 
4030
+ #: ../includes/mycred-admin.php:798
4031
  msgid "ID"
4032
  msgstr "شناسه"
4033
 
4034
+ #: ../includes/mycred-admin.php:804
4035
  msgid "A positive or negative value"
4036
  msgstr "مقدار مثبت یا منفی"
4037
 
4692
  msgid "Install & Run"
4693
  msgstr "نصب و راه اندازی"
4694
 
4695
+ #: ../includes/mycred-log.php:485
4696
  #, php-format
4697
  msgid "Showing %d %s"
4698
  msgstr "نمایش %d %s"
4699
 
4700
+ #: ../includes/mycred-log.php:485
4701
  msgid "entry"
4702
  msgstr "اطلاعات ورودی"
4703
 
4704
+ #: ../includes/mycred-log.php:500
4705
  msgid "Go to the first page"
4706
  msgstr ""
4707
 
4708
+ #: ../includes/mycred-log.php:507
4709
  msgid "Go to the previous page"
4710
  msgstr ""
4711
 
4712
+ #: ../includes/mycred-log.php:517
4713
  msgid "Current page"
4714
  msgstr ""
4715
 
4716
+ #: ../includes/mycred-log.php:523
4717
  #, php-format
4718
  msgctxt "mycred"
4719
  msgid "%1$s of %2$s"
4720
  msgstr ""
4721
 
4722
+ #: ../includes/mycred-log.php:527
4723
  msgid "Go to the next page"
4724
  msgstr ""
4725
 
4726
+ #: ../includes/mycred-log.php:534
4727
  msgid "Go to the last page"
4728
  msgstr ""
4729
 
4730
+ #: ../includes/mycred-log.php:611
4731
  msgid "Show all references"
4732
  msgstr "نمایش تمام منابع"
4733
 
4734
+ #: ../includes/mycred-log.php:628
4735
  msgid "User ID, Username, Email or Nicename"
4736
  msgstr ""
4737
 
4738
+ #: ../includes/mycred-log.php:636
4739
  msgid "Show in order"
4740
  msgstr "نمایش بر اساس"
4741
 
4742
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4743
  msgid "Ascending"
4744
  msgstr "صعودی"
4745
 
4746
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4747
  msgid "Descending"
4748
  msgstr "نزولی"
4749
 
4750
+ #: ../includes/mycred-log.php:658
4751
  msgid "Filter"
4752
  msgstr "فیــلتر"
4753
 
4754
+ #: ../includes/mycred-log.php:718
4755
  msgid ""
4756
  "Log entries are exported to a CSV file and depending on the number of "
4757
  "entries selected, the process may take a few seconds."
4758
  msgstr ""
4759
 
4760
+ #: ../includes/mycred-log.php:725
4761
  msgid "No export options available."
4762
  msgstr ""
4763
 
4764
+ #: ../includes/mycred-log.php:758
4765
  msgid "Entry"
4766
  msgstr "ورودی"
4767
 
4768
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4769
  msgid "User Missing"
4770
  msgstr "یافت نشدن کاربر"
4771
 
4772
+ #: ../includes/mycred-log.php:958
4773
  msgid "No log entries found"
4774
  msgstr "گزارشی یافت نشد !"
4775
 
4776
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4777
  msgid "Search Log"
4778
  msgstr "جستجو در میان لیست گزارش"
4779
 
4780
+ #: ../includes/mycred-log.php:977
4781
  msgid "search log entries"
4782
  msgstr "جستجو در بین داده ها"
4783
 
4784
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4785
  #: modules/mycred-module-buddypress.php:249
4786
  msgid "All"
4787
  msgstr "همگی"
4788
 
4789
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4790
  msgid "Yesterday"
4791
  msgstr "دیروز"
4792
 
5028
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5029
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5030
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5031
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5032
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5033
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5034
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5668
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5669
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5670
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5671
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5672
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5673
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5674
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5988
  msgid "Entries"
5989
  msgstr "داده های ورودی"
5990
 
5991
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5992
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5993
  msgid "Export"
5994
  msgstr "خروجی گرفتن"
5995
 
6008
  "Certain hooks and shortcodes will not work correctly!"
6009
  msgstr ""
6010
 
6011
+ #: ../modules/mycred-module-log.php:563
6012
  msgid "Edit"
6013
  msgstr ""
6014
 
6015
+ #: ../modules/mycred-module-log.php:610
6016
  msgid "Time"
6017
  msgstr ""
6018
 
6019
+ #: ../modules/mycred-module-log.php:614
6020
  msgid "Current Log Entry"
6021
  msgstr ""
6022
 
6023
+ #: ../modules/mycred-module-log.php:616
6024
  msgid "The current saved log entry"
6025
  msgstr ""
6026
 
6027
+ #: ../modules/mycred-module-log.php:619
6028
  msgid "Adjust Log Entry"
6029
  msgstr ""
6030
 
6031
+ #: ../modules/mycred-module-log.php:621
6032
  msgid "The new log entry"
6033
  msgstr ""
6034
 
6035
+ #: ../modules/mycred-module-log.php:624
6036
  msgid "Update Log Entry"
6037
  msgstr ""
6038
 
6039
+ #: ../modules/mycred-module-log.php:695
6040
  #, php-format
6041
  msgid "My %s History"
6042
  msgstr ""
6727
  msgid "Reward with %plural%"
6728
  msgstr ""
6729
 
6730
+ #: ../plugins/mycred-hook-sharethis.php:19
6731
  #, php-format
6732
  msgid "%plural% for Sharing"
6733
  msgstr ""
6734
 
6735
+ #: ../plugins/mycred-hook-sharethis.php:20
6736
  #, php-format
6737
  msgid ""
6738
  "Awards %_plural% for users sharing / liking your website content to popular "
6739
  "social media sites."
6740
  msgstr ""
6741
 
6742
+ #: ../plugins/mycred-hook-sharethis.php:257
6743
  msgid "Your ShareThis public key is not set."
6744
  msgstr ""
6745
 
6746
+ #: ../plugins/mycred-hook-sharethis.php:262
6747
  msgid "No ShareThis services detected. Please check your installation."
6748
  msgstr ""
6749
 
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:04:48 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -22,33 +22,33 @@ msgstr ""
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Generator: Loco - https://localise.biz/"
24
 
25
- #: ../mycred.php:449
26
  msgid "Balance"
27
  msgstr "Solde"
28
 
29
- #: ../mycred.php:474
30
  msgid "%label% History"
31
  msgstr "Historique %label%"
32
 
33
- #: ../mycred.php:567
34
  #, php-format
35
  msgid "About %s"
36
  msgstr "&Agrave; propos de %s"
37
 
38
- #: ../mycred.php:576
39
  msgid "Awesome People"
40
  msgstr "On les remercie"
41
 
42
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
43
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
44
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
45
- #: ranks.php:1522 ../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 "Chargement en cours..."
50
 
51
- #: ../mycred.php:662
52
  msgid ""
53
  "Warning! All entries in your log will be permanently removed! This can not "
54
  "be undone!"
@@ -56,7 +56,7 @@ msgstr ""
56
  "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
57
  "action ne pourra pas être annulée."
58
 
59
- #: ../mycred.php:663
60
  msgid ""
61
  "All log entries belonging to deleted users will be permanently deleted! This "
62
  "can not be undone!"
@@ -64,63 +64,63 @@ msgstr ""
64
  "Toutes les entrées appartenant aux utilisateurs supprimés seront "
65
  "définitivement détruites. Cette action ne pourra pas être annulée."
66
 
67
- #: ../mycred.php:664
68
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
69
  msgstr ""
70
  "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
71
  "action ne pourra pas être annulée."
72
 
73
- #: ../mycred.php:665
74
  msgid "Done!"
75
  msgstr "Terminé !"
76
 
77
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
78
  msgid "Close"
79
  msgstr "fermer"
80
 
81
- #: ../mycred.php:667
82
  msgid "Export users %plural%"
83
  msgstr "Exportation des %plural% des utilisateurs"
84
 
85
- #: ../mycred.php:668
86
  msgid ""
87
  "In order to adjust the number of decimal places you want to use we must "
88
  "update your log. It is highly recommended that you backup your current log "
89
  "before continuing!"
90
  msgstr ""
91
 
92
- #: ../mycred.php:684
93
  msgid "Edit Users Balance"
94
  msgstr "Modifier le solde des utilisateurs"
95
 
96
- #: ../mycred.php:702
97
  msgid "Edit Log Entry"
98
  msgstr "Modifier une entrée du journal"
99
 
100
- #: ../mycred.php:706
101
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
102
  msgstr ""
103
  "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
104
  "être annulée."
105
 
106
- #: ../mycred.php:707
107
  msgid "Log entry updated"
108
  msgstr "L'entrée du journal a été mise à jour"
109
 
110
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
111
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
112
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
113
  msgid "Setup"
114
  msgstr "Configuration"
115
 
116
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
117
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
118
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
119
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
120
  msgid "Settings"
121
  msgstr "Configuration"
122
 
123
- #: ../mycred.php:803
124
  msgid ""
125
  "Make sure to backup your database and files before updating, in case "
126
  "anything goes wrong!"
@@ -167,8 +167,8 @@ msgid "Once per day (reset at midnight)"
167
  msgstr "Une fois par jour (remise à zéro à minuit)"
168
 
169
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
170
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
171
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
173
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
174
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -194,7 +194,7 @@ msgid "click to open"
194
  msgstr "cliquez pour ouvrir"
195
 
196
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
197
- #: buy-creds.php:884
198
  msgid "Settings Updated"
199
  msgstr "Configuration mise à jour"
200
 
@@ -249,7 +249,7 @@ msgid "Badge"
249
  msgstr "Badge"
250
 
251
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
252
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
253
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
254
  #: addons/ranks/myCRED-addon-ranks.php:448
255
  msgid "Add New"
@@ -501,7 +501,7 @@ msgid "Status"
501
  msgstr "Statut"
502
 
503
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
504
- #: addon-email-notices.php:1293
505
  msgid "Save Changes"
506
  msgstr "Sauvegarder les changements."
507
 
@@ -612,11 +612,11 @@ msgid "Setup mass %_singular% payouts for your users."
612
  msgstr "Installation de masse %_singular% pour les paiements de vos utilisateurs"
613
 
614
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
615
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
616
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
617
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
618
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
619
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
620
  msgid "Access Denied"
621
  msgstr "Accès refusé"
622
 
@@ -648,7 +648,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
648
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
649
 
650
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
651
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
652
  msgid "Enable"
653
  msgstr "Activer"
654
 
@@ -786,8 +786,8 @@ msgstr "Paiement"
786
 
787
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
788
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
789
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
790
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
791
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
792
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
793
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -879,7 +879,7 @@ msgstr ""
879
  "."
880
 
881
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
882
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
883
  #: content.php:114
884
  msgid "Leave empty to use the default value."
885
  msgstr ""
@@ -904,7 +904,7 @@ msgstr ""
904
  " \n"
905
  "de recevoir des intérêts"
906
 
907
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
908
  msgid "Compound interest rate saved."
909
  msgstr ""
910
  "Taux d'intérêt composé\n"
@@ -912,7 +912,7 @@ msgstr ""
912
  "sauvé\n"
913
  "."
914
 
915
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
916
  msgid "User excluded from receiving interest."
917
  msgstr ""
918
  "Utilisateur\n"
@@ -922,7 +922,7 @@ msgstr ""
922
  "l'intérêt\n"
923
  "."
924
 
925
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
926
  msgid "User included in receiving interest."
927
  msgstr "Utilisateur inclus dans la réception des intérêts"
928
 
@@ -931,7 +931,7 @@ msgid "Daily %_plural%"
931
  msgstr "%plural% quotidiens"
932
 
933
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
934
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
935
  #: modules/mycred-module-log.php:277
936
  msgid "History"
937
  msgstr "Mes points"
@@ -949,10 +949,10 @@ msgid "Pay Users"
949
  msgstr "Payer les Utilisateurs"
950
 
951
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
952
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
953
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
954
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
955
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
956
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
957
  #: plugins/mycred-hook-affiliatewp.php:256
958
  msgid "Amount"
@@ -991,313 +991,313 @@ msgstr ""
991
  msgid "Payment Gateways"
992
  msgstr "Services de paiement"
993
 
994
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
995
  msgctxt "Post Type General Name"
996
  msgid "Pending Payments"
997
  msgstr "Paiements en attente"
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
1000
  msgctxt "Post Type Singular Name"
1001
  msgid "Pending Payment"
1002
  msgstr "En attente de paiement"
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
1005
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
1006
  msgid "Pending Payments"
1007
  msgstr "Paiements en attente"
1008
 
1009
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
1010
  msgid "Edit Pending Payment"
1011
  msgstr ""
1012
  "Modifier\n"
1013
  " \n"
1014
  "les attentes de paiement"
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
1017
- #: addon-buy-creds.php:1699
1018
  msgid "No pending payments found"
1019
  msgstr "Pas d'attente de paiements trouvés"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
1022
  msgid "Not found in Trash"
1023
  msgstr "Pas trouvé dans la corbeille"
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
1026
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
1027
  msgid "Transaction ID"
1028
  msgstr "ID de la transaction"
1029
 
1030
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
1031
- #: addon-buy-creds.php:1025
1032
  msgid "Buyer"
1033
  msgstr "Acheteur"
1034
 
1035
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
1036
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1037
  #: gateway.php:594
1038
  msgid "Cost"
1039
  msgstr "Prix"
1040
 
1041
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
1042
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
1043
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
1044
  msgid "Gateway"
1045
  msgstr "Service"
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
1048
  msgid "Type"
1049
  msgstr "Type"
1050
 
1051
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
1052
  msgid "Pay Out"
1053
  msgstr "Versement"
1054
 
1055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
1056
  msgid "buyCRED Purchase Log"
1057
  msgstr "Journal d'achat buyCRED"
1058
 
1059
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
1060
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1061
  msgid "Purchase Log"
1062
  msgstr "Journal d'achat"
1063
 
1064
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
1065
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
1066
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
1067
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
1068
  msgid "Payments"
1069
  msgstr "Paiements"
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
1072
  msgid "Please login to purchase %_plural%"
1073
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
1076
  #, php-format
1077
  msgid "Gift purchase from %display_name%."
1078
  msgstr "Achat de cadeau par %display_name%."
1079
 
1080
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
1081
  #: addon-ranks.php:1084
1082
  msgid "Minimum %plural%"
1083
  msgstr "%plural% minimum"
1084
 
1085
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
1086
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
1087
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
1088
 
1089
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
1090
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
1091
  #: module-settings.php:656
1092
  msgid "Point Types"
1093
  msgstr "Types de Points"
1094
 
1095
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
1096
  msgid "Select the point types that users can buy. You must select at least one!"
1097
  msgstr ""
1098
  "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
1099
  "devez en sélectionner au moins une!"
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
1102
  msgid "Login Template"
1103
  msgstr "Template de connexion"
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
1106
  msgid "Content to show when a user is not logged in."
1107
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
1110
  msgid "Thank You Page"
1111
  msgstr "Page de remerciement"
1112
 
1113
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
1114
- #: addon-buy-creds.php:668
1115
  msgid "Custom URL"
1116
  msgstr "URL personnalisée"
1117
 
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
1119
- #: addon-buy-creds.php:673
1120
  msgid "Page"
1121
  msgstr "Page"
1122
 
1123
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
1124
  msgid "Cancellation Page"
1125
  msgstr "Page d'annulation"
1126
 
1127
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
1128
  msgid "Show seperate log for %_plural% purchases."
1129
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
1130
 
1131
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
1132
  msgid "Gifting"
1133
  msgstr "Remise de cadeaux"
1134
 
1135
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
1136
  #, php-format
1137
  msgid "Allow users to buy %_plural% for other users."
1138
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
1139
 
1140
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
1141
  #, php-format
1142
  msgid "Allow users to buy %_plural% for content authors."
1143
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
1144
 
1145
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
1146
  #: hooks.php:3110
1147
  msgid "Available Shortcodes"
1148
  msgstr "Shortcodes disponibles"
1149
 
1150
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
1151
  #, php-format
1152
  msgid "%s Exchange Rate"
1153
  msgstr "%s Taux de change"
1154
 
1155
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
1156
  msgid "Save Exchange Rates"
1157
  msgstr "Sauvegardé les taux de change"
1158
 
1159
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1160
  msgid "Exchange rate override saved"
1161
  msgstr "Taux de change commandé sauvegardé"
1162
 
1163
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1164
  msgid "Payment completed"
1165
  msgstr "Paiement complet"
1166
 
1167
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1168
  #, php-format
1169
  msgid "%s Payment Gateways"
1170
  msgstr "%s Services de Paiements"
1171
 
1172
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1173
- #: addon-buy-creds.php:1034
1174
  msgid "buyCRED Settings"
1175
  msgstr "Configuration buyCRED"
1176
 
1177
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1178
  msgid "Test Mode"
1179
  msgstr "Mode Test"
1180
 
1181
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1182
  msgid "Enabled"
1183
  msgstr "Activé"
1184
 
1185
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1186
  msgid "Disabled"
1187
  msgstr "Désactivé"
1188
 
1189
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1190
  msgid "Sandbox Mode"
1191
  msgstr "Mode bac à sable"
1192
 
1193
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1194
  msgid "Enable for test purchases."
1195
  msgstr "Activez pour faire des tests d'achats factices."
1196
 
1197
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1198
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1199
  msgid "Update Settings"
1200
  msgstr "Enregistrer la configuration"
1201
 
1202
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1203
  msgid "More Gateways"
1204
  msgstr "Plus d'entrés"
1205
 
1206
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1207
- #: 666
1208
  msgid "Date"
1209
  msgstr "Daté"
1210
 
1211
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1212
  msgid "Payed"
1213
  msgstr "Payé"
1214
 
1215
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1216
  msgid "<strong>buy</strong>CRED Purchase Log"
1217
  msgstr "Relevé des achats <strong>buy</strong>CRED"
1218
 
1219
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1220
  #: booking/mycred-eventespresso3.php:367
1221
  msgid "Gateway Settings"
1222
  msgstr "Configuration du service de paiement"
1223
 
1224
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1225
- #: content/myCRED-addon-sell-content.php:1209
1226
  msgid "No purchases found"
1227
  msgstr "Aucun achat trouvé"
1228
 
1229
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1230
- #: addon-buy-creds.php:1411
1231
  msgid "This Add-on needs to setup before you can use this shortcode."
1232
  msgstr ""
1233
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
1234
  "shortcode."
1235
 
1236
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1237
- #: addon-buy-creds.php:1430
1238
  msgid "No gateways installed."
1239
  msgstr "Aucun systme de paiement n'est installé."
1240
 
1241
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1242
- #: addon-buy-creds.php:1431
1243
  msgid "Gateway does not exist."
1244
  msgstr "Le service de paiement n'existe pas."
1245
 
1246
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1247
  msgid "Yourself"
1248
  msgstr "Vous-même"
1249
 
1250
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1251
  msgid "No active gateways found."
1252
  msgstr "Aucun service de paiement n'a été trouvé."
1253
 
1254
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1255
  msgid "The selected gateway is not active."
1256
  msgstr "Ce service de paiement n'est pas activé"
1257
 
1258
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1259
  #, php-format
1260
  msgid "Buy with %gateway%"
1261
  msgstr "Régler avec %gateway%"
1262
 
1263
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1264
  #: content/myCRED-addon-sell-content.php:44
1265
  msgid "Buy Now"
1266
  msgstr "Acheter maintenant"
1267
 
1268
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1269
  msgid "No users found"
1270
  msgstr "Aucun membre n'a été trouvé"
1271
 
1272
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1273
  msgid "To"
1274
  msgstr "à"
1275
 
1276
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1277
  msgid "Select Amount"
1278
  msgstr "Sélectionnez le montant"
1279
 
1280
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1281
  msgid "min."
1282
  msgstr "mini."
1283
 
1284
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1285
  msgid "Select Gateway"
1286
  msgstr "Sélectionnez le service de paiement"
1287
 
1288
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1289
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1290
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1291
  #: php:35
1292
  msgid "Pay Now"
1293
  msgstr "Payer maintenant"
1294
 
1295
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1296
  #: php:536
1297
  msgid "Cancel"
1298
  msgstr "Annuler"
1299
 
1300
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1301
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1302
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1303
  msgid "Actions"
@@ -1338,12 +1338,12 @@ msgid "Cancel purchase"
1338
  msgstr "Achat annulé"
1339
 
1340
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1341
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1342
  msgid "required"
1343
  msgstr "obligatoire"
1344
 
1345
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1346
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1347
  msgid "optional"
1348
  msgstr "optionnel"
1349
 
@@ -1922,7 +1922,7 @@ msgstr "Date d'expiration"
1922
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1923
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1924
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1925
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1926
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1927
  #: includes/importers/mycred-cubepoints.php:365
1928
  msgid "Point Type"
@@ -1934,7 +1934,7 @@ msgid "not yet used"
1934
  msgstr "pas encore utilisé"
1935
 
1936
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1937
- #: 395 ../modules/mycred-module-hooks.php:2507
1938
  msgid "Total"
1939
  msgstr "Total"
1940
 
@@ -2105,7 +2105,7 @@ msgid "Apply Coupon"
2105
  msgstr "Appliquer le bon"
2106
 
2107
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
2108
- #: notices/myCRED-addon-email-notices.php:1267
2109
  msgid "Email Notice"
2110
  msgstr "Message à envoyer"
2111
 
@@ -2388,8 +2388,8 @@ msgid "Sent To"
2388
  msgstr "Envoyer à"
2389
 
2390
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2391
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2392
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2393
  msgid "User"
2394
  msgstr "Utilisateur"
2395
 
@@ -2522,18 +2522,18 @@ msgstr "Ce message est activé."
2522
  msgid "Settings saved."
2523
  msgstr "Paramètres sauvegardés."
2524
 
2525
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2526
  msgid "Unsubscribe"
2527
  msgstr "Se désabonner"
2528
 
2529
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2530
  msgid "There are no email notifications yet."
2531
  msgstr "Il n'y a pas encore de notifications d'email."
2532
 
2533
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2534
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2535
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2536
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2537
  msgid "Current Balance"
2538
  msgstr "Solde actuel"
2539
 
@@ -2967,8 +2967,8 @@ msgstr "Titre à afficher pour les rapports et les journaux d'activités"
2967
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2968
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2969
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2970
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2971
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2972
  msgid "Button Label"
2973
  msgstr "Intitulé du bouton"
2974
 
@@ -2981,8 +2981,8 @@ msgstr "Bouton de paiement"
2981
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2982
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2983
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2984
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2985
- #: sell-content.php:682
2986
  msgid "Price"
2987
  msgstr "Prix"
2988
 
@@ -3008,12 +3008,12 @@ msgid "Log"
3008
  msgstr "Vue d&#39;ensemble"
3009
 
3010
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
3011
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
3012
  msgid "Log Entry"
3013
  msgstr "Journal d'activité"
3014
 
3015
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
3016
- #: content/myCRED-addon-sell-content.php:473
3017
  msgid "Templates"
3018
  msgstr "Affichage des éléments"
3019
 
@@ -3099,7 +3099,7 @@ msgid "Reject"
3099
  msgstr "Rejeter"
3100
 
3101
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
3102
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
3103
  #: modules/mycred-module-settings.php:699
3104
  msgid "Delete"
3105
  msgstr "Suppirmer"
@@ -3626,44 +3626,44 @@ msgstr "Bénéfice partagé"
3626
  msgid "Save Profit Share"
3627
  msgstr "Sauvegardé le partage des bénéfices"
3628
 
3629
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3630
  msgid "Profit Share override saved"
3631
  msgstr "Mis de côté les partages de bénéfices sauvegardé"
3632
 
3633
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3634
  msgid "You can not buy this content."
3635
  msgstr "Vous ne pouvez pas acheter ce contenu."
3636
 
3637
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3638
  msgid "Error. Try Again"
3639
  msgstr "Erreur, veuillez recommencer."
3640
 
3641
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3642
  msgid "No Payout. Just charge."
3643
  msgstr "Pas de paiement. Uniquement facturer."
3644
 
3645
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3646
  msgid "Pay Content Author."
3647
  msgstr "Payer l'auteur du contenu"
3648
 
3649
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3650
  #: overview.php:141 ../includes/mycred-overview.php:148
3651
  msgid "Sell Content"
3652
  msgstr "Vendre du contenu"
3653
 
3654
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3655
  msgid "Post Types"
3656
  msgstr "Post Types"
3657
 
3658
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3659
  msgid "Comma separated list of post types that can be sold."
3660
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3661
 
3662
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3663
  msgid "Percentage to pay Author"
3664
  msgstr "Pourcentage à verser à l'auteur"
3665
 
3666
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3667
  msgid ""
3668
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3669
  "authors are not paid."
@@ -3671,31 +3671,31 @@ msgstr ""
3671
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3672
  "les auteurs ne sont pas payables."
3673
 
3674
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3675
  msgid "Defaults"
3676
  msgstr "Par défaut"
3677
 
3678
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3679
  msgid "Allow authors to change price."
3680
  msgstr "Autoriser les auteurs à modifier le prix"
3681
 
3682
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3683
  msgid "Allow authors to change button label."
3684
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3685
 
3686
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3687
  msgid "Purchases expire after"
3688
  msgstr "L'achat expire après"
3689
 
3690
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3691
  msgid "Use zero for permanent sales."
3692
  msgstr "Indiquez zéro pour des ventes permanentes"
3693
 
3694
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3695
  msgid "For Visitors"
3696
  msgstr "Pour les visiteurs"
3697
 
3698
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3699
  #, php-format
3700
  msgid ""
3701
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3704,69 +3704,69 @@ msgstr ""
3704
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3705
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3706
 
3707
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3708
  msgid "For Members"
3709
  msgstr "Pour les membre"
3710
 
3711
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3712
- #: content/myCRED-addon-sell-content.php:516
3713
  #, php-format
3714
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3715
  msgstr ""
3716
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3717
  "achat fonctionne !"
3718
 
3719
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3720
  msgid "For members that can not afford to buy"
3721
  msgstr "Pour les membres qui ne peuvent se permettre d'acheter"
3722
 
3723
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3724
  msgid "Log template for Purchases"
3725
  msgstr "Template de connexion pour les achats"
3726
 
3727
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3728
  msgid "Log template for Sales"
3729
  msgstr "Template de connexion pour les ventes"
3730
 
3731
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3732
  #, php-format
3733
  msgid "%s Sell This"
3734
  msgstr "%s a vendu ceci"
3735
 
3736
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3737
  #, php-format
3738
  msgid "%s Sell Content needs to be setup before you can use this feature."
3739
  msgstr ""
3740
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3741
  "cette fonctionnalité."
3742
 
3743
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3744
  msgid "Setup add-on"
3745
  msgstr "Configuration du module"
3746
 
3747
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3748
  msgid "Lets do it"
3749
  msgstr "Faisons cela"
3750
 
3751
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3752
  #, php-format
3753
  msgid "Enable sale of this %s"
3754
  msgstr "Activité la vente du %"
3755
 
3756
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3757
  msgid "Purchase expires after"
3758
  msgstr "Les achats expirent après"
3759
 
3760
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3761
  msgid "Thank you for your purchase!"
3762
  msgstr "Merci pour votre achat"
3763
 
3764
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3765
- #: content/myCRED-addon-sell-content.php:1190
3766
  msgid "The following content is set for sale:"
3767
  msgstr "Le contenu suivant est prévu à la vente:"
3768
 
3769
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3770
  msgid "Purchased"
3771
  msgstr "Acheté"
3772
 
@@ -3832,17 +3832,17 @@ msgid "Total Spent: %s"
3832
  msgstr ""
3833
 
3834
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3835
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3836
  msgid "Today"
3837
  msgstr "Aujourd'hui"
3838
 
3839
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3840
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3841
  msgid "This Week"
3842
  msgstr "Cette semaine"
3843
 
3844
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3845
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3846
  msgid "This Month"
3847
  msgstr "Ce mois"
3848
 
@@ -3877,13 +3877,13 @@ msgstr ""
3877
  msgid "Gains in the last 10 days"
3878
  msgstr ""
3879
 
3880
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3881
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3882
  msgid "View"
3883
  msgstr ""
3884
 
3885
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3886
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3887
  msgid "No data found"
3888
  msgstr ""
3889
 
@@ -4138,21 +4138,21 @@ msgstr "Afficher la limite des membres"
4138
  msgid "Welcome to %s %s"
4139
  msgstr "Bienvenue dans %s %s"
4140
 
4141
- #: ../includes/mycred-admin.php:191
4142
  msgid "A log entry is required in order to adjust this users balance"
4143
  msgstr ""
4144
  "Une raison dans le journal est requise pour ajuster le solde de cet "
4145
  "utilisateur."
4146
 
4147
- #: ../includes/mycred-admin.php:193
4148
  msgid "Users balance saved"
4149
  msgstr "Soldes des utilisateurs sauvegardés"
4150
 
4151
- #: ../includes/mycred-admin.php:201
4152
  msgid "Users excluded"
4153
  msgstr "Utilisateurs exclus"
4154
 
4155
- #: ../includes/mycred-admin.php:206
4156
  msgid ""
4157
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
4158
  "rate settings and update all premium payment gateways!"
@@ -4161,84 +4161,84 @@ msgstr ""
4161
  "plait, vérifier vos paramètres de taux de change & mettez à jour toutes les "
4162
  "passerelles des paiements prémium."
4163
 
4164
- #: ../includes/mycred-admin.php:234
4165
  msgid "User is excluded"
4166
  msgstr "Cet utilisateur est exclu"
4167
 
4168
- #: ../includes/mycred-admin.php:239
4169
  msgid "Log Entry can not be empty"
4170
  msgstr "Le champ ne peut pas être vide."
4171
 
4172
- #: ../includes/mycred-admin.php:243
4173
  msgid "Amount can not be zero"
4174
  msgstr "Le montant ne peut pas être zéro"
4175
 
4176
- #: ../includes/mycred-admin.php:264
4177
  msgid "Failed to update this uses balance."
4178
  msgstr "&Eacute;chec de la mise à jour de ce solde"
4179
 
4180
- #: ../includes/mycred-admin.php:385
4181
  msgid "Excluded"
4182
  msgstr "Exclus"
4183
 
4184
- #: ../includes/mycred-admin.php:406
4185
  msgid "Adjust"
4186
  msgstr "Ajustement"
4187
 
4188
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
4189
  msgid "Edit Balance"
4190
  msgstr "Editer le solde"
4191
 
4192
- #: ../includes/mycred-admin.php:463
4193
  msgid "Profile"
4194
  msgstr "Profil"
4195
 
4196
- #: ../includes/mycred-admin.php:470
4197
  msgid "Extended Profile"
4198
  msgstr "Etendre le profil"
4199
 
4200
- #: ../includes/mycred-admin.php:560
4201
  #, php-format
4202
  msgid "This user is excluded from using %s"
4203
  msgstr "Cet utilisateur est exclu de l'aide %s"
4204
 
4205
- #: ../includes/mycred-admin.php:583
4206
  msgid "Edit User"
4207
  msgstr "Editer l'utilisateur"
4208
 
4209
- #: ../includes/mycred-admin.php:585
4210
  msgctxt "user"
4211
  msgid "Add New"
4212
  msgstr "Ajouter un nouvel"
4213
 
4214
- #: ../includes/mycred-admin.php:587
4215
  msgctxt "user"
4216
  msgid "Add Existing"
4217
  msgstr "Ajouter existant"
4218
 
4219
- #: ../includes/mycred-admin.php:598
4220
  #, php-format
4221
  msgid "Total %s Accumulated"
4222
  msgstr "Total %s Accumulaté"
4223
 
4224
- #: ../includes/mycred-admin.php:599
4225
  #, php-format
4226
  msgid "Total %s Spent"
4227
  msgstr "Total %s Dépensé"
4228
 
4229
- #: ../includes/mycred-admin.php:610
4230
  msgid "View History"
4231
  msgstr "Voir l'Historique"
4232
 
4233
- #: ../includes/mycred-admin.php:611
4234
  msgid "Exclude User"
4235
  msgstr "Exclure l'utilisateur"
4236
 
4237
- #: ../includes/mycred-admin.php:615
4238
  msgid "Adjust Balance"
4239
  msgstr "Ajuster le solde"
4240
 
4241
- #: ../includes/mycred-admin.php:624
4242
  msgid ""
4243
  "Warning! Excluding this user will result in their balance being deleted "
4244
  "along with any entries currently in your log! This can not be undone!"
@@ -4246,20 +4246,20 @@ msgstr ""
4246
  "Attention! En excluant cet utilisateur, vous supprimerez également son solde "
4247
  "pour toujours. Cela ne peut être annulé!"
4248
 
4249
- #: ../includes/mycred-admin.php:682
4250
  #, php-format
4251
  msgid "%singular% balance"
4252
  msgstr "solde de %singular%"
4253
 
4254
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4255
  msgid "Update Balance"
4256
  msgstr "Mettre à jour le solde"
4257
 
4258
- #: ../includes/mycred-admin.php:753
4259
  msgid "ID"
4260
  msgstr "ID"
4261
 
4262
- #: ../includes/mycred-admin.php:759
4263
  msgid "A positive or negative value"
4264
  msgstr "Une valeur positive ou négative"
4265
 
@@ -4917,66 +4917,66 @@ msgstr ""
4917
  msgid "Install & Run"
4918
  msgstr "Installer et démarrer"
4919
 
4920
- #: ../includes/mycred-log.php:430
4921
  #, php-format
4922
  msgid "Showing %d %s"
4923
  msgstr "Affichage de %d %s"
4924
 
4925
- #: ../includes/mycred-log.php:430
4926
  msgid "entry"
4927
  msgstr "entrée"
4928
 
4929
- #: ../includes/mycred-log.php:444
4930
  msgid "Go to the first page"
4931
  msgstr "Aller à la première page"
4932
 
4933
- #: ../includes/mycred-log.php:451
4934
  msgid "Go to the previous page"
4935
  msgstr "Aller à la page précédente"
4936
 
4937
- #: ../includes/mycred-log.php:460
4938
  msgid "Current page"
4939
  msgstr "Page actuelle"
4940
 
4941
- #: ../includes/mycred-log.php:466
4942
  #, php-format
4943
  msgctxt "mycred"
4944
  msgid "%1$s of %2$s"
4945
  msgstr ""
4946
 
4947
- #: ../includes/mycred-log.php:470
4948
  msgid "Go to the next page"
4949
  msgstr "Aller à la page suivante"
4950
 
4951
- #: ../includes/mycred-log.php:477
4952
  msgid "Go to the last page"
4953
  msgstr "Aller à la dernière page"
4954
 
4955
- #: ../includes/mycred-log.php:544
4956
  msgid "Show all references"
4957
  msgstr "Afficher toutes les références"
4958
 
4959
- #: ../includes/mycred-log.php:557
4960
  msgid "User ID, Username, Email or Nicename"
4961
  msgstr ""
4962
 
4963
- #: ../includes/mycred-log.php:563
4964
  msgid "Show in order"
4965
  msgstr "Afficher sur la commande"
4966
 
4967
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4968
  msgid "Ascending"
4969
  msgstr "Ascendant"
4970
 
4971
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4972
  msgid "Descending"
4973
  msgstr "Descendant"
4974
 
4975
- #: ../includes/mycred-log.php:582
4976
  msgid "Filter"
4977
  msgstr "Filtre"
4978
 
4979
- #: ../includes/mycred-log.php:635
4980
  msgid ""
4981
  "Log entries are exported to a CSV file and depending on the number of "
4982
  "entries selected, the process may take a few seconds."
@@ -4984,36 +4984,36 @@ msgstr ""
4984
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
4985
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
4986
 
4987
- #: ../includes/mycred-log.php:639
4988
  msgid "No export options available."
4989
  msgstr "Aucune option d'exportation disponible."
4990
 
4991
- #: ../includes/mycred-log.php:668
4992
  msgid "Entry"
4993
  msgstr "Motif"
4994
 
4995
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4996
  msgid "User Missing"
4997
  msgstr "Utilisateur inexistant"
4998
 
4999
- #: ../includes/mycred-log.php:839
5000
  msgid "No log entries found"
5001
  msgstr "Aucun enregistrement à afficher."
5002
 
5003
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
5004
  msgid "Search Log"
5005
  msgstr "Journal de recherche"
5006
 
5007
- #: ../includes/mycred-log.php:855
5008
  msgid "search log entries"
5009
  msgstr "Recherchez une donnée"
5010
 
5011
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
5012
  #: modules/mycred-module-buddypress.php:249
5013
  msgid "All"
5014
  msgstr "Historique complet"
5015
 
5016
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
5017
  msgid "Yesterday"
5018
  msgstr "Hier"
5019
 
@@ -5259,7 +5259,7 @@ msgstr ""
5259
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5260
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5261
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5262
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5263
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5264
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5265
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5956,7 +5956,7 @@ msgstr ""
5956
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5957
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5958
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5959
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5960
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5961
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5962
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -6288,8 +6288,8 @@ msgstr "Entrée mise à jour"
6288
  msgid "Entries"
6289
  msgstr "Entrées"
6290
 
6291
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6292
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6293
  msgid "Export"
6294
  msgstr "Exporter"
6295
 
@@ -6308,35 +6308,35 @@ msgid ""
6308
  "Certain hooks and shortcodes will not work correctly!"
6309
  msgstr ""
6310
 
6311
- #: ../modules/mycred-module-log.php:565
6312
  msgid "Edit"
6313
  msgstr "Modifier"
6314
 
6315
- #: ../modules/mycred-module-log.php:612
6316
  msgid "Time"
6317
  msgstr "Durée"
6318
 
6319
- #: ../modules/mycred-module-log.php:616
6320
  msgid "Current Log Entry"
6321
  msgstr "Entrée actuelle"
6322
 
6323
- #: ../modules/mycred-module-log.php:618
6324
  msgid "The current saved log entry"
6325
  msgstr "L'entrée sauvegardée actuelle"
6326
 
6327
- #: ../modules/mycred-module-log.php:621
6328
  msgid "Adjust Log Entry"
6329
  msgstr "Ajuster le journal"
6330
 
6331
- #: ../modules/mycred-module-log.php:623
6332
  msgid "The new log entry"
6333
  msgstr "La nouvelle entrée de journal"
6334
 
6335
- #: ../modules/mycred-module-log.php:626
6336
  msgid "Update Log Entry"
6337
  msgstr "Mettre à jour le journal"
6338
 
6339
- #: ../modules/mycred-module-log.php:697
6340
  #, php-format
6341
  msgid "My %s History"
6342
  msgstr "Mon historique %s"
@@ -7040,12 +7040,12 @@ msgstr "Abonnements aux commentaires"
7040
  msgid "Reward with %plural%"
7041
  msgstr "Récompensez-les avec %plural%"
7042
 
7043
- #: ../plugins/mycred-hook-sharethis.php:18
7044
  #, php-format
7045
  msgid "%plural% for Sharing"
7046
  msgstr "%plural% pour un partage"
7047
 
7048
- #: ../plugins/mycred-hook-sharethis.php:19
7049
  #, php-format
7050
  msgid ""
7051
  "Awards %_plural% for users sharing / liking your website content to popular "
@@ -7054,11 +7054,11 @@ msgstr ""
7054
  "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
7055
  "de votre siteweb sur les réseaux sociaux."
7056
 
7057
- #: ../plugins/mycred-hook-sharethis.php:232
7058
  msgid "Your ShareThis public key is not set."
7059
  msgstr "Votre clef public SHARETHIS n'est pas fixé."
7060
 
7061
- #: ../plugins/mycred-hook-sharethis.php:237
7062
  msgid "No ShareThis services detected. Please check your installation."
7063
  msgstr ""
7064
  "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:42:59 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
22
  "X-Loco-Target-Locale: fr_FR\n"
23
  "X-Generator: Loco - https://localise.biz/"
24
 
25
+ #: ../mycred.php:461
26
  msgid "Balance"
27
  msgstr "Solde"
28
 
29
+ #: ../mycred.php:486
30
  msgid "%label% History"
31
  msgstr "Historique %label%"
32
 
33
+ #: ../mycred.php:580
34
  #, php-format
35
  msgid "About %s"
36
  msgstr "&Agrave; propos de %s"
37
 
38
+ #: ../mycred.php:589
39
  msgid "Awesome People"
40
  msgstr "On les remercie"
41
 
42
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
43
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
44
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
45
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
46
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
47
  #: php:636
48
  msgid "Processing..."
49
  msgstr "Chargement en cours..."
50
 
51
+ #: ../mycred.php:678
52
  msgid ""
53
  "Warning! All entries in your log will be permanently removed! This can not "
54
  "be undone!"
56
  "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
57
  "action ne pourra pas être annulée."
58
 
59
+ #: ../mycred.php:679
60
  msgid ""
61
  "All log entries belonging to deleted users will be permanently deleted! This "
62
  "can not be undone!"
64
  "Toutes les entrées appartenant aux utilisateurs supprimés seront "
65
  "définitivement détruites. Cette action ne pourra pas être annulée."
66
 
67
+ #: ../mycred.php:680
68
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
69
  msgstr ""
70
  "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
71
  "action ne pourra pas être annulée."
72
 
73
+ #: ../mycred.php:681
74
  msgid "Done!"
75
  msgstr "Terminé !"
76
 
77
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
78
  msgid "Close"
79
  msgstr "fermer"
80
 
81
+ #: ../mycred.php:683
82
  msgid "Export users %plural%"
83
  msgstr "Exportation des %plural% des utilisateurs"
84
 
85
+ #: ../mycred.php:684
86
  msgid ""
87
  "In order to adjust the number of decimal places you want to use we must "
88
  "update your log. It is highly recommended that you backup your current log "
89
  "before continuing!"
90
  msgstr ""
91
 
92
+ #: ../mycred.php:700
93
  msgid "Edit Users Balance"
94
  msgstr "Modifier le solde des utilisateurs"
95
 
96
+ #: ../mycred.php:718
97
  msgid "Edit Log Entry"
98
  msgstr "Modifier une entrée du journal"
99
 
100
+ #: ../mycred.php:722
101
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
102
  msgstr ""
103
  "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
104
  "être annulée."
105
 
106
+ #: ../mycred.php:723
107
  msgid "Log entry updated"
108
  msgstr "L'entrée du journal a été mise à jour"
109
 
110
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
111
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
112
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
113
  msgid "Setup"
114
  msgstr "Configuration"
115
 
116
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
117
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
118
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
119
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
120
  msgid "Settings"
121
  msgstr "Configuration"
122
 
123
+ #: ../mycred.php:825
124
  msgid ""
125
  "Make sure to backup your database and files before updating, in case "
126
  "anything goes wrong!"
167
  msgstr "Une fois par jour (remise à zéro à minuit)"
168
 
169
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
170
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
171
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
172
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
173
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
174
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
194
  msgstr "cliquez pour ouvrir"
195
 
196
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
197
+ #: buy-creds.php:927
198
  msgid "Settings Updated"
199
  msgstr "Configuration mise à jour"
200
 
249
  msgstr "Badge"
250
 
251
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
252
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
253
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
254
  #: addons/ranks/myCRED-addon-ranks.php:448
255
  msgid "Add New"
501
  msgstr "Statut"
502
 
503
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
504
+ #: addon-email-notices.php:1296
505
  msgid "Save Changes"
506
  msgstr "Sauvegarder les changements."
507
 
612
  msgstr "Installation de masse %_singular% pour les paiements de vos utilisateurs"
613
 
614
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
615
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
616
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
617
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
618
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
619
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
620
  msgid "Access Denied"
621
  msgstr "Accès refusé"
622
 
648
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
649
 
650
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
651
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
652
  msgid "Enable"
653
  msgstr "Activer"
654
 
786
 
787
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
788
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
789
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
790
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
791
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
792
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
793
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
879
  "."
880
 
881
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
882
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
883
  #: content.php:114
884
  msgid "Leave empty to use the default value."
885
  msgstr ""
904
  " \n"
905
  "de recevoir des intérêts"
906
 
907
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
908
  msgid "Compound interest rate saved."
909
  msgstr ""
910
  "Taux d'intérêt composé\n"
912
  "sauvé\n"
913
  "."
914
 
915
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
916
  msgid "User excluded from receiving interest."
917
  msgstr ""
918
  "Utilisateur\n"
922
  "l'intérêt\n"
923
  "."
924
 
925
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
926
  msgid "User included in receiving interest."
927
  msgstr "Utilisateur inclus dans la réception des intérêts"
928
 
931
  msgstr "%plural% quotidiens"
932
 
933
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
934
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
935
  #: modules/mycred-module-log.php:277
936
  msgid "History"
937
  msgstr "Mes points"
949
  msgstr "Payer les Utilisateurs"
950
 
951
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
952
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
953
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
954
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
955
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
956
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
957
  #: plugins/mycred-hook-affiliatewp.php:256
958
  msgid "Amount"
991
  msgid "Payment Gateways"
992
  msgstr "Services de paiement"
993
 
994
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
995
  msgctxt "Post Type General Name"
996
  msgid "Pending Payments"
997
  msgstr "Paiements en attente"
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
1000
  msgctxt "Post Type Singular Name"
1001
  msgid "Pending Payment"
1002
  msgstr "En attente de paiement"
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
1005
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
1006
  msgid "Pending Payments"
1007
  msgstr "Paiements en attente"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
1010
  msgid "Edit Pending Payment"
1011
  msgstr ""
1012
  "Modifier\n"
1013
  " \n"
1014
  "les attentes de paiement"
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
1017
+ #: addon-buy-creds.php:1752
1018
  msgid "No pending payments found"
1019
  msgstr "Pas d'attente de paiements trouvés"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
1022
  msgid "Not found in Trash"
1023
  msgstr "Pas trouvé dans la corbeille"
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
1026
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
1027
  msgid "Transaction ID"
1028
  msgstr "ID de la transaction"
1029
 
1030
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
1031
+ #: addon-buy-creds.php:1074
1032
  msgid "Buyer"
1033
  msgstr "Acheteur"
1034
 
1035
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
1036
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1037
  #: gateway.php:594
1038
  msgid "Cost"
1039
  msgstr "Prix"
1040
 
1041
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
1042
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
1043
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
1044
  msgid "Gateway"
1045
  msgstr "Service"
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
1048
  msgid "Type"
1049
  msgstr "Type"
1050
 
1051
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
1052
  msgid "Pay Out"
1053
  msgstr "Versement"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
1056
  msgid "buyCRED Purchase Log"
1057
  msgstr "Journal d'achat buyCRED"
1058
 
1059
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
1060
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1061
  msgid "Purchase Log"
1062
  msgstr "Journal d'achat"
1063
 
1064
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
1065
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
1066
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
1067
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
1068
  msgid "Payments"
1069
  msgstr "Paiements"
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
1072
  msgid "Please login to purchase %_plural%"
1073
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
1076
  #, php-format
1077
  msgid "Gift purchase from %display_name%."
1078
  msgstr "Achat de cadeau par %display_name%."
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
1081
  #: addon-ranks.php:1084
1082
  msgid "Minimum %plural%"
1083
  msgstr "%plural% minimum"
1084
 
1085
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
1086
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
1087
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
1090
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
1091
  #: module-settings.php:656
1092
  msgid "Point Types"
1093
  msgstr "Types de Points"
1094
 
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
1096
  msgid "Select the point types that users can buy. You must select at least one!"
1097
  msgstr ""
1098
  "Sélectionner les types de point que les utilisateurs peuvent acheter. Vous "
1099
  "devez en sélectionner au moins une!"
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
1102
  msgid "Login Template"
1103
  msgstr "Template de connexion"
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
1106
  msgid "Content to show when a user is not logged in."
1107
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
1110
  msgid "Thank You Page"
1111
  msgstr "Page de remerciement"
1112
 
1113
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
1114
+ #: addon-buy-creds.php:705
1115
  msgid "Custom URL"
1116
  msgstr "URL personnalisée"
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
1119
+ #: addon-buy-creds.php:710
1120
  msgid "Page"
1121
  msgstr "Page"
1122
 
1123
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
1124
  msgid "Cancellation Page"
1125
  msgstr "Page d'annulation"
1126
 
1127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
1128
  msgid "Show seperate log for %_plural% purchases."
1129
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
1130
 
1131
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
1132
  msgid "Gifting"
1133
  msgstr "Remise de cadeaux"
1134
 
1135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
1136
  #, php-format
1137
  msgid "Allow users to buy %_plural% for other users."
1138
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
1139
 
1140
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
1141
  #, php-format
1142
  msgid "Allow users to buy %_plural% for content authors."
1143
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
1144
 
1145
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
1146
  #: hooks.php:3110
1147
  msgid "Available Shortcodes"
1148
  msgstr "Shortcodes disponibles"
1149
 
1150
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
1151
  #, php-format
1152
  msgid "%s Exchange Rate"
1153
  msgstr "%s Taux de change"
1154
 
1155
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
1156
  msgid "Save Exchange Rates"
1157
  msgstr "Sauvegardé les taux de change"
1158
 
1159
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1160
  msgid "Exchange rate override saved"
1161
  msgstr "Taux de change commandé sauvegardé"
1162
 
1163
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1164
  msgid "Payment completed"
1165
  msgstr "Paiement complet"
1166
 
1167
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1168
  #, php-format
1169
  msgid "%s Payment Gateways"
1170
  msgstr "%s Services de Paiements"
1171
 
1172
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1173
+ #: addon-buy-creds.php:1085
1174
  msgid "buyCRED Settings"
1175
  msgstr "Configuration buyCRED"
1176
 
1177
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1178
  msgid "Test Mode"
1179
  msgstr "Mode Test"
1180
 
1181
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1182
  msgid "Enabled"
1183
  msgstr "Activé"
1184
 
1185
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1186
  msgid "Disabled"
1187
  msgstr "Désactivé"
1188
 
1189
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1190
  msgid "Sandbox Mode"
1191
  msgstr "Mode bac à sable"
1192
 
1193
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1194
  msgid "Enable for test purchases."
1195
  msgstr "Activez pour faire des tests d'achats factices."
1196
 
1197
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1198
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1199
  msgid "Update Settings"
1200
  msgstr "Enregistrer la configuration"
1201
 
1202
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1203
  msgid "More Gateways"
1204
  msgstr "Plus d'entrés"
1205
 
1206
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1207
+ #: 756
1208
  msgid "Date"
1209
  msgstr "Daté"
1210
 
1211
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1212
  msgid "Payed"
1213
  msgstr "Payé"
1214
 
1215
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1216
  msgid "<strong>buy</strong>CRED Purchase Log"
1217
  msgstr "Relevé des achats <strong>buy</strong>CRED"
1218
 
1219
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1220
  #: booking/mycred-eventespresso3.php:367
1221
  msgid "Gateway Settings"
1222
  msgstr "Configuration du service de paiement"
1223
 
1224
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1225
+ #: content/myCRED-addon-sell-content.php:1210
1226
  msgid "No purchases found"
1227
  msgstr "Aucun achat trouvé"
1228
 
1229
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1230
+ #: addon-buy-creds.php:1464
1231
  msgid "This Add-on needs to setup before you can use this shortcode."
1232
  msgstr ""
1233
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
1234
  "shortcode."
1235
 
1236
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1237
+ #: addon-buy-creds.php:1483
1238
  msgid "No gateways installed."
1239
  msgstr "Aucun systme de paiement n'est installé."
1240
 
1241
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1242
+ #: addon-buy-creds.php:1484
1243
  msgid "Gateway does not exist."
1244
  msgstr "Le service de paiement n'existe pas."
1245
 
1246
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1247
  msgid "Yourself"
1248
  msgstr "Vous-même"
1249
 
1250
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1251
  msgid "No active gateways found."
1252
  msgstr "Aucun service de paiement n'a été trouvé."
1253
 
1254
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1255
  msgid "The selected gateway is not active."
1256
  msgstr "Ce service de paiement n'est pas activé"
1257
 
1258
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1259
  #, php-format
1260
  msgid "Buy with %gateway%"
1261
  msgstr "Régler avec %gateway%"
1262
 
1263
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1264
  #: content/myCRED-addon-sell-content.php:44
1265
  msgid "Buy Now"
1266
  msgstr "Acheter maintenant"
1267
 
1268
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1269
  msgid "No users found"
1270
  msgstr "Aucun membre n'a été trouvé"
1271
 
1272
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1273
  msgid "To"
1274
  msgstr "à"
1275
 
1276
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1277
  msgid "Select Amount"
1278
  msgstr "Sélectionnez le montant"
1279
 
1280
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1281
  msgid "min."
1282
  msgstr "mini."
1283
 
1284
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1285
  msgid "Select Gateway"
1286
  msgstr "Sélectionnez le service de paiement"
1287
 
1288
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1289
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1290
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1291
  #: php:35
1292
  msgid "Pay Now"
1293
  msgstr "Payer maintenant"
1294
 
1295
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1296
  #: php:536
1297
  msgid "Cancel"
1298
  msgstr "Annuler"
1299
 
1300
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1301
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1302
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1303
  msgid "Actions"
1338
  msgstr "Achat annulé"
1339
 
1340
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1341
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1342
  msgid "required"
1343
  msgstr "obligatoire"
1344
 
1345
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1346
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1347
  msgid "optional"
1348
  msgstr "optionnel"
1349
 
1922
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1923
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1924
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1925
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1926
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1927
  #: includes/importers/mycred-cubepoints.php:365
1928
  msgid "Point Type"
1934
  msgstr "pas encore utilisé"
1935
 
1936
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1937
+ #: 416 ../modules/mycred-module-hooks.php:2507
1938
  msgid "Total"
1939
  msgstr "Total"
1940
 
2105
  msgstr "Appliquer le bon"
2106
 
2107
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
2108
+ #: notices/myCRED-addon-email-notices.php:1270
2109
  msgid "Email Notice"
2110
  msgstr "Message à envoyer"
2111
 
2388
  msgstr "Envoyer à"
2389
 
2390
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2391
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2392
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2393
  msgid "User"
2394
  msgstr "Utilisateur"
2395
 
2522
  msgid "Settings saved."
2523
  msgstr "Paramètres sauvegardés."
2524
 
2525
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2526
  msgid "Unsubscribe"
2527
  msgstr "Se désabonner"
2528
 
2529
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2530
  msgid "There are no email notifications yet."
2531
  msgstr "Il n'y a pas encore de notifications d'email."
2532
 
2533
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2534
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2535
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2536
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2537
  msgid "Current Balance"
2538
  msgstr "Solde actuel"
2539
 
2967
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2968
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2969
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2970
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2971
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2972
  msgid "Button Label"
2973
  msgstr "Intitulé du bouton"
2974
 
2981
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2982
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2983
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2984
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2985
+ #: sell-content.php:683
2986
  msgid "Price"
2987
  msgstr "Prix"
2988
 
3008
  msgstr "Vue d&#39;ensemble"
3009
 
3010
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
3011
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
3012
  msgid "Log Entry"
3013
  msgstr "Journal d'activité"
3014
 
3015
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
3016
+ #: content/myCRED-addon-sell-content.php:474
3017
  msgid "Templates"
3018
  msgstr "Affichage des éléments"
3019
 
3099
  msgstr "Rejeter"
3100
 
3101
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
3102
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
3103
  #: modules/mycred-module-settings.php:699
3104
  msgid "Delete"
3105
  msgstr "Suppirmer"
3626
  msgid "Save Profit Share"
3627
  msgstr "Sauvegardé le partage des bénéfices"
3628
 
3629
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3630
  msgid "Profit Share override saved"
3631
  msgstr "Mis de côté les partages de bénéfices sauvegardé"
3632
 
3633
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3634
  msgid "You can not buy this content."
3635
  msgstr "Vous ne pouvez pas acheter ce contenu."
3636
 
3637
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3638
  msgid "Error. Try Again"
3639
  msgstr "Erreur, veuillez recommencer."
3640
 
3641
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3642
  msgid "No Payout. Just charge."
3643
  msgstr "Pas de paiement. Uniquement facturer."
3644
 
3645
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3646
  msgid "Pay Content Author."
3647
  msgstr "Payer l'auteur du contenu"
3648
 
3649
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3650
  #: overview.php:141 ../includes/mycred-overview.php:148
3651
  msgid "Sell Content"
3652
  msgstr "Vendre du contenu"
3653
 
3654
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3655
  msgid "Post Types"
3656
  msgstr "Post Types"
3657
 
3658
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3659
  msgid "Comma separated list of post types that can be sold."
3660
  msgstr "Liste des post types, séparés par une virgule, pouvant être vendus"
3661
 
3662
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3663
  msgid "Percentage to pay Author"
3664
  msgstr "Pourcentage à verser à l'auteur"
3665
 
3666
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3667
  msgid ""
3668
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3669
  "authors are not paid."
3671
  "Pourcentage du prix à verser à l'auteur. Ne peut être zéro et sera ignoré si "
3672
  "les auteurs ne sont pas payables."
3673
 
3674
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3675
  msgid "Defaults"
3676
  msgstr "Par défaut"
3677
 
3678
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3679
  msgid "Allow authors to change price."
3680
  msgstr "Autoriser les auteurs à modifier le prix"
3681
 
3682
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3683
  msgid "Allow authors to change button label."
3684
  msgstr "Autoriser les auteurs à modifier l'étiquette du bouton"
3685
 
3686
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3687
  msgid "Purchases expire after"
3688
  msgstr "L'achat expire après"
3689
 
3690
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3691
  msgid "Use zero for permanent sales."
3692
  msgstr "Indiquez zéro pour des ventes permanentes"
3693
 
3694
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3695
  msgid "For Visitors"
3696
  msgstr "Pour les visiteurs"
3697
 
3698
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3699
  #, php-format
3700
  msgid ""
3701
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3704
  "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3705
  "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3706
 
3707
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3708
  msgid "For Members"
3709
  msgstr "Pour les membre"
3710
 
3711
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3712
+ #: content/myCRED-addon-sell-content.php:517
3713
  #, php-format
3714
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3715
  msgstr ""
3716
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3717
  "achat fonctionne !"
3718
 
3719
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3720
  msgid "For members that can not afford to buy"
3721
  msgstr "Pour les membres qui ne peuvent se permettre d'acheter"
3722
 
3723
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3724
  msgid "Log template for Purchases"
3725
  msgstr "Template de connexion pour les achats"
3726
 
3727
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3728
  msgid "Log template for Sales"
3729
  msgstr "Template de connexion pour les ventes"
3730
 
3731
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3732
  #, php-format
3733
  msgid "%s Sell This"
3734
  msgstr "%s a vendu ceci"
3735
 
3736
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3737
  #, php-format
3738
  msgid "%s Sell Content needs to be setup before you can use this feature."
3739
  msgstr ""
3740
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3741
  "cette fonctionnalité."
3742
 
3743
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3744
  msgid "Setup add-on"
3745
  msgstr "Configuration du module"
3746
 
3747
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3748
  msgid "Lets do it"
3749
  msgstr "Faisons cela"
3750
 
3751
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3752
  #, php-format
3753
  msgid "Enable sale of this %s"
3754
  msgstr "Activité la vente du %"
3755
 
3756
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3757
  msgid "Purchase expires after"
3758
  msgstr "Les achats expirent après"
3759
 
3760
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3761
  msgid "Thank you for your purchase!"
3762
  msgstr "Merci pour votre achat"
3763
 
3764
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3765
+ #: content/myCRED-addon-sell-content.php:1191
3766
  msgid "The following content is set for sale:"
3767
  msgstr "Le contenu suivant est prévu à la vente:"
3768
 
3769
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3770
  msgid "Purchased"
3771
  msgstr "Acheté"
3772
 
3832
  msgstr ""
3833
 
3834
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3835
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3836
  msgid "Today"
3837
  msgstr "Aujourd'hui"
3838
 
3839
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3840
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3841
  msgid "This Week"
3842
  msgstr "Cette semaine"
3843
 
3844
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3845
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3846
  msgid "This Month"
3847
  msgstr "Ce mois"
3848
 
3877
  msgid "Gains in the last 10 days"
3878
  msgstr ""
3879
 
3880
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3881
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3882
  msgid "View"
3883
  msgstr ""
3884
 
3885
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3886
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3887
  msgid "No data found"
3888
  msgstr ""
3889
 
4138
  msgid "Welcome to %s %s"
4139
  msgstr "Bienvenue dans %s %s"
4140
 
4141
+ #: ../includes/mycred-admin.php:198
4142
  msgid "A log entry is required in order to adjust this users balance"
4143
  msgstr ""
4144
  "Une raison dans le journal est requise pour ajuster le solde de cet "
4145
  "utilisateur."
4146
 
4147
+ #: ../includes/mycred-admin.php:200
4148
  msgid "Users balance saved"
4149
  msgstr "Soldes des utilisateurs sauvegardés"
4150
 
4151
+ #: ../includes/mycred-admin.php:208
4152
  msgid "Users excluded"
4153
  msgstr "Utilisateurs exclus"
4154
 
4155
+ #: ../includes/mycred-admin.php:213
4156
  msgid ""
4157
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
4158
  "rate settings and update all premium payment gateways!"
4161
  "plait, vérifier vos paramètres de taux de change & mettez à jour toutes les "
4162
  "passerelles des paiements prémium."
4163
 
4164
+ #: ../includes/mycred-admin.php:242
4165
  msgid "User is excluded"
4166
  msgstr "Cet utilisateur est exclu"
4167
 
4168
+ #: ../includes/mycred-admin.php:247
4169
  msgid "Log Entry can not be empty"
4170
  msgstr "Le champ ne peut pas être vide."
4171
 
4172
+ #: ../includes/mycred-admin.php:251
4173
  msgid "Amount can not be zero"
4174
  msgstr "Le montant ne peut pas être zéro"
4175
 
4176
+ #: ../includes/mycred-admin.php:272
4177
  msgid "Failed to update this uses balance."
4178
  msgstr "&Eacute;chec de la mise à jour de ce solde"
4179
 
4180
+ #: ../includes/mycred-admin.php:406
4181
  msgid "Excluded"
4182
  msgstr "Exclus"
4183
 
4184
+ #: ../includes/mycred-admin.php:427
4185
  msgid "Adjust"
4186
  msgstr "Ajustement"
4187
 
4188
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
4189
  msgid "Edit Balance"
4190
  msgstr "Editer le solde"
4191
 
4192
+ #: ../includes/mycred-admin.php:490
4193
  msgid "Profile"
4194
  msgstr "Profil"
4195
 
4196
+ #: ../includes/mycred-admin.php:497
4197
  msgid "Extended Profile"
4198
  msgstr "Etendre le profil"
4199
 
4200
+ #: ../includes/mycred-admin.php:591
4201
  #, php-format
4202
  msgid "This user is excluded from using %s"
4203
  msgstr "Cet utilisateur est exclu de l'aide %s"
4204
 
4205
+ #: ../includes/mycred-admin.php:615
4206
  msgid "Edit User"
4207
  msgstr "Editer l'utilisateur"
4208
 
4209
+ #: ../includes/mycred-admin.php:617
4210
  msgctxt "user"
4211
  msgid "Add New"
4212
  msgstr "Ajouter un nouvel"
4213
 
4214
+ #: ../includes/mycred-admin.php:619
4215
  msgctxt "user"
4216
  msgid "Add Existing"
4217
  msgstr "Ajouter existant"
4218
 
4219
+ #: ../includes/mycred-admin.php:630
4220
  #, php-format
4221
  msgid "Total %s Accumulated"
4222
  msgstr "Total %s Accumulaté"
4223
 
4224
+ #: ../includes/mycred-admin.php:631
4225
  #, php-format
4226
  msgid "Total %s Spent"
4227
  msgstr "Total %s Dépensé"
4228
 
4229
+ #: ../includes/mycred-admin.php:642
4230
  msgid "View History"
4231
  msgstr "Voir l'Historique"
4232
 
4233
+ #: ../includes/mycred-admin.php:643
4234
  msgid "Exclude User"
4235
  msgstr "Exclure l'utilisateur"
4236
 
4237
+ #: ../includes/mycred-admin.php:647
4238
  msgid "Adjust Balance"
4239
  msgstr "Ajuster le solde"
4240
 
4241
+ #: ../includes/mycred-admin.php:656
4242
  msgid ""
4243
  "Warning! Excluding this user will result in their balance being deleted "
4244
  "along with any entries currently in your log! This can not be undone!"
4246
  "Attention! En excluant cet utilisateur, vous supprimerez également son solde "
4247
  "pour toujours. Cela ne peut être annulé!"
4248
 
4249
+ #: ../includes/mycred-admin.php:721
4250
  #, php-format
4251
  msgid "%singular% balance"
4252
  msgstr "solde de %singular%"
4253
 
4254
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4255
  msgid "Update Balance"
4256
  msgstr "Mettre à jour le solde"
4257
 
4258
+ #: ../includes/mycred-admin.php:798
4259
  msgid "ID"
4260
  msgstr "ID"
4261
 
4262
+ #: ../includes/mycred-admin.php:804
4263
  msgid "A positive or negative value"
4264
  msgstr "Une valeur positive ou négative"
4265
 
4917
  msgid "Install & Run"
4918
  msgstr "Installer et démarrer"
4919
 
4920
+ #: ../includes/mycred-log.php:485
4921
  #, php-format
4922
  msgid "Showing %d %s"
4923
  msgstr "Affichage de %d %s"
4924
 
4925
+ #: ../includes/mycred-log.php:485
4926
  msgid "entry"
4927
  msgstr "entrée"
4928
 
4929
+ #: ../includes/mycred-log.php:500
4930
  msgid "Go to the first page"
4931
  msgstr "Aller à la première page"
4932
 
4933
+ #: ../includes/mycred-log.php:507
4934
  msgid "Go to the previous page"
4935
  msgstr "Aller à la page précédente"
4936
 
4937
+ #: ../includes/mycred-log.php:517
4938
  msgid "Current page"
4939
  msgstr "Page actuelle"
4940
 
4941
+ #: ../includes/mycred-log.php:523
4942
  #, php-format
4943
  msgctxt "mycred"
4944
  msgid "%1$s of %2$s"
4945
  msgstr ""
4946
 
4947
+ #: ../includes/mycred-log.php:527
4948
  msgid "Go to the next page"
4949
  msgstr "Aller à la page suivante"
4950
 
4951
+ #: ../includes/mycred-log.php:534
4952
  msgid "Go to the last page"
4953
  msgstr "Aller à la dernière page"
4954
 
4955
+ #: ../includes/mycred-log.php:611
4956
  msgid "Show all references"
4957
  msgstr "Afficher toutes les références"
4958
 
4959
+ #: ../includes/mycred-log.php:628
4960
  msgid "User ID, Username, Email or Nicename"
4961
  msgstr ""
4962
 
4963
+ #: ../includes/mycred-log.php:636
4964
  msgid "Show in order"
4965
  msgstr "Afficher sur la commande"
4966
 
4967
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4968
  msgid "Ascending"
4969
  msgstr "Ascendant"
4970
 
4971
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4972
  msgid "Descending"
4973
  msgstr "Descendant"
4974
 
4975
+ #: ../includes/mycred-log.php:658
4976
  msgid "Filter"
4977
  msgstr "Filtre"
4978
 
4979
+ #: ../includes/mycred-log.php:718
4980
  msgid ""
4981
  "Log entries are exported to a CSV file and depending on the number of "
4982
  "entries selected, the process may take a few seconds."
4984
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
4985
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
4986
 
4987
+ #: ../includes/mycred-log.php:725
4988
  msgid "No export options available."
4989
  msgstr "Aucune option d'exportation disponible."
4990
 
4991
+ #: ../includes/mycred-log.php:758
4992
  msgid "Entry"
4993
  msgstr "Motif"
4994
 
4995
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4996
  msgid "User Missing"
4997
  msgstr "Utilisateur inexistant"
4998
 
4999
+ #: ../includes/mycred-log.php:958
5000
  msgid "No log entries found"
5001
  msgstr "Aucun enregistrement à afficher."
5002
 
5003
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
5004
  msgid "Search Log"
5005
  msgstr "Journal de recherche"
5006
 
5007
+ #: ../includes/mycred-log.php:977
5008
  msgid "search log entries"
5009
  msgstr "Recherchez une donnée"
5010
 
5011
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
5012
  #: modules/mycred-module-buddypress.php:249
5013
  msgid "All"
5014
  msgstr "Historique complet"
5015
 
5016
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
5017
  msgid "Yesterday"
5018
  msgstr "Hier"
5019
 
5259
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5260
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5261
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5262
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5263
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5264
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5265
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5956
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5957
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5958
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5959
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5960
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5961
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5962
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
6288
  msgid "Entries"
6289
  msgstr "Entrées"
6290
 
6291
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6292
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6293
  msgid "Export"
6294
  msgstr "Exporter"
6295
 
6308
  "Certain hooks and shortcodes will not work correctly!"
6309
  msgstr ""
6310
 
6311
+ #: ../modules/mycred-module-log.php:563
6312
  msgid "Edit"
6313
  msgstr "Modifier"
6314
 
6315
+ #: ../modules/mycred-module-log.php:610
6316
  msgid "Time"
6317
  msgstr "Durée"
6318
 
6319
+ #: ../modules/mycred-module-log.php:614
6320
  msgid "Current Log Entry"
6321
  msgstr "Entrée actuelle"
6322
 
6323
+ #: ../modules/mycred-module-log.php:616
6324
  msgid "The current saved log entry"
6325
  msgstr "L'entrée sauvegardée actuelle"
6326
 
6327
+ #: ../modules/mycred-module-log.php:619
6328
  msgid "Adjust Log Entry"
6329
  msgstr "Ajuster le journal"
6330
 
6331
+ #: ../modules/mycred-module-log.php:621
6332
  msgid "The new log entry"
6333
  msgstr "La nouvelle entrée de journal"
6334
 
6335
+ #: ../modules/mycred-module-log.php:624
6336
  msgid "Update Log Entry"
6337
  msgstr "Mettre à jour le journal"
6338
 
6339
+ #: ../modules/mycred-module-log.php:695
6340
  #, php-format
6341
  msgid "My %s History"
6342
  msgstr "Mon historique %s"
7040
  msgid "Reward with %plural%"
7041
  msgstr "Récompensez-les avec %plural%"
7042
 
7043
+ #: ../plugins/mycred-hook-sharethis.php:19
7044
  #, php-format
7045
  msgid "%plural% for Sharing"
7046
  msgstr "%plural% pour un partage"
7047
 
7048
+ #: ../plugins/mycred-hook-sharethis.php:20
7049
  #, php-format
7050
  msgid ""
7051
  "Awards %_plural% for users sharing / liking your website content to popular "
7054
  "Attribution de %_plural% pour les utilisateurs partageant/aimant le contenu "
7055
  "de votre siteweb sur les réseaux sociaux."
7056
 
7057
+ #: ../plugins/mycred-hook-sharethis.php:257
7058
  msgid "Your ShareThis public key is not set."
7059
  msgstr "Votre clef public SHARETHIS n'est pas fixé."
7060
 
7061
+ #: ../plugins/mycred-hook-sharethis.php:262
7062
  msgid "No ShareThis services detected. Please check your installation."
7063
  msgstr ""
7064
  "Pas de services SHARETHIS détecté. S'il vous plait, vérifiez votre "
lang/mycred-ja_JP.mo ADDED
Binary file
lang/mycred-ja_JP.po ADDED
@@ -0,0 +1,6663 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
+ "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:43:13 GMT+0200 (CEST)\n"
7
+ "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
+ "me>\n"
10
+ "Language: Japanese (Japan)\n"
11
+ "Plural-Forms: nplurals=1; plural=0\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Loco - https://localise.biz/\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Loco-Target-Locale: ja_JP\n"
24
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
25
+ "content/plugins/mycred\n"
26
+ "X-Poedit-SearchPath-1: ."
27
+
28
+ #: ../mycred.php:461
29
+ msgid "Balance"
30
+ msgstr "残りポイント"
31
+
32
+ #: ../mycred.php:486
33
+ msgid "%label% History"
34
+ msgstr "%label% 履歴"
35
+
36
+ #: ../mycred.php:580
37
+ #, php-format
38
+ msgid "About %s"
39
+ msgstr "%s について"
40
+
41
+ #: ../mycred.php:589
42
+ msgid "Awesome People"
43
+ msgstr "素晴らしい人々"
44
+
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
+ #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
+ #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
+ #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
+ #: php:636
51
+ msgid "Processing..."
52
+ msgstr "処理中・・・"
53
+
54
+ #: ../mycred.php:678
55
+ msgid ""
56
+ "Warning! All entries in your log will be permanently removed! This can not "
57
+ "be undone!"
58
+ msgstr "警告!あなたのログ内のすべての履歴が永久に削除されます!これは元に戻すことはできません!"
59
+
60
+ #: ../mycred.php:679
61
+ msgid ""
62
+ "All log entries belonging to deleted users will be permanently deleted! This "
63
+ "can not be undone!"
64
+ msgstr "削除されたユーザーに属するすべてのログ履歴は完全に削除されます!これは元に戻すことはできません!"
65
+
66
+ #: ../mycred.php:680
67
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
+ msgstr "警告!すべてのユーザーの残りポイントはゼロに設定されます!これは元に戻すことはできません!"
69
+
70
+ #: ../mycred.php:681
71
+ msgid "Done!"
72
+ msgstr "なし!"
73
+
74
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
75
+ msgid "Close"
76
+ msgstr "閉じる"
77
+
78
+ #: ../mycred.php:683
79
+ msgid "Export users %plural%"
80
+ msgstr "%plural% ユーザーのエクスポート"
81
+
82
+ #: ../mycred.php:684
83
+ msgid ""
84
+ "In order to adjust the number of decimal places you want to use we must "
85
+ "update your log. It is highly recommended that you backup your current log "
86
+ "before continuing!"
87
+ msgstr ""
88
+ "小数点以下の桁数を調整するためには私たちはあなたのログを更新する必要が使用する。これは非常にそのあなたのバックアップを続行する前に現在のログをお勧めします"
89
+ "!"
90
+
91
+ #: ../mycred.php:700
92
+ msgid "Edit Users Balance"
93
+ msgstr "ユーザー残りポイントの編集"
94
+
95
+ #: ../mycred.php:718
96
+ msgid "Edit Log Entry"
97
+ msgstr "ログ履歴の編集"
98
+
99
+ #: ../mycred.php:722
100
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
101
+ msgstr "あなたはこのログ履歴を削除してもよろしいていますか?これは元に戻すことはできません!"
102
+
103
+ #: ../mycred.php:723
104
+ msgid "Log entry updated"
105
+ msgstr "ログ履歴が更新された"
106
+
107
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
108
+ #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
109
+ #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
110
+ msgid "Setup"
111
+ msgstr "セットアップ"
112
+
113
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
114
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
115
+ #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
116
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23
117
+ msgid "Settings"
118
+ msgstr "設定"
119
+
120
+ #: ../mycred.php:825
121
+ msgid ""
122
+ "Make sure to backup your database and files before updating, in case "
123
+ "anything goes wrong!"
124
+ msgstr "更新する前にデータベースとファイルのバックアップすることをオススメします。何かが間違って場合には有効です!"
125
+
126
+ #: ../abstracts/mycred-abstract-hook.php:83
127
+ msgid "This Hook has no settings"
128
+ msgstr "このフックは設定がありません"
129
+
130
+ #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
131
+ #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
132
+ #: php:1809
133
+ msgid "No limit"
134
+ msgstr "制限なし"
135
+
136
+ #: ../abstracts/mycred-abstract-hook.php:227
137
+ msgid "/ Day"
138
+ msgstr "/ 日"
139
+
140
+ #: ../abstracts/mycred-abstract-hook.php:228
141
+ msgid "/ Week"
142
+ msgstr "/ 週"
143
+
144
+ #: ../abstracts/mycred-abstract-hook.php:229
145
+ msgid "/ Month"
146
+ msgstr "/ 月"
147
+
148
+ #: ../abstracts/mycred-abstract-hook.php:230
149
+ msgid "in Total"
150
+ msgstr "すべて"
151
+
152
+ #: ../abstracts/mycred-abstract-hook.php:294
153
+ msgid "Once every 24 hours"
154
+ msgstr "24時間ごとに一度"
155
+
156
+ #: ../abstracts/mycred-abstract-hook.php:295
157
+ msgid "Once every 7 days"
158
+ msgstr "7日ごとに一度"
159
+
160
+ #: ../abstracts/mycred-abstract-hook.php:296
161
+ msgid "Once per day (reset at midnight)"
162
+ msgstr "1日に1回(午前零時にリセット)"
163
+
164
+ #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
165
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
166
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
167
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
168
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
169
+ #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
170
+ #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
171
+ msgid "Select"
172
+ msgstr "選択"
173
+
174
+ #: ../abstracts/mycred-abstract-module.php:56
175
+ msgid "myCRED_Module() Error. A Module ID is required!"
176
+ msgstr "myCRED_Module() エラー。モジュールIDが必要です!"
177
+
178
+ #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
179
+ #: module.php:358
180
+ msgid "Surprise"
181
+ msgstr "サプライズ"
182
+
183
+ #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
184
+ msgid "click to close"
185
+ msgstr "閉じるをクリック"
186
+
187
+ #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
188
+ msgid "click to open"
189
+ msgstr "開くをクリック"
190
+
191
+ #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
192
+ #: buy-creds.php:927
193
+ msgid "Settings Updated"
194
+ msgstr "設定が更新"
195
+
196
+ #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
197
+ #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
198
+ #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
199
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
200
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
201
+ #: badges.php:395
202
+ msgid "Badges"
203
+ msgstr "バッジ"
204
+
205
+ #: ../addons/badges/myCRED-addon-badges.php:169
206
+ #, php-format
207
+ msgid "Badges (%d)"
208
+ msgstr "バッジ (%d)"
209
+
210
+ #: ../addons/badges/myCRED-addon-badges.php:260
211
+ #, php-format
212
+ msgid "%d Users earned this badge."
213
+ msgstr "%d ユーザーはこのバッジを獲得した。"
214
+
215
+ #: ../addons/badges/myCRED-addon-badges.php:264
216
+ msgid "No users has yet earned this badge."
217
+ msgstr "いいえユーザーはまだこのバッジを獲得していない。"
218
+
219
+ #: ../addons/badges/myCRED-addon-badges.php:287
220
+ msgid "No connections where removed."
221
+ msgstr ""
222
+
223
+ #: ../addons/badges/myCRED-addon-badges.php:289
224
+ #, php-format
225
+ msgid "%s connections where removed."
226
+ msgstr "%s の接続が削除されました。"
227
+
228
+ #: ../addons/badges/myCRED-addon-badges.php:384
229
+ msgid "Badge"
230
+ msgstr "バッジ"
231
+
232
+ #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
233
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
234
+ #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
235
+ #: addons/ranks/myCRED-addon-ranks.php:448
236
+ msgid "Add New"
237
+ msgstr "新規追加"
238
+
239
+ #: ../addons/badges/myCRED-addon-badges.php:386
240
+ msgid "Add New Badge"
241
+ msgstr "新しいバッジ"
242
+
243
+ #: ../addons/badges/myCRED-addon-badges.php:387
244
+ msgid "Edit Badge"
245
+ msgstr "バッジ編集"
246
+
247
+ #: ../addons/badges/myCRED-addon-badges.php:388
248
+ msgid "New Badge"
249
+ msgstr "新しいバッジ"
250
+
251
+ #: ../addons/badges/myCRED-addon-badges.php:390
252
+ msgid "View Badge"
253
+ msgstr "バッジ表示"
254
+
255
+ #: ../addons/badges/myCRED-addon-badges.php:391
256
+ msgid "Search Badge"
257
+ msgstr "バッジ検索"
258
+
259
+ #: ../addons/badges/myCRED-addon-badges.php:392
260
+ msgid "No badges found"
261
+ msgstr "バッジがみつかりません"
262
+
263
+ #: ../addons/badges/myCRED-addon-badges.php:393
264
+ msgid "No badges found in Trash"
265
+ msgstr "ゴミ箱にバッジがみつかりません"
266
+
267
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
268
+ #: badges.php:541
269
+ msgid "Badge Name"
270
+ msgstr "バッジ名"
271
+
272
+ #: ../addons/badges/myCRED-addon-badges.php:440
273
+ msgid "Badge Images"
274
+ msgstr "バッジ画像"
275
+
276
+ #: ../addons/badges/myCRED-addon-badges.php:441
277
+ msgid "Requirements"
278
+ msgstr "必要条件"
279
+
280
+ #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
281
+ #: ranks.php:1042 ../modules/mycred-module-settings.php:636
282
+ msgid "Users"
283
+ msgstr "ユーザー"
284
+
285
+ #: ../addons/badges/myCRED-addon-badges.php:481
286
+ msgid "A user must have gained or lost:"
287
+ msgstr "ユーザーが獲得または失っている必要があります。"
288
+
289
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
290
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
291
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
292
+ #: badges.php:526
293
+ msgid "Badge Updated."
294
+ msgstr "バッジを更新"
295
+
296
+ #: ../addons/badges/myCRED-addon-badges.php:522
297
+ msgid "Badge Enabled"
298
+ msgstr "バッジ有効化"
299
+
300
+ #: ../addons/badges/myCRED-addon-badges.php:523
301
+ msgid "Badge Saved"
302
+ msgstr "バッジ保存"
303
+
304
+ #: ../addons/badges/myCRED-addon-badges.php:555
305
+ msgid "Badge Setup"
306
+ msgstr "バッジのセットアップ"
307
+
308
+ #: ../addons/badges/myCRED-addon-badges.php:582
309
+ msgid "Assign Badge"
310
+ msgstr "バッジの割り当て"
311
+
312
+ #: ../addons/badges/myCRED-addon-badges.php:583
313
+ msgid "Remove Connections"
314
+ msgstr "接続を削除する"
315
+
316
+ #: ../addons/badges/myCRED-addon-badges.php:638
317
+ msgid "Time(s)"
318
+ msgstr "時間(s)"
319
+
320
+ #: ../addons/badges/myCRED-addon-badges.php:639
321
+ msgid "In total"
322
+ msgstr "合計"
323
+
324
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
325
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
326
+ #: addons/badges/myCRED-addon-badges.php:846
327
+ msgid "Badge Image"
328
+ msgstr "バッジ画像"
329
+
330
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
331
+ #: badges.php:672
332
+ msgid "Set badge image"
333
+ msgstr "設定しバッジ画像"
334
+
335
+ #: ../addons/badges/myCRED-addon-badges.php:682
336
+ msgid "Default Image"
337
+ msgstr "デフォルト画像"
338
+
339
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
340
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
341
+ #: addons/badges/myCRED-addon-badges.php:831
342
+ msgid "image url"
343
+ msgstr "画像URL"
344
+
345
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
346
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
347
+ #: addons/badges/myCRED-addon-badges.php:831
348
+ msgid "Add Image"
349
+ msgstr "画像追加"
350
+
351
+ #: ../addons/badges/myCRED-addon-badges.php:685
352
+ msgid "Optional image to show when a user has not yet earned this badge."
353
+ msgstr "ユーザーはまだこのバッジを獲得していない場合は、オプションの画像が表示されます。"
354
+
355
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
356
+ #: badges.php:756
357
+ #, php-format
358
+ msgid "Level %d"
359
+ msgstr "レベル %d"
360
+
361
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
362
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
363
+ msgid "for"
364
+ msgstr "から"
365
+
366
+ #: ../addons/badges/myCRED-addon-badges.php:740
367
+ msgid "Main Image"
368
+ msgstr "メイン画像"
369
+
370
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
371
+ #: badges.php:831
372
+ msgid "Leave empty if you do not want to assign a custom image for this level."
373
+ msgstr "あなたはこのレベルのカスタム画像を割り当てたくない場合は、空のままにします。"
374
+
375
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
376
+ #: badges.php:831
377
+ msgid "Remove this level"
378
+ msgstr "このレベルを削除"
379
+
380
+ #: ../addons/badges/myCRED-addon-badges.php:788
381
+ msgid "Add Level"
382
+ msgstr "レベルを追加"
383
+
384
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
385
+ #: badges.php:1154
386
+ msgid "Level"
387
+ msgstr "レベル"
388
+
389
+ #: ../addons/badges/myCRED-addon-badges.php:848
390
+ msgid "Use as Badge"
391
+ msgstr "バッジとして使用"
392
+
393
+ #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
394
+ #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
395
+ #: modules/mycred-module-buddypress.php:417
396
+ msgid "Do not show"
397
+ msgstr "表示しない"
398
+
399
+ #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
400
+ #: buddypress.php:418
401
+ msgid "Include in Profile Header"
402
+ msgstr "プロフィールのヘッダーに含める"
403
+
404
+ #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
405
+ #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
406
+ msgid "Include under the \"Profile\" tab"
407
+ msgstr "\"プロフィール\" タブの下に挿入"
408
+
409
+ #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
410
+ #: buddypress.php:420
411
+ msgid "Include under the \"Profile\" tab and Profile Header"
412
+ msgstr "\"プロフィール\" タブとプロフィールのヘッダーの下に挿入"
413
+
414
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
415
+ #: badges.php:1017
416
+ msgid "Show all badges, including badges users have not yet earned."
417
+ msgstr "ユーザーがまだ獲得していないのバッジを含め、すべてのバッジを表示します。"
418
+
419
+ #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
420
+ #: ranks.php:1452
421
+ msgid "Include in Profile"
422
+ msgstr "プロフィールに挿入"
423
+
424
+ #: ../addons/badges/myCRED-addon-badges.php:1003
425
+ msgid "Include in Forum Replies"
426
+ msgstr "フォーラムの返信に挿入"
427
+
428
+ #: ../addons/badges/myCRED-addon-badges.php:1004
429
+ msgid "Include in Profile and Forum Replies"
430
+ msgstr "プロフィールやフォーラムの返信に挿入"
431
+
432
+ #: ../addons/badges/myCRED-addon-badges.php:1111
433
+ msgid "User Badges"
434
+ msgstr "ユーザーバッジ"
435
+
436
+ #: ../addons/badges/myCRED-addon-badges.php:1116
437
+ msgid ""
438
+ "Here you can view the badges this user has earned and if needed, manually "
439
+ "give or take away a badge from a user."
440
+ msgstr "ここではこのユーザーが獲得しているバッジを表示することができ、必要であれば、手動で与えるかまたはユーザからバッジを奪う事ができます。"
441
+
442
+ #: ../addons/badges/myCRED-addon-badges.php:1125
443
+ msgid "Not earned"
444
+ msgstr "獲得していません"
445
+
446
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
447
+ #: badges.php:1168
448
+ msgid "Earned"
449
+ msgstr "獲得"
450
+
451
+ #: ../addons/badges/myCRED-addon-badges.php:1143
452
+ msgid "No image"
453
+ msgstr "画像なし"
454
+
455
+ #: ../addons/badges/myCRED-addon-badges.php:1150
456
+ msgid "Select a level"
457
+ msgstr "レベルを選択"
458
+
459
+ #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
460
+ #: addon-email-notices.php:810
461
+ msgid "Status"
462
+ msgstr "ステータス"
463
+
464
+ #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
465
+ #: addon-email-notices.php:1296
466
+ msgid "Save Changes"
467
+ msgstr "変更の保存"
468
+
469
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
470
+ #, php-format
471
+ msgid "Level %s"
472
+ msgstr "レベル %s"
473
+
474
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
475
+ #, php-format
476
+ msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
477
+ msgid "%s for %s %s - %s"
478
+ msgstr "%s から %s %s - %s"
479
+
480
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
481
+ #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
482
+ #: coupons.php:469
483
+ #, php-format
484
+ msgid "1 time"
485
+ msgid_plural "%d times"
486
+ msgstr[0] "1 項目"
487
+ msgstr[1] "%d 項目"
488
+
489
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
490
+ #, php-format
491
+ msgctxt "\"x points\" for \"reference\" in total"
492
+ msgid "%s for %s in total"
493
+ msgstr "%s から %s の合計"
494
+
495
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
496
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
497
+ msgid "Banking"
498
+ msgstr "バンキング"
499
+
500
+ #: ../addons/banking/myCRED-addon-banking.php:158
501
+ msgid "Central Banking"
502
+ msgstr "管理バンキング"
503
+
504
+ #: ../addons/banking/myCRED-addon-banking.php:159
505
+ #, php-format
506
+ msgid ""
507
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
508
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
509
+ "deposited back into this account."
510
+ msgstr ""
511
+ "代わりに薄い空気の外 %_plural% を作成するので、すべての支払いは \"Central Bank\" "
512
+ "登録口座から作られています。ユーザーが消費しているか、失効したか %_plural% が戻ってこのアカウントに入金されている。"
513
+
514
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
515
+ #: addons/banking/services/mycred-bank-service-interest.php:512
516
+ msgid "Compound Interest"
517
+ msgstr "複利"
518
+
519
+ #: ../addons/banking/myCRED-addon-banking.php:166
520
+ #, php-format
521
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
522
+ msgstr "あなたのユーザー %_plural% は残りポイントは正または負の金利を適用します。"
523
+
524
+ #: ../addons/banking/myCRED-addon-banking.php:172
525
+ msgid "Recurring Payouts"
526
+ msgstr "定期購入"
527
+
528
+ #: ../addons/banking/myCRED-addon-banking.php:173
529
+ msgid "Setup mass %_singular% payouts for your users."
530
+ msgstr "あなたのユーザーに対して大量の %_singular% の支払いを設定します。"
531
+
532
+ #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
533
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
534
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
535
+ #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
536
+ #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
537
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
538
+ msgid "Access Denied"
539
+ msgstr "アクセス拒否"
540
+
541
+ #: ../addons/banking/myCRED-addon-banking.php:225
542
+ #, php-format
543
+ msgid "%s Banking"
544
+ msgstr "%s バンキング"
545
+
546
+ #: ../addons/banking/myCRED-addon-banking.php:228
547
+ msgid "Your banking setup for %plural%."
548
+ msgstr "%plural% のためのあなたのバンキングをセットアップ。"
549
+
550
+ #: ../addons/banking/myCRED-addon-banking.php:231
551
+ msgid "WP-Cron deactivation detected!"
552
+ msgstr "WP-Cronの不活性化が検出された!"
553
+
554
+ #: ../addons/banking/myCRED-addon-banking.php:232
555
+ msgid "Warning! This add-on requires WP - Cron to work."
556
+ msgstr "警告!このアドオンはWP- cronが動作するが必要があります。"
557
+
558
+ #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
559
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
560
+ msgid "Enable"
561
+ msgstr "有効にする"
562
+
563
+ #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
564
+ #: php:240
565
+ msgid "Update Changes"
566
+ msgstr "変更の更新"
567
+
568
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
569
+ msgid "This Service has no settings"
570
+ msgstr "本サービスは設定がありません"
571
+
572
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
573
+ msgid "Hourly"
574
+ msgstr "毎時"
575
+
576
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
577
+ msgid "Daily"
578
+ msgstr "毎日"
579
+
580
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
581
+ msgid "Weekly"
582
+ msgstr "毎週"
583
+
584
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
585
+ msgid "Monthly"
586
+ msgstr "毎月"
587
+
588
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
589
+ msgid "Quarterly"
590
+ msgstr "四半期"
591
+
592
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
593
+ msgid "Semiannually"
594
+ msgstr "半期"
595
+
596
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
597
+ msgid "Annually"
598
+ msgstr "毎年"
599
+
600
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
601
+ msgid "Bank User"
602
+ msgstr "バンクユーザー"
603
+
604
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
605
+ msgid "The user ID of the central bank account. This user can not be excluded!"
606
+ msgstr "管理バンキングアカウントのユーザーID。このユーザーは除外することはできません!"
607
+
608
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
609
+ msgid "Ignore Manual Adjustments"
610
+ msgstr "手動調整を無視"
611
+
612
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
613
+ msgid "%plural% interest rate payment"
614
+ msgstr "%plural% の金利支払い"
615
+
616
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
617
+ msgid "Compounding Interest"
618
+ msgstr "配合利息"
619
+
620
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
621
+ #, php-format
622
+ msgid "%d Users are left to process."
623
+ msgstr "%d のユーザーがプロセスに委ねられている。"
624
+
625
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
626
+ msgid "Payout History"
627
+ msgstr "支払い履歴"
628
+
629
+ #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
630
+ #: addons/banking/services/mycred-bank-service-interest.php:409 ..
631
+ #: addons/banking/services/mycred-bank-service-payouts.php:250
632
+ msgid "Run Count"
633
+ msgstr "カウント実行"
634
+
635
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
636
+ msgid "Last Payout"
637
+ msgstr "最終支払い"
638
+
639
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
640
+ #: addons/banking/services/mycred-bank-service-interest.php:414
641
+ msgid "Activated"
642
+ msgstr "活性化"
643
+
644
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
645
+ msgid "Total Payed Interest"
646
+ msgstr "総支払利息"
647
+
648
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
649
+ msgid "Compound History"
650
+ msgstr "複合履歴"
651
+
652
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
653
+ msgid "Last Interest Compound"
654
+ msgstr "最後の金利配合"
655
+
656
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
657
+ msgid "Total Compounded Interest"
658
+ msgstr "総複利"
659
+
660
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
661
+ #: addons/banking/services/mycred-bank-service-interest.php:549
662
+ msgid "Interest Rate"
663
+ msgstr "金利"
664
+
665
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
666
+ msgid "Default Rate"
667
+ msgstr "デフォルト率"
668
+
669
+ #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
670
+ #: addons/banking/services/mycred-bank-service-payouts.php:268
671
+ msgid "Can not be zero."
672
+ msgstr "ゼロにすることはできません。"
673
+
674
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
675
+ #: addons/gateway/carts/mycred-wpecommerce.php:367
676
+ msgid "Payout"
677
+ msgstr "支払い"
678
+
679
+ #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
680
+ #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
681
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
682
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
683
+ #: addons/gateway/carts/mycred-marketpress.php:395 ..
684
+ #: addons/gateway/carts/mycred-marketpress.php:428 ..
685
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
686
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
687
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
688
+ #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
689
+ #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
690
+ #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
691
+ #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
692
+ #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
693
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
694
+ #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
695
+ #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
696
+ #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
697
+ #: php:136
698
+ msgid "Log Template"
699
+ msgstr "ログテンプレート"
700
+
701
+ #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
702
+ #: addons/banking/services/mycred-bank-service-payouts.php:290 ..
703
+ #: addons/coupons/myCRED-addon-coupons.php:438
704
+ msgid "Minimum Balance"
705
+ msgstr "最低限の残りポイント"
706
+
707
+ #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
708
+ #: addons/banking/services/mycred-bank-service-payouts.php:294
709
+ msgid "Optional minimum balance requirement."
710
+ msgstr "オプションの最低残ポイントの要件。"
711
+
712
+ #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
713
+ #: addons/banking/services/mycred-bank-service-payouts.php:297
714
+ msgid "Exclude"
715
+ msgstr "除外"
716
+
717
+ #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
718
+ #: addons/banking/services/mycred-bank-service-payouts.php:300
719
+ msgid "Comma separated list of user IDs"
720
+ msgstr "ユーザーIDの一覧をカンマ区切り"
721
+
722
+ #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
723
+ #: addons/banking/services/mycred-bank-service-payouts.php:304
724
+ msgid "Roles"
725
+ msgstr "役割"
726
+
727
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
728
+ msgid "This user is excluded from receiving interest on this balance."
729
+ msgstr "このユーザーは残ポイントに金利を受け取りからは除外されています。"
730
+
731
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
732
+ msgid "Remove from Excluded List"
733
+ msgstr "除外リストから削除"
734
+
735
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
736
+ msgid "This user role is excluded from receiving interest on this balance."
737
+ msgstr "このユーザーの役割はこの残ポイントに関心を受けてからは除外されている。"
738
+
739
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
740
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
741
+ #: content.php:114
742
+ msgid "Leave empty to use the default value."
743
+ msgstr "デフォルト値を使用する場合は空白のまま。"
744
+
745
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
746
+ msgid "Save Interest Rate"
747
+ msgstr "保存金利"
748
+
749
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
750
+ msgid "Exclude from receiving interest"
751
+ msgstr "金利を受けからの除外"
752
+
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
754
+ msgid "Compound interest rate saved."
755
+ msgstr "複利率がセーブ"
756
+
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
758
+ msgid "User excluded from receiving interest."
759
+ msgstr "ユーザーを金利を受信からは除外。"
760
+
761
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
762
+ msgid "User included in receiving interest."
763
+ msgstr "ユーザーが金利を受信を挿入。"
764
+
765
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
766
+ msgid "Daily %_plural%"
767
+ msgstr "毎日 %_plural%"
768
+
769
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
770
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
771
+ #: modules/mycred-module-log.php:277
772
+ msgid "History"
773
+ msgstr "履歴"
774
+
775
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:255
776
+ msgid "Last Run"
777
+ msgstr "前回の実行"
778
+
779
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:259
780
+ msgid "Total Payouts"
781
+ msgstr "合計ペイアウト"
782
+
783
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:263
784
+ msgid "Pay Users"
785
+ msgstr "有料ユーザー"
786
+
787
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
788
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
789
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
790
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
791
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
792
+ #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
793
+ #: plugins/mycred-hook-affiliatewp.php:256
794
+ msgid "Amount"
795
+ msgstr "金額"
796
+
797
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
798
+ #: modules/mycred-module-hooks.php:2410
799
+ msgid "Interval"
800
+ msgstr "区間"
801
+
802
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:276
803
+ msgid "Cycles"
804
+ msgstr "周期"
805
+
806
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:278
807
+ msgid "Set to -1 for unlimited"
808
+ msgstr "無制限の場合は-1で設定"
809
+
810
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
811
+ msgid "Important"
812
+ msgstr "インポータント"
813
+
814
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
815
+ msgid ""
816
+ "You can always stop payouts by deactivating this service. Just remember that "
817
+ "if you deactivate while there are cycles left, this service will continue on "
818
+ "when it gets re-activated. Set cycles to zero to reset."
819
+ msgstr ""
820
+ "あなたはいつもでもこのサービスを無効化することにより支払いを停止することができます。定期支払いが存在する間は非アクティブにした場合、このサービスは、それが"
821
+ "再アクティブ化されたときに継続することを覚えておいてください。ゼロで設定された場合に再帰支払いはリセットされます。"
822
+
823
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
824
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
825
+ msgid "Payment Gateways"
826
+ msgstr "支払い方法"
827
+
828
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
829
+ msgctxt "Post Type General Name"
830
+ msgid "Pending Payments"
831
+ msgstr "保留中の支払い"
832
+
833
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
834
+ msgctxt "Post Type Singular Name"
835
+ msgid "Pending Payment"
836
+ msgstr "保留中の支払い"
837
+
838
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
839
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
840
+ msgid "Pending Payments"
841
+ msgstr "保留中の支払い"
842
+
843
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
844
+ msgid "Edit Pending Payment"
845
+ msgstr "保留中の支払いを編集"
846
+
847
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
848
+ #: addon-buy-creds.php:1752
849
+ msgid "No pending payments found"
850
+ msgstr "保留中の支払いが見つかりませんでした"
851
+
852
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
853
+ msgid "Not found in Trash"
854
+ msgstr "ゴミ箱には見られない"
855
+
856
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
857
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
858
+ msgid "Transaction ID"
859
+ msgstr "トランザクションID"
860
+
861
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
862
+ #: addon-buy-creds.php:1074
863
+ msgid "Buyer"
864
+ msgstr "バイヤー"
865
+
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
868
+ #: gateway.php:594
869
+ msgid "Cost"
870
+ msgstr "代金"
871
+
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
873
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
874
+ #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
875
+ msgid "Gateway"
876
+ msgstr "支払い方法"
877
+
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
879
+ msgid "Type"
880
+ msgstr "タイプ"
881
+
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
883
+ msgid "Pay Out"
884
+ msgstr "支払う"
885
+
886
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
887
+ msgid "buyCRED Purchase Log"
888
+ msgstr "購入ログ"
889
+
890
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
891
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
892
+ msgid "Purchase Log"
893
+ msgstr "購入ログ"
894
+
895
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
896
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
897
+ #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
898
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
899
+ msgid "Payments"
900
+ msgstr "支払い"
901
+
902
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
903
+ msgid "Please login to purchase %_plural%"
904
+ msgstr "%_plural% を購入するにはログインしてください"
905
+
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
907
+ #, php-format
908
+ msgid "Gift purchase from %display_name%."
909
+ msgstr "%display_name% からギフト購入"
910
+
911
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
912
+ #: addon-ranks.php:1084
913
+ msgid "Minimum %plural%"
914
+ msgstr "最小 %plural%"
915
+
916
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
917
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
918
+ msgstr "ユーザーが購入する必要がある %plural% の最小額。 1はデフォルト設定されます。"
919
+
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
921
+ #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
922
+ #: module-settings.php:656
923
+ msgid "Point Types"
924
+ msgstr "ポイントタイプ"
925
+
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
927
+ msgid "Select the point types that users can buy. You must select at least one!"
928
+ msgstr "ユーザーが購入することができますポイントの種類を選択します。あなたは少なくとも一つ選択する必要があります!"
929
+
930
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
931
+ msgid "Login Template"
932
+ msgstr "ログインテンプレート"
933
+
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
935
+ msgid "Content to show when a user is not logged in."
936
+ msgstr "ユーザーがログインしていないときにコンテンツが表示されます。"
937
+
938
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
939
+ msgid "Thank You Page"
940
+ msgstr "サンキューページ"
941
+
942
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
943
+ #: addon-buy-creds.php:705
944
+ msgid "Custom URL"
945
+ msgstr "カスタムURL"
946
+
947
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
948
+ #: addon-buy-creds.php:710
949
+ msgid "Page"
950
+ msgstr "ページ"
951
+
952
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
953
+ msgid "Cancellation Page"
954
+ msgstr "キャンセルページ"
955
+
956
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
957
+ msgid "Show seperate log for %_plural% purchases."
958
+ msgstr "%_plural% の購入のための個別のログを表示します。"
959
+
960
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
961
+ msgid "Gifting"
962
+ msgstr "ギフト"
963
+
964
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
965
+ #, php-format
966
+ msgid "Allow users to buy %_plural% for other users."
967
+ msgstr "ユーザーが他のユーザーに対して %_plural% を購入することを許可します。"
968
+
969
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
970
+ #, php-format
971
+ msgid "Allow users to buy %_plural% for content authors."
972
+ msgstr "ユーザーがコンテンツ作成者のために %_plural% を購入することを許可します。"
973
+
974
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
975
+ #: hooks.php:3110
976
+ msgid "Available Shortcodes"
977
+ msgstr "利用可能なショートコード"
978
+
979
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
980
+ #, php-format
981
+ msgid "%s Exchange Rate"
982
+ msgstr "為替レート %s"
983
+
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
985
+ msgid "Save Exchange Rates"
986
+ msgstr "為替レートの保存"
987
+
988
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
989
+ msgid "Exchange rate override saved"
990
+ msgstr "為替レートの上書きを保存"
991
+
992
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
993
+ msgid "Payment completed"
994
+ msgstr "お支払いが完了しました"
995
+
996
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
997
+ #, php-format
998
+ msgid "%s Payment Gateways"
999
+ msgstr "支払い方法 %s "
1000
+
1001
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1002
+ #: addon-buy-creds.php:1085
1003
+ msgid "buyCRED Settings"
1004
+ msgstr "設定"
1005
+
1006
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1007
+ msgid "Test Mode"
1008
+ msgstr "テストモード"
1009
+
1010
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1011
+ msgid "Enabled"
1012
+ msgstr "有効化"
1013
+
1014
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1015
+ msgid "Disabled"
1016
+ msgstr "無効化"
1017
+
1018
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1019
+ msgid "Sandbox Mode"
1020
+ msgstr "サンドモックスモード"
1021
+
1022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1023
+ msgid "Enable for test purchases."
1024
+ msgstr "テストの購入のために有効にします。"
1025
+
1026
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1027
+ #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1028
+ msgid "Update Settings"
1029
+ msgstr "更新設定"
1030
+
1031
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1032
+ msgid "More Gateways"
1033
+ msgstr "複数の支払い方法"
1034
+
1035
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1036
+ #: 756
1037
+ msgid "Date"
1038
+ msgstr "日付"
1039
+
1040
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1041
+ msgid "Payed"
1042
+ msgstr "支払われた"
1043
+
1044
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1045
+ msgid "<strong>buy</strong>CRED Purchase Log"
1046
+ msgstr "<strong>購入</strong>クレジットの購入ログ"
1047
+
1048
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1049
+ #: booking/mycred-eventespresso3.php:367
1050
+ msgid "Gateway Settings"
1051
+ msgstr "支払い方法の設定"
1052
+
1053
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1054
+ #: content/myCRED-addon-sell-content.php:1210
1055
+ msgid "No purchases found"
1056
+ msgstr "いいえの購入が見つかりませんでした"
1057
+
1058
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1059
+ #: addon-buy-creds.php:1464
1060
+ msgid "This Add-on needs to setup before you can use this shortcode."
1061
+ msgstr "このアドオンのニーズはこのショートコードを使用する前にセットアップする。"
1062
+
1063
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1064
+ #: addon-buy-creds.php:1483
1065
+ msgid "No gateways installed."
1066
+ msgstr "支払い方法がインストールされていません。"
1067
+
1068
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1069
+ #: addon-buy-creds.php:1484
1070
+ msgid "Gateway does not exist."
1071
+ msgstr "支払い方法は存在しません。"
1072
+
1073
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1074
+ msgid "Yourself"
1075
+ msgstr "あなた自身"
1076
+
1077
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1078
+ msgid "No active gateways found."
1079
+ msgstr "アクティブなゲートウェイが見つかりませんでした。"
1080
+
1081
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1082
+ msgid "The selected gateway is not active."
1083
+ msgstr "選択した支払い方法がアクティブではありません。"
1084
+
1085
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1086
+ #, php-format
1087
+ msgid "Buy with %gateway%"
1088
+ msgstr "%gateway% で購入"
1089
+
1090
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1091
+ #: content/myCRED-addon-sell-content.php:44
1092
+ msgid "Buy Now"
1093
+ msgstr "今すぐ購入"
1094
+
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1096
+ msgid "No users found"
1097
+ msgstr "いいえユーザーが見つかりませんでした"
1098
+
1099
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1100
+ msgid "To"
1101
+ msgstr "宛先"
1102
+
1103
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1104
+ msgid "Select Amount"
1105
+ msgstr "金額選択"
1106
+
1107
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1108
+ msgid "min."
1109
+ msgstr "分間"
1110
+
1111
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1112
+ msgid "Select Gateway"
1113
+ msgstr "支払い方法の選択"
1114
+
1115
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1116
+ #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1117
+ #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1118
+ #: php:35
1119
+ msgid "Pay Now"
1120
+ msgstr "今すぐ支払う"
1121
+
1122
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1123
+ #: php:536
1124
+ msgid "Cancel"
1125
+ msgstr "キャンセル"
1126
+
1127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1128
+ #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1129
+ #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1130
+ msgid "Actions"
1131
+ msgstr "アクション"
1132
+
1133
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
1134
+ msgid "This Payment Gateway has no settings"
1135
+ msgstr "この支払い方法の設定がありません"
1136
+
1137
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
1138
+ msgid "Select currency"
1139
+ msgstr "通貨を選択してください"
1140
+
1141
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
1142
+ msgid "Incoming confirmation call detected"
1143
+ msgstr "受信の確認コールが検出された"
1144
+
1145
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
1146
+ #, php-format
1147
+ msgid "Gateway identified itself as \"%s\""
1148
+ msgstr "支払い方法は \"%s\" としてそれ自身を識別"
1149
+
1150
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
1151
+ msgid "Verifying caller"
1152
+ msgstr "確認呼び出し側"
1153
+
1154
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
1155
+ msgid "Test Payment"
1156
+ msgstr "テスト支払い"
1157
+
1158
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404 ..
1159
+ #: addons/gateway/carts/mycred-marketpress.php:179
1160
+ msgid "Payment"
1161
+ msgstr "支払い"
1162
+
1163
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
1164
+ msgid "Cancel purchase"
1165
+ msgstr "購入をキャンセル"
1166
+
1167
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1168
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1169
+ msgid "required"
1170
+ msgstr "必須"
1171
+
1172
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1173
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1174
+ msgid "optional"
1175
+ msgstr "オプション"
1176
+
1177
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
1178
+ msgid "First Name"
1179
+ msgstr "ファーストネーム"
1180
+
1181
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
1182
+ msgid "Last Name"
1183
+ msgstr "ラストネーム"
1184
+
1185
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
1186
+ msgid "Address Line 1"
1187
+ msgstr "住所1"
1188
+
1189
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
1190
+ msgid "Address Line 2"
1191
+ msgstr "住所2(建物名や部屋番号など)"
1192
+
1193
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
1194
+ msgid "City"
1195
+ msgstr "市区町村"
1196
+
1197
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
1198
+ msgid "Zip"
1199
+ msgstr "郵便番号"
1200
+
1201
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
1202
+ msgid "State"
1203
+ msgstr "州(都道府県)"
1204
+
1205
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
1206
+ msgid "Country"
1207
+ msgstr "国"
1208
+
1209
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
1210
+ msgid "Choose Country"
1211
+ msgstr "国の選択"
1212
+
1213
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
1214
+ #, php-format
1215
+ msgid "%s Purchase"
1216
+ msgstr "%s の購入"
1217
+
1218
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592 ..
1219
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
1220
+ msgid "Item"
1221
+ msgstr "アイテム"
1222
+
1223
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
1224
+ msgid "Debug"
1225
+ msgstr "デバッグ"
1226
+
1227
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
1228
+ msgid ""
1229
+ "Here you can see information that are collected and sent to this gateway. "
1230
+ "Debug information is only visible for administrators and are intended for "
1231
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
1232
+ "when you want to take this gateway online."
1233
+ msgstr ""
1234
+ "収集された支払い方法に送信された情報を見ることができます。デバッグ情報は管理者のためにのみ表示され、この支払い方法のトラブルシューティング/テストのために"
1235
+ "設計されている。あなたがオンラインでこの支払い方法を有効にしたい場合には \"Sandbox Mode\" を無効にしてください。"
1236
+
1237
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1238
+ msgid "Section"
1239
+ msgstr "セクション"
1240
+
1241
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
1242
+ msgid "Result"
1243
+ msgstr "結果"
1244
+
1245
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
1246
+ msgid "Payment Status"
1247
+ msgstr "支払状況"
1248
+
1249
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
1250
+ msgid "Request"
1251
+ msgstr "リクエスト"
1252
+
1253
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
1254
+ msgid "Gateway Response"
1255
+ msgstr "ゲートウェイの結果"
1256
+
1257
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
1258
+ #, php-format
1259
+ msgid "Continue to %s"
1260
+ msgstr "%s で続行"
1261
+
1262
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1263
+ #: addons/buy-creds/gateways/bitpay.php:233
1264
+ msgid "Click here if you are not automatically redirected"
1265
+ msgstr "自動的にリダイレクトされない場合はこちらをクリック"
1266
+
1267
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
1268
+ msgid "The following information will be sent to the gateway"
1269
+ msgstr "次の情報は選択した支払い先に送信される"
1270
+
1271
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
1272
+ msgid "Outside US"
1273
+ msgstr "米国外"
1274
+
1275
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1276
+ msgid "January"
1277
+ msgstr "1月"
1278
+
1279
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1280
+ msgid "February"
1281
+ msgstr "2月"
1282
+
1283
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1284
+ msgid "March"
1285
+ msgstr "3月"
1286
+
1287
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1288
+ msgid "April"
1289
+ msgstr "4月"
1290
+
1291
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1292
+ msgid "May"
1293
+ msgstr "5月"
1294
+
1295
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1296
+ msgid "June"
1297
+ msgstr "6月"
1298
+
1299
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1300
+ msgid "July"
1301
+ msgstr "7月"
1302
+
1303
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1304
+ msgid "August"
1305
+ msgstr "8月"
1306
+
1307
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1308
+ msgid "September"
1309
+ msgstr "9月"
1310
+
1311
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1312
+ msgid "October"
1313
+ msgstr "10月"
1314
+
1315
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1316
+ msgid "November"
1317
+ msgstr "11月"
1318
+
1319
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1320
+ msgid "December"
1321
+ msgstr "12月"
1322
+
1323
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1324
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1325
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
1326
+ #, php-format
1327
+ msgid "Price mismatch. Expected: %s Received: %s"
1328
+ msgstr "価格不一致。予想:%s 受取: %s"
1329
+
1330
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1331
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1332
+ #, php-format
1333
+ msgid "Currency mismatch. Expected: %s Received: %s"
1334
+ msgstr "通貨のミスマッチ。予想:%s 受取: %s"
1335
+
1336
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1337
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1338
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1339
+ #, php-format
1340
+ msgid "Payment not completed. Received: %s"
1341
+ msgstr "お支払いが完了していません。受取: %s"
1342
+
1343
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1344
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1345
+ #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1346
+ #: creds/gateways/zombaio.php:185
1347
+ msgid "Failed to credit users account."
1348
+ msgstr "ユーザーのアカウント与信が失敗しました。"
1349
+
1350
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1351
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1352
+ #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1353
+ #: creds/gateways/zombaio.php:214
1354
+ msgid "Please setup this gateway before attempting to make a purchase!"
1355
+ msgstr "購入を行うためにしようとする前にこの支払い方法の設定をしてください"
1356
+
1357
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1358
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1359
+ #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1360
+ #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1361
+ msgid "Processing payment &hellip;"
1362
+ msgstr "支払い処理 &hellip;"
1363
+
1364
+ #: ../addons/buy-creds/gateways/bitpay.php:219
1365
+ msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1366
+ msgstr "BitPay請求書を作成できませんでした。サイト管理者に連絡してください!"
1367
+
1368
+ #: ../addons/buy-creds/gateways/bitpay.php:220
1369
+ msgid "Bitpay returned the following error message:"
1370
+ msgstr "Bitpayで次のエラーメッセージが返されました:"
1371
+
1372
+ #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1373
+ msgid "API Key"
1374
+ msgstr "API Key"
1375
+
1376
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1377
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1378
+ #: 300
1379
+ msgid "Currency"
1380
+ msgstr "通貨"
1381
+
1382
+ #: ../addons/buy-creds/gateways/bitpay.php:262
1383
+ msgid "Currency Code"
1384
+ msgstr "通貨コード"
1385
+
1386
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1387
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1388
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1389
+ msgid "Item Name"
1390
+ msgstr "項目名"
1391
+
1392
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1393
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1394
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1395
+ msgid "Description of the item being purchased by the user."
1396
+ msgstr "ユーザによって購入される項目の説明。"
1397
+
1398
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1399
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1400
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1401
+ msgid "Exchange Rates"
1402
+ msgstr "為替レート"
1403
+
1404
+ #: ../addons/buy-creds/gateways/bitpay.php:277
1405
+ msgid "Transaction Speed"
1406
+ msgstr "処理速度"
1407
+
1408
+ #: ../addons/buy-creds/gateways/bitpay.php:284
1409
+ msgid "High"
1410
+ msgstr "高"
1411
+
1412
+ #: ../addons/buy-creds/gateways/bitpay.php:285
1413
+ msgid "Medium"
1414
+ msgstr "中"
1415
+
1416
+ #: ../addons/buy-creds/gateways/bitpay.php:286
1417
+ msgid "Low"
1418
+ msgstr "低"
1419
+
1420
+ #: ../addons/buy-creds/gateways/bitpay.php:299
1421
+ msgid "Full Notifications"
1422
+ msgstr "すべての通知"
1423
+
1424
+ #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1425
+ #: ../includes/mycred-network.php:175
1426
+ msgid "No"
1427
+ msgstr "いいえ"
1428
+
1429
+ #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1430
+ #: ../includes/mycred-network.php:171
1431
+ msgid "Yes"
1432
+ msgstr "はい"
1433
+
1434
+ #: ../addons/buy-creds/gateways/netbilling.php:216
1435
+ msgid "Account ID"
1436
+ msgstr "アカウントID"
1437
+
1438
+ #: ../addons/buy-creds/gateways/netbilling.php:222
1439
+ msgid "Site Tag"
1440
+ msgstr "サイトタグ"
1441
+
1442
+ #: ../addons/buy-creds/gateways/netbilling.php:228
1443
+ msgid "Order Integrity Key"
1444
+ msgstr "注文インテグレートキー"
1445
+
1446
+ #: ../addons/buy-creds/gateways/netbilling.php:232
1447
+ msgid "Found under Step 12 on the Fraud Defense page."
1448
+ msgstr "フィッシング防御ページの手順12の下にある。"
1449
+
1450
+ #: ../addons/buy-creds/gateways/netbilling.php:246
1451
+ msgid "Postback CGI URL"
1452
+ msgstr "ポストバックCGI URL"
1453
+
1454
+ #: ../addons/buy-creds/gateways/netbilling.php:250
1455
+ msgid ""
1456
+ "For this gateway to work, you must login to your NETbilling account and edit "
1457
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1458
+ "URL is set to the above address and \"Return method\" is set to POST."
1459
+ msgstr ""
1460
+ "動作させるためにはこの支払い方法では、あなたのNETbillingのアカウントにログインしてサイトを編集する必要があります。 \"Default "
1461
+ "payment form settings\" の下では、ポストバックのCGI URLがPOSTに設定されている上記のアドレスと \"Return "
1462
+ "method\" に設定されていることを確認してください。"
1463
+
1464
+ #: ../addons/buy-creds/gateways/netbilling.php:298
1465
+ msgid "Incorrect Credit Card number"
1466
+ msgstr "誤ったクレジットカード番号"
1467
+
1468
+ #: ../addons/buy-creds/gateways/netbilling.php:304
1469
+ msgid "The credit card entered is past its expiration date."
1470
+ msgstr "入力されたクレジットカードは有効期限を過ぎている。"
1471
+
1472
+ #: ../addons/buy-creds/gateways/netbilling.php:307
1473
+ msgid "The CVV2 number entered is not valid."
1474
+ msgstr "入力されたCVV2番号が有効ではありません。"
1475
+
1476
+ #: ../addons/buy-creds/gateways/netbilling.php:314
1477
+ msgid "The bank routing number entered is not valid."
1478
+ msgstr "入力された銀行コード番号が有効ではありません。"
1479
+
1480
+ #: ../addons/buy-creds/gateways/netbilling.php:318
1481
+ msgid "The bank account number entered is not valid."
1482
+ msgstr "入力された銀行口座番号が有効ではありません。"
1483
+
1484
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1485
+ #: creds/gateways/skrill.php:171
1486
+ msgid "Success"
1487
+ msgstr "成功"
1488
+
1489
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1490
+ #: creds/gateways/skrill.php:172
1491
+ msgid "Thank you for your purchase"
1492
+ msgstr "お支払いいただきありがとうございます"
1493
+
1494
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1495
+ #, php-format
1496
+ msgctxt "Return label. %s = Website name"
1497
+ msgid "Return to %s"
1498
+ msgstr ""
1499
+
1500
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
1501
+ msgid "Account Email"
1502
+ msgstr "アカウントメール"
1503
+
1504
+ #: ../addons/buy-creds/gateways/skrill.php:228
1505
+ msgid "Return to "
1506
+ msgstr "戻る"
1507
+
1508
+ #: ../addons/buy-creds/gateways/skrill.php:264
1509
+ msgid "Product:"
1510
+ msgstr "商品:"
1511
+
1512
+ #: ../addons/buy-creds/gateways/skrill.php:273
1513
+ msgid "Gift to:"
1514
+ msgstr "ギフト:"
1515
+
1516
+ #: ../addons/buy-creds/gateways/skrill.php:274
1517
+ msgid "(author)"
1518
+ msgstr "(著者)"
1519
+
1520
+ #: ../addons/buy-creds/gateways/skrill.php:307
1521
+ msgid "Merchant Account Email"
1522
+ msgstr "加盟店アカウントのメールアドレス"
1523
+
1524
+ #: ../addons/buy-creds/gateways/skrill.php:313
1525
+ msgid "Secret Word"
1526
+ msgstr "秘密の言葉"
1527
+
1528
+ #: ../addons/buy-creds/gateways/skrill.php:330
1529
+ msgid "Confirmation Email"
1530
+ msgstr "確認メール"
1531
+
1532
+ #: ../addons/buy-creds/gateways/skrill.php:333
1533
+ msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1534
+ msgstr "成功するたびに購入のための私に確認のメールを送信するためにSkrill確認して下さい。"
1535
+
1536
+ #: ../addons/buy-creds/gateways/skrill.php:336
1537
+ msgid "Checkout Page"
1538
+ msgstr "支払いページ"
1539
+
1540
+ #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1541
+ #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1542
+ #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1543
+ #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1544
+ #: php:592 ../modules/mycred-module-hooks.php:3073
1545
+ msgid "Title"
1546
+ msgstr "タイトル"
1547
+
1548
+ #: ../addons/buy-creds/gateways/skrill.php:341
1549
+ msgid "If left empty, your account email is used as title on the Skill Payment Page."
1550
+ msgstr "空のままにすると、アカウントのメールアドレスがSkill支払いページ上のタイトルとして使用されます。"
1551
+
1552
+ #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1553
+ #: creds/gateways/zombaio.php:283
1554
+ msgid "Logo URL"
1555
+ msgstr "ロゴURL"
1556
+
1557
+ #: ../addons/buy-creds/gateways/skrill.php:346
1558
+ msgid ""
1559
+ "The URL to the image you want to use on the top of the gateway. For best "
1560
+ "integration results we recommend you use logos with dimensions up to 200px "
1561
+ "in width and 50px in height."
1562
+ msgstr ""
1563
+ "画像のURLは、ゲートウェイ上に使用したい。最高の表示をするために我々はあなたが、横幅は最大200pxと高さは50pxでサイズのロゴを使用することをお勧め"
1564
+ "します。"
1565
+
1566
+ #: ../addons/buy-creds/gateways/skrill.php:349
1567
+ msgid "Confirmation Note"
1568
+ msgstr "確認書"
1569
+
1570
+ #: ../addons/buy-creds/gateways/skrill.php:351
1571
+ msgid ""
1572
+ "Optional text to show user once a transaction has been successfully "
1573
+ "completed. This text is shown by Skrill."
1574
+ msgstr "トランザクションが正常に完了した後、任意のテキストは、ユーザーが表示されます。このテキストは、Skrillで示されている。"
1575
+
1576
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1577
+ #, php-format
1578
+ msgid "Duplicate transaction. Received: %s"
1579
+ msgstr "重複トランザクション。受取: %s"
1580
+
1581
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1582
+ #, php-format
1583
+ msgid "Live transaction while debug mode is enabled! Received: %s"
1584
+ msgstr "デバッグモードが有効になっている間にライブトランザクション!受取: %s"
1585
+
1586
+ #: ../addons/buy-creds/gateways/zombaio.php:265
1587
+ msgid "Site ID"
1588
+ msgstr "サイトID"
1589
+
1590
+ #: ../addons/buy-creds/gateways/zombaio.php:271
1591
+ msgid "GW Password"
1592
+ msgstr "GW Password"
1593
+
1594
+ #: ../addons/buy-creds/gateways/zombaio.php:277
1595
+ msgid "Pricing ID"
1596
+ msgstr "価格ID"
1597
+
1598
+ #: ../addons/buy-creds/gateways/zombaio.php:289
1599
+ msgid "IP Verification"
1600
+ msgstr "IP確認"
1601
+
1602
+ #: ../addons/buy-creds/gateways/zombaio.php:292
1603
+ msgid "Do not verify that callbacks are coming from Zombaio."
1604
+ msgstr "コールバックがZombaioから来ていることを確認していません。"
1605
+
1606
+ #: ../addons/buy-creds/gateways/zombaio.php:295
1607
+ msgid "Language"
1608
+ msgstr "言語"
1609
+
1610
+ #: ../addons/buy-creds/gateways/zombaio.php:302
1611
+ msgid "Postback URL (ZScript)"
1612
+ msgstr "ポストバックURL (ZScript)"
1613
+
1614
+ #: ../addons/buy-creds/gateways/zombaio.php:306
1615
+ msgid ""
1616
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
1617
+ "address and click validate."
1618
+ msgstr "このゲートウェイが機能するためには、ZOAにログインし上記のアドレスにPostbackurlを設定し確認をクリックします。"
1619
+
1620
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1621
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:500 ..
1622
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1623
+ msgid "Coupons"
1624
+ msgstr "クーポン"
1625
+
1626
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1627
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1628
+ msgid "Coupon"
1629
+ msgstr "クーポン"
1630
+
1631
+ #: ../addons/coupons/myCRED-addon-coupons.php:88
1632
+ msgid "Create New"
1633
+ msgstr "新規作成"
1634
+
1635
+ #: ../addons/coupons/myCRED-addon-coupons.php:89
1636
+ msgid "Create New Coupon"
1637
+ msgstr "クーポン新規作成"
1638
+
1639
+ #: ../addons/coupons/myCRED-addon-coupons.php:90
1640
+ msgid "Edit Coupon"
1641
+ msgstr "クーポン編集"
1642
+
1643
+ #: ../addons/coupons/myCRED-addon-coupons.php:91
1644
+ msgid "New Coupon"
1645
+ msgstr "新しいクーポン"
1646
+
1647
+ #: ../addons/coupons/myCRED-addon-coupons.php:94
1648
+ msgid "Search coupons"
1649
+ msgstr "クーポン検索"
1650
+
1651
+ #: ../addons/coupons/myCRED-addon-coupons.php:95
1652
+ msgid "No coupons found"
1653
+ msgstr "クーポンがみつかりません"
1654
+
1655
+ #: ../addons/coupons/myCRED-addon-coupons.php:96
1656
+ msgid "No coupons found in Trash"
1657
+ msgstr "ゴミ箱にクーポンがみつかりません"
1658
+
1659
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1660
+ #: addon-email-notices.php:165 ../addons/email-notices/myCRED-addon-email-notices.
1661
+ #: php:171 ../addons/email-notices/myCRED-addon-email-notices.php:177 ..
1662
+ #: addons/email-notices/myCRED-addon-email-notices.php:283
1663
+ msgid "Email Notices"
1664
+ msgstr "メールの通知"
1665
+
1666
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1667
+ #: coupons.php:120 ../addons/coupons/myCRED-addon-coupons.php:121 ..
1668
+ #: addons/coupons/myCRED-addon-coupons.php:122
1669
+ msgid "Coupon updated."
1670
+ msgstr "クーポン更新"
1671
+
1672
+ #: ../addons/coupons/myCRED-addon-coupons.php:124
1673
+ msgid "Coupon published."
1674
+ msgstr "クーポン購入"
1675
+
1676
+ #: ../addons/coupons/myCRED-addon-coupons.php:125
1677
+ msgid "Coupon saved."
1678
+ msgstr "クーポン保存"
1679
+
1680
+ #: ../addons/coupons/myCRED-addon-coupons.php:128
1681
+ msgid "Draft Coupon saved."
1682
+ msgstr "ドラフトクーポンを保存"
1683
+
1684
+ #: ../addons/coupons/myCRED-addon-coupons.php:142
1685
+ msgid "Unique Coupon Code"
1686
+ msgstr "ユニークなクーポンコード"
1687
+
1688
+ #: ../addons/coupons/myCRED-addon-coupons.php:158
1689
+ msgid "Coupon Code"
1690
+ msgstr "クーポンコード"
1691
+
1692
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/coupons/myCRED-addon-
1693
+ #: coupons.php:347
1694
+ msgid "Value"
1695
+ msgstr "値"
1696
+
1697
+ #: ../addons/coupons/myCRED-addon-coupons.php:160
1698
+ msgid "Used"
1699
+ msgstr "使用済"
1700
+
1701
+ #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1702
+ #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1703
+ #: module-hooks.php:2032
1704
+ msgid "Limits"
1705
+ msgstr "限界"
1706
+
1707
+ #: ../addons/coupons/myCRED-addon-coupons.php:162
1708
+ msgid "Expires"
1709
+ msgstr "有効期限"
1710
+
1711
+ #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1712
+ #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1713
+ #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1714
+ #: addons/gateway/carts/mycred-marketpress.php:389 ..
1715
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1716
+ #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1717
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1718
+ #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1719
+ #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1720
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1721
+ #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1722
+ #: includes/importers/mycred-cubepoints.php:365
1723
+ msgid "Point Type"
1724
+ msgstr "ポイントの種類"
1725
+
1726
+ #: ../addons/coupons/myCRED-addon-coupons.php:193 ../addons/coupons/myCRED-addon-
1727
+ #: coupons.php:461
1728
+ msgid "not yet used"
1729
+ msgstr "まだ使用されていない"
1730
+
1731
+ #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1732
+ #: 416 ../modules/mycred-module-hooks.php:2507
1733
+ msgid "Total"
1734
+ msgstr "合計"
1735
+
1736
+ #: ../addons/coupons/myCRED-addon-coupons.php:211
1737
+ msgid "Per User"
1738
+ msgstr "ユーザー数"
1739
+
1740
+ #: ../addons/coupons/myCRED-addon-coupons.php:219
1741
+ msgid "Never"
1742
+ msgstr "永遠"
1743
+
1744
+ #: ../addons/coupons/myCRED-addon-coupons.php:223
1745
+ msgid "Expired"
1746
+ msgstr "期限切れ"
1747
+
1748
+ #: ../addons/coupons/myCRED-addon-coupons.php:226
1749
+ #, php-format
1750
+ msgid "In %s time"
1751
+ msgstr "%s の時間"
1752
+
1753
+ #: ../addons/coupons/myCRED-addon-coupons.php:279
1754
+ msgid "Coupon Setup"
1755
+ msgstr "クーポンのセットアップ"
1756
+
1757
+ #: ../addons/coupons/myCRED-addon-coupons.php:288
1758
+ msgid "Coupon Limits"
1759
+ msgstr "限定クーポン"
1760
+
1761
+ #: ../addons/coupons/myCRED-addon-coupons.php:297
1762
+ msgid "Coupon Requirements"
1763
+ msgstr "クーポンの要件"
1764
+
1765
+ #: ../addons/coupons/myCRED-addon-coupons.php:307
1766
+ msgid "Usage"
1767
+ msgstr "使用法"
1768
+
1769
+ #: ../addons/coupons/myCRED-addon-coupons.php:350
1770
+ msgid "The amount of %plural% this coupon is worth."
1771
+ msgstr "%plural% の金額はクーポンの価値です。"
1772
+
1773
+ #: ../addons/coupons/myCRED-addon-coupons.php:359
1774
+ msgid "Select the point type that this coupon is applied."
1775
+ msgstr "このクーポンが適用されるポイントの種類を選択します。"
1776
+
1777
+ #: ../addons/coupons/myCRED-addon-coupons.php:369
1778
+ msgid "Expire"
1779
+ msgstr "有効期限が切れる"
1780
+
1781
+ #: ../addons/coupons/myCRED-addon-coupons.php:372
1782
+ msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1783
+ msgstr "オプションの日付でこのクーポンの有効期限が切れる。期限切れのクーポンはゴミ箱に移動されます。"
1784
+
1785
+ #: ../addons/coupons/myCRED-addon-coupons.php:401
1786
+ msgid "Global Maximum"
1787
+ msgstr "全体の最大回数"
1788
+
1789
+ #: ../addons/coupons/myCRED-addon-coupons.php:404
1790
+ msgid ""
1791
+ "The maximum number of times this coupon can be used. Note that the coupon "
1792
+ "will be automatically trashed once this maximum is reached!"
1793
+ msgstr "このクーポンを使用することができる最大回数。この最大回数に達するとクーポンが自動的にゴミ箱に移動されることに注意してください!"
1794
+
1795
+ #: ../addons/coupons/myCRED-addon-coupons.php:408
1796
+ msgid "User Maximum"
1797
+ msgstr "ユーザーの最大回数"
1798
+
1799
+ #: ../addons/coupons/myCRED-addon-coupons.php:411
1800
+ msgid "The maximum number of times this coupon can be used by a user."
1801
+ msgstr "このクーポンはユーザーが使用できる最大回数。"
1802
+
1803
+ #: ../addons/coupons/myCRED-addon-coupons.php:440
1804
+ msgid ""
1805
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1806
+ "zero to disable."
1807
+ msgstr "オプションの最低残高でユーザーがこのクーポンを使用するために持っている必要があります。無効にするにはゼロを使用してください。"
1808
+
1809
+ #: ../addons/coupons/myCRED-addon-coupons.php:443
1810
+ msgid "Maximum Balance"
1811
+ msgstr "最大残高"
1812
+
1813
+ #: ../addons/coupons/myCRED-addon-coupons.php:445
1814
+ msgid ""
1815
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1816
+ "zero to disable."
1817
+ msgstr "オプションの最大残高をこのクーポンを使用するためにユーザーが持っている必要があります。無効にするにはゼロを使用します。"
1818
+
1819
+ #: ../addons/coupons/myCRED-addon-coupons.php:506
1820
+ #, php-format
1821
+ msgid ""
1822
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1823
+ "code."
1824
+ msgstr "成功したクーポン特典交換のためのエントリをログに記録します。クーポンコードを表示するには %coupon% を使用してください。"
1825
+
1826
+ #: ../addons/coupons/myCRED-addon-coupons.php:509
1827
+ msgid "Invalid Coupon Message"
1828
+ msgstr "無効なクーポンメッセージ"
1829
+
1830
+ #: ../addons/coupons/myCRED-addon-coupons.php:513
1831
+ msgid "Message to show when users try to use a coupon that does not exists."
1832
+ msgstr "ユーザーが存在しないクーポンを使用しようとするとメッセージが表示されます。"
1833
+
1834
+ #: ../addons/coupons/myCRED-addon-coupons.php:516
1835
+ msgid "Expired Coupon Message"
1836
+ msgstr "期限切れのクーポンのメッセージ"
1837
+
1838
+ #: ../addons/coupons/myCRED-addon-coupons.php:520
1839
+ msgid "Message to show when users try to use that has expired."
1840
+ msgstr "ユーザーはその期限が切れてい使用しようとするとメッセージが表示されます。"
1841
+
1842
+ #: ../addons/coupons/myCRED-addon-coupons.php:523
1843
+ msgid "User Limit Message"
1844
+ msgstr "ユーザー制限メッセージ"
1845
+
1846
+ #: ../addons/coupons/myCRED-addon-coupons.php:527
1847
+ msgid "Message to show when the user limit has been reached for the coupon."
1848
+ msgstr "ユーザー制限がクーポンで制限に達したときにメッセージが表示されます。"
1849
+
1850
+ #: ../addons/coupons/myCRED-addon-coupons.php:530
1851
+ msgid "Minimum Balance Message"
1852
+ msgstr "最低残高メッセージ"
1853
+
1854
+ #: ../addons/coupons/myCRED-addon-coupons.php:534
1855
+ msgid ""
1856
+ "Message to show when a user does not meet the minimum balance requirement. "
1857
+ "(if used)"
1858
+ msgstr "ユーザーが最低残高の要件を満たしていないとメッセージが表示されます。 (使用する場合)"
1859
+
1860
+ #: ../addons/coupons/myCRED-addon-coupons.php:537
1861
+ msgid "Maximum Balance Message"
1862
+ msgstr "最大残高メッセージ"
1863
+
1864
+ #: ../addons/coupons/myCRED-addon-coupons.php:541
1865
+ msgid ""
1866
+ "Message to show when a user does not meet the maximum balance requirement. "
1867
+ "(if used)"
1868
+ msgstr "ユーザーが最大残高の要件を満たしていないとメッセージが表示されます。 (使用する場合)"
1869
+
1870
+ #: ../addons/coupons/myCRED-addon-coupons.php:544
1871
+ msgid "Success Message"
1872
+ msgstr "成功メッセージ"
1873
+
1874
+ #: ../addons/coupons/myCRED-addon-coupons.php:548
1875
+ msgid "Message to show when a coupon was successfully deposited to a users account."
1876
+ msgstr "クーポンが正常にユーザーのアカウントに入金されたときにメッセージが表示されます。"
1877
+
1878
+ #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1879
+ msgid "Apply Coupon"
1880
+ msgstr "クーポンの適用"
1881
+
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1883
+ #: notices/myCRED-addon-email-notices.php:1270
1884
+ msgid "Email Notice"
1885
+ msgstr "メールのお知らせ"
1886
+
1887
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1888
+ msgid "Add New Notice"
1889
+ msgstr "新しいお知らせの追加"
1890
+
1891
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1892
+ msgid "Edit Notice"
1893
+ msgstr "お知らせの編集"
1894
+
1895
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1896
+ msgid "New Notice"
1897
+ msgstr "新しいお知らせ"
1898
+
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1900
+ msgid "View Notice"
1901
+ msgstr "お知らせ表示"
1902
+
1903
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1904
+ msgid "Search Email Notices"
1905
+ msgstr "メールのお知らせ検索"
1906
+
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1908
+ msgid "No email notices found"
1909
+ msgstr "メールのお知らせがみつかりません"
1910
+
1911
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1912
+ msgid "No email notices found in Trash"
1913
+ msgstr "ゴミ箱にメールのお知らせがみつかりません"
1914
+
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200 ..
1916
+ #: addons/gateway/carts/mycred-wpecommerce.php:341 ../includes/mycred-functions.
1917
+ #: php:587
1918
+ msgid "General"
1919
+ msgstr "一般"
1920
+
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1922
+ msgid "users balance changes"
1923
+ msgstr "ユーザー残高変更"
1924
+
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1926
+ msgid "user gains %_plural%"
1927
+ msgstr "ユーザーの利益 %_plural%"
1928
+
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1930
+ msgid "user lose %_plural%"
1931
+ msgstr "ユーザーロス %_plural%"
1932
+
1933
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1934
+ msgid "users balance reaches zero"
1935
+ msgstr "ユーザーの残高はゼロに達する"
1936
+
1937
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:205
1938
+ msgid "users balance goes minus"
1939
+ msgstr "ユーザーの残高はマイナスになる"
1940
+
1941
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1942
+ msgid "Badge Add-on"
1943
+ msgstr "残高アドオン"
1944
+
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1946
+ msgid "user gains a badge"
1947
+ msgstr "ユーザーはバッジを獲得"
1948
+
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1950
+ msgid "Sell Content Add-on"
1951
+ msgstr "コンテンツはアドオンプレイス"
1952
+
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1954
+ msgid "user buys content"
1955
+ msgstr "ユーザーはコンテンツを購入する"
1956
+
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1958
+ msgid "authors content gets sold"
1959
+ msgstr "著者はコンテンツが販売されます"
1960
+
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:228
1962
+ msgid "buyCREDs Add-on"
1963
+ msgstr "ポイント管理アドオン"
1964
+
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
1966
+ msgid "user buys %_plural%"
1967
+ msgstr "ユーザー購入%_plural%"
1968
+
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1970
+ msgid "Transfer Add-on"
1971
+ msgstr "トランスファーアドオン"
1972
+
1973
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:237
1974
+ msgid "user sends %_plural%"
1975
+ msgstr "ユーザー送信 %_plural%"
1976
+
1977
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
1978
+ msgid "user receives %_plural%"
1979
+ msgstr "ユーザー評価 %_plural%"
1980
+
1981
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:245
1982
+ msgid "Ranks Add-on"
1983
+ msgstr "ランクアドオン"
1984
+
1985
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
1986
+ msgid "user is demoted"
1987
+ msgstr "ユーザーが降格"
1988
+
1989
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
1990
+ msgid "user is promoted"
1991
+ msgstr "ユーザーが昇格"
1992
+
1993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:285
1994
+ msgid ""
1995
+ "Settings that apply to all email notices and can not be overridden for "
1996
+ "individual emails."
1997
+ msgstr "設定はすべてのメール通知に適用され個々のメールに対しては上書きできません。"
1998
+
1999
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
2000
+ msgid "Email Format"
2001
+ msgstr "メールフォーマット"
2002
+
2003
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
2004
+ msgid "Plain text emails only."
2005
+ msgstr "プレーンテキストメールのみ。"
2006
+
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
2008
+ msgid "HTML or Plain text emails."
2009
+ msgstr "HTMLまたはプレーンテキストのメール。"
2010
+
2011
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297
2012
+ msgid "Filters"
2013
+ msgstr "フィルター"
2014
+
2015
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
2016
+ msgid ""
2017
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
2018
+ "an email is sent."
2019
+ msgstr "メールが送信される前にワードプレスとサードパーティのプラグインはメールの件名をフィルタリングすることができます。"
2020
+
2021
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2022
+ msgid ""
2023
+ "Allow WordPress and Third Party Plugins to filter the email content before "
2024
+ "an email is sent."
2025
+ msgstr "メールが送信される前にワードプレスとサードパーティのプラグインは、メールの内容をフィルタリングすることができます。"
2026
+
2027
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
2028
+ #: notices/myCRED-addon-email-notices.php:316
2029
+ msgid "Email Schedule"
2030
+ msgstr "メールのスケジュール"
2031
+
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2033
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
2034
+ msgstr "WordPressのcronは無効になっています。メールはすぐに送信されます。"
2035
+
2036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2037
+ msgid "Send emails immediately"
2038
+ msgstr "すぐにメールを送る"
2039
+
2040
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2041
+ msgid "Send emails once an hour"
2042
+ msgstr "一時間に一回メールを送信"
2043
+
2044
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2045
+ msgid "Send emails once a day"
2046
+ msgstr "一日一回メールを送る"
2047
+
2048
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2049
+ msgid "Subscriptions"
2050
+ msgstr "定期購読"
2051
+
2052
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2053
+ #, php-format
2054
+ msgid ""
2055
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2056
+ "updates."
2057
+ msgstr "ユーザーがメールの更新を購読 / 未購読にすることができるように %s のショートコードを使用してください。"
2058
+
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2060
+ msgid "SMTP Override"
2061
+ msgstr "SMTP上書き"
2062
+
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2064
+ msgid ""
2065
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2066
+ "use a SMTP plugin for emails."
2067
+ msgstr "SMTP デバッグ。あなたがwp_mail() を使用して問題が発生した場合に有効にするかメールのSMTPプラグインを使用している場合。"
2068
+
2069
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:345
2070
+ msgid ""
2071
+ "Default email settings. These settings can be individually overridden when "
2072
+ "editing emails."
2073
+ msgstr "デフォルトのメール設定。メールを編集するときにこれらの設定は個別に無効にすることができます。"
2074
+
2075
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2076
+ #: notices/myCRED-addon-email-notices.php:900
2077
+ msgid "Email Settings"
2078
+ msgstr "メール設定"
2079
+
2080
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2081
+ #: notices/myCRED-addon-email-notices.php:1053
2082
+ msgid "Senders Name:"
2083
+ msgstr "送信者名:"
2084
+
2085
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2086
+ #: notices/myCRED-addon-email-notices.php:1055
2087
+ msgid "Senders Email:"
2088
+ msgstr "送信者メールアドレス:"
2089
+
2090
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2091
+ msgid "Reply-To:"
2092
+ msgstr "返信先:"
2093
+
2094
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2095
+ msgid "Default Email Content"
2096
+ msgstr "デフォルトのメールコンテンツ"
2097
+
2098
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2099
+ msgid "Default email content."
2100
+ msgstr "デフォルトのメールコンテンツ"
2101
+
2102
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2103
+ msgid "Default Email Styling"
2104
+ msgstr "デフォルトのメールスタイリング"
2105
+
2106
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2107
+ msgid "Ignored if HTML is not allowed in emails."
2108
+ msgstr "HTMLがメールに許可されていない場合は無視されます。"
2109
+
2110
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2111
+ #, php-format
2112
+ msgctxt "Badge Title - Level 1,2,3.."
2113
+ msgid "%s - Level %d"
2114
+ msgstr "%s - レベル %d"
2115
+
2116
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2117
+ #: notices/myCRED-addon-email-notices.php:949
2118
+ msgid "Email Subject"
2119
+ msgstr "メールの件名"
2120
+
2121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2122
+ msgid "Not Active"
2123
+ msgstr "アクティブでない"
2124
+
2125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2126
+ #, php-format
2127
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
2128
+ msgstr "スケジュールされた:<br /><strong>%1$s</strong>"
2129
+
2130
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2131
+ msgid "Active"
2132
+ msgstr "アクティブ"
2133
+
2134
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2135
+ #, php-format
2136
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
2137
+ msgstr "アクティブ - 最後の実行:<br /><strong>%1$s</strong>"
2138
+
2139
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2140
+ msgid "Email is sent when"
2141
+ msgstr "メールはいつ送信される"
2142
+
2143
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2144
+ msgid "Missing instance for this notice!"
2145
+ msgstr "この通知のためのインスタンスが見つかりません!"
2146
+
2147
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2148
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2149
+ #: addon-email-notices.php:870
2150
+ msgid "Sent To"
2151
+ msgstr "送信された"
2152
+
2153
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2154
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2155
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2156
+ msgid "User"
2157
+ msgstr "ユーザー"
2158
+
2159
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2160
+ #: notices/myCRED-addon-email-notices.php:1020
2161
+ msgid "Administrator"
2162
+ msgstr "管理者"
2163
+
2164
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2165
+ msgid "Both Administrator and User"
2166
+ msgstr "管理者とユーザー両方"
2167
+
2168
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2169
+ #: notices/myCRED-addon-email-notices.php:1037
2170
+ msgid "All types"
2171
+ msgstr "すべてのタイプ"
2172
+
2173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2174
+ msgid "Available Template Tags"
2175
+ msgstr "利用可能なテンプレートタグ"
2176
+
2177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2178
+ msgid "Email Header"
2179
+ msgstr "メールヘッダー"
2180
+
2181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2182
+ msgid "Send this email notice when..."
2183
+ msgstr "いつメール通知を送信・・・"
2184
+
2185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2186
+ msgid "Recipient:"
2187
+ msgstr "受信者:"
2188
+
2189
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2190
+ msgid "Both"
2191
+ msgstr "両方"
2192
+
2193
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2194
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2195
+ #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2196
+ #: module-settings.php:720
2197
+ msgid "Label"
2198
+ msgstr "ラベル"
2199
+
2200
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2201
+ msgid "Reply-To Email:"
2202
+ msgstr "返信先メールアドレス"
2203
+
2204
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2205
+ msgid "Save"
2206
+ msgstr "保存"
2207
+
2208
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2209
+ msgid "CSS Styling"
2210
+ msgstr "CSSスタイリング"
2211
+
2212
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2213
+ msgid "Site Related"
2214
+ msgstr "サイト関連"
2215
+
2216
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2217
+ msgid "Your websites title"
2218
+ msgstr "あなたのウェブサイトの名称"
2219
+
2220
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2221
+ msgid "Your websites address"
2222
+ msgstr "あなたのウェブサイトのURL"
2223
+
2224
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2225
+ msgid "Your websites tagline (description)"
2226
+ msgstr "ウェブサイトのタグライン(説明)"
2227
+
2228
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2229
+ msgid "Your websites admin email"
2230
+ msgstr "あなたのウェブサイトの管理者メールアドレス"
2231
+
2232
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2233
+ msgid "Total number of blog members"
2234
+ msgstr "サイトのメンバーの総数"
2235
+
2236
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2237
+ msgid "The users new balance"
2238
+ msgstr "ユーザーが新しい残高"
2239
+
2240
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2241
+ msgid "The users old balance"
2242
+ msgstr "ユーザーの古い残高"
2243
+
2244
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2245
+ msgid "The amount of points gained or lost in this instance"
2246
+ msgstr "このインスタンスで得られたまたは失われたポイントの量"
2247
+
2248
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2249
+ msgid "The log entry"
2250
+ msgstr "履歴"
2251
+
2252
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2253
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2254
+ #: addon-email-notices.php:1187
2255
+ msgid "Email Notice Updated."
2256
+ msgstr "メール通知を更新しました。"
2257
+
2258
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2259
+ msgid "Email Notice Activated"
2260
+ msgstr "メール通知を有効にする。"
2261
+
2262
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2263
+ msgid "Email Notice Saved"
2264
+ msgstr "メールで通知保存"
2265
+
2266
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2267
+ msgid ""
2268
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2269
+ "are not yet ready to use this email notice!"
2270
+ msgstr ""
2271
+ "通知は \"published\" されるとそれがアクティブになります!あなたはまだこのメール通知を使用する準備ができていない場合 \"Save Draft\" "
2272
+ "を選択します!"
2273
+
2274
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2275
+ #, php-format
2276
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2277
+ msgstr "この通知はアクティブになります:<br /><strong>%1$s</strong>"
2278
+
2279
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2280
+ msgid "This email notice is active."
2281
+ msgstr "このメール通知が有効になっています。"
2282
+
2283
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2284
+ msgid "Settings saved."
2285
+ msgstr "設定保存"
2286
+
2287
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2288
+ msgid "Unsubscribe"
2289
+ msgstr "登録解除"
2290
+
2291
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2292
+ msgid "There are no email notifications yet."
2293
+ msgstr "メール通知はまだありません。"
2294
+
2295
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2296
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2297
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2298
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2299
+ msgid "Current Balance"
2300
+ msgstr "現在の残高"
2301
+
2302
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2303
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2304
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2305
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2306
+ #: php:416
2307
+ msgid "Total Cost"
2308
+ msgstr "総消費"
2309
+
2310
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2311
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2312
+ #: eventespresso3.php:309
2313
+ msgid "Balance After Purchase"
2314
+ msgstr "購入後の残高"
2315
+
2316
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2317
+ #: addons/gateway/carts/mycred-marketpress.php:231
2318
+ msgid "Go Back"
2319
+ msgstr "戻る"
2320
+
2321
+ #: ../addons/gateway/carts/mycred-marketpress.php:185
2322
+ msgid "will be deducted from your account."
2323
+ msgstr "あなたのアカウントから差し引かれます。"
2324
+
2325
+ #: ../addons/gateway/carts/mycred-marketpress.php:221
2326
+ #, php-format
2327
+ msgid ""
2328
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2329
+ "<a href=\"%s\">select a different payment method</a>."
2330
+ msgstr ""
2331
+ "あなたのアカウントを除いたように申し訳ありませんがあなたはこのゲートウェイを使用することはできません。別の<a "
2332
+ "href=\"%s\">支払い方法を選択</a>してください。"
2333
+
2334
+ #: ../addons/gateway/carts/mycred-marketpress.php:247
2335
+ msgid "Paid"
2336
+ msgstr "有料"
2337
+
2338
+ #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2339
+ #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2340
+ #: 50 ../includes/mycred-network.php:51
2341
+ msgid "myCRED"
2342
+ msgstr "myCRED"
2343
+
2344
+ #: ../addons/gateway/carts/mycred-marketpress.php:356
2345
+ msgid "%_singular% Balance"
2346
+ msgstr "%_singular% 残高"
2347
+
2348
+ #: ../addons/gateway/carts/mycred-marketpress.php:359 ..
2349
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
2350
+ #, php-format
2351
+ msgid "Payment for Order: #%order_id%"
2352
+ msgstr "注文の支払い: #%order_id%"
2353
+
2354
+ #: ../addons/gateway/carts/mycred-marketpress.php:362
2355
+ msgid "Product Sale: %post_title%"
2356
+ msgstr "商品販売: %post_title%"
2357
+
2358
+ #: ../addons/gateway/carts/mycred-marketpress.php:363
2359
+ msgid "Pay using your account balance."
2360
+ msgstr "あなたの口座残高を使用して支払う。"
2361
+
2362
+ #: ../addons/gateway/carts/mycred-marketpress.php:364
2363
+ #, php-format
2364
+ msgid ""
2365
+ "TOTAL amount has been deducted from your account. Your current balance is: "
2366
+ "%balance_f%"
2367
+ msgstr "合計金額はあなたの口座から引き落とされています。あなたの現在の残高である: %balance_f%"
2368
+
2369
+ #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2370
+ #: addons/gateway/carts/mycred-woocommerce.php:263
2371
+ msgid "Insufficient funds."
2372
+ msgstr "資金不足"
2373
+
2374
+ #: ../addons/gateway/carts/mycred-marketpress.php:366
2375
+ msgid ""
2376
+ "You must be logged in to pay with %_plural%. Please <a "
2377
+ "href=\"%login_url_here%\">login</a>."
2378
+ msgstr ""
2379
+ "あなたは %_plural% でのお支払いにはログインする必要があります。<a "
2380
+ "href=\"%login_url_here%\">ログイン</a>をしてください."
2381
+
2382
+ #: ../addons/gateway/carts/mycred-marketpress.php:373
2383
+ #, php-format
2384
+ msgid ""
2385
+ "Let your users pay for items in their shopping cart using their %s Account. "
2386
+ "Note! This gateway requires your users to be logged in when making a "
2387
+ "purchase!"
2388
+ msgstr ""
2389
+ "ユーザーが %s "
2390
+ "のアカウントを使用してショッピングカート内のアイテムのために支払いましょう。注意!このゲートウェイはユーザーが購入の際に登録されている必要があります!"
2391
+
2392
+ #: ../addons/gateway/carts/mycred-marketpress.php:376
2393
+ msgid "Method Name"
2394
+ msgstr "メソッドの名前"
2395
+
2396
+ #: ../addons/gateway/carts/mycred-marketpress.php:378
2397
+ msgid ""
2398
+ "Enter a public name for this payment method that is displayed to users - No "
2399
+ "HTML"
2400
+ msgstr "ユーザーに表示されているこのお支払方法のためのパブリック名を入力します - No HTML"
2401
+
2402
+ #: ../addons/gateway/carts/mycred-marketpress.php:383
2403
+ msgid "Gateway Logo URL"
2404
+ msgstr "ゲートウェイロゴURL"
2405
+
2406
+ #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2407
+ #: addons/gateway/carts/mycred-woocommerce.php:136
2408
+ #, php-format
2409
+ msgid "How much is 1 %_singular% worth in %currency%?"
2410
+ msgstr "どの程度の1 %_singular% は %currency%で価値がある?"
2411
+
2412
+ #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2413
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2414
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2415
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2416
+ #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2417
+ #: php:578 ../includes/mycred-shortcodes.php:977
2418
+ msgid "Exchange Rate"
2419
+ msgstr "為替レート"
2420
+
2421
+ #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2422
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2423
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2424
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2425
+ #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2426
+ #: php:569
2427
+ msgid "Profit Sharing"
2428
+ msgstr "利益配分"
2429
+
2430
+ #: ../addons/gateway/carts/mycred-marketpress.php:421
2431
+ msgid "Percentage"
2432
+ msgstr "パーセンテージ"
2433
+
2434
+ #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2435
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2436
+ #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2437
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2438
+ #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2439
+ #: php:572
2440
+ msgid "Option to share sales with the product owner. Use zero to disable."
2441
+ msgstr "オプションでは、商品の所有者と販売を共有することができます。無効にするにはゼロを使用してください。"
2442
+
2443
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2444
+ #: addons/gateway/carts/mycred-wpecommerce.php:375 ../addons/gateway/event-
2445
+ #: booking/mycred-eventsmanager-pro.php:607 ../addons/gateway/event-
2446
+ #: booking/mycred-eventsmanager.php:626
2447
+ msgid "Messages"
2448
+ msgstr "メッセージ"
2449
+
2450
+ #: ../addons/gateway/carts/mycred-marketpress.php:438 ..
2451
+ #: addons/gateway/carts/mycred-wpecommerce.php:386 ../addons/gateway/event-
2452
+ #: booking/mycred-eventsmanager-pro.php:617 ../addons/gateway/event-
2453
+ #: booking/mycred-eventsmanager.php:636 ../plugins/mycred-hook-buddypress.php:247
2454
+ msgid "Insufficient Funds"
2455
+ msgstr "残高不足"
2456
+
2457
+ #: ../addons/gateway/carts/mycred-marketpress.php:440
2458
+ msgid "Message to show when the user can not use this gateway."
2459
+ msgstr "ユーザーがこのゲートウェイを使用できない場合にメッセージが表示されます。"
2460
+
2461
+ #: ../addons/gateway/carts/mycred-marketpress.php:446 ..
2462
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2463
+ #: booking/mycred-eventespresso3.php:490
2464
+ msgid "Visitors"
2465
+ msgstr "ビジター"
2466
+
2467
+ #: ../addons/gateway/carts/mycred-marketpress.php:448
2468
+ msgid "Message to show to buyers that are not logged in."
2469
+ msgstr "メッセージがログインしていないバイヤーに表示します。"
2470
+
2471
+ #: ../addons/gateway/carts/mycred-marketpress.php:454
2472
+ msgid "User Instructions"
2473
+ msgstr "ユーザーの指示"
2474
+
2475
+ #: ../addons/gateway/carts/mycred-marketpress.php:456
2476
+ msgid "Information to show users before payment."
2477
+ msgstr "情報は支払いの前にユーザーを表示します。"
2478
+
2479
+ #: ../addons/gateway/carts/mycred-marketpress.php:462
2480
+ msgid "Confirmation Information"
2481
+ msgstr "情報確認"
2482
+
2483
+ #: ../addons/gateway/carts/mycred-marketpress.php:464
2484
+ msgid "Information to display on the order confirmation page. - HTML allowed"
2485
+ msgstr "情報は注文確認ページに表示されます。 - HTMLは許可"
2486
+
2487
+ #: ../addons/gateway/carts/mycred-marketpress.php:470
2488
+ msgid "Order Confirmation Email"
2489
+ msgstr "注文確認メール"
2490
+
2491
+ #: ../addons/gateway/carts/mycred-marketpress.php:472
2492
+ #, php-format
2493
+ msgid ""
2494
+ "This is the email text to send to those who have made %s checkouts. It "
2495
+ "overrides the default order checkout email. These codes will be replaced "
2496
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2497
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2498
+ msgstr ""
2499
+ "これは %s "
2500
+ "の支払いを行った者に送信するメールのテキストです。これは、デフォルトの順序の支払いメールを上書きします。以下のコードは、注文の詳細に置き換えられます。: "
2501
+ "CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, "
2502
+ "TRACKINGURL. HTMLは許可されまていせん。"
2503
+
2504
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
2505
+ msgid "Let users pay using their myCRED balance."
2506
+ msgstr "ユーザーが自分のmyCRED残高を使用して支払うましょう。"
2507
+
2508
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
2509
+ msgid "Enable/Disable"
2510
+ msgstr "有効化/無効化"
2511
+
2512
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
2513
+ msgid "Enable myCRED Payment"
2514
+ msgstr "myCRED支払いを有効にする"
2515
+
2516
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
2517
+ msgid ""
2518
+ "Users who are not logged in or excluded from using myCRED will not have "
2519
+ "access to this gateway!"
2520
+ msgstr "myCREDを使用してからログインしてか、除外されていないユーザーは、このゲートウェイにアクセスすることはできません!"
2521
+
2522
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
2523
+ msgid "Title to show for this payment option."
2524
+ msgstr "タイトルはこの支払いオプションに表示します。"
2525
+
2526
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
2527
+ msgid "Pay with myCRED"
2528
+ msgstr "myCREDで支払う"
2529
+
2530
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
2531
+ msgid "Customer Message"
2532
+ msgstr "カスタマメッセージ"
2533
+
2534
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2535
+ #: addons/gateway/carts/mycred-woocommerce.php:182
2536
+ msgid "Refund Log Template"
2537
+ msgstr "ログテンプレートを払い戻す"
2538
+
2539
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
2540
+ msgid "Select the point type users can use to pay."
2541
+ msgstr "タイプのユーザーが支払うために使用できるポイントを選択します。"
2542
+
2543
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
2544
+ msgid "Show Total"
2545
+ msgstr "合計表示"
2546
+
2547
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
2548
+ msgid "Show the final price in %_plural% ."
2549
+ msgstr "%_plural% で最終価格を表示。"
2550
+
2551
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
2552
+ msgid "Show in Cart"
2553
+ msgstr "カートで表示"
2554
+
2555
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
2556
+ msgid "Show on Checkout Page"
2557
+ msgstr "支払いページに表示"
2558
+
2559
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
2560
+ msgid "Show in Cart and on Checkout Page"
2561
+ msgstr "カートおよび支払いページに表示"
2562
+
2563
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
2564
+ msgid "Order Total in %_plural%"
2565
+ msgstr "%_plural% で注文合計"
2566
+
2567
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
2568
+ msgid "Log entry template for profit sharing."
2569
+ msgstr "利益分配のための入力テンプレートをログに記録します。"
2570
+
2571
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
2572
+ msgid "Log entry template for refunds of profit shares."
2573
+ msgstr "利益株式の払い戻しのための入力テンプレートをログに記録します。"
2574
+
2575
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
2576
+ msgid "myCRED Payment"
2577
+ msgstr "myCRED支払い"
2578
+
2579
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
2580
+ #, php-format
2581
+ msgid ""
2582
+ "Allows users to pay using their myCRED %_singular% balance. Please note that "
2583
+ "users with insufficient funds and users who are not logged in will not see "
2584
+ "this payment gateway on the checkout page."
2585
+ msgstr ""
2586
+ "ユーザーが自分のmyCRED %_singular% "
2587
+ "の残高を使用して支払うことができます。資金不足でユーザーとログインしていないユーザーには表示されずこの支払いゲートウェイのチェックアウトページに注意してく"
2588
+ "ださい。"
2589
+
2590
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
2591
+ msgid "You must be logged in to pay with %_plural%"
2592
+ msgstr "%_plural% を支払うはログインが必要"
2593
+
2594
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
2595
+ msgid "You can not use this gateway. Please try a different payment option."
2596
+ msgstr "このゲートウェイを使用することができます。別の支払いオプションをお試しください。"
2597
+
2598
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
2599
+ #, php-format
2600
+ msgctxt "%s = Point amount formatted"
2601
+ msgid "Refunded %s"
2602
+ msgstr ""
2603
+
2604
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
2605
+ msgid "Your account has successfully been charged."
2606
+ msgstr "あなたのアカウントが正常に変更されています。"
2607
+
2608
+ #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2609
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2610
+ msgid "Your current balance"
2611
+ msgstr "あなたの現在の残高"
2612
+
2613
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2614
+ msgid "Store sale"
2615
+ msgstr "店舗販売"
2616
+
2617
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2618
+ msgid "You must be logged in to use this gateway"
2619
+ msgstr "あなたはこの支払い方法を使用するにはログインする必要があります"
2620
+
2621
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2622
+ msgid "Insufficient Funds."
2623
+ msgstr "資金不足"
2624
+
2625
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2626
+ msgid "Deduct the amount from your balance."
2627
+ msgstr "あなたの残高から金額を差し引く"
2628
+
2629
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2630
+ msgid "You can not use this gateway."
2631
+ msgstr "あなたはこの支払い方法を使用することはできません"
2632
+
2633
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:344
2634
+ msgid "Log Template for Payments"
2635
+ msgstr "支払い用のテンプレートをログ"
2636
+
2637
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:361
2638
+ #, php-format
2639
+ msgid "How much is 1 %s worth in %s"
2640
+ msgstr "%s 内の1の %s の価値はいくらですか"
2641
+
2642
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:378
2643
+ msgid "Instructions"
2644
+ msgstr "注意事項"
2645
+
2646
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2647
+ msgid ""
2648
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2649
+ "to hide."
2650
+ msgstr "このゲートウェイを選択する際にオプション命令はユーザーが表示されます。非表示にする場合には空のままにしておきます。"
2651
+
2652
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2653
+ msgid "Message to show visitors who are not logged in."
2654
+ msgstr "メッセージはログインしていない訪問者を表示します。"
2655
+
2656
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:387
2657
+ msgid ""
2658
+ "Message to show when users does not have enough %plural% to pay using this "
2659
+ "gateway."
2660
+ msgstr "ユーザーがこのゲートウェイを使用して支払うための十分な %plural% を持っていないとメッセージが表示されます。"
2661
+
2662
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2663
+ msgid "Payment for Event Registration"
2664
+ msgstr "イベント登録のための支払い"
2665
+
2666
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2667
+ #, php-format
2668
+ msgid "Activate %s"
2669
+ msgstr "%s のアクティブ化"
2670
+
2671
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2672
+ #, php-format
2673
+ msgid "Deactivate %s"
2674
+ msgstr "%s の非アクティブ化"
2675
+
2676
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2677
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ..
2678
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2679
+ #, php-format
2680
+ msgid "How many %s is 1 %s worth?"
2681
+ msgstr "1は %s の価値はいくら %s です?"
2682
+
2683
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2684
+ msgid "Gateways Settings Successfully Updated"
2685
+ msgstr "ゲートウェイ設定が正常に更新"
2686
+
2687
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2688
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576 ..
2689
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2690
+ msgid "Labels"
2691
+ msgstr "ラベル"
2692
+
2693
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2694
+ msgid "Gateway Title"
2695
+ msgstr "ゲートウェイタイトル"
2696
+
2697
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2698
+ msgid "Title to show on Payment page"
2699
+ msgstr "タイトルは支払いページに表示する"
2700
+
2701
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2702
+ msgid "Payment Type"
2703
+ msgstr "お支払い方法のタイプ"
2704
+
2705
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2706
+ msgid "Title to show on receipts and logs"
2707
+ msgstr "タイトルは領収書と履歴に表示する"
2708
+
2709
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2710
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2711
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2712
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2713
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2714
+ msgid "Button Label"
2715
+ msgstr "ボタンのラベル"
2716
+
2717
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2718
+ msgid "Pay Button"
2719
+ msgstr "支払いボタン"
2720
+
2721
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2722
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
2723
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2724
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2725
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2726
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2727
+ #: sell-content.php:683
2728
+ msgid "Price"
2729
+ msgstr "価格"
2730
+
2731
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
2732
+ msgid "Important!"
2733
+ msgstr "重要!"
2734
+
2735
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2736
+ msgid ""
2737
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
2738
+ "<code>mycred_no_sale</code>"
2739
+ msgstr "カスタムイベントメタを追加することでこのゲートウェイを使用して購入を無効にすることができます: <code>mycred_no_sale</code>"
2740
+
2741
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2742
+ msgid "Users must be logged in to use this gateway!"
2743
+ msgstr "ユーザーはこのゲートウェイを使用するには、ログインする必要があります!"
2744
+
2745
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2746
+ #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2747
+ msgid "Log"
2748
+ msgstr "履歴"
2749
+
2750
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2751
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2752
+ msgid "Log Entry"
2753
+ msgstr "ログ履歴"
2754
+
2755
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2756
+ #: content/myCRED-addon-sell-content.php:474
2757
+ msgid "Templates"
2758
+ msgstr "テンプレート"
2759
+
2760
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2761
+ msgid "Solvent users"
2762
+ msgstr "支払いユーザー"
2763
+
2764
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2765
+ msgid ""
2766
+ "Message to show users on the payment page before they are charged. Leave "
2767
+ "empty to hide."
2768
+ msgstr "課金される前にメッセージは支払いページでユーザーを表示します。非表示にする場合は空のままにしておきます。"
2769
+
2770
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2771
+ msgid "Insolvent users"
2772
+ msgstr "支払不能のユーザー"
2773
+
2774
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2775
+ msgid "Message to show users who do not have enough points to pay."
2776
+ msgstr "メッセージには支払うために十分なポイントを持っていないユーザーを表示します。"
2777
+
2778
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2779
+ msgid "Message to show visitors (users not logged in) on the payment page."
2780
+ msgstr "メッセージは支払いページでビジター(ユーザーがログインしていない)を表示されます。"
2781
+
2782
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2783
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2784
+ msgid "Payment for tickets to %link_with_title%"
2785
+ msgstr "%link_with_title%にチケットのお支払い"
2786
+
2787
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2788
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2789
+ msgid "Ticket refund for %link_with_title%"
2790
+ msgstr "%link_with_title% のためのチケットの払い戻し"
2791
+
2792
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2793
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2794
+ #, php-format
2795
+ msgid "Pay using your %_plural% balance"
2796
+ msgstr "あなたの %_plural% の残高を使用して支払う"
2797
+
2798
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2799
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2800
+ msgid "Pay"
2801
+ msgstr "支払い"
2802
+
2803
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2804
+ msgid "%plural% Cost"
2805
+ msgstr "代金 %plural%"
2806
+
2807
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2808
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2809
+ msgid "Thank you for your payment!"
2810
+ msgstr "お支払いいただきありがとうございます!"
2811
+
2812
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:45 ..
2813
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2814
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2815
+ msgstr "すみませんがあなたは %_plural% を使用してこれらのチケットのために支払うことができません。"
2816
+
2817
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:136 ..
2818
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2819
+ msgid "Ticket Type"
2820
+ msgstr "チケットタイプ"
2821
+
2822
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:145 ..
2823
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2824
+ msgid "Spaces"
2825
+ msgstr "スペース"
2826
+
2827
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
2828
+ msgid "Your Balance"
2829
+ msgstr "あなたの残高"
2830
+
2831
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
2832
+ msgid "You can not pay using this gateway."
2833
+ msgstr "あなたはこの支払い方法を使用して支払うことができません。"
2834
+
2835
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
2836
+ msgid "Reject"
2837
+ msgstr "拒否"
2838
+
2839
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2840
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2841
+ #: modules/mycred-module-settings.php:699
2842
+ msgid "Delete"
2843
+ msgstr "削除"
2844
+
2845
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
2846
+ msgid "Edit/View"
2847
+ msgstr "編集 / 表示"
2848
+
2849
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:518 ..
2850
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2851
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2852
+ msgstr "無効 - ユーザーは %plural% を使用したチケットのために支払うことができない。"
2853
+
2854
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:519 ..
2855
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2856
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
2857
+ msgstr "シングル - ユーザーは %plural% を使用したチケットのために支払うことができます。"
2858
+
2859
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:520 ..
2860
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2861
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2862
+ msgstr "マルチ- ユーザーは他のゲートウェイまたは %plural% を使用したチケットのために支払うことができます。"
2863
+
2864
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
2865
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557 ..
2866
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2867
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2868
+ msgid "Refunds"
2869
+ msgstr "払い戻し"
2870
+
2871
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2872
+ msgid ""
2873
+ "The percentage of the paid amount to refund if a user cancels their booking. "
2874
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2875
+ msgstr ""
2876
+ "ユーザーが自分の予約をキャンセルした場合支払った金額の割合は返金する。払い戻しない場合はゼロを使用してください。払い戻しはありません予約 "
2877
+ "\"Rejected\" に与えられていない!"
2878
+
2879
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:547 ..
2880
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2881
+ msgid "Log Templates"
2882
+ msgstr "ログテンプレート"
2883
+
2884
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:550 ..
2885
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2886
+ msgid "Purchases"
2887
+ msgstr "購入"
2888
+
2889
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:579 ..
2890
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2891
+ msgid "Payment Link Label"
2892
+ msgstr "支払リンクラベル"
2893
+
2894
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:582 ..
2895
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2896
+ msgid ""
2897
+ "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2898
+ "allowed."
2899
+ msgstr "支払いリンク表示 / \"My Bookings\"の支払いフォームを非表示にします。HTMLは許可されていません。"
2900
+
2901
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:586 ..
2902
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2903
+ msgid "Payment Header"
2904
+ msgstr "支払いヘッダー"
2905
+
2906
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:589 ..
2907
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2908
+ msgid "Shown on top of the payment form. No HTML allowed."
2909
+ msgstr "決済フォームの上部に表示。HTMLは許可されていません。"
2910
+
2911
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:596 ..
2912
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2913
+ msgid "The button label for payments. No HTML allowed!"
2914
+ msgstr "支払いのためのボタンのラベル。HTMLは許可されていません。"
2915
+
2916
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
2917
+ msgid "Cart & Checkout Cost"
2918
+ msgstr "カート&チェックアウト費用"
2919
+
2920
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
2921
+ msgid "Label for cost in %plural%"
2922
+ msgstr "%plural% の費用のラベル"
2923
+
2924
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:610 ..
2925
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2926
+ msgid "Successful Payments"
2927
+ msgstr "成功した支払い"
2928
+
2929
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
2930
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620 ..
2931
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2932
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2933
+ msgid "No HTML allowed!"
2934
+ msgstr "HTMLが許可されていません!"
2935
+
2936
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2937
+ msgid "Balance After Payment"
2938
+ msgstr "お支払い後の残高"
2939
+
2940
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2941
+ msgid "Click to toggle"
2942
+ msgstr "切り替えをクリックします"
2943
+
2944
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2945
+ #, php-format
2946
+ msgid "%s Payments"
2947
+ msgstr "%s 支払い"
2948
+
2949
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2950
+ msgid ""
2951
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2952
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2953
+ msgstr ""
2954
+ "予約がキャンセルされる場合は支払った金額の割合を返金する。払い戻しを許可しない場合にはゼロを使用してください。 \"Rejected\" "
2955
+ "は払い戻しは予約に許可されれていません。"
2956
+
2957
+ #: ../addons/notifications/myCRED-addon-notifications.php:193
2958
+ msgid "Notifications"
2959
+ msgstr "通知"
2960
+
2961
+ #: ../addons/notifications/myCRED-addon-notifications.php:195
2962
+ msgid "Styling"
2963
+ msgstr "スタイリング"
2964
+
2965
+ #: ../addons/notifications/myCRED-addon-notifications.php:198
2966
+ msgid "Use the included CSS Styling for notifications."
2967
+ msgstr "通知に含まれている CSS スタイルを使用します。"
2968
+
2969
+ #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
2970
+ #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
2971
+ #: php:1472 ../modules/mycred-module-buddypress.php:464
2972
+ msgid "Template"
2973
+ msgstr "テンプレート"
2974
+
2975
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
2976
+ #, php-format
2977
+ msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2978
+ msgstr "金額のお知らせと %amount% でログ履歴を表示を %entry% を使用します。"
2979
+
2980
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
2981
+ msgid "Restore to default"
2982
+ msgstr "デフォルトに復元"
2983
+
2984
+ #: ../addons/notifications/myCRED-addon-notifications.php:208
2985
+ msgid "Transient Lifespan"
2986
+ msgstr "トランジェントライフスパン"
2987
+
2988
+ #: ../addons/notifications/myCRED-addon-notifications.php:212
2989
+ msgid ""
2990
+ "The number of days a users notification is saved before being automatically "
2991
+ "deleted."
2992
+ msgstr "日数は、ユーザーの通知が自動的に削除される前に保存されます。"
2993
+
2994
+ #: ../addons/notifications/myCRED-addon-notifications.php:215
2995
+ msgid "Duration"
2996
+ msgstr "継続期間"
2997
+
2998
+ #: ../addons/notifications/myCRED-addon-notifications.php:219
2999
+ msgid ""
3000
+ "Number of seconds before a notice is automatically removed after being shown "
3001
+ "to user. Use zero to disable."
3002
+ msgstr "予告するまでの秒数は、自動的にユーザーに表示された後に削除されます。無効にするにはゼロにしてください。"
3003
+
3004
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3005
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3006
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3007
+ #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3008
+ #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3009
+ msgid "Ranks"
3010
+ msgstr "ランク"
3011
+
3012
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
3013
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
3014
+ msgstr "警告!すべてのランクが削除されます!これは元に戻すことはできません!"
3015
+
3016
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
3017
+ msgid "Are you sure you want to re-assign user ranks?"
3018
+ msgstr "あなたはユーザーランクを再割り当てしてもよろしいですか?"
3019
+
3020
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
3021
+ #, php-format
3022
+ msgid "Ranks for %s"
3023
+ msgstr "%s のランク"
3024
+
3025
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3026
+ #: php:833
3027
+ msgid "Rank"
3028
+ msgstr "ランク"
3029
+
3030
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
3031
+ msgid "Add New Rank"
3032
+ msgstr "新しいランクを追加"
3033
+
3034
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
3035
+ msgid "Edit Rank"
3036
+ msgstr "ランク編集"
3037
+
3038
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
3039
+ msgid "New Rank"
3040
+ msgstr "新しいランク"
3041
+
3042
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
3043
+ msgid "View Rank"
3044
+ msgstr "ランク表示"
3045
+
3046
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
3047
+ msgid "Search Ranks"
3048
+ msgstr "ランク検索"
3049
+
3050
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
3051
+ msgid "No ranks found"
3052
+ msgstr "ランクがみつかりません"
3053
+
3054
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
3055
+ msgid "No ranks found in Trash"
3056
+ msgstr "ゴミ箱にランクがみつかりません"
3057
+
3058
+ #: ../addons/ranks/myCRED-addon-ranks.php:540
3059
+ #, php-format
3060
+ msgid "Completed - Total of %d users effected"
3061
+ msgstr "完成済み - %dのユーザーの合計が影響を受ける"
3062
+
3063
+ #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3064
+ #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3065
+ #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3066
+ #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3067
+ #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3068
+ msgid "Rank Updated."
3069
+ msgstr "ランクを更新。"
3070
+
3071
+ #: ../addons/ranks/myCRED-addon-ranks.php:983
3072
+ msgid "Rank Enabled"
3073
+ msgstr "ランク有効"
3074
+
3075
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
3076
+ msgid "Rank Saved"
3077
+ msgstr "ランク保存"
3078
+
3079
+ #: ../addons/ranks/myCRED-addon-ranks.php:1023
3080
+ #, php-format
3081
+ msgid "<strong>Rank:</strong> %s"
3082
+ msgstr "<strong>ランク:</strong> %s"
3083
+
3084
+ #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3085
+ #: php:1122
3086
+ msgid "Rank Title"
3087
+ msgstr "ランクタイトル"
3088
+
3089
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040
3090
+ msgid "Logo"
3091
+ msgstr "ロゴ"
3092
+
3093
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
3094
+ msgid "Requirement"
3095
+ msgstr "必要条件"
3096
+
3097
+ #: ../addons/ranks/myCRED-addon-ranks.php:1067
3098
+ msgid "No Logo Set"
3099
+ msgstr "いいえロゴ設定されていない"
3100
+
3101
+ #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3102
+ #: php:1087
3103
+ msgid "Any Value"
3104
+ msgstr "任意の値"
3105
+
3106
+ #: ../addons/ranks/myCRED-addon-ranks.php:1089
3107
+ msgid "Maximum %plural%"
3108
+ msgstr "最大 %plural%"
3109
+
3110
+ #: ../addons/ranks/myCRED-addon-ranks.php:1137
3111
+ msgid "Rank Settings"
3112
+ msgstr "ランクの設定"
3113
+
3114
+ #: ../addons/ranks/myCRED-addon-ranks.php:1191
3115
+ msgid "Minimum %plural% to reach this rank"
3116
+ msgstr "最低 %plural% でこのランクに到達する"
3117
+
3118
+ #: ../addons/ranks/myCRED-addon-ranks.php:1195
3119
+ msgid "Maximum %plural% to be included in this rank"
3120
+ msgstr "最大 %plural% でこのランクに含まれる"
3121
+
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:1213
3123
+ msgid "All Published Ranks"
3124
+ msgstr "公開されたすべてのランク"
3125
+
3126
+ #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3127
+ #: php:1225
3128
+ msgid "Not Set"
3129
+ msgstr "設定なし"
3130
+
3131
+ #: ../addons/ranks/myCRED-addon-ranks.php:1231
3132
+ msgid "No Ranks found"
3133
+ msgstr "ランクがみつかりませんでした"
3134
+
3135
+ #: ../addons/ranks/myCRED-addon-ranks.php:1315
3136
+ msgid "Rank Features"
3137
+ msgstr "ランクの特長"
3138
+
3139
+ #: ../addons/ranks/myCRED-addon-ranks.php:1319
3140
+ msgid "%plural% requirement"
3141
+ msgstr "%plural% の要件"
3142
+
3143
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
3144
+ msgid "Featured Image (Logo)"
3145
+ msgstr "注目の画像(ロゴ)"
3146
+
3147
+ #: ../addons/ranks/myCRED-addon-ranks.php:1322
3148
+ msgid "Content"
3149
+ msgstr "コンテンツ"
3150
+
3151
+ #: ../addons/ranks/myCRED-addon-ranks.php:1324
3152
+ msgid "Excerpt"
3153
+ msgstr "抜粋"
3154
+
3155
+ #: ../addons/ranks/myCRED-addon-ranks.php:1326
3156
+ msgid "Comments"
3157
+ msgstr "コメント"
3158
+
3159
+ #: ../addons/ranks/myCRED-addon-ranks.php:1328
3160
+ msgid "Page Attributes"
3161
+ msgstr "ページ属性"
3162
+
3163
+ #: ../addons/ranks/myCRED-addon-ranks.php:1330
3164
+ msgid "Custom Fields"
3165
+ msgstr "カスタムフィールド"
3166
+
3167
+ #: ../addons/ranks/myCRED-addon-ranks.php:1334
3168
+ msgid "Public"
3169
+ msgstr "公開"
3170
+
3171
+ #: ../addons/ranks/myCRED-addon-ranks.php:1338
3172
+ msgid ""
3173
+ "If you want to create a template archive for each rank, you must select to "
3174
+ "have ranks public. Defaults to disabled."
3175
+ msgstr "各ランクのテンプレートのアーカイブを作成する場合は、ランクの公開を選択する必要があります。デフォルトは無効です。"
3176
+
3177
+ #: ../addons/ranks/myCRED-addon-ranks.php:1341
3178
+ msgid "Archive URL"
3179
+ msgstr "アーカイブ URL"
3180
+
3181
+ #: ../addons/ranks/myCRED-addon-ranks.php:1345
3182
+ msgid "Ignored if Ranks are not public"
3183
+ msgstr "ランクは公開でない場合は無視されます。"
3184
+
3185
+ #: ../addons/ranks/myCRED-addon-ranks.php:1348
3186
+ msgid "Display Order"
3187
+ msgstr "表示順序"
3188
+
3189
+ #: ../addons/ranks/myCRED-addon-ranks.php:1356
3190
+ msgid "Ascending - Lowest rank to highest"
3191
+ msgstr "昇順 - 最低ランクを最高に"
3192
+
3193
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
3194
+ msgid "Descending - Highest rank to lowest"
3195
+ msgstr "降順 - 最高ランクを最低に"
3196
+
3197
+ #: ../addons/ranks/myCRED-addon-ranks.php:1368
3198
+ msgid ""
3199
+ "Select in what order ranks should be displayed in your admin area and/or "
3200
+ "front if ranks are \"Public\""
3201
+ msgstr "ランクは \"Public\" をランク付けするどのような順序で選択する必要がありあなたの管理エリアおよび/またはフロントで表示されます"
3202
+
3203
+ #: ../addons/ranks/myCRED-addon-ranks.php:1374
3204
+ msgid "Rank Basis"
3205
+ msgstr "ランクの基準"
3206
+
3207
+ #: ../addons/ranks/myCRED-addon-ranks.php:1377
3208
+ msgid "Users are ranked according to their current balance."
3209
+ msgstr "ユーザーの現在の残高に応じてランク付けされます。"
3210
+
3211
+ #: ../addons/ranks/myCRED-addon-ranks.php:1380
3212
+ msgid ""
3213
+ "Users are ranked according to the total amount of %_plural% they have "
3214
+ "accumulated."
3215
+ msgstr "ユーザーは彼らが蓄積してきた %_plural% の合計金額に応じてランク付けされます。"
3216
+
3217
+ #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3218
+ #: php:1389
3219
+ msgid "Calculate Totals"
3220
+ msgstr "合計を計算します。"
3221
+
3222
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3223
+ msgid ""
3224
+ "Use this button to calculate or recalculate your users totals. If not used, "
3225
+ "the users current balance will be used as a starting point."
3226
+ msgstr "このボタンを使用して計算またはユーザー集計を再計算します。使用しない場合はユーザーの現在の残高を開始点として使用されます。"
3227
+
3228
+ #: ../addons/ranks/myCRED-addon-ranks.php:1387
3229
+ msgid ""
3230
+ "Once a users total has been calculated, they will be assigned to their "
3231
+ "appropriate roles. For this reason, it is highly recommended that you first "
3232
+ "setup your ranks!"
3233
+ msgstr "ユーザーの合計が計算されたら適切な権限に割り当てされます。この理由から最初にあなたのランクをセットアップすることを強くお勧めします !"
3234
+
3235
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
3236
+ msgid ""
3237
+ "Depending on your log size and number of users this process may take a while."
3238
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3239
+ "this is completed!"
3240
+ msgstr ""
3241
+ "ログのサイズやユーザー数に応じてこの処理しばらく時間がかかる場合があります。\"Update Settings\" "
3242
+ "をクリックするかこれが完了するまでこのページを更新しないで下さい!"
3243
+
3244
+ #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3245
+ #: php:1450 ../modules/mycred-module-buddypress.php:424
3246
+ msgid "Do not show."
3247
+ msgstr "表示しない。"
3248
+
3249
+ #: ../addons/ranks/myCRED-addon-ranks.php:1406
3250
+ msgid "Include in Profile Header."
3251
+ msgstr "プロフィールのヘッダーに含める。"
3252
+
3253
+ #: ../addons/ranks/myCRED-addon-ranks.php:1408
3254
+ msgid "Include under the \"Profile\" tab and Profile Header."
3255
+ msgstr "\"Profile\" タブの下に含めるとヘッダーのプロフィールを作成します。"
3256
+
3257
+ #: ../addons/ranks/myCRED-addon-ranks.php:1412
3258
+ msgid "Rank in BuddyPress"
3259
+ msgstr "BuddyPressのランク"
3260
+
3261
+ #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3262
+ #: php:1474
3263
+ #, php-format
3264
+ msgid ""
3265
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3266
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3267
+ msgstr ""
3268
+ "ユーザーがBuddyPressにランク表示するときに使用するテンプレート。ランクのロゴを表示するには、タイトルと %rank_logo% の "
3269
+ "%rank_title% を使用してください。 HTMLが許可されます。"
3270
+
3271
+ #: ../addons/ranks/myCRED-addon-ranks.php:1451
3272
+ msgid "Include in Topic Replies"
3273
+ msgstr "トピック返信を挿入"
3274
+
3275
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453
3276
+ msgid "Include in Topic Replies and Profile"
3277
+ msgstr "トピック返信とプロフィールを挿入"
3278
+
3279
+ #: ../addons/ranks/myCRED-addon-ranks.php:1457
3280
+ msgid "Rank in bbPress"
3281
+ msgstr "bbPressのランク"
3282
+
3283
+ #: ../addons/ranks/myCRED-addon-ranks.php:1536
3284
+ msgid "Script Communication Error"
3285
+ msgstr "スクリプトの通信エラー"
3286
+
3287
+ #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3288
+ #: php:632
3289
+ msgid "User Meta Key"
3290
+ msgstr "ユーザーメタキー"
3291
+
3292
+ #: ../addons/ranks/myCRED-addon-ranks.php:1608
3293
+ msgid "No. of ranks"
3294
+ msgstr "ランク番号"
3295
+
3296
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3297
+ msgid "Remove All Ranks"
3298
+ msgstr "すべてのランクを削除"
3299
+
3300
+ #: ../addons/ranks/myCRED-addon-ranks.php:1613
3301
+ msgid "Assign Ranks to Users"
3302
+ msgstr "ユーザーへのランクの割当て"
3303
+
3304
+ #: ../addons/ranks/includes/mycred-rank-functions.php:257
3305
+ msgid "mycred_get_users_rank() : Missing required user id"
3306
+ msgstr "mycred_get_users_rank() : 必要なユーザーIDが見つかりません"
3307
+
3308
+ #: ../addons/ranks/includes/mycred-rank-functions.php:270
3309
+ msgid "no rank"
3310
+ msgstr "ランクなし"
3311
+
3312
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
3313
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:202
3314
+ msgid "No users found with this rank"
3315
+ msgstr "このランクにユーザーが見つかりません"
3316
+
3317
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122 ../includes/mycred-
3318
+ #: shortcodes.php:525
3319
+ msgid "error"
3320
+ msgstr "エラー"
3321
+
3322
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3323
+ msgid "Rank ID is required!"
3324
+ msgstr "ランクID が必須です !"
3325
+
3326
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:74
3327
+ msgid "Hours"
3328
+ msgstr "時間"
3329
+
3330
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:111
3331
+ msgid "Profit Share"
3332
+ msgstr "利益の共有"
3333
+
3334
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:119
3335
+ msgid "Save Profit Share"
3336
+ msgstr "利益の共有を保存"
3337
+
3338
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3339
+ msgid "Profit Share override saved"
3340
+ msgstr "利益共有の上書き保存"
3341
+
3342
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3343
+ msgid "You can not buy this content."
3344
+ msgstr "あなたはこのコンテンツを購入することはできません。"
3345
+
3346
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3347
+ msgid "Error. Try Again"
3348
+ msgstr "エラーが発生しました。再試行してくだしさい。"
3349
+
3350
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3351
+ msgid "No Payout. Just charge."
3352
+ msgstr "お支払いはありません。チャージのみです。"
3353
+
3354
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3355
+ msgid "Pay Content Author."
3356
+ msgstr "コンテンツ作成者に支払う。"
3357
+
3358
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3359
+ #: overview.php:141 ../includes/mycred-overview.php:148
3360
+ msgid "Sell Content"
3361
+ msgstr "販売コンテンツ"
3362
+
3363
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3364
+ msgid "Post Types"
3365
+ msgstr "投稿タイプ"
3366
+
3367
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3368
+ msgid "Comma separated list of post types that can be sold."
3369
+ msgstr "販売することができる投稿タイプのカンマ区切りの一覧。"
3370
+
3371
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3372
+ msgid "Percentage to pay Author"
3373
+ msgstr "著者に支払うパーセンテージ"
3374
+
3375
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3376
+ msgid ""
3377
+ "Percentage of the price to pay the author. Can not be zero and is ignored if "
3378
+ "authors are not paid."
3379
+ msgstr "価格の割合を著者に支払う。ゼロにすることはできませんし、著者は支払われていない場合は無視されます。"
3380
+
3381
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3382
+ msgid "Defaults"
3383
+ msgstr "デフォルト"
3384
+
3385
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3386
+ msgid "Allow authors to change price."
3387
+ msgstr "価格を変更することができます。"
3388
+
3389
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3390
+ msgid "Allow authors to change button label."
3391
+ msgstr "ボタンのラベルを変更することもできます。"
3392
+
3393
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3394
+ msgid "Purchases expire after"
3395
+ msgstr "購入後に期限切れ"
3396
+
3397
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3398
+ msgid "Use zero for permanent sales."
3399
+ msgstr "永久的に販売のためにゼロを使用してください。"
3400
+
3401
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3402
+ msgid "For Visitors"
3403
+ msgstr "ビジターのために"
3404
+
3405
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3406
+ #, php-format
3407
+ msgid ""
3408
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3409
+ "be logged in to buy content!"
3410
+ msgstr "ユーザーがコンテンツを購入するにはログインする必要があります。このテンプレートで %buy_button% を使用しないでください!"
3411
+
3412
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3413
+ msgid "For Members"
3414
+ msgstr "メンバーのために"
3415
+
3416
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3417
+ #: content/myCRED-addon-sell-content.php:517
3418
+ #, php-format
3419
+ msgid "Your template must contain the %buy_button% tag for purchases to work!"
3420
+ msgstr "あなたのテンプレートは、購入が機能するため %buy_button% タグが含まれている必要があります!"
3421
+
3422
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3423
+ msgid "For members that can not afford to buy"
3424
+ msgstr "購入する余裕がないメンバーのために"
3425
+
3426
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3427
+ msgid "Log template for Purchases"
3428
+ msgstr "購入のためのテンプレートのログ"
3429
+
3430
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3431
+ msgid "Log template for Sales"
3432
+ msgstr "販売用のテンプレートをログ"
3433
+
3434
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3435
+ #, php-format
3436
+ msgid "%s Sell This"
3437
+ msgstr "これを売る %s"
3438
+
3439
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3440
+ #, php-format
3441
+ msgid "%s Sell Content needs to be setup before you can use this feature."
3442
+ msgstr "%s の販売内容はこの機能を使用する前に設定をする必要があります。"
3443
+
3444
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3445
+ msgid "Setup add-on"
3446
+ msgstr "アドオン設定"
3447
+
3448
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3449
+ msgid "Lets do it"
3450
+ msgstr "やってみましょう"
3451
+
3452
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3453
+ #, php-format
3454
+ msgid "Enable sale of this %s"
3455
+ msgstr "この %s の販売を有効にする"
3456
+
3457
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3458
+ msgid "Purchase expires after"
3459
+ msgstr "購入後に期限切れ"
3460
+
3461
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3462
+ msgid "Thank you for your purchase!"
3463
+ msgstr "ご購入いただきありがとうございます!"
3464
+
3465
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3466
+ #: content/myCRED-addon-sell-content.php:1191
3467
+ msgid "The following content is set for sale:"
3468
+ msgstr "以下の内容は販売のために設定されています:"
3469
+
3470
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3471
+ msgid "Purchased"
3472
+ msgstr "購入"
3473
+
3474
+ #: ../addons/stats/myCRED-addon-stats.php:54
3475
+ msgid "Statistics"
3476
+ msgstr "統計"
3477
+
3478
+ #: ../addons/stats/myCRED-addon-stats.php:126
3479
+ msgid "Overview"
3480
+ msgstr "概要"
3481
+
3482
+ #: ../addons/stats/myCRED-addon-stats.php:192
3483
+ msgid "Refresh"
3484
+ msgstr "リフレッシュ"
3485
+
3486
+ #: ../addons/stats/myCRED-addon-stats.php:248
3487
+ msgid "Your log is empty. No statistics can be shown."
3488
+ msgstr "あなたのログは空です。統計は表示しないことができます。"
3489
+
3490
+ #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:102 ..
3491
+ #: includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
3492
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3493
+ msgid "View Log"
3494
+ msgstr "ログの表示"
3495
+
3496
+ #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3497
+ #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3498
+ #: modules/mycred-module-hooks.php:28
3499
+ msgid "Hooks"
3500
+ msgstr "フック"
3501
+
3502
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
3503
+ #, php-format
3504
+ msgid "Total %s:"
3505
+ msgstr "合計 %s:"
3506
+
3507
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:136 ..
3508
+ #: includes/mycred-overview.php:78
3509
+ msgid "Total amount in circulation"
3510
+ msgstr "定期における総額"
3511
+
3512
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
3513
+ #, php-format
3514
+ msgid "Total amount of %s in circulation"
3515
+ msgstr "定期における %s の合計額"
3516
+
3517
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
3518
+ msgid "Total gains (%)"
3519
+ msgstr "総利益 (%)"
3520
+
3521
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
3522
+ msgid "Total loses (%)"
3523
+ msgstr "総損失 (%)"
3524
+
3525
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3526
+ #, php-format
3527
+ msgid "Total Gained: %s"
3528
+ msgstr "合計獲得: %s"
3529
+
3530
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3531
+ #, php-format
3532
+ msgid "Total Spent: %s"
3533
+ msgstr "合計消費: %s"
3534
+
3535
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3536
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3537
+ msgid "Today"
3538
+ msgstr "本日"
3539
+
3540
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3541
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3542
+ msgid "This Week"
3543
+ msgstr "今週"
3544
+
3545
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3546
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3547
+ msgid "This Month"
3548
+ msgstr "今月"
3549
+
3550
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
3551
+ msgid "This Year"
3552
+ msgstr "今年"
3553
+
3554
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
3555
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
3556
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
3557
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
3558
+ msgid "Gained"
3559
+ msgstr "獲得"
3560
+
3561
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
3562
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
3563
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
3564
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
3565
+ msgid "Lost"
3566
+ msgstr "消費"
3567
+
3568
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
3569
+ msgid "Most common ways your users have gained points during this period."
3570
+ msgstr "最も一般的な方法あなたのユーザーがこの期間中にポイントを獲得している。"
3571
+
3572
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
3573
+ #, php-format
3574
+ msgid "Most common ways your users have gained %_plural% during this period."
3575
+ msgstr "最も一般的な方法はあなたのユーザーがこの期間中に %_plural% を獲得しています。"
3576
+
3577
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
3578
+ msgid "Gains in the last 10 days"
3579
+ msgstr "過去10日間の利益"
3580
+
3581
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3582
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3583
+ msgid "View"
3584
+ msgstr "表示"
3585
+
3586
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3587
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3588
+ msgid "No data found"
3589
+ msgstr "いいえデータがみつかりません"
3590
+
3591
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
3592
+ msgid "Most common ways your users have lost or spent points during this period."
3593
+ msgstr "最も一般的な方法でユーザーが紛失またはこの期間の間にポイントを消費した。"
3594
+
3595
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
3596
+ #, php-format
3597
+ msgid "Most common ways your users have lost or spent %_plural% during this period."
3598
+ msgstr "最も一般的な方法でユーザーが紛失またはこの期間の中に %_plural% を消費した。"
3599
+
3600
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
3601
+ msgid "Loses in the last 10 days"
3602
+ msgstr "過去 10 日間の消費"
3603
+
3604
+ #: ../addons/transfer/myCRED-addon-transfer.php:44
3605
+ msgid "You do not have enough %plural% to send."
3606
+ msgstr "送信に %plural% 必要なポイントがありません。"
3607
+
3608
+ #: ../addons/transfer/myCRED-addon-transfer.php:45
3609
+ msgid "You have exceeded your %limit% transfer limit."
3610
+ msgstr "あなたの %limit% は転送制限を超えています。"
3611
+
3612
+ #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3613
+ #: php:2454
3614
+ msgid "Transfer"
3615
+ msgstr "転送"
3616
+
3617
+ #: ../addons/transfer/myCRED-addon-transfer.php:154
3618
+ msgid "Transaction completed."
3619
+ msgstr "トランザクションが完了しました。"
3620
+
3621
+ #: ../addons/transfer/myCRED-addon-transfer.php:155
3622
+ msgid "Security token could not be verified. Please contact your site administrator!"
3623
+ msgstr "セキュリティトークンを検証できませんでした。サイト管理者に連絡してください!"
3624
+
3625
+ #: ../addons/transfer/myCRED-addon-transfer.php:156
3626
+ msgid "Communications error. Please try again later."
3627
+ msgstr "通信エラー。後ほどお試しください。"
3628
+
3629
+ #: ../addons/transfer/myCRED-addon-transfer.php:157
3630
+ msgid "Recipient not found. Please try again."
3631
+ msgstr "受信者がみつかりません。もう一度やり直してください。"
3632
+
3633
+ #: ../addons/transfer/myCRED-addon-transfer.php:158
3634
+ msgid "Transaction declined by recipient."
3635
+ msgstr "トランザクションで受信者が減少しました。"
3636
+
3637
+ #: ../addons/transfer/myCRED-addon-transfer.php:159
3638
+ msgid "Incorrect amount. Please try again."
3639
+ msgstr "誤った金額。もう一度やり直してください。"
3640
+
3641
+ #: ../addons/transfer/myCRED-addon-transfer.php:160
3642
+ msgid ""
3643
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3644
+ "this has been done!"
3645
+ msgstr "このアドオンはmyCREDでまだ設定されていません!これが行われるまで転送は許可されません !"
3646
+
3647
+ #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3648
+ #: php:2582
3649
+ msgid "Insufficient Funds. Please try a lower amount."
3650
+ msgstr "資金不足。低い額をお試しください。"
3651
+
3652
+ #: ../addons/transfer/myCRED-addon-transfer.php:162
3653
+ msgid "Transfer Limit exceeded."
3654
+ msgstr "転送の制限を超えました。"
3655
+
3656
+ #: ../addons/transfer/myCRED-addon-transfer.php:189
3657
+ msgid "No limits."
3658
+ msgstr "制限はありません。"
3659
+
3660
+ #: ../addons/transfer/myCRED-addon-transfer.php:190
3661
+ msgid "Impose daily limit."
3662
+ msgstr "毎日の制限を課します。"
3663
+
3664
+ #: ../addons/transfer/myCRED-addon-transfer.php:191
3665
+ msgid "Impose weekly limit."
3666
+ msgstr "毎週の制限を課します。"
3667
+
3668
+ #: ../addons/transfer/myCRED-addon-transfer.php:198
3669
+ msgid "User Login (user_login)"
3670
+ msgstr "ユーザーログイン (user_login)"
3671
+
3672
+ #: ../addons/transfer/myCRED-addon-transfer.php:199
3673
+ msgid "User Email (user_email)"
3674
+ msgstr "ユーザーメール (user_email)"
3675
+
3676
+ #: ../addons/transfer/myCRED-addon-transfer.php:207 ../includes/mycred-overview.
3677
+ #: php:120 ../includes/mycred-overview.php:127
3678
+ msgid "Transfers"
3679
+ msgstr "転送"
3680
+
3681
+ #: ../addons/transfer/myCRED-addon-transfer.php:216
3682
+ msgid "Select the point types that users can transfer."
3683
+ msgstr "ユーザーを転送することができるポイントの種類を選択します。"
3684
+
3685
+ #: ../addons/transfer/myCRED-addon-transfer.php:224
3686
+ msgid "Log template for sending"
3687
+ msgstr "ログを送信するためのテンプレート"
3688
+
3689
+ #: ../addons/transfer/myCRED-addon-transfer.php:231
3690
+ msgid "Log template for receiving"
3691
+ msgstr "受信ログのテンプレート"
3692
+
3693
+ #: ../addons/transfer/myCRED-addon-transfer.php:238
3694
+ msgid "Autofill Recipient"
3695
+ msgstr "自動入力の受信者"
3696
+
3697
+ #: ../addons/transfer/myCRED-addon-transfer.php:250
3698
+ msgid "Select what user details recipients should be autofilled by."
3699
+ msgstr "詳細受信者で自動入力されるべきユーザーを選択します。"
3700
+
3701
+ #: ../addons/transfer/myCRED-addon-transfer.php:253
3702
+ msgid "Reload"
3703
+ msgstr "リロード"
3704
+
3705
+ #: ../addons/transfer/myCRED-addon-transfer.php:256
3706
+ msgid "Reload page on successful transfers."
3707
+ msgstr "成功した転送ページをリロードしてください。"
3708
+
3709
+ #: ../addons/transfer/myCRED-addon-transfer.php:276
3710
+ msgid "Limit Amount"
3711
+ msgstr "限度額"
3712
+
3713
+ #: ../addons/transfer/myCRED-addon-transfer.php:280
3714
+ msgid "Form Templates"
3715
+ msgstr "フォームテンプレート"
3716
+
3717
+ #: ../addons/transfer/myCRED-addon-transfer.php:283
3718
+ msgid "Not logged in Template"
3719
+ msgstr "テンプレートログインしていません"
3720
+
3721
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
3722
+ msgid ""
3723
+ "Text to show when users are not logged in. Leave empty to hide. No HTML "
3724
+ "elements allowed!"
3725
+ msgstr "テキストはユーザーがログインしていないとき表示、非表示する場合は空白のままにする。HTML要素は許可されていません!"
3726
+
3727
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
3728
+ msgid "Balance Template"
3729
+ msgstr "残高テンプレート"
3730
+
3731
+ #: ../addons/transfer/myCRED-addon-transfer.php:291
3732
+ msgid ""
3733
+ "Template to use when displaying the users balance (if included). No HTML "
3734
+ "elements allowed!"
3735
+ msgstr "ユーザーの残高を表示するときに使用するテンプレート (含まれている場合)。HTML要素は許可されていません!"
3736
+
3737
+ #: ../addons/transfer/myCRED-addon-transfer.php:295
3738
+ msgid "Limit Template"
3739
+ msgstr "制限テンプレート"
3740
+
3741
+ #: ../addons/transfer/myCRED-addon-transfer.php:297
3742
+ msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3743
+ msgstr "限界を表示するときに使用するテンプレート。(使用する場合)。HTML要素が許可されていません!"
3744
+
3745
+ #: ../addons/transfer/myCRED-addon-transfer.php:301
3746
+ msgid "Button Template"
3747
+ msgstr "ボタンテンプレート"
3748
+
3749
+ #: ../addons/transfer/myCRED-addon-transfer.php:303
3750
+ msgid "Send Transfer button template. No HTML elements allowed!"
3751
+ msgstr "転送ボタンテンプレートを送信します。HTML要素は許可されていません!"
3752
+
3753
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
3754
+ msgid "Error Messages"
3755
+ msgstr "エラーメッセージ"
3756
+
3757
+ #: ../addons/transfer/myCRED-addon-transfer.php:309
3758
+ msgid "Balance to low to send."
3759
+ msgstr "送信は残高不足"
3760
+
3761
+ #: ../addons/transfer/myCRED-addon-transfer.php:311
3762
+ msgid ""
3763
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3764
+ "hide. No HTML elements allowed!"
3765
+ msgstr "ユーザーは転送で残高不足のときにテキストが表示されます。非表示にする空のままにしておきます。HTML要素は許可されていません!"
3766
+
3767
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
3768
+ msgid "Transfer Limit Reached."
3769
+ msgstr "転送制限に達しました。"
3770
+
3771
+ #: ../addons/transfer/myCRED-addon-transfer.php:317
3772
+ msgid ""
3773
+ "Text to show when a user has reached their transfer limit (if used). Leave "
3774
+ "empty to hide. No HTML elements allowed!"
3775
+ msgstr "テキストはユーザーが転送制限に達したときに表示する(使用する場合)。非表示にする空のままにしておきます。HTML要素は許可されていません!"
3776
+
3777
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
3778
+ msgid "username"
3779
+ msgstr "ユーザー名"
3780
+
3781
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
3782
+ msgid "email"
3783
+ msgstr "メール"
3784
+
3785
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
3786
+ #, php-format
3787
+ msgid "recipients %s"
3788
+ msgstr "受信者 %s"
3789
+
3790
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3791
+ msgid "To:"
3792
+ msgstr "宛先:"
3793
+
3794
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3795
+ msgid "Amount:"
3796
+ msgstr "金額:"
3797
+
3798
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:20
3799
+ msgid "Allow transfers between users."
3800
+ msgstr "ユーザー間の転送を許可します。"
3801
+
3802
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:23
3803
+ #, php-format
3804
+ msgid "(%s) Transfer"
3805
+ msgstr "(%s) 転送"
3806
+
3807
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:40
3808
+ msgid "The myCRED Transfer add-on has not yet been setup!"
3809
+ msgstr "myCRED転送アドオンはまだ設定されていません!"
3810
+
3811
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:123
3812
+ msgid "Show users balance"
3813
+ msgstr "ユーザー残高の表示"
3814
+
3815
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:127
3816
+ msgid "Show users limit"
3817
+ msgstr "ユーザー制限の表示"
3818
+
3819
+ #: ../includes/mycred-about.php:77
3820
+ #, php-format
3821
+ msgid "Welcome to %s %s"
3822
+ msgstr "%s %s へようこそ!"
3823
+
3824
+ #: ../includes/mycred-admin.php:198
3825
+ msgid "A log entry is required in order to adjust this users balance"
3826
+ msgstr "ログエントリは、このユーザーの残高を調整するために必要です"
3827
+
3828
+ #: ../includes/mycred-admin.php:200
3829
+ msgid "Users balance saved"
3830
+ msgstr "ユーザーの残高は保存"
3831
+
3832
+ #: ../includes/mycred-admin.php:208
3833
+ msgid "Users excluded"
3834
+ msgstr "ユーザーは除外"
3835
+
3836
+ #: ../includes/mycred-admin.php:213
3837
+ msgid ""
3838
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3839
+ "rate settings and update all premium payment gateways!"
3840
+ msgstr "すべてのbuyCRED支払ゲートウェイが無効になっている!あなたの為替レートの設定をチェックし、すべてのプレミアムの支払いゲートウェイを更新してください!"
3841
+
3842
+ #: ../includes/mycred-admin.php:242
3843
+ msgid "User is excluded"
3844
+ msgstr "ユーザーが除外されている"
3845
+
3846
+ #: ../includes/mycred-admin.php:247
3847
+ msgid "Log Entry can not be empty"
3848
+ msgstr "ログ履歴は空にすることはできません"
3849
+
3850
+ #: ../includes/mycred-admin.php:251
3851
+ msgid "Amount can not be zero"
3852
+ msgstr "金額はゼロにすることはできません"
3853
+
3854
+ #: ../includes/mycred-admin.php:272
3855
+ msgid "Failed to update this uses balance."
3856
+ msgstr "これは残高を使用して更新できませんでした。"
3857
+
3858
+ #: ../includes/mycred-admin.php:406
3859
+ msgid "Excluded"
3860
+ msgstr "除外"
3861
+
3862
+ #: ../includes/mycred-admin.php:427
3863
+ msgid "Adjust"
3864
+ msgstr "調整する"
3865
+
3866
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3867
+ msgid "Edit Balance"
3868
+ msgstr "残高編集"
3869
+
3870
+ #: ../includes/mycred-admin.php:490
3871
+ msgid "Profile"
3872
+ msgstr "プロフィール"
3873
+
3874
+ #: ../includes/mycred-admin.php:497
3875
+ msgid "Extended Profile"
3876
+ msgstr "拡張プロフィール"
3877
+
3878
+ #: ../includes/mycred-admin.php:591
3879
+ #, php-format
3880
+ msgid "This user is excluded from using %s"
3881
+ msgstr "このユーザーは %s の使用から除外されている"
3882
+
3883
+ #: ../includes/mycred-admin.php:615
3884
+ msgid "Edit User"
3885
+ msgstr "ユーザー編集"
3886
+
3887
+ #: ../includes/mycred-admin.php:617
3888
+ msgctxt "user"
3889
+ msgid "Add New"
3890
+ msgstr "新規追加"
3891
+
3892
+ #: ../includes/mycred-admin.php:619
3893
+ msgctxt "user"
3894
+ msgid "Add Existing"
3895
+ msgstr "既存の追加"
3896
+
3897
+ #: ../includes/mycred-admin.php:630
3898
+ #, php-format
3899
+ msgid "Total %s Accumulated"
3900
+ msgstr "合計 %s は累計"
3901
+
3902
+ #: ../includes/mycred-admin.php:631
3903
+ #, php-format
3904
+ msgid "Total %s Spent"
3905
+ msgstr "合計 %s は使用済"
3906
+
3907
+ #: ../includes/mycred-admin.php:642
3908
+ msgid "View History"
3909
+ msgstr "履歴表示"
3910
+
3911
+ #: ../includes/mycred-admin.php:643
3912
+ msgid "Exclude User"
3913
+ msgstr "ユーザーを除外"
3914
+
3915
+ #: ../includes/mycred-admin.php:647
3916
+ msgid "Adjust Balance"
3917
+ msgstr "残高を調整します"
3918
+
3919
+ #: ../includes/mycred-admin.php:656
3920
+ msgid ""
3921
+ "Warning! Excluding this user will result in their balance being deleted "
3922
+ "along with any entries currently in your log! This can not be undone!"
3923
+ msgstr "警告 !このユーザーを除く現在のあなたのログに任意の履歴と共に削除される彼らの残高になります!これは元に戻すことができません !"
3924
+
3925
+ #: ../includes/mycred-admin.php:721
3926
+ #, php-format
3927
+ msgid "%singular% balance"
3928
+ msgstr "%singular% balance"
3929
+
3930
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3931
+ msgid "Update Balance"
3932
+ msgstr "残高更新"
3933
+
3934
+ #: ../includes/mycred-admin.php:798
3935
+ msgid "ID"
3936
+ msgstr "ID"
3937
+
3938
+ #: ../includes/mycred-admin.php:804
3939
+ msgid "A positive or negative value"
3940
+ msgstr "正または負の値"
3941
+
3942
+ #: ../includes/mycred-functions.php:79
3943
+ msgid "Point"
3944
+ msgstr "ポイント"
3945
+
3946
+ #: ../includes/mycred-functions.php:80
3947
+ msgid "Points"
3948
+ msgstr "ポイント"
3949
+
3950
+ #: ../includes/mycred-functions.php:398
3951
+ msgid "Deleted"
3952
+ msgstr "削除"
3953
+
3954
+ #: ../includes/mycred-functions.php:530
3955
+ msgid "Deleted Item"
3956
+ msgstr "削除済みアイテム"
3957
+
3958
+ #: ../includes/mycred-functions.php:594
3959
+ msgid "User Related"
3960
+ msgstr "関連ユーザー"
3961
+
3962
+ #: ../includes/mycred-functions.php:601
3963
+ msgid "Post Related"
3964
+ msgstr "関連投稿"
3965
+
3966
+ #: ../includes/mycred-functions.php:608
3967
+ msgid "Comment Related"
3968
+ msgstr "関連コメント"
3969
+
3970
+ #: ../includes/mycred-functions.php:615
3971
+ msgid "Widget Related"
3972
+ msgstr "関連ウィジェット"
3973
+
3974
+ #: ../includes/mycred-functions.php:622
3975
+ msgid "Amount Related"
3976
+ msgstr "関連金額"
3977
+
3978
+ #: ../includes/mycred-functions.php:629
3979
+ msgid "Video Related"
3980
+ msgstr "関連ビデオ"
3981
+
3982
+ #: ../includes/mycred-functions.php:640
3983
+ msgid "and"
3984
+ msgstr "と"
3985
+
3986
+ #: ../includes/mycred-functions.php:642
3987
+ msgid "Available Template Tags:"
3988
+ msgstr "使用可能なテンプレートのタグ:"
3989
+
3990
+ #: ../includes/mycred-functions.php:1694
3991
+ msgid "Entire Log"
3992
+ msgstr "ログ全体"
3993
+
3994
+ #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
3995
+ msgid "Displayed Rows"
3996
+ msgstr "表示されている行"
3997
+
3998
+ #: ../includes/mycred-functions.php:1707
3999
+ msgid "Search Results"
4000
+ msgstr "検索結果"
4001
+
4002
+ #: ../includes/mycred-functions.php:1708
4003
+ msgid "My Entire Log"
4004
+ msgstr "私の全体のログ"
4005
+
4006
+ #: ../includes/mycred-functions.php:1875
4007
+ msgid "ref empty"
4008
+ msgstr "REF空"
4009
+
4010
+ #: ../includes/mycred-functions.php:1883
4011
+ msgid "incorrect user id format"
4012
+ msgstr "誤ったユーザーIDフォーマット"
4013
+
4014
+ #: ../includes/mycred-functions.php:1896
4015
+ msgid "incorrect unix timestamp (from):"
4016
+ msgstr "間違ったUNIXタイムスタンプ (差出):"
4017
+
4018
+ #: ../includes/mycred-functions.php:1905
4019
+ msgid "incorrect unix timestamp (to):"
4020
+ msgstr "不正確なUnixタイムスタンプ(宛先):"
4021
+
4022
+ #: ../includes/mycred-functions.php:2314
4023
+ msgid "Website Registration"
4024
+ msgstr "ウェブサイトの登録"
4025
+
4026
+ #: ../includes/mycred-functions.php:2315
4027
+ msgid "Website Visit"
4028
+ msgstr "ウェブサイトの訪問"
4029
+
4030
+ #: ../includes/mycred-functions.php:2316
4031
+ msgid "Viewing Content (Member)"
4032
+ msgstr "コンテンツ閲覧 (メンバー)"
4033
+
4034
+ #: ../includes/mycred-functions.php:2317
4035
+ msgid "Viewing Content (Author)"
4036
+ msgstr "コンテンツの表示(著者)"
4037
+
4038
+ #: ../includes/mycred-functions.php:2318
4039
+ msgid "Logging in"
4040
+ msgstr "ログインする"
4041
+
4042
+ #: ../includes/mycred-functions.php:2319
4043
+ msgid "Publishing Content"
4044
+ msgstr "公開コンテンツ"
4045
+
4046
+ #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4047
+ msgid "Approved Comment"
4048
+ msgstr "承認されたコメント"
4049
+
4050
+ #: ../includes/mycred-functions.php:2321
4051
+ msgid "Unapproved Comment"
4052
+ msgstr "未承認のコメント"
4053
+
4054
+ #: ../includes/mycred-functions.php:2322
4055
+ msgid "SPAM Comment"
4056
+ msgstr "SPAMコメント"
4057
+
4058
+ #: ../includes/mycred-functions.php:2323
4059
+ msgid "Deleted Comment"
4060
+ msgstr "削除されたコメント"
4061
+
4062
+ #: ../includes/mycred-functions.php:2324
4063
+ msgid "Link Click"
4064
+ msgstr "リンクをクリック"
4065
+
4066
+ #: ../includes/mycred-functions.php:2325
4067
+ msgid "Watching Video"
4068
+ msgstr "ビデオ鑑賞"
4069
+
4070
+ #: ../includes/mycred-functions.php:2326
4071
+ msgid "Visitor Referral"
4072
+ msgstr "ビジター紹介"
4073
+
4074
+ #: ../includes/mycred-functions.php:2327
4075
+ msgid "Signup Referral"
4076
+ msgstr "紹介をサインアップ"
4077
+
4078
+ #: ../includes/mycred-functions.php:2331
4079
+ msgid "New Profile Update"
4080
+ msgstr "新しいプロフィールを更新"
4081
+
4082
+ #: ../includes/mycred-functions.php:2332
4083
+ msgid "Profile Update Removal"
4084
+ msgstr "プロフィール更新の削除"
4085
+
4086
+ #: ../includes/mycred-functions.php:2333
4087
+ msgid "Avatar Upload"
4088
+ msgstr "アバターのアップロード"
4089
+
4090
+ #: ../includes/mycred-functions.php:2334
4091
+ msgid "New Friendship"
4092
+ msgstr "新規フレンド"
4093
+
4094
+ #: ../includes/mycred-functions.php:2335
4095
+ msgid "Ended Friendship"
4096
+ msgstr "フレンド拒否"
4097
+
4098
+ #: ../includes/mycred-functions.php:2336
4099
+ msgid "New Profile Comment"
4100
+ msgstr "新規プロフィールのコメント"
4101
+
4102
+ #: ../includes/mycred-functions.php:2337
4103
+ msgid "Profile Comment Deletion"
4104
+ msgstr "プロフィールコメントの削除"
4105
+
4106
+ #: ../includes/mycred-functions.php:2338
4107
+ msgid "New Message"
4108
+ msgstr "新規メッセージ"
4109
+
4110
+ #: ../includes/mycred-functions.php:2339
4111
+ msgid "Sending Gift"
4112
+ msgstr "ギフト送信"
4113
+
4114
+ #: ../includes/mycred-functions.php:2340
4115
+ msgid "New Group"
4116
+ msgstr "新規グループ"
4117
+
4118
+ #: ../includes/mycred-functions.php:2341
4119
+ msgid "Deleted Group"
4120
+ msgstr "削除されたグループ"
4121
+
4122
+ #: ../includes/mycred-functions.php:2342
4123
+ msgid "New Group Forum Topic"
4124
+ msgstr "新しいグループピック"
4125
+
4126
+ #: ../includes/mycred-functions.php:2343
4127
+ msgid "Edit Group Forum Topic"
4128
+ msgstr "グループトピックの編集"
4129
+
4130
+ #: ../includes/mycred-functions.php:2344
4131
+ msgid "New Group Forum Post"
4132
+ msgstr "新規グループの投稿"
4133
+
4134
+ #: ../includes/mycred-functions.php:2345
4135
+ msgid "Edit Group Forum Post"
4136
+ msgstr "グループ投稿の編集"
4137
+
4138
+ #: ../includes/mycred-functions.php:2346
4139
+ msgid "Joining Group"
4140
+ msgstr "グループへの参加"
4141
+
4142
+ #: ../includes/mycred-functions.php:2347
4143
+ msgid "Leaving Group"
4144
+ msgstr "グループからの脱退"
4145
+
4146
+ #: ../includes/mycred-functions.php:2348
4147
+ msgid "New Group Avatar"
4148
+ msgstr "新しいグループのアバター"
4149
+
4150
+ #: ../includes/mycred-functions.php:2349
4151
+ msgid "New Group Comment"
4152
+ msgstr "新しいグループのコメント"
4153
+
4154
+ #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4155
+ #: php:205
4156
+ msgid "Photo Upload"
4157
+ msgstr "写真アップロード"
4158
+
4159
+ #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4160
+ #: php:219
4161
+ msgid "Video Upload"
4162
+ msgstr "ビデオアップロード"
4163
+
4164
+ #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4165
+ #: php:233
4166
+ msgid "Music Upload"
4167
+ msgstr "オーディオアップロード"
4168
+
4169
+ #: ../includes/mycred-functions.php:2359
4170
+ msgid "New Link"
4171
+ msgstr "新規リンク"
4172
+
4173
+ #: ../includes/mycred-functions.php:2360
4174
+ msgid "Link Voting"
4175
+ msgstr "投票リンク"
4176
+
4177
+ #: ../includes/mycred-functions.php:2361
4178
+ msgid "Link Update"
4179
+ msgstr "リンク更新"
4180
+
4181
+ #: ../includes/mycred-functions.php:2365
4182
+ msgid "New Forum (bbPress)"
4183
+ msgstr "新規フォーラム (bbPress)"
4184
+
4185
+ #: ../includes/mycred-functions.php:2366
4186
+ msgid "New Forum Topic (bbPress)"
4187
+ msgstr "新規フォーラムトピック (bbPress)"
4188
+
4189
+ #: ../includes/mycred-functions.php:2367
4190
+ msgid "Favorited Topic (bbPress)"
4191
+ msgstr "お気に入りトピック (bbPress)"
4192
+
4193
+ #: ../includes/mycred-functions.php:2368
4194
+ msgid "New Topic Reply (bbPress)"
4195
+ msgstr "新規トピックに返信 (bbPress)"
4196
+
4197
+ #: ../includes/mycred-functions.php:2372
4198
+ msgid "Form Submission (Contact Form 7)"
4199
+ msgstr "フォーム送信 (Contact Form 7)"
4200
+
4201
+ #: ../includes/mycred-functions.php:2375
4202
+ msgid "Form Submission (Gravity Form)"
4203
+ msgstr "フォーム送信(重力フォーム)"
4204
+
4205
+ #: ../includes/mycred-functions.php:2378
4206
+ msgid "New Forum Topic (SimplePress)"
4207
+ msgstr "新規フォーラムトピック(SimplePress)"
4208
+
4209
+ #: ../includes/mycred-functions.php:2379
4210
+ msgid "New Forum Post (SimplePress)"
4211
+ msgstr "新規フォーラムポスト(SimplePress)"
4212
+
4213
+ #: ../includes/mycred-functions.php:2388
4214
+ msgid "Affiliate Signup (AffiliateWP)"
4215
+ msgstr "アフィリエイト登録 (AffiliateWP)"
4216
+
4217
+ #: ../includes/mycred-functions.php:2389
4218
+ msgid "Referred Visit (AffiliateWP)"
4219
+ msgstr "招待訪問 (AffiliateWP)"
4220
+
4221
+ #: ../includes/mycred-functions.php:2390
4222
+ msgid "Affiliate Referral (AffiliateWP)"
4223
+ msgstr "アフィリエイト紹介 (AffiliateWP)"
4224
+
4225
+ #: ../includes/mycred-functions.php:2391
4226
+ msgid "Referral Refund (AffiliateWP)"
4227
+ msgstr "招待払い戻し (AffiliateWP)"
4228
+
4229
+ #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4230
+ #: php:150
4231
+ msgid "Adding a Rating"
4232
+ msgstr "評価の追加"
4233
+
4234
+ #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4235
+ #: php:169
4236
+ msgid "Receiving a Rating"
4237
+ msgstr "評価を受ける"
4238
+
4239
+ #: ../includes/mycred-functions.php:2400
4240
+ msgid "Poll Voting"
4241
+ msgstr "調査投票"
4242
+
4243
+ #: ../includes/mycred-functions.php:2403
4244
+ msgid "Sending an Invite"
4245
+ msgstr "招待を送信"
4246
+
4247
+ #: ../includes/mycred-functions.php:2404
4248
+ msgid "Accepting an Invite"
4249
+ msgstr "招待を受け入れる"
4250
+
4251
+ #: ../includes/mycred-functions.php:2410
4252
+ msgid "Banking Payout"
4253
+ msgstr "銀行のお支払い"
4254
+
4255
+ #: ../includes/mycred-functions.php:2413
4256
+ msgid "buyCRED Purchase (PayPal Standard)"
4257
+ msgstr "buyCRED 購入 (PayPal 標準)"
4258
+
4259
+ #: ../includes/mycred-functions.php:2414
4260
+ msgid "buyCRED Purchase (Skrill)"
4261
+ msgstr "buyCRED 購入 (Skrill)"
4262
+
4263
+ #: ../includes/mycred-functions.php:2415
4264
+ msgid "buyCRED Purchase (Zombaio)"
4265
+ msgstr "buyCRED 購入 (Zombaio)"
4266
+
4267
+ #: ../includes/mycred-functions.php:2416
4268
+ msgid "buyCRED Purchase (NETBilling)"
4269
+ msgstr "buyCRED 購入 (NETBilling)"
4270
+
4271
+ #: ../includes/mycred-functions.php:2417
4272
+ msgid "buyCRED Purchase (BitPay)"
4273
+ msgstr "buyCRED 購入 (BitPay)"
4274
+
4275
+ #: ../includes/mycred-functions.php:2422
4276
+ msgid "Coupon Purchase"
4277
+ msgstr "クーポン購入"
4278
+
4279
+ #: ../includes/mycred-functions.php:2426
4280
+ msgid "Store Purchase (WooCommerce)"
4281
+ msgstr "ストア購入 (WooCommerce)"
4282
+
4283
+ #: ../includes/mycred-functions.php:2427
4284
+ msgid "Store Reward (WooCommerce)"
4285
+ msgstr "特典ストア (WooCommerce)"
4286
+
4287
+ #: ../includes/mycred-functions.php:2428
4288
+ msgid "Product Review (WooCommerce)"
4289
+ msgstr "商品レビュー (WooCommerce)"
4290
+
4291
+ #: ../includes/mycred-functions.php:2431
4292
+ msgid "Store Purchase (MarketPress)"
4293
+ msgstr "ストア購入 (MarketPress)"
4294
+
4295
+ #: ../includes/mycred-functions.php:2432
4296
+ msgid "Store Reward (MarketPress)"
4297
+ msgstr "ストア報酬(MarketPress)"
4298
+
4299
+ #: ../includes/mycred-functions.php:2435
4300
+ msgid "Store Purchase (WP E-Commerce)"
4301
+ msgstr "ストア購入(WOOCommerce)"
4302
+
4303
+ #: ../includes/mycred-functions.php:2441
4304
+ msgid "Event Payment (Event Espresso)"
4305
+ msgstr "イベント支払い(イベントエスプレッソ)"
4306
+
4307
+ #: ../includes/mycred-functions.php:2442
4308
+ msgid "Event Sale (Event Espresso)"
4309
+ msgstr "イベントセール(イベントエスプレッソ)"
4310
+
4311
+ #: ../includes/mycred-functions.php:2446
4312
+ msgid "Event Payment (Events Manager)"
4313
+ msgstr "イベント支払い(イベントマネージャ)"
4314
+
4315
+ #: ../includes/mycred-functions.php:2447
4316
+ msgid "Event Sale (Events Manager)"
4317
+ msgstr "イベント販売(イベントマネージャ)"
4318
+
4319
+ #: ../includes/mycred-functions.php:2451
4320
+ msgid "Content Purchase / Sale"
4321
+ msgstr "コンテンツ購入 / 販売"
4322
+
4323
+ #: ../includes/mycred-functions.php:2458
4324
+ msgid "Manual Adjustment by Admin"
4325
+ msgstr "管理者による手動調整"
4326
+
4327
+ #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4328
+ msgid "Point types not found."
4329
+ msgstr "小数点タイプが見つかりません。"
4330
+
4331
+ #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4332
+ #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4333
+ #, php-format
4334
+ msgid "You are excluded from using %s."
4335
+ msgstr "あなたは %s の使用から除外されている。"
4336
+
4337
+ #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4338
+ msgid "Your balance is too low to use this feature."
4339
+ msgstr "あなたの残高はこの機能を使用するには不足している。"
4340
+
4341
+ #: ../includes/mycred-functions.php:2573
4342
+ #, php-format
4343
+ msgid "You must exchange at least %s!"
4344
+ msgstr "あなたは少なくとも %s で交換する必要があります!"
4345
+
4346
+ #: ../includes/mycred-functions.php:2595
4347
+ #, php-format
4348
+ msgid "Exchange from %s"
4349
+ msgstr "%s から取引"
4350
+
4351
+ #: ../includes/mycred-functions.php:2607
4352
+ #, php-format
4353
+ msgid "Exchange to %s"
4354
+ msgstr "%s で取引"
4355
+
4356
+ #: ../includes/mycred-functions.php:2615
4357
+ #, php-format
4358
+ msgid "You have successfully exchanged %s into %s."
4359
+ msgstr "%s は %s に正常に交換しています。"
4360
+
4361
+ #: ../includes/mycred-functions.php:2647
4362
+ msgid "per day"
4363
+ msgstr "1 日あたり"
4364
+
4365
+ #: ../includes/mycred-functions.php:2649
4366
+ msgid "per week"
4367
+ msgstr "1週あたり"
4368
+
4369
+ #: ../includes/mycred-functions.php:2651
4370
+ msgid "per month"
4371
+ msgstr "1月あたり"
4372
+
4373
+ #: ../includes/mycred-functions.php:2653
4374
+ msgid "in total"
4375
+ msgstr "合計"
4376
+
4377
+ #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4378
+ #, php-format
4379
+ msgid "Maximum once"
4380
+ msgid_plural "Maximum %d times"
4381
+ msgstr[0] "最大回"
4382
+ msgstr[1] "最大 %d 時間"
4383
+
4384
+ #: ../includes/mycred-importer.php:11
4385
+ #, php-format
4386
+ msgid "%s Log Import"
4387
+ msgstr "%s のログのインポート"
4388
+
4389
+ #: ../includes/mycred-importer.php:12
4390
+ msgid "Import log entries via a CSV file."
4391
+ msgstr "CSVファイル経由でログエントリをインポート。"
4392
+
4393
+ #: ../includes/mycred-importer.php:43
4394
+ #, php-format
4395
+ msgid "%s Balance Import"
4396
+ msgstr "%s 残高のインポート"
4397
+
4398
+ #: ../includes/mycred-importer.php:44
4399
+ msgid "Import balances."
4400
+ msgstr "残高インポート"
4401
+
4402
+ #: ../includes/mycred-importer.php:75
4403
+ #, php-format
4404
+ msgid "%s CubePoints Import"
4405
+ msgstr "%s CubePointsインポート"
4406
+
4407
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
4408
+ #: 344
4409
+ msgid "Import CubePoints log entries and / or balances."
4410
+ msgstr "CubePointsのログ履歴か / もしくは残高をインポート"
4411
+
4412
+ #: ../includes/mycred-importer.php:92
4413
+ msgid "No CubePoints log exists."
4414
+ msgstr "CubePointsログは存在しません。"
4415
+
4416
+ #: ../includes/mycred-install.php:39
4417
+ msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
4418
+ msgstr "myCREDはWordPressの3.8以降が必要です。バージョンが検出:"
4419
+
4420
+ #: ../includes/mycred-install.php:44
4421
+ msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4422
+ msgstr "myCREDは、PHP5.2.4以降が必要です。バージョンが検出されました:"
4423
+
4424
+ #: ../includes/mycred-install.php:49
4425
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4426
+ msgstr "myCREDは、SQL5.0以降が必要です。バージョンが検出されました:"
4427
+
4428
+ #: ../includes/mycred-install.php:54
4429
+ msgid ""
4430
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4431
+ "check your PHP configuration or contact your host and ask them to enable it "
4432
+ "for you!"
4433
+ msgstr ""
4434
+ "Mcrypt PHP ライブラリは、このプラグインを使用するために有効にする必要があります !PHP "
4435
+ "の設定をあなたのホストに連絡しあなたのためを有効にするように確認し依頼てください!"
4436
+
4437
+ #: ../includes/mycred-install.php:59
4438
+ msgid ""
4439
+ "Sorry but your WordPress installation does not reach the minimum "
4440
+ "requirements for running myCRED. The following errors were given:"
4441
+ msgstr ""
4442
+ "Mcrypt PHP ライブラリは、このプラグインを使用するために有効にする必要があります !ください、PHP "
4443
+ "の設定を確認してくださいまたはあなたのホストに連絡し、あなたのためを有効にするように依頼 !"
4444
+
4445
+ #: ../includes/mycred-install.php:268
4446
+ msgid "myCRED needs your attention."
4447
+ msgstr "myCRED はあなたの注意が必要です。"
4448
+
4449
+ #: ../includes/mycred-install.php:268
4450
+ msgid "Run Setup"
4451
+ msgstr "セットアップを実行"
4452
+
4453
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4454
+ msgid "myCRED Setup"
4455
+ msgstr "myCREDセットアップ"
4456
+
4457
+ #: ../includes/mycred-install.php:410
4458
+ #, php-format
4459
+ msgid "%s Setup"
4460
+ msgstr "%s セットアップ"
4461
+
4462
+ #: ../includes/mycred-install.php:412
4463
+ msgid "Step"
4464
+ msgstr "ステップ"
4465
+
4466
+ #: ../includes/mycred-install.php:436
4467
+ msgid ""
4468
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4469
+ "points format, layout and security settings."
4470
+ msgstr ""
4471
+ "myCREDをインストールするには\"セットアップを開始\" "
4472
+ "をクリックします。あなたは、あなたのポイント形式、レイアウトおよびセキュリティ設定を選択することができます。"
4473
+
4474
+ #: ../includes/mycred-install.php:437
4475
+ msgid "Begin Setup"
4476
+ msgstr "セットアップを開始"
4477
+
4478
+ #: ../includes/mycred-install.php:492
4479
+ msgid "Select the format you want to use for your points."
4480
+ msgstr "あなたがあなたのポイントに使用するフォーマットを選択します。"
4481
+
4482
+ #: ../includes/mycred-install.php:493
4483
+ msgid "Format"
4484
+ msgstr "フォーマット"
4485
+
4486
+ #: ../includes/mycred-install.php:496
4487
+ msgid "Separators"
4488
+ msgstr "区切り"
4489
+
4490
+ #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4491
+ msgid "Decimals"
4492
+ msgstr "小数"
4493
+
4494
+ #: ../includes/mycred-install.php:508
4495
+ msgid "Use zero for no decimals or maximum 20."
4496
+ msgstr "小数部分なしまたは最大 20 のゼロを使用します。"
4497
+
4498
+ #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4499
+ msgid "Presentation"
4500
+ msgstr "プレゼンテーション"
4501
+
4502
+ #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4503
+ msgid "Name (Singular)"
4504
+ msgstr "名前(単数)"
4505
+
4506
+ #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4507
+ msgid "Name (Plural)"
4508
+ msgstr "名前(複数)"
4509
+
4510
+ #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4511
+ msgid "Prefix"
4512
+ msgstr "前に"
4513
+
4514
+ #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4515
+ msgid "Suffix"
4516
+ msgstr "後ろに"
4517
+
4518
+ #: ../includes/mycred-install.php:536
4519
+ msgid "Cancel Setup"
4520
+ msgstr "セットアップをキャンセル"
4521
+
4522
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4523
+ msgid "Next"
4524
+ msgstr "次へ"
4525
+
4526
+ #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4527
+ msgid "Security"
4528
+ msgstr "セキュリティ"
4529
+
4530
+ #: ../includes/mycred-install.php:571
4531
+ msgid "Edit Settings Capability"
4532
+ msgstr "設定の編集機能"
4533
+
4534
+ #: ../includes/mycred-install.php:575
4535
+ msgid "Edit Users %plural% Capability"
4536
+ msgstr "ユーザーの %plural% の機能を編集します。"
4537
+
4538
+ #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4539
+ msgid "Maximum %plural% payouts"
4540
+ msgstr "最大 %plural% 支出額"
4541
+
4542
+ #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4543
+ msgid ""
4544
+ "As an added security, you can set the maximum amount a user can gain or "
4545
+ "loose in a single instance. If used, make sure this is the maximum amount a "
4546
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
4547
+ "disable."
4548
+ msgstr ""
4549
+ "追加のセキュリティとして 1 "
4550
+ "つのインスタンスで、ユーザーが得ることができるまたは余裕のあるの最大量を設定できます。使用する場合、これでユーザーが転送、購入、またはお店で使用することが"
4551
+ "できる最大の量を設定することができます。無効の場合はゼロにしてください。"
4552
+
4553
+ #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4554
+ msgid "Excludes"
4555
+ msgstr "除外"
4556
+
4557
+ #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4558
+ msgid "Exclude those who can \"Edit Settings\"."
4559
+ msgstr "\"Edit Settings\" で除外する人を設定することができます"
4560
+
4561
+ #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4562
+ msgid "Exclude those who can \"Edit Users %plural%\"."
4563
+ msgstr "\"Edit Users %plural%\" で除外する人を複数設定することができます"
4564
+
4565
+ #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4566
+ msgid "Exclude the following user IDs:"
4567
+ msgstr "次のユーザーID を除外します。"
4568
+
4569
+ #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4570
+ msgid "User Deletions"
4571
+ msgstr "ユーザーの削除"
4572
+
4573
+ #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4574
+ msgid "Delete log entries when user is deleted."
4575
+ msgstr "ユーザーが削除されたときにログ履歴を削除します。"
4576
+
4577
+ #: ../includes/mycred-install.php:624
4578
+ msgid "Ready"
4579
+ msgstr "準備完了"
4580
+
4581
+ #: ../includes/mycred-install.php:625
4582
+ msgid "Almost done! Click the button below to finish this setup."
4583
+ msgstr "ほぼ完了!このセットアップを完了するには以下のボタンをクリックしてください。"
4584
+
4585
+ #: ../includes/mycred-install.php:626
4586
+ msgid "Install & Run"
4587
+ msgstr "インストール&実行"
4588
+
4589
+ #: ../includes/mycred-log.php:485
4590
+ #, php-format
4591
+ msgid "Showing %d %s"
4592
+ msgstr "%d %s の表示"
4593
+
4594
+ #: ../includes/mycred-log.php:485
4595
+ msgid "entry"
4596
+ msgstr "履歴"
4597
+
4598
+ #: ../includes/mycred-log.php:500
4599
+ msgid "Go to the first page"
4600
+ msgstr "最初のページに戻る"
4601
+
4602
+ #: ../includes/mycred-log.php:507
4603
+ msgid "Go to the previous page"
4604
+ msgstr "前のページに戻る"
4605
+
4606
+ #: ../includes/mycred-log.php:517
4607
+ msgid "Current page"
4608
+ msgstr "現在ページ"
4609
+
4610
+ #: ../includes/mycred-log.php:523
4611
+ #, php-format
4612
+ msgctxt "mycred"
4613
+ msgid "%1$s of %2$s"
4614
+ msgstr "%1$s か %2$s"
4615
+
4616
+ #: ../includes/mycred-log.php:527
4617
+ msgid "Go to the next page"
4618
+ msgstr "次のページに進む"
4619
+
4620
+ #: ../includes/mycred-log.php:534
4621
+ msgid "Go to the last page"
4622
+ msgstr "最後のページに移動"
4623
+
4624
+ #: ../includes/mycred-log.php:611
4625
+ msgid "Show all references"
4626
+ msgstr "すべてのリファレンスを表示"
4627
+
4628
+ #: ../includes/mycred-log.php:628
4629
+ msgid "User ID, Username, Email or Nicename"
4630
+ msgstr ""
4631
+
4632
+ #: ../includes/mycred-log.php:636
4633
+ msgid "Show in order"
4634
+ msgstr "順番に表示"
4635
+
4636
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4637
+ msgid "Ascending"
4638
+ msgstr "昇順"
4639
+
4640
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4641
+ msgid "Descending"
4642
+ msgstr "降順"
4643
+
4644
+ #: ../includes/mycred-log.php:658
4645
+ msgid "Filter"
4646
+ msgstr "フィルター"
4647
+
4648
+ #: ../includes/mycred-log.php:718
4649
+ msgid ""
4650
+ "Log entries are exported to a CSV file and depending on the number of "
4651
+ "entries selected, the process may take a few seconds."
4652
+ msgstr "ログ履歴はCSVファイルにエクスポートされ選択されたエントリの数に応じて処理には数秒かかる場合があります。"
4653
+
4654
+ #: ../includes/mycred-log.php:725
4655
+ msgid "No export options available."
4656
+ msgstr "いいえエクスポートのオプションを使用できません。"
4657
+
4658
+ #: ../includes/mycred-log.php:758
4659
+ msgid "Entry"
4660
+ msgstr "エントリー"
4661
+
4662
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4663
+ msgid "User Missing"
4664
+ msgstr "ユーザーは見つからない"
4665
+
4666
+ #: ../includes/mycred-log.php:958
4667
+ msgid "No log entries found"
4668
+ msgstr "いいえログ履歴が見つかりませんでした"
4669
+
4670
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4671
+ msgid "Search Log"
4672
+ msgstr "ログ検索"
4673
+
4674
+ #: ../includes/mycred-log.php:977
4675
+ msgid "search log entries"
4676
+ msgstr "ログ履歴を検索"
4677
+
4678
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4679
+ #: modules/mycred-module-buddypress.php:249
4680
+ msgid "All"
4681
+ msgstr "すべて"
4682
+
4683
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4684
+ msgid "Yesterday"
4685
+ msgstr "昨日"
4686
+
4687
+ #: ../includes/mycred-network.php:59 ../includes/mycred-network.php:60
4688
+ msgid "Network Settings"
4689
+ msgstr "ネットワーク設定"
4690
+
4691
+ #: ../includes/mycred-network.php:134
4692
+ #, php-format
4693
+ msgid "%s Network"
4694
+ msgstr "%s ネットワーク"
4695
+
4696
+ #: ../includes/mycred-network.php:140
4697
+ #, php-format
4698
+ msgid "Note! %s has not yet been setup."
4699
+ msgstr "注意!%s がセットアップをまだされていません。"
4700
+
4701
+ #: ../includes/mycred-network.php:144
4702
+ msgid "Network Settings Updated"
4703
+ msgstr "ネットワーク設定の更新"
4704
+
4705
+ #: ../includes/mycred-network.php:146
4706
+ #, php-format
4707
+ msgid "Configure network settings for %s."
4708
+ msgstr "%s のネットワーク設定を構成します。"
4709
+
4710
+ #: ../includes/mycred-network.php:153
4711
+ msgid "Master Template"
4712
+ msgstr "マスター テンプレート"
4713
+
4714
+ #: ../includes/mycred-network.php:164
4715
+ #, php-format
4716
+ msgid ""
4717
+ "If enabled, %s will use your main site's settings for all other sites in "
4718
+ "your network."
4719
+ msgstr "有効な場合、%s はネットワーク内の他のすべてのサイトのメインサイトの設定を使用します。"
4720
+
4721
+ #: ../includes/mycred-network.php:167
4722
+ msgid "Central Logging"
4723
+ msgstr "集中ログ記録"
4724
+
4725
+ #: ../includes/mycred-network.php:178
4726
+ #, php-format
4727
+ msgid "If enabled, %s will log all site actions in your main site's log."
4728
+ msgstr "有効な場合、 %s はメインサイトのログはすべてのサイトの操作を記録します。"
4729
+
4730
+ #: ../includes/mycred-network.php:181
4731
+ msgid "Site Block"
4732
+ msgstr "サイトのブロック"
4733
+
4734
+ #: ../includes/mycred-network.php:185
4735
+ #, php-format
4736
+ msgid "Comma separated list of blog ids where %s is to be disabled."
4737
+ msgstr "コンマで区切った一覧のブログIDで %s が無効になります。"
4738
+
4739
+ #: ../includes/mycred-network.php:194
4740
+ msgid "Save Network Settings"
4741
+ msgstr "ネットワーク設定を保存します。"
4742
+
4743
+ #: ../includes/mycred-overview.php:25
4744
+ #, php-format
4745
+ msgid "%s Overview"
4746
+ msgstr "%s の概要"
4747
+
4748
+ #: ../includes/mycred-overview.php:81
4749
+ msgid "Awarded"
4750
+ msgstr "受賞"
4751
+
4752
+ #: ../includes/mycred-overview.php:84
4753
+ msgid "Deducted"
4754
+ msgstr "除外"
4755
+
4756
+ #: ../includes/mycred-overview.php:208
4757
+ msgid "Manual"
4758
+ msgstr "マニュアル"
4759
+
4760
+ #: ../includes/mycred-remote.php:523
4761
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4762
+ msgstr "この機能はワードプレスのパーマリンクを設定か有効にする必要があります!"
4763
+
4764
+ #: ../includes/mycred-remote.php:526
4765
+ msgid "Click Update Settings to load the Remote API settings."
4766
+ msgstr "リモート API 設定を読み込むときの更新の設定をクリックします。"
4767
+
4768
+ #: ../includes/mycred-remote.php:528
4769
+ msgid "Allow Remote Access"
4770
+ msgstr "リモート アクセスを許可します。"
4771
+
4772
+ #: ../includes/mycred-remote.php:549
4773
+ msgid "Remote Access"
4774
+ msgstr "リモート アクセス"
4775
+
4776
+ #: ../includes/mycred-remote.php:554
4777
+ msgid "Key"
4778
+ msgstr "キー"
4779
+
4780
+ #: ../includes/mycred-remote.php:555
4781
+ msgid "16, 24 or 32 characters"
4782
+ msgstr "16、24、または 32 文字"
4783
+
4784
+ #: ../includes/mycred-remote.php:556
4785
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
4786
+ msgstr "この機能を動作させるためには必須! <br /> 最低 12 文字。"
4787
+
4788
+ #: ../includes/mycred-remote.php:559
4789
+ msgid "Key Length"
4790
+ msgstr "キーの長さ"
4791
+
4792
+ #: ../includes/mycred-remote.php:564
4793
+ msgid "Generate New Key"
4794
+ msgstr "新しいキーを生成します。"
4795
+
4796
+ #: ../includes/mycred-remote.php:566
4797
+ msgid "Warning!"
4798
+ msgstr "警告 !"
4799
+
4800
+ #: ../includes/mycred-remote.php:566
4801
+ msgid ""
4802
+ "Keep this key safe! Those you share this key with will be able to remotely "
4803
+ "deduct / add / transfer %plural%!"
4804
+ msgstr "このキーを安全に保つ !このキーを共有する人々 がリモートで控除 / 追加 / が %plural% を転送することができる !"
4805
+
4806
+ #: ../includes/mycred-remote.php:568
4807
+ msgid "Incoming URI"
4808
+ msgstr "受信URI"
4809
+
4810
+ #: ../includes/mycred-remote.php:572
4811
+ msgid ""
4812
+ "The incoming call address. Remote calls made to any other URL will be "
4813
+ "ignored."
4814
+ msgstr "受信アドレス。他のどのURLに作らリモート呼び出しは無視されます。"
4815
+
4816
+ #: ../includes/mycred-remote.php:575
4817
+ msgid "Debug Mode"
4818
+ msgstr "デバッグモード"
4819
+
4820
+ #: ../includes/mycred-remote.php:578
4821
+ msgid ""
4822
+ "Remember to disable when not used to prevent mischievous calls from learning "
4823
+ "about your setup!"
4824
+ msgstr "あなたのセットアップについての学習からいたずらの呼び出しを防ぐために使用しないときには無効にすることを忘れないでください!"
4825
+
4826
+ #: ../includes/mycred-shortcodes.php:175
4827
+ msgid "Leaderboard is empty."
4828
+ msgstr "リーダーボードは空です。"
4829
+
4830
+ #: ../includes/mycred-shortcodes.php:525
4831
+ msgid "Anchor missing URL!"
4832
+ msgstr "不足しているURLをアンカー!"
4833
+
4834
+ #: ../includes/mycred-shortcodes.php:637
4835
+ msgid "Sent"
4836
+ msgstr "送信済み"
4837
+
4838
+ #: ../includes/mycred-shortcodes.php:638
4839
+ msgid "Error - Try Again"
4840
+ msgstr "エラー - 再試行"
4841
+
4842
+ #: ../includes/mycred-shortcodes.php:764
4843
+ msgid "A video ID is required for this shortcode"
4844
+ msgstr "動画IDはこのショートコードのために必要とされる"
4845
+
4846
+ #: ../includes/mycred-shortcodes.php:957
4847
+ #, php-format
4848
+ msgid "Convert <span>%s</span> to <span>%s</span>"
4849
+ msgstr "<span>%s</span>の<span>%s</span>へコンバート"
4850
+
4851
+ #: ../includes/mycred-shortcodes.php:966
4852
+ #, php-format
4853
+ msgid "Your current %s balance"
4854
+ msgstr "あなたの現在の %s の残高"
4855
+
4856
+ #: ../includes/mycred-shortcodes.php:974
4857
+ #, php-format
4858
+ msgid "Minimum %s"
4859
+ msgstr "最低 %s"
4860
+
4861
+ #: ../includes/mycred-shortcodes.php:978
4862
+ #, php-format
4863
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
4864
+ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
4865
+
4866
+ #: ../includes/mycred-shortcodes.php:984
4867
+ msgid "Exchange"
4868
+ msgstr "取引"
4869
+
4870
+ #: ../includes/mycred-shortcodes.php:1049
4871
+ msgid "No instances found for this point type"
4872
+ msgstr "インスタンスはこのポイントタイプにみつかりませんでした。"
4873
+
4874
+ #: ../includes/mycred-shortcodes.php:1053
4875
+ msgid "Invalid point type"
4876
+ msgstr "無効な小数点タイプ"
4877
+
4878
+ #: ../includes/mycred-shortcodes.php:1114
4879
+ msgid "Instance"
4880
+ msgstr "インスタンス"
4881
+
4882
+ #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
4883
+ #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
4884
+ #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
4885
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
4886
+ #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
4887
+ #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
4888
+ #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
4889
+ #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
4890
+ #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
4891
+ #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
4892
+ #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
4893
+ #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
4894
+ #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
4895
+ #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
4896
+ #: buddypress-media.php:209 ../plugins/mycred-hook-buddypress-media.php:223 ..
4897
+ #: plugins/mycred-hook-buddypress-media.php:237 ../plugins/mycred-hook-
4898
+ #: buddypress.php:490 ../plugins/mycred-hook-buddypress.php:507 ../plugins/mycred-
4899
+ #: hook-buddypress.php:524 ../plugins/mycred-hook-buddypress.php:541 ..
4900
+ #: plugins/mycred-hook-buddypress.php:574 ../plugins/mycred-hook-buddypress.php:
4901
+ #: 604 ../plugins/mycred-hook-buddypress.php:621 ../plugins/mycred-hook-
4902
+ #: buddypress.php:1193 ../plugins/mycred-hook-buddypress.php:1210 ..
4903
+ #: plugins/mycred-hook-buddypress.php:1227 ../plugins/mycred-hook-buddypress.php:
4904
+ #: 1244 ../plugins/mycred-hook-buddypress.php:1262 ../plugins/mycred-hook-
4905
+ #: buddypress.php:1292 ../plugins/mycred-hook-buddypress.php:1309 ..
4906
+ #: plugins/mycred-hook-contact-form7.php:147 ../plugins/mycred-hook-events-
4907
+ #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4908
+ #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4909
+ #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4910
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4911
+ #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4912
+ #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4913
+ #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
4914
+ #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
4915
+ #: postratings.php:175
4916
+ msgid "Limit"
4917
+ msgstr "制限"
4918
+
4919
+ #: ../includes/mycred-widgets.php:22
4920
+ #, php-format
4921
+ msgid "Show the current users %s balance"
4922
+ msgstr "%s の残高を現在のユーザーを表示します。"
4923
+
4924
+ #: ../includes/mycred-widgets.php:25
4925
+ #, php-format
4926
+ msgid "(%s) My Balance"
4927
+ msgstr "私の残高 (%s) "
4928
+
4929
+ #: ../includes/mycred-widgets.php:212
4930
+ msgid "Layout"
4931
+ msgstr "レイアウト"
4932
+
4933
+ #: ../includes/mycred-widgets.php:220
4934
+ msgid "Include history"
4935
+ msgstr "履歴を挿入"
4936
+
4937
+ #: ../includes/mycred-widgets.php:222
4938
+ msgid "History Title"
4939
+ msgstr "履歴タイトル"
4940
+
4941
+ #: ../includes/mycred-widgets.php:224
4942
+ msgid "Number of entires"
4943
+ msgstr "エントリの数"
4944
+
4945
+ #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:411
4946
+ msgid "Row layout"
4947
+ msgstr "行レイアウト"
4948
+
4949
+ #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:612
4950
+ msgid "Show message when not logged in"
4951
+ msgstr "ログインしていないときにメッセージを表示"
4952
+
4953
+ #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:613
4954
+ msgid "Message"
4955
+ msgstr "メッセージ"
4956
+
4957
+ #: ../includes/mycred-widgets.php:306
4958
+ #, php-format
4959
+ msgid "Show a list of users sorted by their %s balance"
4960
+ msgstr "%s の残高によってソートされたユーザーの一覧を表示します。"
4961
+
4962
+ #: ../includes/mycred-widgets.php:309
4963
+ #, php-format
4964
+ msgid "(%s) Leaderboard"
4965
+ msgstr "リーダーボード(%s) "
4966
+
4967
+ #: ../includes/mycred-widgets.php:398
4968
+ msgid "Based On"
4969
+ msgstr "準拠"
4970
+
4971
+ #: ../includes/mycred-widgets.php:400
4972
+ msgid ""
4973
+ "Use \"balance\" to base the leaderboard on your users current balances or use "
4974
+ "a specific reference."
4975
+ msgstr "ユーザーの現在の残高をリーダーボードをベース又は特定の参照を使用するように \"balance\" を使用してください。"
4976
+
4977
+ #: ../includes/mycred-widgets.php:400
4978
+ msgid "Reference Guide"
4979
+ msgstr "リファレンスガイド"
4980
+
4981
+ #: ../includes/mycred-widgets.php:405
4982
+ msgid "Visible to non-members"
4983
+ msgstr "非会員の可視"
4984
+
4985
+ #: ../includes/mycred-widgets.php:407
4986
+ msgid "Number of users"
4987
+ msgstr "ユーザー数"
4988
+
4989
+ #: ../includes/mycred-widgets.php:416
4990
+ msgid "Offset"
4991
+ msgstr "オフセット"
4992
+
4993
+ #: ../includes/mycred-widgets.php:418
4994
+ msgid "Optional offset of order. Use zero to return the first in the list."
4995
+ msgstr "命令のオフセット (オプション)。最初のリストに戻るゼロを使用します。"
4996
+
4997
+ #: ../includes/mycred-widgets.php:421
4998
+ msgid "Order"
4999
+ msgstr "順序"
5000
+
5001
+ #: ../includes/mycred-widgets.php:441
5002
+ msgid "Append current users position"
5003
+ msgstr "追加するユーザーの現在の位置"
5004
+
5005
+ #: ../includes/mycred-widgets.php:442
5006
+ msgid ""
5007
+ "If the current user is not in this leaderboard, you can select to append "
5008
+ "them at the end with their current position."
5009
+ msgstr "現在のユーザがこのリーダーボードにない場合、あなたはそれらの現在位置と終了時にそれらを追加することを選択することができます。"
5010
+
5011
+ #: ../includes/mycred-widgets.php:493
5012
+ msgid "Shows the current users balances for each point type."
5013
+ msgstr "各ポイントタイプの現在のユーザーが残高を表示します。"
5014
+
5015
+ #: ../includes/mycred-widgets.php:496
5016
+ #, php-format
5017
+ msgid "(%s) Wallet"
5018
+ msgstr "ウォレット(%s)"
5019
+
5020
+ #: ../includes/mycred-widgets.php:604
5021
+ msgid "Row Layout"
5022
+ msgstr "行レイアウト"
5023
+
5024
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
5025
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
5026
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
5027
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
5028
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
5029
+ #: log-entries.php:180
5030
+ msgid "Sorry, there has been an error."
5031
+ msgstr "申し訳ありませんが、エラーが発生しました。"
5032
+
5033
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
5034
+ #: entries.php:82
5035
+ msgid "The file does not exist, please try again."
5036
+ msgstr "ファイルが存在しない、もう一度試してください。"
5037
+
5038
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
5039
+ #: entries.php:127
5040
+ msgid "The CSV is invalid."
5041
+ msgstr "CSVは無効です。"
5042
+
5043
+ #: ../includes/importers/mycred-balances.php:171
5044
+ #, php-format
5045
+ msgid ""
5046
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
5047
+ "imported. <strong>%d</strong> was skipped."
5048
+ msgstr ""
5049
+ "完全なインポート - 合計<strong>%d</strong>の残高が正常にインポートされました。 "
5050
+ "<strong>%d</strong>件のスキップがありました。"
5051
+
5052
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
5053
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
5054
+ msgid "Import More"
5055
+ msgstr "インポート詳細"
5056
+
5057
+ #: ../includes/importers/mycred-balances.php:227
5058
+ msgid "Import Balances"
5059
+ msgstr "インポート残高"
5060
+
5061
+ #: ../includes/importers/mycred-balances.php:244
5062
+ msgid "Import balances from a CSV file."
5063
+ msgstr "CSVファイルからインポート残高。"
5064
+
5065
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
5066
+ #: entries.php:219
5067
+ msgid ""
5068
+ "Before you can upload your import file, you will need to fix the following "
5069
+ "error:"
5070
+ msgstr "あなたのインポートファイルをアップロードする前に、以下のエラーを修正する必要があります:"
5071
+
5072
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
5073
+ #: entries.php:228
5074
+ msgid "Choose a file from your computer:"
5075
+ msgstr "お使いのコンピュータからファイルを選択します。:"
5076
+
5077
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
5078
+ #: entries.php:234
5079
+ #, php-format
5080
+ msgid "Maximum size: %s"
5081
+ msgstr "最大サイズ:%s"
5082
+
5083
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
5084
+ #: entries.php:239
5085
+ msgid "OR enter path to file:"
5086
+ msgstr "またはファイルへのパスを入力します。:"
5087
+
5088
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
5089
+ #: entries.php:246
5090
+ msgid "Delimiter"
5091
+ msgstr "区切り文字"
5092
+
5093
+ #: ../includes/importers/mycred-balances.php:283
5094
+ msgid "Method"
5095
+ msgstr "メソッド"
5096
+
5097
+ #: ../includes/importers/mycred-balances.php:285
5098
+ msgid "Replace current balances with the amount in this CSV file"
5099
+ msgstr "このCSVファイルに量と現在の残高を交換してください"
5100
+
5101
+ #: ../includes/importers/mycred-balances.php:286
5102
+ msgid "Adjust current balances according to the amount in this CSV file"
5103
+ msgstr "このCSVファイルの量に応じて、現在の残高を調整します"
5104
+
5105
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
5106
+ #: entries.php:252
5107
+ msgid "Upload file and import"
5108
+ msgstr "ファイルとインポートをアップロード"
5109
+
5110
+ #: ../includes/importers/mycred-cubepoints.php:276
5111
+ msgid "No balances were imported."
5112
+ msgstr "残高はインポートされませんでした。"
5113
+
5114
+ #: ../includes/importers/mycred-cubepoints.php:276
5115
+ msgid "No log entries were imported!"
5116
+ msgstr "ログ履歴はインポートされませんでした!"
5117
+
5118
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
5119
+ #: log-entries.php:138
5120
+ #, php-format
5121
+ msgid ""
5122
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
5123
+ "imported. <strong>%d</strong> was skipped."
5124
+ msgstr ""
5125
+ "完全なインポート - "
5126
+ "<strong>%d</strong>の合計の履歴が正常にインポートされた。<strong>%d</strong>件がスキップされました。"
5127
+
5128
+ #: ../includes/importers/mycred-cubepoints.php:306
5129
+ msgid "No CubePoints log."
5130
+ msgstr "CubePointsはログインしていない。"
5131
+
5132
+ #: ../includes/importers/mycred-cubepoints.php:317
5133
+ msgid "Import CubePoints Log"
5134
+ msgstr "CubePointsログインインポート"
5135
+
5136
+ #: ../includes/importers/mycred-cubepoints.php:334
5137
+ msgid "Select what to import"
5138
+ msgstr "何かインポートするために選択"
5139
+
5140
+ #: ../includes/importers/mycred-cubepoints.php:335
5141
+ msgid "Log Entries Only"
5142
+ msgstr "ログエントリのみ"
5143
+
5144
+ #: ../includes/importers/mycred-cubepoints.php:336
5145
+ msgid "CubePoints Balances Only"
5146
+ msgstr "CubePoints残高のみ"
5147
+
5148
+ #: ../includes/importers/mycred-cubepoints.php:337
5149
+ msgid "Log Entries and Balances"
5150
+ msgstr "ログ履歴および残高"
5151
+
5152
+ #: ../includes/importers/mycred-cubepoints.php:351
5153
+ msgid "Import"
5154
+ msgstr "インポート"
5155
+
5156
+ #: ../includes/importers/mycred-cubepoints.php:360
5157
+ msgid ""
5158
+ "Warning! Importing CubePoints balances will replace your users myCRED "
5159
+ "balance!"
5160
+ msgstr "警告!CubePoints残高をインポートすると、ユーザーは残高をmyCRED用に交換いたします!"
5161
+
5162
+ #: ../includes/importers/mycred-cubepoints.php:378
5163
+ msgid "Import Log"
5164
+ msgstr "インポートログ"
5165
+
5166
+ #: ../includes/importers/mycred-log-entries.php:194
5167
+ msgid "Import Log Entries"
5168
+ msgstr "インポートログ履歴"
5169
+
5170
+ #: ../includes/importers/mycred-log-entries.php:211
5171
+ msgid "Import log entries from a CSV file."
5172
+ msgstr "CSVファイルからインポートログ履歴。"
5173
+
5174
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5175
+ msgid "Add-ons"
5176
+ msgstr "アドオン"
5177
+
5178
+ #: ../modules/mycred-module-addons.php:160
5179
+ msgid "Give your users badges based on their interaction with your website."
5180
+ msgstr "あなたのウェブサイトとの相互作用に基づいて、ユーザーのバッジを与えます。"
5181
+
5182
+ #: ../modules/mycred-module-addons.php:171
5183
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
5184
+ msgstr "支払いまたはオファーを繰り返しセットアップ / ユーザーアカウント残高の利息をチャージ。"
5185
+
5186
+ #: ../modules/mycred-module-addons.php:182
5187
+ msgid ""
5188
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5189
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5190
+ "also let your users buy points for other members."
5191
+ msgstr ""
5192
+ "<strong>購入</strong>CREDアドオン PayPal、Skrill (マネーブッカーズ) または NETbilling "
5193
+ "を使用してポイントを購入するユーザーことができます。<strong>購入</strong>CREDまた他のメンバーのためのポイントを購入するユーザーをさせ"
5194
+ "ることができます。"
5195
+
5196
+ #: ../modules/mycred-module-addons.php:193
5197
+ msgid ""
5198
+ "The coupons add-on allows you to create coupons that users can use to add "
5199
+ "points to their accounts."
5200
+ msgstr "クーポンアドオンでは、ユーザーが自分のアカウントにポイントを追加する使用できるクーポンを作成することができます。"
5201
+
5202
+ #: ../modules/mycred-module-addons.php:204
5203
+ msgid "Create email notices for any type of myCRED instance."
5204
+ msgstr "myCREDインスタンスの任意のタイプのメール通知を作成します。"
5205
+
5206
+ #: ../modules/mycred-module-addons.php:215
5207
+ msgid ""
5208
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
5209
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5210
+ "Bookings: Event Espresso and Events Manager (free & pro)."
5211
+ msgstr ""
5212
+ "ユーザーは<strong>my</strong>CREDポイント残高を使用して支払うことができます。サポートされているカートは: "
5213
+ "WooCommerce、MarketPress、WP E-コマース、サポートされているイベントの予約: イベントエスプレッソ、イベントマネージャー "
5214
+ "(無料 & プロ)。"
5215
+
5216
+ #: ../modules/mycred-module-addons.php:226
5217
+ msgid "Create pop-up notifications for when users gain or loose points."
5218
+ msgstr "ユーザーのポイントの獲得や消失をポップアップ通知を作成します。"
5219
+
5220
+ #: ../modules/mycred-module-addons.php:238
5221
+ msgid ""
5222
+ "Create ranks for users reaching a certain number of %_plural% with the "
5223
+ "option to add logos for each rank."
5224
+ msgstr "各ランクのロゴを追加するオプションで %_plural% 数に到達したユーザーのためのランクを作成します。"
5225
+
5226
+ #: ../modules/mycred-module-addons.php:249
5227
+ msgid ""
5228
+ "This add-on allows you to sell posts, pages or any public post types on your "
5229
+ "website. You can either sell the entire content or using our shortcode, sell "
5230
+ "parts of your content allowing you to offer \"teasers\"."
5231
+ msgstr ""
5232
+ "このアドオンは、投稿、ページまたはあなたのウェブサイト上の公開の投稿タイプを販売することができます。あなたが全体のコンテンツを販売または "
5233
+ "\"teasers\" を提供できるように、コンテンツの一部を販売私たちのショート コードを使用することができます\"。"
5234
+
5235
+ #: ../modules/mycred-module-addons.php:260
5236
+ msgid ""
5237
+ "Gives you access to your myCRED Staticstics based on your users gains and "
5238
+ "loses."
5239
+ msgstr "あなたはユーザーの損益と消失に基づいてmyCRED統計にアクセスすることができます。"
5240
+
5241
+ #: ../modules/mycred-module-addons.php:271
5242
+ msgid ""
5243
+ "Allow your users to send or \"donate\" points to other members by either using "
5244
+ "the mycred_transfer shortcode or the myCRED Transfer widget."
5245
+ msgstr ""
5246
+ "あなたのユーザーが送信することを許可するか、 mycred_transfer ショートコードまたは myCRED転送ウィジェットを使用して他のメンバーへ "
5247
+ "\"donate\" できます。"
5248
+
5249
+ #: ../modules/mycred-module-addons.php:313
5250
+ #, php-format
5251
+ msgid "%s Add-ons"
5252
+ msgstr "%s アドオン"
5253
+
5254
+ #: ../modules/mycred-module-addons.php:320
5255
+ msgid "Add-on Activated"
5256
+ msgstr "アドオンの有効化"
5257
+
5258
+ #: ../modules/mycred-module-addons.php:323
5259
+ msgid "Add-on Deactivated"
5260
+ msgstr "アドオンの無効化"
5261
+
5262
+ #: ../modules/mycred-module-addons.php:328
5263
+ msgid "Add-ons Reloaded"
5264
+ msgstr ""
5265
+
5266
+ #: ../modules/mycred-module-addons.php:331
5267
+ msgid "Add-ons can expand your current installation with further features."
5268
+ msgstr "アドオンは現在のインストールの詳細な機能を拡張できます。"
5269
+
5270
+ #: ../modules/mycred-module-addons.php:358
5271
+ msgid "Reload Add-ons"
5272
+ msgstr ""
5273
+
5274
+ #: ../modules/mycred-module-addons.php:359
5275
+ #, php-format
5276
+ msgid "You can find more add-ons in our %s."
5277
+ msgstr "私たちの %s の他のアドオンを検索できます。"
5278
+
5279
+ #: ../modules/mycred-module-addons.php:359
5280
+ msgid "online store"
5281
+ msgstr "オンラインストア"
5282
+
5283
+ #: ../modules/mycred-module-addons.php:382
5284
+ msgid "Deactivate Add-on"
5285
+ msgstr "アドオンを無効化します。"
5286
+
5287
+ #: ../modules/mycred-module-addons.php:383
5288
+ msgid "Deactivate"
5289
+ msgstr "非アクティブ化"
5290
+
5291
+ #: ../modules/mycred-module-addons.php:390
5292
+ msgid "Activate Add-on"
5293
+ msgstr "アドオンを有効にします。"
5294
+
5295
+ #: ../modules/mycred-module-addons.php:391
5296
+ msgid "Activate"
5297
+ msgstr "アクティブ化"
5298
+
5299
+ #: ../modules/mycred-module-addons.php:409
5300
+ msgid "Version"
5301
+ msgstr "バージョン"
5302
+
5303
+ #: ../modules/mycred-module-addons.php:413
5304
+ msgid "By"
5305
+ msgstr " "
5306
+
5307
+ #: ../modules/mycred-module-addons.php:417
5308
+ msgid "About"
5309
+ msgstr "アバウト"
5310
+
5311
+ #: ../modules/mycred-module-addons.php:421
5312
+ msgid "Get Pro"
5313
+ msgstr "Proになる"
5314
+
5315
+ #: ../modules/mycred-module-buddypress.php:31
5316
+ msgid "My History"
5317
+ msgstr "My History"
5318
+
5319
+ #: ../modules/mycred-module-buddypress.php:32
5320
+ #, php-format
5321
+ msgid "%s's History"
5322
+ msgstr "%s の履歴"
5323
+
5324
+ #: ../modules/mycred-module-buddypress.php:131
5325
+ msgid "Current balance"
5326
+ msgstr "現在の残高"
5327
+
5328
+ #: ../modules/mycred-module-buddypress.php:362
5329
+ msgid "Go"
5330
+ msgstr "行く"
5331
+
5332
+ #: ../modules/mycred-module-buddypress.php:425
5333
+ msgid "Show in Profile"
5334
+ msgstr "プロフィールを表示します。"
5335
+
5336
+ #: ../modules/mycred-module-buddypress.php:442
5337
+ #, php-format
5338
+ msgid "%singular% Balance"
5339
+ msgstr "%singular% 残高"
5340
+
5341
+ #: ../modules/mycred-module-buddypress.php:459
5342
+ #, php-format
5343
+ msgid "Members and visitors can other members %_singular% balance."
5344
+ msgstr "メンバーとビジターを他メンバーへ %_singular% 残高にすることができます。"
5345
+
5346
+ #: ../modules/mycred-module-buddypress.php:469
5347
+ msgid "%plural% History"
5348
+ msgstr "%plural% 履歴"
5349
+
5350
+ #: ../modules/mycred-module-buddypress.php:486
5351
+ msgid "Members can view each others %_plural% history."
5352
+ msgstr "メンバーはお互いの %_plural% の履歴を表示することができます。"
5353
+
5354
+ #: ../modules/mycred-module-buddypress.php:491
5355
+ msgid "Menu Title"
5356
+ msgstr "メニュータイトル"
5357
+
5358
+ #: ../modules/mycred-module-buddypress.php:493
5359
+ msgid "Title shown to me"
5360
+ msgstr "私に表示されるタイトル"
5361
+
5362
+ #: ../modules/mycred-module-buddypress.php:498
5363
+ #, php-format
5364
+ msgid "Title shown to others. Use %s to show the first name."
5365
+ msgstr "他の人に表示されるタイトル。最初の名前を表示するには %s を使用します。"
5366
+
5367
+ #: ../modules/mycred-module-buddypress.php:503
5368
+ msgid "Menu Position"
5369
+ msgstr "メニューの位置"
5370
+
5371
+ #: ../modules/mycred-module-buddypress.php:505
5372
+ msgid "Current menu positions:"
5373
+ msgstr "現在のメニューの位置:"
5374
+
5375
+ #: ../modules/mycred-module-buddypress.php:510
5376
+ msgid "History URL slug"
5377
+ msgstr "履歴のURLスラッグ"
5378
+
5379
+ #: ../modules/mycred-module-buddypress.php:512
5380
+ msgid "Do not use empty spaces!"
5381
+ msgstr "空のスペースを使用しないでください !"
5382
+
5383
+ #: ../modules/mycred-module-buddypress.php:517
5384
+ msgid "Number of history entries to show"
5385
+ msgstr "表示する履歴エントリの数"
5386
+
5387
+ #: ../modules/mycred-module-hooks.php:107
5388
+ #, php-format
5389
+ msgid "%plural% for registrations"
5390
+ msgstr "登録で獲得する %plural% 賞を獲得する"
5391
+
5392
+ #: ../modules/mycred-module-hooks.php:108
5393
+ #, php-format
5394
+ msgid "Award %_plural% for users joining your website."
5395
+ msgstr "サイトにユーザーそてい参加する %_plural%"
5396
+
5397
+ #: ../modules/mycred-module-hooks.php:114
5398
+ #, php-format
5399
+ msgid "%plural% for daily visits"
5400
+ msgstr "毎日の訪問のため %plural%"
5401
+
5402
+ #: ../modules/mycred-module-hooks.php:115
5403
+ #, php-format
5404
+ msgid "Award %_plural% for users visiting your website on a daily basis."
5405
+ msgstr "日常的にサイトを訪問するユーザーのための %_plural% 賞を獲得する"
5406
+
5407
+ #: ../modules/mycred-module-hooks.php:121
5408
+ #, php-format
5409
+ msgid "%plural% for viewing content"
5410
+ msgstr "コンテンツ閲覧のための %plural%"
5411
+
5412
+ #: ../modules/mycred-module-hooks.php:122
5413
+ msgid ""
5414
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
5415
+ "authors for members viewing their content."
5416
+ msgstr "投稿を表示してユーザーが獲得する %_plural% 賞を獲得する および / またはメンバーがコンテンツを表示するとその著者に %plural%"
5417
+
5418
+ #: ../modules/mycred-module-hooks.php:128
5419
+ #, php-format
5420
+ msgid "%plural% for logins"
5421
+ msgstr "ログインすると %plural%"
5422
+
5423
+ #: ../modules/mycred-module-hooks.php:129
5424
+ #, php-format
5425
+ msgid ""
5426
+ "Award %_plural% for logging in to your website. You can also set an optional "
5427
+ "limit."
5428
+ msgstr "あなたのウェブサイトにログインするための %_plural% 賞を獲得する。また、オプションの制限を設定することができます。"
5429
+
5430
+ #: ../modules/mycred-module-hooks.php:135
5431
+ #, php-format
5432
+ msgid "%plural% for publishing content"
5433
+ msgstr "公開コンテンツすると %plural%"
5434
+
5435
+ #: ../modules/mycred-module-hooks.php:136
5436
+ #, php-format
5437
+ msgid ""
5438
+ "Award %_plural% for publishing content on your website. If your custom post "
5439
+ "type is not shown bellow, make sure it is set to \"Public\"."
5440
+ msgstr ""
5441
+ "あなたのウェブサイト上のコンテンツを公開するための %_plural% 賞。カスタムポストタイプは以下に表示されない場合にそれは \"Public\" "
5442
+ "をに設定されていることを確認してください。"
5443
+
5444
+ #: ../modules/mycred-module-hooks.php:142
5445
+ #, php-format
5446
+ msgid "%plural% for comments"
5447
+ msgstr "コメントすると %plural%"
5448
+
5449
+ #: ../modules/mycred-module-hooks.php:142
5450
+ #, php-format
5451
+ msgid "%plural% for Disqus comments"
5452
+ msgstr "Disqusコメントをすると %plural%"
5453
+
5454
+ #: ../modules/mycred-module-hooks.php:143
5455
+ #, php-format
5456
+ msgid "Award %_plural% for making comments."
5457
+ msgstr "コメントを行うため %_plural% 賞を獲得する"
5458
+
5459
+ #: ../modules/mycred-module-hooks.php:149
5460
+ #, php-format
5461
+ msgid "%plural% for clicking on links"
5462
+ msgstr "リンクをクリックするための %plural%"
5463
+
5464
+ #: ../modules/mycred-module-hooks.php:150
5465
+ msgid ""
5466
+ "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5467
+ "shortcode."
5468
+ msgstr "[mycred_link] ショートコードによって生成されたリンクをクリックしたユーザーは、 %_plural% 賞を獲得する。"
5469
+
5470
+ #: ../modules/mycred-module-hooks.php:156
5471
+ #, php-format
5472
+ msgid "%plural% for viewing Videos"
5473
+ msgstr "ビデオを見るときに使用する %plural%"
5474
+
5475
+ #: ../modules/mycred-module-hooks.php:157
5476
+ msgid ""
5477
+ "Award %_plural% to users who watches videos embedded using the "
5478
+ "[mycred_video] shortcode."
5479
+ msgstr "[mycred_video] ショートコードを使用して埋め込まれたビデオを見て、ユーザーに %_plural% 賞を獲得する。"
5480
+
5481
+ #: ../modules/mycred-module-hooks.php:163
5482
+ #, php-format
5483
+ msgid "%plural% for referrals"
5484
+ msgstr "紹介のために %plural%"
5485
+
5486
+ #: ../modules/mycred-module-hooks.php:164
5487
+ msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5488
+ msgstr "いずれかの閲覧者を優先ユーザーに %_plural% 賞 および / または新しいメンバーの会員登録。"
5489
+
5490
+ #: ../modules/mycred-module-hooks.php:199
5491
+ #, php-format
5492
+ msgid "%s Hooks"
5493
+ msgstr "%s フック"
5494
+
5495
+ #: ../modules/mycred-module-hooks.php:203
5496
+ msgid ""
5497
+ "Hooks are instances where %_plural% are awarded or deducted from a user, "
5498
+ "depending on their actions around your website."
5499
+ msgstr "フックは %_plural% はあなたのウェブサイト内の行動に応じて、ユーザーを授与または控除される事例です。"
5500
+
5501
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5502
+ #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5503
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5504
+ #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5505
+ #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5506
+ #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5507
+ #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5508
+ #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5509
+ #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5510
+ #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5511
+ #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5512
+ #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5513
+ #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5514
+ #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5515
+ #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5516
+ #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
5517
+ #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
5518
+ #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:227 ..
5519
+ #: plugins/mycred-hook-buddypress-media.php:241 ../plugins/mycred-hook-
5520
+ #: buddypress-media.php:254 ../plugins/mycred-hook-buddypress-media.php:264 ..
5521
+ #: plugins/mycred-hook-buddypress-media.php:274 ../plugins/mycred-hook-
5522
+ #: buddypress.php:495 ../plugins/mycred-hook-buddypress.php:512 ../plugins/mycred-
5523
+ #: hook-buddypress.php:529 ../plugins/mycred-hook-buddypress.php:549 ..
5524
+ #: plugins/mycred-hook-buddypress.php:562 ../plugins/mycred-hook-buddypress.php:
5525
+ #: 579 ../plugins/mycred-hook-buddypress.php:592 ../plugins/mycred-hook-
5526
+ #: buddypress.php:609 ../plugins/mycred-hook-buddypress.php:626 ../plugins/mycred-
5527
+ #: hook-buddypress.php:1168 ../plugins/mycred-hook-buddypress.php:1181 ..
5528
+ #: plugins/mycred-hook-buddypress.php:1198 ../plugins/mycred-hook-buddypress.php:
5529
+ #: 1215 ../plugins/mycred-hook-buddypress.php:1232 ../plugins/mycred-hook-
5530
+ #: buddypress.php:1249 ../plugins/mycred-hook-buddypress.php:1267 ..
5531
+ #: plugins/mycred-hook-buddypress.php:1280 ../plugins/mycred-hook-buddypress.php:
5532
+ #: 1297 ../plugins/mycred-hook-buddypress.php:1314 ../plugins/mycred-hook-contact-
5533
+ #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5534
+ #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5535
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5536
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5537
+ #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5538
+ #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5539
+ #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5540
+ #: postratings.php:183
5541
+ msgid "Log template"
5542
+ msgstr "ログテンプレート"
5543
+
5544
+ #: ../modules/mycred-module-hooks.php:666
5545
+ #, php-format
5546
+ msgid "%plural% for viewing Posts"
5547
+ msgstr "投稿見るための %plural%"
5548
+
5549
+ #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5550
+ #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5551
+ #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5552
+ msgid "Member"
5553
+ msgstr "メンバー"
5554
+
5555
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5556
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5557
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5558
+ #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5559
+ #: ./modules/mycred-module-hooks.php:1704
5560
+ msgid "Content Author"
5561
+ msgstr "コンテンツの著者"
5562
+
5563
+ #: ../modules/mycred-module-hooks.php:697
5564
+ #, php-format
5565
+ msgid "%plural% for viewing Pages"
5566
+ msgstr "ページ閲覧のための %plural%"
5567
+
5568
+ #: ../modules/mycred-module-hooks.php:774
5569
+ #, php-format
5570
+ msgid "%plural% for viewing %s"
5571
+ msgstr "%plural%見るための %s"
5572
+
5573
+ #: ../modules/mycred-module-hooks.php:1147
5574
+ #, php-format
5575
+ msgid "%plural% for Posts"
5576
+ msgstr "投稿のために %plural%"
5577
+
5578
+ #: ../modules/mycred-module-hooks.php:1164
5579
+ #, php-format
5580
+ msgid "%plural% for Pages"
5581
+ msgstr "%plural% のページ"
5582
+
5583
+ #: ../modules/mycred-module-hooks.php:1213
5584
+ #, php-format
5585
+ msgid "%plural% for %s"
5586
+ msgstr "%plural% のために %s"
5587
+
5588
+ #: ../modules/mycred-module-hooks.php:1660
5589
+ msgid ""
5590
+ "%plural% are only awarded when your website has been synced with the Disqus "
5591
+ "server!"
5592
+ msgstr "あなたのウェブサイトはDisqusのサーバと同期されている場合に %plural% のみが授与されます!"
5593
+
5594
+ #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5595
+ #: 1683 ../modules/mycred-module-hooks.php:1700
5596
+ msgid "Comment Author"
5597
+ msgstr "コメントの著者"
5598
+
5599
+ #: ../modules/mycred-module-hooks.php:1680
5600
+ msgid "Comment Marked SPAM"
5601
+ msgstr "SPAMマークコメント"
5602
+
5603
+ #: ../modules/mycred-module-hooks.php:1697
5604
+ msgid "Trashed / Unapproved Comments"
5605
+ msgstr "ゴミ箱に移動 / 未承認コメント"
5606
+
5607
+ #: ../modules/mycred-module-hooks.php:1717
5608
+ msgid "Limit per post"
5609
+ msgstr "投稿ごとの制限"
5610
+
5611
+ #: ../modules/mycred-module-hooks.php:1719
5612
+ msgid ""
5613
+ "The number of comments per post that grants %_plural% to the comment author. "
5614
+ "Use zero for unlimited."
5615
+ msgstr "コメントの著者に %_plural% を許可した投稿あたりのコメント数。無制限の場合にはゼロを使用してください。"
5616
+
5617
+ #: ../modules/mycred-module-hooks.php:1723
5618
+ msgid "Limit per day"
5619
+ msgstr "一日あたりの制限"
5620
+
5621
+ #: ../modules/mycred-module-hooks.php:1725
5622
+ msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5623
+ msgstr "%_plural% を許諾した一日あたりのコメント数。無制限の場合にはゼロを使用してください。"
5624
+
5625
+ #: ../modules/mycred-module-hooks.php:1730
5626
+ msgid ""
5627
+ "%plural% is to be awarded even when comment authors reply to their own "
5628
+ "comment."
5629
+ msgstr "%plural% はコメント著者が自身のコメントに返信するときにも付与される。"
5630
+
5631
+ #: ../modules/mycred-module-hooks.php:1810
5632
+ msgid "Once for each unique URL"
5633
+ msgstr "それぞれ一意のURLに対して一度"
5634
+
5635
+ #: ../modules/mycred-module-hooks.php:1811
5636
+ msgid "Once for each unique link id"
5637
+ msgstr "それぞれのユニークなリンクIDに対して一度"
5638
+
5639
+ #: ../modules/mycred-module-hooks.php:2022
5640
+ msgid ""
5641
+ "The default amount to award for clicking on links. You can override this in "
5642
+ "the shortcode."
5643
+ msgstr "リンクをクリックするための賞のデフォルトの量。これはショートコードで上書きできます。"
5644
+
5645
+ #: ../modules/mycred-module-hooks.php:2029
5646
+ #, php-format
5647
+ msgid "Custom tags: %url%, %title% or %id%."
5648
+ msgstr "カスタムタグ: %url%, %title% または %id%"
5649
+
5650
+ #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5651
+ msgid "Note!"
5652
+ msgstr "注意!"
5653
+
5654
+ #: ../modules/mycred-module-hooks.php:2042
5655
+ msgid ""
5656
+ "If no ID is set when using the mycred_link shortcode, the shortcode will "
5657
+ "generate one automatically based on the value set under href. If you are "
5658
+ "using this feature for \"sharing\" content, it is recommended that you limit "
5659
+ "by ID."
5660
+ msgstr ""
5661
+ "mycred_link "
5662
+ "のショートコードを使用したときにIDが設定されていない場合、そのショートコードはハイパーリンクの下に設定された値に基づいて自動的に1を生成します。 "
5663
+ "あなたはコンテンツを \"sharing\" のためにこの機能を使用している場合それをあなたはIDで制限することをお勧めします。"
5664
+
5665
+ #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5666
+ msgid "Available Shortcode"
5667
+ msgstr "利用可能なショートコード"
5668
+
5669
+ #: ../modules/mycred-module-hooks.php:2392
5670
+ msgid "Amount to award for viewing videos."
5671
+ msgstr "ビデオの表示のための賞の量。"
5672
+
5673
+ #: ../modules/mycred-module-hooks.php:2402
5674
+ msgid "Award Logic"
5675
+ msgstr "賞のロジック"
5676
+
5677
+ #: ../modules/mycred-module-hooks.php:2404
5678
+ #, php-format
5679
+ msgid "Select when %_plural% should be awarded or deducted."
5680
+ msgstr "%_plural% の授与または控除する必要があるときに選択します。"
5681
+
5682
+ #: ../modules/mycred-module-hooks.php:2405
5683
+ msgid "Play - As soon as video starts playing."
5684
+ msgstr "再生 - すぐにビデオ再生を開始します。"
5685
+
5686
+ #: ../modules/mycred-module-hooks.php:2406
5687
+ msgid "Full - First when the entire video has played."
5688
+ msgstr "すべて - ビデオ全体が再生されている最初たとき"
5689
+
5690
+ #: ../modules/mycred-module-hooks.php:2407
5691
+ msgid "Interval - For each x number of seconds watched."
5692
+ msgstr "インターバル - それぞれの x のための秒数を見た。"
5693
+
5694
+ #: ../modules/mycred-module-hooks.php:2412
5695
+ msgid "Number of seconds"
5696
+ msgstr "秒数"
5697
+
5698
+ #: ../modules/mycred-module-hooks.php:2419
5699
+ msgid "Leniency"
5700
+ msgstr "寛容"
5701
+
5702
+ #: ../modules/mycred-module-hooks.php:2421
5703
+ msgid ""
5704
+ "The maximum percentage a users view of a movie can differ from the actual "
5705
+ "length."
5706
+ msgstr "ユーザーの環境により映像の再生時間の割合は、実際の視聴の長さと異なる場合があります。"
5707
+
5708
+ #: ../modules/mycred-module-hooks.php:2424
5709
+ msgid ""
5710
+ "Do not set this value to zero! A lot of thing can happen while a user "
5711
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
5712
+ "buffering or play back errors."
5713
+ msgstr ""
5714
+ "この値をゼロに設定しないでください!ユーザーが映像を見ている時に再生エラーが原因で数秒のバッファリングでカウンターから離脱することができまるのでそうした事"
5715
+ "が多く発生する可能性があります。"
5716
+
5717
+ #: ../modules/mycred-module-hooks.php:2499
5718
+ msgid "Affiliate Program"
5719
+ msgstr "アフィリエイトプログラム"
5720
+
5721
+ #: ../modules/mycred-module-hooks.php:2508
5722
+ msgid "Per Day"
5723
+ msgstr "一日あたり"
5724
+
5725
+ #: ../modules/mycred-module-hooks.php:2667
5726
+ msgid "Link"
5727
+ msgstr "リンク"
5728
+
5729
+ #: ../modules/mycred-module-hooks.php:2671
5730
+ msgid "Visitors Referred"
5731
+ msgstr "ビジター参照"
5732
+
5733
+ #: ../modules/mycred-module-hooks.php:2675
5734
+ msgid "Signups Referred"
5735
+ msgstr "申し込み参照"
5736
+
5737
+ #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5738
+ #: 231
5739
+ msgid "Referring Visitors"
5740
+ msgstr "ビジターを参照"
5741
+
5742
+ #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
5743
+ msgid "Referring Signups"
5744
+ msgstr "会員登録を参照"
5745
+
5746
+ #: ../modules/mycred-module-hooks.php:3017
5747
+ msgid "Visitors who have Cookies disabled will not award %_plural%."
5748
+ msgstr "クッキーを無効にしているビジターは % _plural % を授与できません。"
5749
+
5750
+ #: ../modules/mycred-module-hooks.php:3035
5751
+ msgid "Registrations are disabled."
5752
+ msgstr "登録は無効になっています。"
5753
+
5754
+ #: ../modules/mycred-module-hooks.php:3043
5755
+ msgid "Referral Links"
5756
+ msgstr "紹介リンク"
5757
+
5758
+ #: ../modules/mycred-module-hooks.php:3047
5759
+ msgid "Assign numeric referral IDs to each user."
5760
+ msgstr "各ユーザーに数値の紹介IDを割り当てます。"
5761
+
5762
+ #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5763
+ msgid "Example"
5764
+ msgstr "例"
5765
+
5766
+ #: ../modules/mycred-module-hooks.php:3053
5767
+ msgid "Assign usernames as IDs for each user."
5768
+ msgstr "各ユーザーのIDなどのユーザ名を割り当てます。"
5769
+
5770
+ #: ../modules/mycred-module-hooks.php:3057
5771
+ msgid "IP Limit"
5772
+ msgstr "IP 制限"
5773
+
5774
+ #: ../modules/mycred-module-hooks.php:3061
5775
+ msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5776
+ msgstr "各IP アドレスの付与 %_plural% の回数。ゼロを使用する場合は無制限。"
5777
+
5778
+ #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
5779
+ msgid "BuddyPress Profile"
5780
+ msgstr "BuddyPressプロフィール"
5781
+
5782
+ #: ../modules/mycred-module-hooks.php:3068
5783
+ msgid "Insert Link in users Profile"
5784
+ msgstr "ユーザーのプロフィールにリンクを挿入します。"
5785
+
5786
+ #: ../modules/mycred-module-hooks.php:3069
5787
+ msgid ""
5788
+ "Option to inser the referral link in users profiles. Links will only be "
5789
+ "visible to users viewing their own profiles or administrators."
5790
+ msgstr "オプションではユーザープロフィールの紹介リンクを挿入する。 Linkは独自のプロフィールまたは管理者を表示するユーザーに表示されます。"
5791
+
5792
+ #: ../modules/mycred-module-hooks.php:3075
5793
+ msgid "Leave empty to hide."
5794
+ msgstr "非表示の場合は空のままにしておきます。"
5795
+
5796
+ #: ../modules/mycred-module-hooks.php:3078
5797
+ msgid "Description"
5798
+ msgstr "説明"
5799
+
5800
+ #: ../modules/mycred-module-hooks.php:3079
5801
+ msgid "Optional description to insert under the link."
5802
+ msgstr "オプションの説明はリンクの下に挿入する。"
5803
+
5804
+ #: ../modules/mycred-module-hooks.php:3093
5805
+ msgid "Profile Positioning"
5806
+ msgstr "プロフィールポジショニング"
5807
+
5808
+ #: ../modules/mycred-module-hooks.php:3095
5809
+ msgid ""
5810
+ "You can move around the referral link on your users profile by changing the "
5811
+ "position. Increase to move up, decrease to move down."
5812
+ msgstr "ユーザーが位置を変更することにより、プロフィールには紹介リンクを中心に移動することができます。増加は下に移動し減少は上に移動する。"
5813
+
5814
+ #: ../modules/mycred-module-hooks.php:3096
5815
+ msgid "You can not move the referral link above the users \"Base\" profile details!"
5816
+ msgstr "あなたは \"Base\" プロフィールの詳細、ユーザーは上記の紹介リンクを移動することはできません!"
5817
+
5818
+ #: ../modules/mycred-module-hooks.php:3102
5819
+ msgid "Requires BuddyPress Extended Profiles to be enabled."
5820
+ msgstr "BuddyPressの拡張プロフィールが必須を有効にすることができます。"
5821
+
5822
+ #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
5823
+ #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
5824
+ msgid "Access denied for this action"
5825
+ msgstr "アクセスはこのアクションのために拒否された"
5826
+
5827
+ #: ../modules/mycred-module-log.php:214
5828
+ msgid "Row Deleted"
5829
+ msgstr "行削除"
5830
+
5831
+ #: ../modules/mycred-module-log.php:243
5832
+ msgid "Log entry not found"
5833
+ msgstr "エントリのログが見つからない"
5834
+
5835
+ #: ../modules/mycred-module-log.php:256
5836
+ msgid "Entry Updated"
5837
+ msgstr "エントリを更新"
5838
+
5839
+ #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
5840
+ msgid "Entries"
5841
+ msgstr "エントリー"
5842
+
5843
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5844
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5845
+ msgid "Export"
5846
+ msgstr "エクスポート"
5847
+
5848
+ #: ../modules/mycred-module-log.php:340
5849
+ msgid "Search results for"
5850
+ msgstr "検索結果"
5851
+
5852
+ #: ../modules/mycred-module-log.php:411
5853
+ #, php-format
5854
+ msgid "%s Log"
5855
+ msgstr "%s ログ"
5856
+
5857
+ #: ../modules/mycred-module-log.php:422
5858
+ msgid ""
5859
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
5860
+ "Certain hooks and shortcodes will not work correctly!"
5861
+ msgstr "警告。必須 Mcrypt PHP ライブラリはこのサーバーにインストールされていません!一部のフックとショートコードが正しく動作しません!"
5862
+
5863
+ #: ../modules/mycred-module-log.php:563
5864
+ msgid "Edit"
5865
+ msgstr "編集"
5866
+
5867
+ #: ../modules/mycred-module-log.php:610
5868
+ msgid "Time"
5869
+ msgstr "時間"
5870
+
5871
+ #: ../modules/mycred-module-log.php:614
5872
+ msgid "Current Log Entry"
5873
+ msgstr "現在のログエントリ"
5874
+
5875
+ #: ../modules/mycred-module-log.php:616
5876
+ msgid "The current saved log entry"
5877
+ msgstr "現在のログエントリ保存"
5878
+
5879
+ #: ../modules/mycred-module-log.php:619
5880
+ msgid "Adjust Log Entry"
5881
+ msgstr "ログエントリを調整します"
5882
+
5883
+ #: ../modules/mycred-module-log.php:621
5884
+ msgid "The new log entry"
5885
+ msgstr "新しいログエントリ"
5886
+
5887
+ #: ../modules/mycred-module-log.php:624
5888
+ msgid "Update Log Entry"
5889
+ msgstr "ログエントリの更新"
5890
+
5891
+ #: ../modules/mycred-module-log.php:695
5892
+ #, php-format
5893
+ msgid "My %s History"
5894
+ msgstr "My %s 履歴"
5895
+
5896
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
5897
+ #: 113 ../modules/mycred-module-settings.php:166
5898
+ msgid "Missing point type"
5899
+ msgstr "ポイントタイプがみつからない"
5900
+
5901
+ #: ../modules/mycred-module-settings.php:144
5902
+ msgid "Accounts successfully reset"
5903
+ msgstr "アカウントを正常にリセット"
5904
+
5905
+ #: ../modules/mycred-module-settings.php:196
5906
+ msgid "No users found to export"
5907
+ msgstr "ユーザーのエクスポートが見つかりません"
5908
+
5909
+ #: ../modules/mycred-module-settings.php:246
5910
+ msgid "Invalid decimal value."
5911
+ msgstr "無効な進数値。"
5912
+
5913
+ #: ../modules/mycred-module-settings.php:293
5914
+ msgid "Log Updated"
5915
+ msgstr "ログを更新"
5916
+
5917
+ #: ../modules/mycred-module-settings.php:423
5918
+ msgid "Update Database"
5919
+ msgstr "データベースのアップデート"
5920
+
5921
+ #: ../modules/mycred-module-settings.php:424
5922
+ msgid "Zero for no decimals or maximum 20."
5923
+ msgstr "小数部分なしまたは最大 20 のためのゼロ。"
5924
+
5925
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
5926
+ #: php:528
5927
+ msgid "Tip"
5928
+ msgstr "ヒント"
5929
+
5930
+ #: ../modules/mycred-module-settings.php:427
5931
+ msgid ""
5932
+ "As this is your main point type, the value you select here will be the "
5933
+ "largest number of decimals your installation will support."
5934
+ msgstr "これはあなたの主なポイントの種類は、ここで選択する値は、インストールをサポート最大桁数になります。"
5935
+
5936
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
5937
+ #: php:453
5938
+ msgid "No decimals"
5939
+ msgstr "小数部分なし"
5940
+
5941
+ #: ../modules/mycred-module-settings.php:465
5942
+ #, php-format
5943
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
5944
+ msgstr "<a href=\"%s\">ここをクリック</a>して既定ポイントを変更する種類のセットアップを実行します。"
5945
+
5946
+ #: ../modules/mycred-module-settings.php:503
5947
+ #, php-format
5948
+ msgid "%s Settings"
5949
+ msgstr "%s 設定"
5950
+
5951
+ #: ../modules/mycred-module-settings.php:507
5952
+ msgid "Adjust your core or add-on settings."
5953
+ msgstr "コアまたはアドオンの設定を調整します。"
5954
+
5955
+ #: ../modules/mycred-module-settings.php:513
5956
+ msgid "Core Settings"
5957
+ msgstr "コアの設定"
5958
+
5959
+ #: ../modules/mycred-module-settings.php:515
5960
+ msgid "Name"
5961
+ msgstr "名前"
5962
+
5963
+ #: ../modules/mycred-module-settings.php:520
5964
+ #, php-format
5965
+ msgid "Accessible though the %singular% template tag."
5966
+ msgstr "%singular% のテンプレートタグをかいしてアクセス可能。"
5967
+
5968
+ #: ../modules/mycred-module-settings.php:525
5969
+ msgid "Accessible though the %plural% template tag."
5970
+ msgstr "%plural% のテンプレートタグを介してアクセス可能"
5971
+
5972
+ #: ../modules/mycred-module-settings.php:528
5973
+ msgid ""
5974
+ "Adding an underscore at the beginning of template tag for names will return "
5975
+ "them in lowercase. i.e. %_singular%"
5976
+ msgstr "名のテンプレートタグの先頭にアンダースコアを追加すると、小文字でそれらを返します。例. %_singular%"
5977
+
5978
+ #: ../modules/mycred-module-settings.php:552
5979
+ msgid "Separator"
5980
+ msgstr "セパレーター"
5981
+
5982
+ #: ../modules/mycred-module-settings.php:559
5983
+ msgid "Edit Settings"
5984
+ msgstr "設定編集"
5985
+
5986
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
5987
+ #: php:566
5988
+ msgid "Capability to check for."
5989
+ msgstr "チェックする機能。"
5990
+
5991
+ #: ../modules/mycred-module-settings.php:564
5992
+ msgid "Edit Users %plural%"
5993
+ msgstr "%plural%のユーザーを編集"
5994
+
5995
+ #: ../modules/mycred-module-settings.php:588
5996
+ msgid "Comma separated list of user ids to exclude. No spaces allowed!"
5997
+ msgstr "コンマで区切った一覧を除外するユーザーID。スペースは使用できません!"
5998
+
5999
+ #: ../modules/mycred-module-settings.php:612
6000
+ msgid "Management"
6001
+ msgstr "管理"
6002
+
6003
+ #: ../modules/mycred-module-settings.php:614
6004
+ msgid "The Log"
6005
+ msgstr "ログ"
6006
+
6007
+ #: ../modules/mycred-module-settings.php:617
6008
+ msgid "Table Name"
6009
+ msgstr "テーブル名"
6010
+
6011
+ #: ../modules/mycred-module-settings.php:626
6012
+ msgid "Empty Log"
6013
+ msgstr "空のログ"
6014
+
6015
+ #: ../modules/mycred-module-settings.php:641
6016
+ msgid "Set all to zero"
6017
+ msgstr "すべてをゼロに設定します。"
6018
+
6019
+ #: ../modules/mycred-module-settings.php:641
6020
+ msgid "CSV Export"
6021
+ msgstr "CSV エクスポート"
6022
+
6023
+ #: ../modules/mycred-module-settings.php:667
6024
+ msgid "Default"
6025
+ msgstr "デフォルト"
6026
+
6027
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6028
+ #: php:691 ../modules/mycred-module-settings.php:715
6029
+ msgid "Meta Key"
6030
+ msgstr "メタキー"
6031
+
6032
+ #: ../modules/mycred-module-settings.php:712
6033
+ msgid "Add New Type"
6034
+ msgstr "新しいタイプを追加"
6035
+
6036
+ #: ../modules/mycred-module-settings.php:717
6037
+ msgid "A unique ID for this type."
6038
+ msgstr "このタイプの固有ID。"
6039
+
6040
+ #: ../modules/mycred-module-settings.php:722
6041
+ msgid "Menu and page title."
6042
+ msgstr "メニューおよびページのタイトル。"
6043
+
6044
+ #: ../modules/mycred-module-settings.php:725
6045
+ msgid ""
6046
+ "The meta key must be lowercase and only contain letters or underscores. All "
6047
+ "other characters will be deleted!"
6048
+ msgstr "メタキーは小文字でのみ、文字またはアンダースコアが含まれている必要があります。他のすべての文字が削除されます!"
6049
+
6050
+ #: ../modules/mycred-module-settings.php:748
6051
+ msgid "Identify users by"
6052
+ msgstr "ユーザーを識別する"
6053
+
6054
+ #: ../modules/mycred-module-settings.php:754
6055
+ msgid "User ID"
6056
+ msgstr "ユーザーID"
6057
+
6058
+ #: ../modules/mycred-module-settings.php:755
6059
+ msgid "User Email"
6060
+ msgstr "ユーザーのメール"
6061
+
6062
+ #: ../modules/mycred-module-settings.php:756
6063
+ msgid "User Login"
6064
+ msgstr "ユーザーログイン"
6065
+
6066
+ #: ../modules/mycred-module-settings.php:764
6067
+ msgid ""
6068
+ "Use ID if you intend to use this export as a backup of your current site "
6069
+ "while Email is recommended if you want to export to a different site."
6070
+ msgstr ""
6071
+ "あなたはメールを使用すると、別のサイトにエクスポートする場合に推奨されている。あなたの現在のサイトのバックアップとして、このエクスポートを使用する場合は、"
6072
+ "IDを使用してください。"
6073
+
6074
+ #: ../modules/mycred-module-settings.php:767
6075
+ msgid "Import Log Entry"
6076
+ msgstr "ログエントリのインポート"
6077
+
6078
+ #: ../modules/mycred-module-settings.php:769
6079
+ #, php-format
6080
+ msgid ""
6081
+ "Optional log entry to use if you intend to import this file in a different "
6082
+ "%s installation."
6083
+ msgstr "あなたは別の %s のインストール中にこのファイルをインポートする場合は、オプションのログエントリに使用する。"
6084
+
6085
+ #: ../plugins/mycred-hook-affiliatewp.php:18
6086
+ msgid "AffiliateWP"
6087
+ msgstr "AffiliateWP"
6088
+
6089
+ #: ../plugins/mycred-hook-affiliatewp.php:19
6090
+ #, php-format
6091
+ msgid ""
6092
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
6093
+ "referrals."
6094
+ msgstr "アフィリエイトの会員登録を参照する訪問者と店舗販売の紹介のための %_plural% 賞"
6095
+
6096
+ #: ../plugins/mycred-hook-affiliatewp.php:218
6097
+ msgid "Affiliate Signup"
6098
+ msgstr "アフィリエイト登録"
6099
+
6100
+ #: ../plugins/mycred-hook-affiliatewp.php:248
6101
+ msgid "Referring Sales"
6102
+ msgstr "セールス参照"
6103
+
6104
+ #: ../plugins/mycred-hook-affiliatewp.php:251
6105
+ msgid "Pay a set amount for all referrals."
6106
+ msgstr "すべての紹介のために設定された金額を支払う。"
6107
+
6108
+ #: ../plugins/mycred-hook-affiliatewp.php:252
6109
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
6110
+ msgstr "通貨で紹介金額を支払うようAffiliateWPは %plural% を使用します。"
6111
+
6112
+ #: ../plugins/mycred-hook-affiliatewp.php:253
6113
+ msgid "Apply an exchange rate against the referral amount."
6114
+ msgstr "紹介金額に対する為替レートを適用します。"
6115
+
6116
+ #: ../plugins/mycred-hook-affiliatewp.php:261
6117
+ msgid "Log template - Payout"
6118
+ msgstr "ログテンプレート - 支払い"
6119
+
6120
+ #: ../plugins/mycred-hook-affiliatewp.php:266
6121
+ msgid "Log template - Refund"
6122
+ msgstr "ログテンプレート - 払い戻し"
6123
+
6124
+ #: ../plugins/mycred-hook-badgeOS.php:18
6125
+ msgid "BadgeOS"
6126
+ msgstr "バッジOS"
6127
+
6128
+ #: ../plugins/mycred-hook-badgeOS.php:19
6129
+ msgid ""
6130
+ "Default settings for each BadgeOS Achievement type. These settings may be "
6131
+ "overridden for individual achievement type."
6132
+ msgstr "それぞれのバッジOS達成タイプのデフォルト設定。これらの設定は、個々の達成タイプに対して優先されることがあります。"
6133
+
6134
+ #: ../plugins/mycred-hook-badgeOS.php:105
6135
+ #, php-format
6136
+ msgid ""
6137
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
6138
+ "feature."
6139
+ msgstr "<a href=\"%s\">デフォルト設定</a>にこの機能を使用する前にセットアップしてください。"
6140
+
6141
+ #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
6142
+ msgid "%plural% to Award"
6143
+ msgstr "%plural% 賞"
6144
+
6145
+ #: ../plugins/mycred-hook-badgeOS.php:122
6146
+ msgid "Use zero to disable"
6147
+ msgstr "無効にするにはゼロを使用しする"
6148
+
6149
+ #: ../plugins/mycred-hook-badgeOS.php:133
6150
+ msgid "Deduction Log Template"
6151
+ msgstr "控除ログテンプレート"
6152
+
6153
+ #: ../plugins/mycred-hook-badgeOS.php:278
6154
+ #, php-format
6155
+ msgid "Default %s for %s"
6156
+ msgstr "デフォルト %s のために %s"
6157
+
6158
+ #: ../plugins/mycred-hook-badgeOS.php:284
6159
+ msgid "Use zero to disable users gaining %_plural%"
6160
+ msgstr "%_plural% を獲得しているユーザーは無効にするにはゼロを使用"
6161
+
6162
+ #: ../plugins/mycred-hook-badgeOS.php:288
6163
+ msgid "Default Log template"
6164
+ msgstr "ログの既定のテンプレート"
6165
+
6166
+ #: ../plugins/mycred-hook-bbPress.php:18
6167
+ msgid "bbPress"
6168
+ msgstr "bbPress"
6169
+
6170
+ #: ../plugins/mycred-hook-bbPress.php:19
6171
+ #, php-format
6172
+ msgid "Awards %_plural% for bbPress actions."
6173
+ msgstr "%_plural% 賞のbbPress アクション。"
6174
+
6175
+ #: ../plugins/mycred-hook-bbPress.php:404
6176
+ #, php-format
6177
+ msgid "%plural% for New Forum"
6178
+ msgstr "%plural%の新しいフォーラム"
6179
+
6180
+ #: ../plugins/mycred-hook-bbPress.php:421
6181
+ #, php-format
6182
+ msgid "%plural% for Forum Deletion"
6183
+ msgstr "%plural%のフォーラムの削除"
6184
+
6185
+ #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6186
+ #: 278
6187
+ #, php-format
6188
+ msgid "%plural% for New Topic"
6189
+ msgstr "%plural%の新しいトピック"
6190
+
6191
+ #: ../plugins/mycred-hook-bbPress.php:452
6192
+ #, php-format
6193
+ msgid "Forum authors can receive %_plural% for creating new topics."
6194
+ msgstr "フォーラム著者は新しいトピックを作成するための %_plural% を受け取ることができます。"
6195
+
6196
+ #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6197
+ #: 295
6198
+ #, php-format
6199
+ msgid "%plural% for Topic Deletion"
6200
+ msgstr "%plural% のトピック削除"
6201
+
6202
+ #: ../plugins/mycred-hook-bbPress.php:469
6203
+ #, php-format
6204
+ msgid "%plural% for Favorited Topic"
6205
+ msgstr "%plural% のお気に入りのトピック"
6206
+
6207
+ #: ../plugins/mycred-hook-bbPress.php:486
6208
+ #, php-format
6209
+ msgid "%plural% for New Reply"
6210
+ msgstr "%plural% の新しい返信"
6211
+
6212
+ #: ../plugins/mycred-hook-bbPress.php:504
6213
+ #, php-format
6214
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
6215
+ msgstr "トピックの著者は自身のトピックに返答するための %_plural% を受け取ることができます。"
6216
+
6217
+ #: ../plugins/mycred-hook-bbPress.php:508
6218
+ #, php-format
6219
+ msgid "Show users %_plural% balance in replies"
6220
+ msgstr "返信の残高 %_plural% をユーザーに表示します。"
6221
+
6222
+ #: ../plugins/mycred-hook-bbPress.php:512
6223
+ #, php-format
6224
+ msgid "%plural% for Reply Deletion"
6225
+ msgstr "%plural% の返信削除"
6226
+
6227
+ #: ../plugins/mycred-hook-buddypress-gallery.php:19
6228
+ msgid "BuddyPress: Gallery Actions"
6229
+ msgstr "BuddyPress:ギャラリーアクション"
6230
+
6231
+ #: ../plugins/mycred-hook-buddypress-gallery.php:20
6232
+ #, php-format
6233
+ msgid ""
6234
+ "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
6235
+ "Gallery."
6236
+ msgstr "新しいギャラリーを作成するいずれかのBPアルバム+またはBPギャラリーを使用するための %_plural% 賞"
6237
+
6238
+ #: ../plugins/mycred-hook-buddypress-gallery.php:96
6239
+ #, php-format
6240
+ msgid "%plural% for New Gallery"
6241
+ msgstr "%plural% の新ギャラリー"
6242
+
6243
+ #: ../plugins/mycred-hook-buddypress-links.php:19
6244
+ msgid "BuddyPress: Links"
6245
+ msgstr "BuddyPress:リンク"
6246
+
6247
+ #: ../plugins/mycred-hook-buddypress-links.php:20
6248
+ #, php-format
6249
+ msgid "Awards %_plural% for link related actions."
6250
+ msgstr "リンク関連のアクションのための %_plural% 賞。"
6251
+
6252
+ #: ../plugins/mycred-hook-buddypress-links.php:244
6253
+ #, php-format
6254
+ msgid "%plural% for New Links"
6255
+ msgstr "%plural% の新しいリンク"
6256
+
6257
+ #: ../plugins/mycred-hook-buddypress-links.php:261
6258
+ #, php-format
6259
+ msgid "%plural% for Vote on Link"
6260
+ msgstr "%plural% のリンク上の投票"
6261
+
6262
+ #: ../plugins/mycred-hook-buddypress-links.php:277
6263
+ msgid "%plural% per received Vote"
6264
+ msgstr "%plural% の投票ごと受取"
6265
+
6266
+ #: ../plugins/mycred-hook-buddypress-links.php:280
6267
+ msgid "Vote Up"
6268
+ msgstr "高く評価"
6269
+
6270
+ #: ../plugins/mycred-hook-buddypress-links.php:299
6271
+ msgid "Vote Down"
6272
+ msgstr "低く評価"
6273
+
6274
+ #: ../plugins/mycred-hook-buddypress-links.php:314
6275
+ #, php-format
6276
+ msgid "%plural% for Updating Links"
6277
+ msgstr "%plural% のリンクを更新する"
6278
+
6279
+ #: ../plugins/mycred-hook-buddypress-links.php:331
6280
+ #, php-format
6281
+ msgid "%plural% for Deleting Links"
6282
+ msgstr "%plural% のリンクを削除する"
6283
+
6284
+ #: ../plugins/mycred-hook-buddypress-media.php:18
6285
+ msgid "rtMedia Galleries"
6286
+ msgstr "rtMediaギャラリー"
6287
+
6288
+ #: ../plugins/mycred-hook-buddypress-media.php:19
6289
+ #, php-format
6290
+ msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
6291
+ msgstr "ユーザーがアルバムを作成したり、新しい写真をアップロードするための %_plural% 賞 / 控除。"
6292
+
6293
+ #: ../plugins/mycred-hook-buddypress-media.php:202
6294
+ msgid "New Media Upload"
6295
+ msgstr "新しいメディアのアップロード"
6296
+
6297
+ #: ../plugins/mycred-hook-buddypress-media.php:247
6298
+ msgid "Delete Media"
6299
+ msgstr "メディアを削除"
6300
+
6301
+ #: ../plugins/mycred-hook-buddypress-media.php:250
6302
+ msgid "Delete Photo"
6303
+ msgstr "写真を削除"
6304
+
6305
+ #: ../plugins/mycred-hook-buddypress-media.php:260
6306
+ msgid "Delete Video"
6307
+ msgstr "ビデオを削除"
6308
+
6309
+ #: ../plugins/mycred-hook-buddypress-media.php:270
6310
+ msgid "Delete Music"
6311
+ msgstr "音楽の削除"
6312
+
6313
+ #: ../plugins/mycred-hook-buddypress.php:20
6314
+ msgid "BuddyPress: Members"
6315
+ msgstr "BuddyPress: メンバー"
6316
+
6317
+ #: ../plugins/mycred-hook-buddypress.php:21
6318
+ #, php-format
6319
+ msgid "Awards %_plural% for profile related actions."
6320
+ msgstr "プロフィール関連のアクションのための %_plural% 賞"
6321
+
6322
+ #: ../plugins/mycred-hook-buddypress.php:28
6323
+ msgid "BuddyPress: Groups"
6324
+ msgstr "BuddyPress: グループ"
6325
+
6326
+ #: ../plugins/mycred-hook-buddypress.php:29
6327
+ #, php-format
6328
+ msgid ""
6329
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6330
+ "zero to disable a specific hook."
6331
+ msgstr "グループ関連のアクションのための %_plural% 賞。 マイナスを使用して特定のフックを無効にゼロまたは %_plural% を控除します。"
6332
+
6333
+ #: ../plugins/mycred-hook-buddypress.php:484
6334
+ #, php-format
6335
+ msgid "%plural% for Profile Updates"
6336
+ msgstr "%plural% のプロフィール更新"
6337
+
6338
+ #: ../plugins/mycred-hook-buddypress.php:501
6339
+ #, php-format
6340
+ msgid "%plural% for Removing Profile Update"
6341
+ msgstr "%plural% のプロフィールの更新を削除します。"
6342
+
6343
+ #: ../plugins/mycred-hook-buddypress.php:518
6344
+ #, php-format
6345
+ msgid "%plural% for New Avatar"
6346
+ msgstr "%plural% の新しいアバター"
6347
+
6348
+ #: ../plugins/mycred-hook-buddypress.php:535
6349
+ #, php-format
6350
+ msgid "%plural% for New Friendships"
6351
+ msgstr "%plural% の新しいフレンド"
6352
+
6353
+ #: ../plugins/mycred-hook-buddypress.php:545
6354
+ #, php-format
6355
+ msgid ""
6356
+ "Users with zero balance can not add friends. Requires that you deduct "
6357
+ "%_plural% for adding a new friend."
6358
+ msgstr "ゼロの残高を持つユーザーの友人を追加できません。新しい友達を追加するための %_plural% を控除する必要があります。"
6359
+
6360
+ #: ../plugins/mycred-hook-buddypress.php:555
6361
+ #, php-format
6362
+ msgid "%plural% for Leaving Friendship"
6363
+ msgstr "%plural% のフレンドシップ申請する"
6364
+
6365
+ #: ../plugins/mycred-hook-buddypress.php:568
6366
+ #, php-format
6367
+ msgid "%plural% for New Comment"
6368
+ msgstr "%plural% の新しいコメント"
6369
+
6370
+ #: ../plugins/mycred-hook-buddypress.php:585
6371
+ #, php-format
6372
+ msgid "%plural% for Deleting Comment"
6373
+ msgstr "%plural% のコメントを削除します。"
6374
+
6375
+ #: ../plugins/mycred-hook-buddypress.php:598
6376
+ #, php-format
6377
+ msgid "%plural% for New Messages"
6378
+ msgstr "%plural% の新しいメッセージ"
6379
+
6380
+ #: ../plugins/mycred-hook-buddypress.php:615
6381
+ #, php-format
6382
+ msgid "%plural% for Sending Gift"
6383
+ msgstr "%plural% のギフトを送信する"
6384
+
6385
+ #: ../plugins/mycred-hook-buddypress.php:1154
6386
+ #, php-format
6387
+ msgid "%plural% for Creating Groups"
6388
+ msgstr "%plural% のグループの作成"
6389
+
6390
+ #: ../plugins/mycred-hook-buddypress.php:1158
6391
+ msgid ""
6392
+ "If you use a negative value and the user does not have enough %_plural% the "
6393
+ "\"Create Group\" button will be disabled."
6394
+ msgstr "あなたが負の値を使用してユーザーが十分な %_plural% を持っていない場合、 \"Create Group\" ボタンは無効になります。"
6395
+
6396
+ #: ../plugins/mycred-hook-buddypress.php:1162
6397
+ msgid "Number of members before awarding %_plural%"
6398
+ msgstr "%_plural% を授与する前にメンバーの数"
6399
+
6400
+ #: ../plugins/mycred-hook-buddypress.php:1164
6401
+ msgid "Use zero to award %_plural% when group is created."
6402
+ msgstr "%_plural% 賞のグループが作成されるときにゼロを使用します。"
6403
+
6404
+ #: ../plugins/mycred-hook-buddypress.php:1174
6405
+ #, php-format
6406
+ msgid "%plural% for Deleting Groups"
6407
+ msgstr "%plural% のグループを削除します。"
6408
+
6409
+ #: ../plugins/mycred-hook-buddypress.php:1187
6410
+ #, php-format
6411
+ msgid "%plural% for New Forum Topic"
6412
+ msgstr "%plural% の新しいフォーラムトピック"
6413
+
6414
+ #: ../plugins/mycred-hook-buddypress.php:1204
6415
+ #, php-format
6416
+ msgid "%plural% for Editing Forum Topic"
6417
+ msgstr "%plural% のフォーラムのトピックの編集"
6418
+
6419
+ #: ../plugins/mycred-hook-buddypress.php:1221
6420
+ #, php-format
6421
+ msgid "%plural% for New Forum Post"
6422
+ msgstr "%plural% の新しいフォーラムの投稿"
6423
+
6424
+ #: ../plugins/mycred-hook-buddypress.php:1238
6425
+ #, php-format
6426
+ msgid "%plural% for Editing Forum Post"
6427
+ msgstr "%plural% のフォーラムの投稿を編集"
6428
+
6429
+ #: ../plugins/mycred-hook-buddypress.php:1255
6430
+ #, php-format
6431
+ msgid "%plural% for Joining Groups"
6432
+ msgstr "%plural% の参加するグループ"
6433
+
6434
+ #: ../plugins/mycred-hook-buddypress.php:1259
6435
+ msgid ""
6436
+ "If you use a negative value and the user does not have enough %_plural% the "
6437
+ "\"Join Group\" button will be disabled."
6438
+ msgstr "あなたが負の値を使用してユーザーが十分な %_plural% を持っていない場合、 \"Join Group\"ボタンは無効になります。"
6439
+
6440
+ #: ../plugins/mycred-hook-buddypress.php:1273
6441
+ #, php-format
6442
+ msgid "%plural% for Leaving Groups"
6443
+ msgstr "%plural% のグループを退会するため"
6444
+
6445
+ #: ../plugins/mycred-hook-buddypress.php:1286
6446
+ #, php-format
6447
+ msgid "%plural% for New Group Avatar"
6448
+ msgstr "%plural% の新しいグループ用アバター"
6449
+
6450
+ #: ../plugins/mycred-hook-buddypress.php:1303
6451
+ #, php-format
6452
+ msgid "%plural% for New Group Comment"
6453
+ msgstr "%plural% 新しいグループ用のコメント"
6454
+
6455
+ #: ../plugins/mycred-hook-contact-form7.php:18
6456
+ msgid "Contact Form 7 Form Submissions"
6457
+ msgstr "Contact Form 7 のフォーム送信"
6458
+
6459
+ #: ../plugins/mycred-hook-contact-form7.php:19
6460
+ #, php-format
6461
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
6462
+ msgstr "フォーム送信に成功した %_plural% 賞 (ログインユーザーのみ)."
6463
+
6464
+ #: ../plugins/mycred-hook-contact-form7.php:117 ../plugins/mycred-hook-
6465
+ #: gravityforms.php:118
6466
+ msgid "No forms found."
6467
+ msgstr "いいえフォームがみつかりませんでした。"
6468
+
6469
+ #: ../plugins/mycred-hook-events-manager-light.php:18
6470
+ msgid "Events Manager"
6471
+ msgstr "イベントマネージャー"
6472
+
6473
+ #: ../plugins/mycred-hook-events-manager-light.php:19
6474
+ #, php-format
6475
+ msgid "Awards %_plural% for users attending events."
6476
+ msgstr "イベントに参加したユーザーのための %_plural% 賞"
6477
+
6478
+ #: ../plugins/mycred-hook-events-manager-light.php:186
6479
+ msgid "Attending Event"
6480
+ msgstr "出席する"
6481
+
6482
+ #: ../plugins/mycred-hook-events-manager-light.php:203
6483
+ msgid "Cancelling Attendance"
6484
+ msgstr "出席キャンセル"
6485
+
6486
+ #: ../plugins/mycred-hook-gd-star-rating.php:18
6487
+ msgid "GD Star Rating"
6488
+ msgstr "GD星評価"
6489
+
6490
+ #: ../plugins/mycred-hook-gd-star-rating.php:19
6491
+ #, php-format
6492
+ msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
6493
+ msgstr "GD星評価プラグインを使用してユーザー評価項目のための %_plural% 賞。"
6494
+
6495
+ #: ../plugins/mycred-hook-gd-star-rating.php:103
6496
+ msgid "Rating"
6497
+ msgstr "評価"
6498
+
6499
+ #: ../plugins/mycred-hook-gd-star-rating.php:116
6500
+ msgid "Up / Down Vote"
6501
+ msgstr "高 / 低 の投票"
6502
+
6503
+ #: ../plugins/mycred-hook-gravityforms.php:18
6504
+ msgid "Gravityform Submissions"
6505
+ msgstr "重力フォーム送信"
6506
+
6507
+ #: ../plugins/mycred-hook-gravityforms.php:19
6508
+ #, php-format
6509
+ msgid "Awards %_plural% for successful form submissions."
6510
+ msgstr "成功したフォームの送信のための %_plural% 賞"
6511
+
6512
+ #: ../plugins/mycred-hook-invite-anyone.php:18
6513
+ msgid "Invite Anyone Plugin"
6514
+ msgstr "誰でも招待プラグイン"
6515
+
6516
+ #: ../plugins/mycred-hook-invite-anyone.php:19
6517
+ #, php-format
6518
+ msgid ""
6519
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6520
+ "accepted."
6521
+ msgstr "招待受け入れられた場合の招待状及び/または %_plural% を送信するための %_plural% 賞。"
6522
+
6523
+ #: ../plugins/mycred-hook-invite-anyone.php:190
6524
+ #, php-format
6525
+ msgid "%plural% for Sending An Invite"
6526
+ msgstr "%plural% の招待の送信"
6527
+
6528
+ #: ../plugins/mycred-hook-invite-anyone.php:210
6529
+ #, php-format
6530
+ msgid "%plural% for Accepting An Invite"
6531
+ msgstr "%plural% を受付ける招待"
6532
+
6533
+ #: ../plugins/mycred-hook-invite-anyone.php:214
6534
+ #, php-format
6535
+ msgid "%plural% for each invited user that accepts an invitation."
6536
+ msgstr "%plural% の各招待ユーザーの招待を受け入れます。"
6537
+
6538
+ #: ../plugins/mycred-hook-jetpack.php:18
6539
+ msgid "Jetpack Subscriptions"
6540
+ msgstr "Jetpack購読"
6541
+
6542
+ #: ../plugins/mycred-hook-jetpack.php:19
6543
+ #, php-format
6544
+ msgid ""
6545
+ "Awards %_plural% for users signing up for site or comment updates using "
6546
+ "Jetpack."
6547
+ msgstr "Jetpackのを使用してサイトまたはコメントの更新プログラムのためにサインアップするユーザーのための %_plural% 賞。"
6548
+
6549
+ #: ../plugins/mycred-hook-jetpack.php:499
6550
+ msgid "Site Subscriptions"
6551
+ msgstr "サイトの購読"
6552
+
6553
+ #: ../plugins/mycred-hook-jetpack.php:512
6554
+ msgid "Comment Subscriptions"
6555
+ msgstr "コメントの購読"
6556
+
6557
+ #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6558
+ #: php:80
6559
+ msgid "Reward with %plural%"
6560
+ msgstr "%plural% で報酬"
6561
+
6562
+ #: ../plugins/mycred-hook-sharethis.php:19
6563
+ #, php-format
6564
+ msgid "%plural% for Sharing"
6565
+ msgstr "%plural% の共有"
6566
+
6567
+ #: ../plugins/mycred-hook-sharethis.php:20
6568
+ #, php-format
6569
+ msgid ""
6570
+ "Awards %_plural% for users sharing / liking your website content to popular "
6571
+ "social media sites."
6572
+ msgstr "ユーザーの共有で %_plural% 賞 / 人気のあるソーシャル メディア サイトにあなたのウェブサイトのコンテンツをシェアする。"
6573
+
6574
+ #: ../plugins/mycred-hook-sharethis.php:257
6575
+ msgid "Your ShareThis public key is not set."
6576
+ msgstr "ShareThis の公開キーが設定されていません。"
6577
+
6578
+ #: ../plugins/mycred-hook-sharethis.php:262
6579
+ msgid "No ShareThis services detected. Please check your installation."
6580
+ msgstr "ShareThis のサービスが検出なし。インストールを確認してください。"
6581
+
6582
+ #: ../plugins/mycred-hook-simplepress.php:19
6583
+ #, php-format
6584
+ msgid "Awards %_plural% for Simple:Press actions."
6585
+ msgstr "シンプルの %_plural% 賞: プレスアクション。"
6586
+
6587
+ #: ../plugins/mycred-hook-simplepress.php:308
6588
+ #, php-format
6589
+ msgid "%plural% for New Topic Post"
6590
+ msgstr "%plural% の新しいトピックを投稿"
6591
+
6592
+ #: ../plugins/mycred-hook-simplepress.php:326
6593
+ #, php-format
6594
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
6595
+ msgstr "トピックの著者は自身のトピックに掲載で %_plural% を受け取ることができます。"
6596
+
6597
+ #: ../plugins/mycred-hook-simplepress.php:330
6598
+ #, php-format
6599
+ msgid "%plural% for Topic Post Deletion"
6600
+ msgstr "%plural% のトピックの投稿の削除"
6601
+
6602
+ #: ../plugins/mycred-hook-woocommerce.php:210
6603
+ msgid "WooCommerce Product Reviews"
6604
+ msgstr "WooCommerce 商品レビュー"
6605
+
6606
+ #: ../plugins/mycred-hook-woocommerce.php:211
6607
+ #, php-format
6608
+ msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6609
+ msgstr "あなたのWooCommerceは製品のレビューを残すユーザーのための %_plural% 賞。"
6610
+
6611
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:18
6612
+ msgid "WP Favorite Posts"
6613
+ msgstr "WP お気に入り投稿"
6614
+
6615
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:19
6616
+ #, php-format
6617
+ msgid "Awards %_plural% for users adding posts to their favorites."
6618
+ msgstr "お気に入りにポストを追加するユーザーのための %_plural% 賞。"
6619
+
6620
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:207
6621
+ msgid "Adding Content to Favorites"
6622
+ msgstr "お気に入りへのコンテンツの追加"
6623
+
6624
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:225
6625
+ msgid "Authors Content added to favorites"
6626
+ msgstr "著者は、お気に入りに追加されたコンテンツ"
6627
+
6628
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:243
6629
+ msgid "Removing Content from Favorites"
6630
+ msgstr "お気に入りからコンテンツを削除する"
6631
+
6632
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:256
6633
+ msgid "Removing Content from Favorites (Author)"
6634
+ msgstr "お気に入りを削除コンテンツ(著者)"
6635
+
6636
+ #: ../plugins/mycred-hook-wp-polls.php:18
6637
+ msgid "WP-Polls"
6638
+ msgstr "WP-Polls(世論調査)"
6639
+
6640
+ #: ../plugins/mycred-hook-wp-polls.php:19
6641
+ #, php-format
6642
+ msgid "Awards %_plural% for users voting in polls."
6643
+ msgstr "世論調査で投票ユーザーのための %_plural% 賞。"
6644
+
6645
+ #: ../plugins/mycred-hook-wp-postratings.php:18
6646
+ msgid "Post Ratings"
6647
+ msgstr "投稿評価"
6648
+
6649
+ #: ../plugins/mycred-hook-wp-postratings.php:19
6650
+ #, php-format
6651
+ msgid ""
6652
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6653
+ "author and the user rating."
6654
+ msgstr "投稿評価のための %_plural% 賞。%_plural% を授与の両方をサポートし著者とユーザーの評価を投稿する。"
6655
+
6656
+ #: ../plugins/mycred-hook-wp-postratings.php:76
6657
+ msgid "Based on rating"
6658
+ msgstr "基本の評価"
6659
+
6660
+ #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
6661
+ #: postratings.php:179
6662
+ msgid "Use the Rating Value instead of the amount set here."
6663
+ msgstr "ここでは設定数量の代わりに評価値を使用します。"
lang/mycred-pt_BR.mo CHANGED
Binary file
lang/mycred-pt_BR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:05:09 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -25,33 +25,33 @@ msgstr ""
25
  "content/plugins/mycred\n"
26
  "X-Poedit-SearchPath-1: ."
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr "Histórico %label%"
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre %s"
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr "Pessoas incríveis"
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Processando..."
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
@@ -59,7 +59,7 @@ msgstr ""
59
  "Aviso! Todas as entradas em seu registro serão removidas permanentemente! "
60
  "Isso não pode ser desfeito!"
61
 
62
- #: ../mycred.php:663
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
@@ -67,63 +67,63 @@ msgstr ""
67
  "Todas as entradas de registro que pertencem a usuários excluídos serão "
68
  "excluídos permanentemente! Isso não pode ser desfeito!"
69
 
70
- #: ../mycred.php:664
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "Aviso! Os saldos dos usuários serão definidos para zero! Isso não pode ser "
74
  "desfeito!"
75
 
76
- #: ../mycred.php:665
77
  msgid "Done!"
78
  msgstr "Concluído!"
79
 
80
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
81
  msgid "Close"
82
  msgstr "Fechar"
83
 
84
- #: ../mycred.php:667
85
  msgid "Export users %plural%"
86
  msgstr "Exportar %plural% dos usuários"
87
 
88
- #: ../mycred.php:668
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
- #: ../mycred.php:684
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo do usuário"
98
 
99
- #: ../mycred.php:702
100
  msgid "Edit Log Entry"
101
  msgstr "Editar registro de entradas"
102
 
103
- #: ../mycred.php:706
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "Tem certeza que deseja excluir esta entrada de registros? Isso não pode ser "
107
  "desfeito!"
108
 
109
- #: ../mycred.php:707
110
  msgid "Log entry updated"
111
  msgstr "Registro de entradas atualizado"
112
 
113
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Instalação"
118
 
119
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configurações"
125
 
126
- #: ../mycred.php:803
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
@@ -170,8 +170,8 @@ msgid "Once per day (reset at midnight)"
170
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
174
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -197,7 +197,7 @@ msgid "click to open"
197
  msgstr "clique para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
- #: buy-creds.php:884
201
  msgid "Settings Updated"
202
  msgstr "Configurações atualizadas"
203
 
@@ -238,7 +238,7 @@ msgid "Badge"
238
  msgstr ""
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
@@ -470,7 +470,7 @@ msgid "Status"
470
  msgstr "Status"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
- #: addon-email-notices.php:1293
474
  msgid "Save Changes"
475
  msgstr "Salvar alterações"
476
 
@@ -536,11 +536,11 @@ msgid "Setup mass %_singular% payouts for your users."
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
540
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
541
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acesso negado"
546
 
@@ -562,7 +562,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
562
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Habilitar"
568
 
@@ -684,8 +684,8 @@ msgstr "Pagamento"
684
 
685
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
686
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
687
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
688
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
689
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
690
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
691
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -743,7 +743,7 @@ msgid "This user role is excluded from receiving interest on this balance."
743
  msgstr ""
744
 
745
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
746
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
747
  #: content.php:114
748
  msgid "Leave empty to use the default value."
749
  msgstr ""
@@ -756,15 +756,15 @@ msgstr ""
756
  msgid "Exclude from receiving interest"
757
  msgstr ""
758
 
759
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
760
  msgid "Compound interest rate saved."
761
  msgstr ""
762
 
763
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
764
  msgid "User excluded from receiving interest."
765
  msgstr ""
766
 
767
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
768
  msgid "User included in receiving interest."
769
  msgstr ""
770
 
@@ -773,7 +773,7 @@ msgid "Daily %_plural%"
773
  msgstr "%_plural% diários"
774
 
775
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
776
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
777
  #: modules/mycred-module-log.php:277
778
  msgid "History"
779
  msgstr "Histórico"
@@ -791,10 +791,10 @@ msgid "Pay Users"
791
  msgstr "Usuários pagantes"
792
 
793
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
794
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
795
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
796
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
797
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
798
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
799
  #: plugins/mycred-hook-affiliatewp.php:256
800
  msgid "Amount"
@@ -832,306 +832,306 @@ msgstr ""
832
  msgid "Payment Gateways"
833
  msgstr "Métodos de pagamento"
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
836
  msgctxt "Post Type General Name"
837
  msgid "Pending Payments"
838
  msgstr ""
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
841
  msgctxt "Post Type Singular Name"
842
  msgid "Pending Payment"
843
  msgstr ""
844
 
845
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
846
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
847
  msgid "Pending Payments"
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
851
  msgid "Edit Pending Payment"
852
  msgstr ""
853
 
854
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
855
- #: addon-buy-creds.php:1699
856
  msgid "No pending payments found"
857
  msgstr ""
858
 
859
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
860
  msgid "Not found in Trash"
861
  msgstr ""
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
864
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
865
  msgid "Transaction ID"
866
  msgstr "ID da transação"
867
 
868
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
869
- #: addon-buy-creds.php:1025
870
  msgid "Buyer"
871
  msgstr ""
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
874
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
875
  #: gateway.php:594
876
  msgid "Cost"
877
  msgstr "Preço"
878
 
879
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
880
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
881
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
882
  msgid "Gateway"
883
  msgstr "Métodos de pagamento"
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
886
  msgid "Type"
887
  msgstr ""
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
890
  msgid "Pay Out"
891
  msgstr ""
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
894
  msgid "buyCRED Purchase Log"
895
  msgstr "Registro de compra do buyCRED"
896
 
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
898
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
899
  msgid "Purchase Log"
900
  msgstr "Registro de compra"
901
 
902
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
903
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
904
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
905
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
906
  msgid "Payments"
907
  msgstr "Pagamentos"
908
 
909
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
910
  msgid "Please login to purchase %_plural%"
911
  msgstr "Por favor, faça login para comprar %_plural%"
912
 
913
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
914
  #, php-format
915
  msgid "Gift purchase from %display_name%."
916
  msgstr "Presente comprado por %display_name%."
917
 
918
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
919
  #: addon-ranks.php:1084
920
  msgid "Minimum %plural%"
921
  msgstr "%plural% mínimos"
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
924
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
925
  msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão será 1."
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
928
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
929
  #: module-settings.php:656
930
  msgid "Point Types"
931
  msgstr "Tipos de pontos"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
934
  msgid "Select the point types that users can buy. You must select at least one!"
935
  msgstr ""
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
938
  msgid "Login Template"
939
  msgstr "Modelo de login"
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
942
  msgid "Content to show when a user is not logged in."
943
  msgstr "Conteúdo exibido quanta um usuário não está logado."
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
946
  msgid "Thank You Page"
947
  msgstr "Página de agradecimento"
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
950
- #: addon-buy-creds.php:668
951
  msgid "Custom URL"
952
  msgstr "URL personalizada"
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
955
- #: addon-buy-creds.php:673
956
  msgid "Page"
957
  msgstr "Página"
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
960
  msgid "Cancellation Page"
961
  msgstr "Página de cancelamento"
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
964
  msgid "Show seperate log for %_plural% purchases."
965
  msgstr "Mostrar separadamente o registro de pontos comprados."
966
 
967
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
968
  msgid "Gifting"
969
  msgstr "Presentear"
970
 
971
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
972
  #, php-format
973
  msgid "Allow users to buy %_plural% for other users."
974
  msgstr "Permitir que usuários comprem %_plural% para outros usuários."
975
 
976
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for content authors."
979
  msgstr "Permitir que usuários comprem %_plural% para os autores."
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
982
  #: hooks.php:3110
983
  msgid "Available Shortcodes"
984
  msgstr "Shortcodes disponíveis"
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
987
  #, php-format
988
  msgid "%s Exchange Rate"
989
  msgstr ""
990
 
991
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
992
  msgid "Save Exchange Rates"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
996
  msgid "Exchange rate override saved"
997
  msgstr ""
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1000
  msgid "Payment completed"
1001
  msgstr ""
1002
 
1003
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1004
  #, php-format
1005
  msgid "%s Payment Gateways"
1006
  msgstr "%s Métodos de pagamento"
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1009
- #: addon-buy-creds.php:1034
1010
  msgid "buyCRED Settings"
1011
  msgstr "Configurações do buyCRED"
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1014
  msgid "Test Mode"
1015
  msgstr "Modo de teste"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1018
  msgid "Enabled"
1019
  msgstr "Habilitado"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1022
  msgid "Disabled"
1023
  msgstr "Desabilitado"
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1026
  msgid "Sandbox Mode"
1027
  msgstr "Modo Sandbox"
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1030
  msgid "Enable for test purchases."
1031
  msgstr "Habilitar para compras de teste."
1032
 
1033
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1034
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1035
  msgid "Update Settings"
1036
  msgstr "Atualizar configurações"
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1039
  msgid "More Gateways"
1040
  msgstr ""
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1043
- #: 666
1044
  msgid "Date"
1045
  msgstr "Data"
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1048
  msgid "Payed"
1049
  msgstr "Pago"
1050
 
1051
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1052
  msgid "<strong>buy</strong>CRED Purchase Log"
1053
  msgstr "Registro de compra do <strong>buy</strong>CRED"
1054
 
1055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1056
  #: booking/mycred-eventespresso3.php:367
1057
  msgid "Gateway Settings"
1058
  msgstr "Configurações do método"
1059
 
1060
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1061
- #: content/myCRED-addon-sell-content.php:1209
1062
  msgid "No purchases found"
1063
  msgstr "Nenhuma compra encontrada"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1066
- #: addon-buy-creds.php:1411
1067
  msgid "This Add-on needs to setup before you can use this shortcode."
1068
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
1069
 
1070
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1071
- #: addon-buy-creds.php:1430
1072
  msgid "No gateways installed."
1073
  msgstr "Nenhum método instalado."
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1076
- #: addon-buy-creds.php:1431
1077
  msgid "Gateway does not exist."
1078
  msgstr "Método não existe."
1079
 
1080
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1081
  msgid "Yourself"
1082
  msgstr "Você mesmo"
1083
 
1084
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1085
  msgid "No active gateways found."
1086
  msgstr "Nenhum método ativo foi encontrado."
1087
 
1088
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1089
  msgid "The selected gateway is not active."
1090
  msgstr "O método selecionado não está ativo."
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1093
  #, php-format
1094
  msgid "Buy with %gateway%"
1095
  msgstr "Compre com %gateway%"
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1098
  #: content/myCRED-addon-sell-content.php:44
1099
  msgid "Buy Now"
1100
  msgstr "Comprar agora"
1101
 
1102
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1103
  msgid "No users found"
1104
  msgstr "Nenhum usuário encontrado"
1105
 
1106
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1107
  msgid "To"
1108
  msgstr "Para"
1109
 
1110
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1111
  msgid "Select Amount"
1112
  msgstr "Selecionar a quantia"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1115
  msgid "min."
1116
  msgstr "min."
1117
 
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1119
  msgid "Select Gateway"
1120
  msgstr "Selecione o método"
1121
 
1122
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1123
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1124
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1125
  #: php:35
1126
  msgid "Pay Now"
1127
  msgstr "Pagar agora"
1128
 
1129
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1130
  #: php:536
1131
  msgid "Cancel"
1132
  msgstr "Cancelar"
1133
 
1134
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1135
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1136
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1137
  msgid "Actions"
@@ -1172,12 +1172,12 @@ msgid "Cancel purchase"
1172
  msgstr "Cancelar compra"
1173
 
1174
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1175
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1176
  msgid "required"
1177
  msgstr "obrigatório"
1178
 
1179
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1180
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1181
  msgid "optional"
1182
  msgstr "opcional"
1183
 
@@ -1738,7 +1738,7 @@ msgstr "Expira em"
1738
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1739
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1740
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1741
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1742
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1743
  #: includes/importers/mycred-cubepoints.php:365
1744
  msgid "Point Type"
@@ -1750,7 +1750,7 @@ msgid "not yet used"
1750
  msgstr "ainda não utilizado"
1751
 
1752
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1753
- #: 395 ../modules/mycred-module-hooks.php:2507
1754
  msgid "Total"
1755
  msgstr "Total"
1756
 
@@ -1919,7 +1919,7 @@ msgid "Apply Coupon"
1919
  msgstr "Aplicar cupom"
1920
 
1921
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1922
- #: notices/myCRED-addon-email-notices.php:1267
1923
  msgid "Email Notice"
1924
  msgstr "E-mail de aviso"
1925
 
@@ -2202,8 +2202,8 @@ msgid "Sent To"
2202
  msgstr "Enviar para"
2203
 
2204
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2205
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2206
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2207
  msgid "User"
2208
  msgstr "Usuário"
2209
 
@@ -2335,18 +2335,18 @@ msgstr "Este e-mail de aviso está ativo."
2335
  msgid "Settings saved."
2336
  msgstr "Configurações salvas"
2337
 
2338
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2339
  msgid "Unsubscribe"
2340
  msgstr "Cancelar assinatura"
2341
 
2342
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2343
  msgid "There are no email notifications yet."
2344
  msgstr "Não há notificações de e-mail ainda."
2345
 
2346
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2347
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2348
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2349
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2350
  msgid "Current Balance"
2351
  msgstr "Saldo atual"
2352
 
@@ -2774,8 +2774,8 @@ msgstr "Título para exibir nos recibos e registros"
2774
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2775
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2777
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2778
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2779
  msgid "Button Label"
2780
  msgstr "Rótulo do botão"
2781
 
@@ -2788,8 +2788,8 @@ msgstr "Botão pagar"
2788
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2791
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2792
- #: sell-content.php:682
2793
  msgid "Price"
2794
  msgstr "Preço"
2795
 
@@ -2815,12 +2815,12 @@ msgid "Log"
2815
  msgstr "Registro"
2816
 
2817
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2818
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2819
  msgid "Log Entry"
2820
  msgstr "Entrada no registro"
2821
 
2822
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2823
- #: content/myCRED-addon-sell-content.php:473
2824
  msgid "Templates"
2825
  msgstr "Modelo"
2826
 
@@ -2908,7 +2908,7 @@ msgid "Reject"
2908
  msgstr "Rjeitar"
2909
 
2910
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2911
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2912
  #: modules/mycred-module-settings.php:699
2913
  msgid "Delete"
2914
  msgstr "Deletar"
@@ -3423,46 +3423,46 @@ msgstr ""
3423
  msgid "Save Profit Share"
3424
  msgstr ""
3425
 
3426
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3427
  msgid "Profit Share override saved"
3428
  msgstr ""
3429
 
3430
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3431
  msgid "You can not buy this content."
3432
  msgstr "Você não pode comprar este conteúdo."
3433
 
3434
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3435
  msgid "Error. Try Again"
3436
  msgstr "Erro. Tente novamente"
3437
 
3438
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3439
  msgid "No Payout. Just charge."
3440
  msgstr "Nenhum pagamento. Basta carregar."
3441
 
3442
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3443
  msgid "Pay Content Author."
3444
  msgstr "Pagar autor do conteúdo."
3445
 
3446
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3447
  #: overview.php:141 ../includes/mycred-overview.php:148
3448
  msgid "Sell Content"
3449
  msgstr "Vender conteúdo"
3450
 
3451
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3452
  msgid "Post Types"
3453
  msgstr "Tipos de posts"
3454
 
3455
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3456
  msgid "Comma separated list of post types that can be sold."
3457
  msgstr ""
3458
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3459
  "separados."
3460
 
3461
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3462
  msgid "Percentage to pay Author"
3463
  msgstr "Porcentagem paga ao autor"
3464
 
3465
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3466
  msgid ""
3467
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3468
  "authors are not paid."
@@ -3470,31 +3470,31 @@ msgstr ""
3470
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3471
  "os autores não são pagos."
3472
 
3473
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3474
  msgid "Defaults"
3475
  msgstr "Padrões"
3476
 
3477
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3478
  msgid "Allow authors to change price."
3479
  msgstr "Permitir que os autores alterem o preço."
3480
 
3481
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3482
  msgid "Allow authors to change button label."
3483
  msgstr "Permitir que os autores alterem o rótulo do botão."
3484
 
3485
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3486
  msgid "Purchases expire after"
3487
  msgstr "Compras expiram depois"
3488
 
3489
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3490
  msgid "Use zero for permanent sales."
3491
  msgstr "Utilizte zero para vendas permanentes."
3492
 
3493
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3494
  msgid "For Visitors"
3495
  msgstr ""
3496
 
3497
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3498
  #, php-format
3499
  msgid ""
3500
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3503,65 +3503,65 @@ msgstr ""
3503
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3504
  "logado for comprar o conteúdo!"
3505
 
3506
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3507
  msgid "For Members"
3508
  msgstr ""
3509
 
3510
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3511
- #: content/myCRED-addon-sell-content.php:516
3512
  #, php-format
3513
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3514
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3515
 
3516
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3517
  msgid "For members that can not afford to buy"
3518
  msgstr ""
3519
 
3520
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3521
  msgid "Log template for Purchases"
3522
  msgstr "Modelo de registro para compras"
3523
 
3524
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3525
  msgid "Log template for Sales"
3526
  msgstr "Modelo de registro para vendas"
3527
 
3528
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3529
  #, php-format
3530
  msgid "%s Sell This"
3531
  msgstr "%s vender isso"
3532
 
3533
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3534
  #, php-format
3535
  msgid "%s Sell Content needs to be setup before you can use this feature."
3536
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3537
 
3538
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3539
  msgid "Setup add-on"
3540
  msgstr "Configurar add-on"
3541
 
3542
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3543
  msgid "Lets do it"
3544
  msgstr "Vamos fazer isso"
3545
 
3546
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3547
  #, php-format
3548
  msgid "Enable sale of this %s"
3549
  msgstr "Habilitar venda do %s"
3550
 
3551
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3552
  msgid "Purchase expires after"
3553
  msgstr "Compras expiram depois"
3554
 
3555
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3556
  msgid "Thank you for your purchase!"
3557
  msgstr "Obrigado pela sua compra!"
3558
 
3559
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3560
- #: content/myCRED-addon-sell-content.php:1190
3561
  msgid "The following content is set for sale:"
3562
  msgstr "O conteúdo a seguir está definido para a venda:"
3563
 
3564
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3565
  msgid "Purchased"
3566
  msgstr "Comprado"
3567
 
@@ -3627,17 +3627,17 @@ msgid "Total Spent: %s"
3627
  msgstr ""
3628
 
3629
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3630
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3631
  msgid "Today"
3632
  msgstr "Hoje"
3633
 
3634
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3635
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3636
  msgid "This Week"
3637
  msgstr "Essa semana"
3638
 
3639
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3640
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3641
  msgid "This Month"
3642
  msgstr "Esse mês"
3643
 
@@ -3672,13 +3672,13 @@ msgstr ""
3672
  msgid "Gains in the last 10 days"
3673
  msgstr ""
3674
 
3675
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3676
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3677
  msgid "View"
3678
  msgstr ""
3679
 
3680
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3681
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3682
  msgid "No data found"
3683
  msgstr ""
3684
 
@@ -3933,121 +3933,121 @@ msgstr "Mostrar o limite dos usuários"
3933
  msgid "Welcome to %s %s"
3934
  msgstr "Bem-vindo ao %s %s"
3935
 
3936
- #: ../includes/mycred-admin.php:191
3937
  msgid "A log entry is required in order to adjust this users balance"
3938
  msgstr ""
3939
 
3940
- #: ../includes/mycred-admin.php:193
3941
  msgid "Users balance saved"
3942
  msgstr ""
3943
 
3944
- #: ../includes/mycred-admin.php:201
3945
  msgid "Users excluded"
3946
  msgstr ""
3947
 
3948
- #: ../includes/mycred-admin.php:206
3949
  msgid ""
3950
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3951
  "rate settings and update all premium payment gateways!"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-admin.php:234
3955
  msgid "User is excluded"
3956
  msgstr "O usuário foi excluído"
3957
 
3958
- #: ../includes/mycred-admin.php:239
3959
  msgid "Log Entry can not be empty"
3960
  msgstr "Registro de entrada não pode estar vazio"
3961
 
3962
- #: ../includes/mycred-admin.php:243
3963
  msgid "Amount can not be zero"
3964
  msgstr "Quantia não pode ser zero"
3965
 
3966
- #: ../includes/mycred-admin.php:264
3967
  msgid "Failed to update this uses balance."
3968
  msgstr "Falha ao atualizar o saldo dos usuários."
3969
 
3970
- #: ../includes/mycred-admin.php:385
3971
  msgid "Excluded"
3972
  msgstr "Excluído"
3973
 
3974
- #: ../includes/mycred-admin.php:406
3975
  msgid "Adjust"
3976
  msgstr "Ajustar"
3977
 
3978
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3979
  msgid "Edit Balance"
3980
  msgstr ""
3981
 
3982
- #: ../includes/mycred-admin.php:463
3983
  msgid "Profile"
3984
  msgstr ""
3985
 
3986
- #: ../includes/mycred-admin.php:470
3987
  msgid "Extended Profile"
3988
  msgstr ""
3989
 
3990
- #: ../includes/mycred-admin.php:560
3991
  #, php-format
3992
  msgid "This user is excluded from using %s"
3993
  msgstr ""
3994
 
3995
- #: ../includes/mycred-admin.php:583
3996
  msgid "Edit User"
3997
  msgstr ""
3998
 
3999
- #: ../includes/mycred-admin.php:585
4000
  msgctxt "user"
4001
  msgid "Add New"
4002
  msgstr ""
4003
 
4004
- #: ../includes/mycred-admin.php:587
4005
  msgctxt "user"
4006
  msgid "Add Existing"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-admin.php:598
4010
  #, php-format
4011
  msgid "Total %s Accumulated"
4012
  msgstr ""
4013
 
4014
- #: ../includes/mycred-admin.php:599
4015
  #, php-format
4016
  msgid "Total %s Spent"
4017
  msgstr ""
4018
 
4019
- #: ../includes/mycred-admin.php:610
4020
  msgid "View History"
4021
  msgstr ""
4022
 
4023
- #: ../includes/mycred-admin.php:611
4024
  msgid "Exclude User"
4025
  msgstr ""
4026
 
4027
- #: ../includes/mycred-admin.php:615
4028
  msgid "Adjust Balance"
4029
  msgstr ""
4030
 
4031
- #: ../includes/mycred-admin.php:624
4032
  msgid ""
4033
  "Warning! Excluding this user will result in their balance being deleted "
4034
  "along with any entries currently in your log! This can not be undone!"
4035
  msgstr ""
4036
 
4037
- #: ../includes/mycred-admin.php:682
4038
  #, php-format
4039
  msgid "%singular% balance"
4040
  msgstr "Saldo: %singular%"
4041
 
4042
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4043
  msgid "Update Balance"
4044
  msgstr "Atualizar saldo"
4045
 
4046
- #: ../includes/mycred-admin.php:753
4047
  msgid "ID"
4048
  msgstr "ID"
4049
 
4050
- #: ../includes/mycred-admin.php:759
4051
  msgid "A positive or negative value"
4052
  msgstr "Um valor positivo ou negativo"
4053
 
@@ -4700,66 +4700,66 @@ msgstr "Quase pronto! Clique no botão abaixo para finalizar a instalação."
4700
  msgid "Install & Run"
4701
  msgstr "Instalar e Funcionar"
4702
 
4703
- #: ../includes/mycred-log.php:430
4704
  #, php-format
4705
  msgid "Showing %d %s"
4706
  msgstr "Mostrando %d %s"
4707
 
4708
- #: ../includes/mycred-log.php:430
4709
  msgid "entry"
4710
  msgstr "entrada"
4711
 
4712
- #: ../includes/mycred-log.php:444
4713
  msgid "Go to the first page"
4714
  msgstr "Ir para a primeira página"
4715
 
4716
- #: ../includes/mycred-log.php:451
4717
  msgid "Go to the previous page"
4718
  msgstr "Ir para a página anteiror"
4719
 
4720
- #: ../includes/mycred-log.php:460
4721
  msgid "Current page"
4722
  msgstr "Página atual"
4723
 
4724
- #: ../includes/mycred-log.php:466
4725
  #, php-format
4726
  msgctxt "mycred"
4727
  msgid "%1$s of %2$s"
4728
  msgstr ""
4729
 
4730
- #: ../includes/mycred-log.php:470
4731
  msgid "Go to the next page"
4732
  msgstr "Ir para a próxima página"
4733
 
4734
- #: ../includes/mycred-log.php:477
4735
  msgid "Go to the last page"
4736
  msgstr "Ir para a última página"
4737
 
4738
- #: ../includes/mycred-log.php:544
4739
  msgid "Show all references"
4740
  msgstr "Mostrar todas as referências"
4741
 
4742
- #: ../includes/mycred-log.php:557
4743
  msgid "User ID, Username, Email or Nicename"
4744
  msgstr ""
4745
 
4746
- #: ../includes/mycred-log.php:563
4747
  msgid "Show in order"
4748
  msgstr "Mostrar na ordem"
4749
 
4750
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4751
  msgid "Ascending"
4752
  msgstr "Crescente"
4753
 
4754
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4755
  msgid "Descending"
4756
  msgstr "Decrescente"
4757
 
4758
- #: ../includes/mycred-log.php:582
4759
  msgid "Filter"
4760
  msgstr "Filtro"
4761
 
4762
- #: ../includes/mycred-log.php:635
4763
  msgid ""
4764
  "Log entries are exported to a CSV file and depending on the number of "
4765
  "entries selected, the process may take a few seconds."
@@ -4767,36 +4767,36 @@ msgstr ""
4767
  "As entradas de registro são exportadas para um arquivo CSV e, dependendo do "
4768
  "número de entradas selecionadas, o processo pode demorar alguns segundos."
4769
 
4770
- #: ../includes/mycred-log.php:639
4771
  msgid "No export options available."
4772
  msgstr "Não há opções de exportação disponíveis."
4773
 
4774
- #: ../includes/mycred-log.php:668
4775
  msgid "Entry"
4776
  msgstr "Entrada"
4777
 
4778
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4779
  msgid "User Missing"
4780
  msgstr "Usuário ausente"
4781
 
4782
- #: ../includes/mycred-log.php:839
4783
  msgid "No log entries found"
4784
  msgstr "Nenhuma entrada de registro encontrada"
4785
 
4786
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4787
  msgid "Search Log"
4788
  msgstr "Buscar no registro"
4789
 
4790
- #: ../includes/mycred-log.php:855
4791
  msgid "search log entries"
4792
  msgstr "buscar entradas de registro"
4793
 
4794
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4795
  #: modules/mycred-module-buddypress.php:249
4796
  msgid "All"
4797
  msgstr "Todos"
4798
 
4799
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4800
  msgid "Yesterday"
4801
  msgstr "Ontem"
4802
 
@@ -5037,7 +5037,7 @@ msgstr ""
5037
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5038
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5039
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5040
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5041
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5042
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5043
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5691,7 +5691,7 @@ msgstr ""
5691
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5692
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5693
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5694
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5695
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5696
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5697
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -6021,8 +6021,8 @@ msgstr "Entrada atualizada"
6021
  msgid "Entries"
6022
  msgstr "Entradas"
6023
 
6024
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6025
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6026
  msgid "Export"
6027
  msgstr "Exportar"
6028
 
@@ -6041,35 +6041,35 @@ msgid ""
6041
  "Certain hooks and shortcodes will not work correctly!"
6042
  msgstr ""
6043
 
6044
- #: ../modules/mycred-module-log.php:565
6045
  msgid "Edit"
6046
  msgstr "Editar"
6047
 
6048
- #: ../modules/mycred-module-log.php:612
6049
  msgid "Time"
6050
  msgstr "Tempo"
6051
 
6052
- #: ../modules/mycred-module-log.php:616
6053
  msgid "Current Log Entry"
6054
  msgstr "Entrada de registro atual"
6055
 
6056
- #: ../modules/mycred-module-log.php:618
6057
  msgid "The current saved log entry"
6058
  msgstr "Entrada de registro atual salva"
6059
 
6060
- #: ../modules/mycred-module-log.php:621
6061
  msgid "Adjust Log Entry"
6062
  msgstr "Ajustar entrada de registro"
6063
 
6064
- #: ../modules/mycred-module-log.php:623
6065
  msgid "The new log entry"
6066
  msgstr "Nova entrada de registro"
6067
 
6068
- #: ../modules/mycred-module-log.php:626
6069
  msgid "Update Log Entry"
6070
  msgstr "Atualizar entrada de registro"
6071
 
6072
- #: ../modules/mycred-module-log.php:697
6073
  #, php-format
6074
  msgid "My %s History"
6075
  msgstr "Meu %s histórico"
@@ -6769,23 +6769,23 @@ msgstr "Comentário de assinaturas"
6769
  msgid "Reward with %plural%"
6770
  msgstr ""
6771
 
6772
- #: ../plugins/mycred-hook-sharethis.php:18
6773
  #, php-format
6774
  msgid "%plural% for Sharing"
6775
  msgstr ""
6776
 
6777
- #: ../plugins/mycred-hook-sharethis.php:19
6778
  #, php-format
6779
  msgid ""
6780
  "Awards %_plural% for users sharing / liking your website content to popular "
6781
  "social media sites."
6782
  msgstr ""
6783
 
6784
- #: ../plugins/mycred-hook-sharethis.php:232
6785
  msgid "Your ShareThis public key is not set."
6786
  msgstr ""
6787
 
6788
- #: ../plugins/mycred-hook-sharethis.php:237
6789
  msgid "No ShareThis services detected. Please check your installation."
6790
  msgstr ""
6791
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:43:23 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
25
  "content/plugins/mycred\n"
26
  "X-Poedit-SearchPath-1: ."
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr "Histórico %label%"
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Sobre %s"
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr "Pessoas incríveis"
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Processando..."
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
59
  "Aviso! Todas as entradas em seu registro serão removidas permanentemente! "
60
  "Isso não pode ser desfeito!"
61
 
62
+ #: ../mycred.php:679
63
  msgid ""
64
  "All log entries belonging to deleted users will be permanently deleted! This "
65
  "can not be undone!"
67
  "Todas as entradas de registro que pertencem a usuários excluídos serão "
68
  "excluídos permanentemente! Isso não pode ser desfeito!"
69
 
70
+ #: ../mycred.php:680
71
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
  "Aviso! Os saldos dos usuários serão definidos para zero! Isso não pode ser "
74
  "desfeito!"
75
 
76
+ #: ../mycred.php:681
77
  msgid "Done!"
78
  msgstr "Concluído!"
79
 
80
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
81
  msgid "Close"
82
  msgstr "Fechar"
83
 
84
+ #: ../mycred.php:683
85
  msgid "Export users %plural%"
86
  msgstr "Exportar %plural% dos usuários"
87
 
88
+ #: ../mycred.php:684
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
+ #: ../mycred.php:700
96
  msgid "Edit Users Balance"
97
  msgstr "Editar saldo do usuário"
98
 
99
+ #: ../mycred.php:718
100
  msgid "Edit Log Entry"
101
  msgstr "Editar registro de entradas"
102
 
103
+ #: ../mycred.php:722
104
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
  "Tem certeza que deseja excluir esta entrada de registros? Isso não pode ser "
107
  "desfeito!"
108
 
109
+ #: ../mycred.php:723
110
  msgid "Log entry updated"
111
  msgstr "Registro de entradas atualizado"
112
 
113
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
114
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
  msgid "Setup"
117
  msgstr "Instalação"
118
 
119
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
  msgid "Settings"
124
  msgstr "Configurações"
125
 
126
+ #: ../mycred.php:825
127
  msgid ""
128
  "Make sure to backup your database and files before updating, in case "
129
  "anything goes wrong!"
170
  msgstr "Uma vez por dia (reiniciar a meia-noite)"
171
 
172
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
174
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
175
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
197
  msgstr "clique para abrir"
198
 
199
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
+ #: buy-creds.php:927
201
  msgid "Settings Updated"
202
  msgstr "Configurações atualizadas"
203
 
238
  msgstr ""
239
 
240
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
242
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
  #: addons/ranks/myCRED-addon-ranks.php:448
244
  msgid "Add New"
470
  msgstr "Status"
471
 
472
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
+ #: addon-email-notices.php:1296
474
  msgid "Save Changes"
475
  msgstr "Salvar alterações"
476
 
536
  msgstr ""
537
 
538
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
540
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
541
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
544
  msgid "Access Denied"
545
  msgstr "Acesso negado"
546
 
562
  msgstr "Aviso! Este add-on requer o WP - Cron para funcionar."
563
 
564
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
566
  msgid "Enable"
567
  msgstr "Habilitar"
568
 
684
 
685
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
686
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
687
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
688
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
689
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
690
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
691
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
743
  msgstr ""
744
 
745
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
746
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
747
  #: content.php:114
748
  msgid "Leave empty to use the default value."
749
  msgstr ""
756
  msgid "Exclude from receiving interest"
757
  msgstr ""
758
 
759
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
760
  msgid "Compound interest rate saved."
761
  msgstr ""
762
 
763
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
764
  msgid "User excluded from receiving interest."
765
  msgstr ""
766
 
767
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
768
  msgid "User included in receiving interest."
769
  msgstr ""
770
 
773
  msgstr "%_plural% diários"
774
 
775
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
776
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
777
  #: modules/mycred-module-log.php:277
778
  msgid "History"
779
  msgstr "Histórico"
791
  msgstr "Usuários pagantes"
792
 
793
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
794
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
795
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
796
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
797
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
798
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
799
  #: plugins/mycred-hook-affiliatewp.php:256
800
  msgid "Amount"
832
  msgid "Payment Gateways"
833
  msgstr "Métodos de pagamento"
834
 
835
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
836
  msgctxt "Post Type General Name"
837
  msgid "Pending Payments"
838
  msgstr ""
839
 
840
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
841
  msgctxt "Post Type Singular Name"
842
  msgid "Pending Payment"
843
  msgstr ""
844
 
845
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
846
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
847
  msgid "Pending Payments"
848
  msgstr ""
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
851
  msgid "Edit Pending Payment"
852
  msgstr ""
853
 
854
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
855
+ #: addon-buy-creds.php:1752
856
  msgid "No pending payments found"
857
  msgstr ""
858
 
859
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
860
  msgid "Not found in Trash"
861
  msgstr ""
862
 
863
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
864
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
865
  msgid "Transaction ID"
866
  msgstr "ID da transação"
867
 
868
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
869
+ #: addon-buy-creds.php:1074
870
  msgid "Buyer"
871
  msgstr ""
872
 
873
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
874
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
875
  #: gateway.php:594
876
  msgid "Cost"
877
  msgstr "Preço"
878
 
879
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
880
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
881
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
882
  msgid "Gateway"
883
  msgstr "Métodos de pagamento"
884
 
885
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
886
  msgid "Type"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
890
  msgid "Pay Out"
891
  msgstr ""
892
 
893
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
894
  msgid "buyCRED Purchase Log"
895
  msgstr "Registro de compra do buyCRED"
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
898
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
899
  msgid "Purchase Log"
900
  msgstr "Registro de compra"
901
 
902
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
903
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
904
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
905
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
906
  msgid "Payments"
907
  msgstr "Pagamentos"
908
 
909
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
910
  msgid "Please login to purchase %_plural%"
911
  msgstr "Por favor, faça login para comprar %_plural%"
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
914
  #, php-format
915
  msgid "Gift purchase from %display_name%."
916
  msgstr "Presente comprado por %display_name%."
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
919
  #: addon-ranks.php:1084
920
  msgid "Minimum %plural%"
921
  msgstr "%plural% mínimos"
922
 
923
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
924
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
925
  msgstr "Quantidade mínima de %plural% que um usuário deve comprar. O padrão será 1."
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
928
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
929
  #: module-settings.php:656
930
  msgid "Point Types"
931
  msgstr "Tipos de pontos"
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
934
  msgid "Select the point types that users can buy. You must select at least one!"
935
  msgstr ""
936
 
937
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
938
  msgid "Login Template"
939
  msgstr "Modelo de login"
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
942
  msgid "Content to show when a user is not logged in."
943
  msgstr "Conteúdo exibido quanta um usuário não está logado."
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
946
  msgid "Thank You Page"
947
  msgstr "Página de agradecimento"
948
 
949
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
950
+ #: addon-buy-creds.php:705
951
  msgid "Custom URL"
952
  msgstr "URL personalizada"
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
955
+ #: addon-buy-creds.php:710
956
  msgid "Page"
957
  msgstr "Página"
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
960
  msgid "Cancellation Page"
961
  msgstr "Página de cancelamento"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
964
  msgid "Show seperate log for %_plural% purchases."
965
  msgstr "Mostrar separadamente o registro de pontos comprados."
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
968
  msgid "Gifting"
969
  msgstr "Presentear"
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
972
  #, php-format
973
  msgid "Allow users to buy %_plural% for other users."
974
  msgstr "Permitir que usuários comprem %_plural% para outros usuários."
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
977
  #, php-format
978
  msgid "Allow users to buy %_plural% for content authors."
979
  msgstr "Permitir que usuários comprem %_plural% para os autores."
980
 
981
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
982
  #: hooks.php:3110
983
  msgid "Available Shortcodes"
984
  msgstr "Shortcodes disponíveis"
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
987
  #, php-format
988
  msgid "%s Exchange Rate"
989
  msgstr ""
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
992
  msgid "Save Exchange Rates"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
996
  msgid "Exchange rate override saved"
997
  msgstr ""
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1000
  msgid "Payment completed"
1001
  msgstr ""
1002
 
1003
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1004
  #, php-format
1005
  msgid "%s Payment Gateways"
1006
  msgstr "%s Métodos de pagamento"
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1009
+ #: addon-buy-creds.php:1085
1010
  msgid "buyCRED Settings"
1011
  msgstr "Configurações do buyCRED"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1014
  msgid "Test Mode"
1015
  msgstr "Modo de teste"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1018
  msgid "Enabled"
1019
  msgstr "Habilitado"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1022
  msgid "Disabled"
1023
  msgstr "Desabilitado"
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1026
  msgid "Sandbox Mode"
1027
  msgstr "Modo Sandbox"
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1030
  msgid "Enable for test purchases."
1031
  msgstr "Habilitar para compras de teste."
1032
 
1033
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1034
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1035
  msgid "Update Settings"
1036
  msgstr "Atualizar configurações"
1037
 
1038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1039
  msgid "More Gateways"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1043
+ #: 756
1044
  msgid "Date"
1045
  msgstr "Data"
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1048
  msgid "Payed"
1049
  msgstr "Pago"
1050
 
1051
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1052
  msgid "<strong>buy</strong>CRED Purchase Log"
1053
  msgstr "Registro de compra do <strong>buy</strong>CRED"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1056
  #: booking/mycred-eventespresso3.php:367
1057
  msgid "Gateway Settings"
1058
  msgstr "Configurações do método"
1059
 
1060
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1061
+ #: content/myCRED-addon-sell-content.php:1210
1062
  msgid "No purchases found"
1063
  msgstr "Nenhuma compra encontrada"
1064
 
1065
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1066
+ #: addon-buy-creds.php:1464
1067
  msgid "This Add-on needs to setup before you can use this shortcode."
1068
  msgstr "Este add-on precisa ser configurado antes de usar o shortcode."
1069
 
1070
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1071
+ #: addon-buy-creds.php:1483
1072
  msgid "No gateways installed."
1073
  msgstr "Nenhum método instalado."
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1076
+ #: addon-buy-creds.php:1484
1077
  msgid "Gateway does not exist."
1078
  msgstr "Método não existe."
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1081
  msgid "Yourself"
1082
  msgstr "Você mesmo"
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1085
  msgid "No active gateways found."
1086
  msgstr "Nenhum método ativo foi encontrado."
1087
 
1088
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1089
  msgid "The selected gateway is not active."
1090
  msgstr "O método selecionado não está ativo."
1091
 
1092
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1093
  #, php-format
1094
  msgid "Buy with %gateway%"
1095
  msgstr "Compre com %gateway%"
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1098
  #: content/myCRED-addon-sell-content.php:44
1099
  msgid "Buy Now"
1100
  msgstr "Comprar agora"
1101
 
1102
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1103
  msgid "No users found"
1104
  msgstr "Nenhum usuário encontrado"
1105
 
1106
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1107
  msgid "To"
1108
  msgstr "Para"
1109
 
1110
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1111
  msgid "Select Amount"
1112
  msgstr "Selecionar a quantia"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1115
  msgid "min."
1116
  msgstr "min."
1117
 
1118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1119
  msgid "Select Gateway"
1120
  msgstr "Selecione o método"
1121
 
1122
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1123
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1124
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1125
  #: php:35
1126
  msgid "Pay Now"
1127
  msgstr "Pagar agora"
1128
 
1129
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1130
  #: php:536
1131
  msgid "Cancel"
1132
  msgstr "Cancelar"
1133
 
1134
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1135
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1136
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1137
  msgid "Actions"
1172
  msgstr "Cancelar compra"
1173
 
1174
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1175
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1176
  msgid "required"
1177
  msgstr "obrigatório"
1178
 
1179
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1180
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1181
  msgid "optional"
1182
  msgstr "opcional"
1183
 
1738
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1739
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1740
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1741
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1742
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1743
  #: includes/importers/mycred-cubepoints.php:365
1744
  msgid "Point Type"
1750
  msgstr "ainda não utilizado"
1751
 
1752
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1753
+ #: 416 ../modules/mycred-module-hooks.php:2507
1754
  msgid "Total"
1755
  msgstr "Total"
1756
 
1919
  msgstr "Aplicar cupom"
1920
 
1921
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1922
+ #: notices/myCRED-addon-email-notices.php:1270
1923
  msgid "Email Notice"
1924
  msgstr "E-mail de aviso"
1925
 
2202
  msgstr "Enviar para"
2203
 
2204
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2205
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2206
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2207
  msgid "User"
2208
  msgstr "Usuário"
2209
 
2335
  msgid "Settings saved."
2336
  msgstr "Configurações salvas"
2337
 
2338
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2339
  msgid "Unsubscribe"
2340
  msgstr "Cancelar assinatura"
2341
 
2342
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2343
  msgid "There are no email notifications yet."
2344
  msgstr "Não há notificações de e-mail ainda."
2345
 
2346
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2347
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2348
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2349
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2350
  msgid "Current Balance"
2351
  msgstr "Saldo atual"
2352
 
2774
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2775
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2777
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2778
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2779
  msgid "Button Label"
2780
  msgstr "Rótulo do botão"
2781
 
2788
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2791
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2792
+ #: sell-content.php:683
2793
  msgid "Price"
2794
  msgstr "Preço"
2795
 
2815
  msgstr "Registro"
2816
 
2817
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2818
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2819
  msgid "Log Entry"
2820
  msgstr "Entrada no registro"
2821
 
2822
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2823
+ #: content/myCRED-addon-sell-content.php:474
2824
  msgid "Templates"
2825
  msgstr "Modelo"
2826
 
2908
  msgstr "Rjeitar"
2909
 
2910
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2911
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2912
  #: modules/mycred-module-settings.php:699
2913
  msgid "Delete"
2914
  msgstr "Deletar"
3423
  msgid "Save Profit Share"
3424
  msgstr ""
3425
 
3426
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3427
  msgid "Profit Share override saved"
3428
  msgstr ""
3429
 
3430
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3431
  msgid "You can not buy this content."
3432
  msgstr "Você não pode comprar este conteúdo."
3433
 
3434
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3435
  msgid "Error. Try Again"
3436
  msgstr "Erro. Tente novamente"
3437
 
3438
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3439
  msgid "No Payout. Just charge."
3440
  msgstr "Nenhum pagamento. Basta carregar."
3441
 
3442
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3443
  msgid "Pay Content Author."
3444
  msgstr "Pagar autor do conteúdo."
3445
 
3446
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3447
  #: overview.php:141 ../includes/mycred-overview.php:148
3448
  msgid "Sell Content"
3449
  msgstr "Vender conteúdo"
3450
 
3451
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3452
  msgid "Post Types"
3453
  msgstr "Tipos de posts"
3454
 
3455
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3456
  msgid "Comma separated list of post types that can be sold."
3457
  msgstr ""
3458
  "Lista separada por víruglas dos tipos de posts que podem ser vendidos "
3459
  "separados."
3460
 
3461
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3462
  msgid "Percentage to pay Author"
3463
  msgstr "Porcentagem paga ao autor"
3464
 
3465
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3466
  msgid ""
3467
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3468
  "authors are not paid."
3470
  "Porcentagem do preço para pagar ao autor. Não pode ser zero e é ignorado se "
3471
  "os autores não são pagos."
3472
 
3473
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3474
  msgid "Defaults"
3475
  msgstr "Padrões"
3476
 
3477
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3478
  msgid "Allow authors to change price."
3479
  msgstr "Permitir que os autores alterem o preço."
3480
 
3481
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3482
  msgid "Allow authors to change button label."
3483
  msgstr "Permitir que os autores alterem o rótulo do botão."
3484
 
3485
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3486
  msgid "Purchases expire after"
3487
  msgstr "Compras expiram depois"
3488
 
3489
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3490
  msgid "Use zero for permanent sales."
3491
  msgstr "Utilizte zero para vendas permanentes."
3492
 
3493
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3494
  msgid "For Visitors"
3495
  msgstr ""
3496
 
3497
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3498
  #, php-format
3499
  msgid ""
3500
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3503
  "<strong>Não</strong> utilize o %buy_button% neste modelo quando um usuário "
3504
  "logado for comprar o conteúdo!"
3505
 
3506
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3507
  msgid "For Members"
3508
  msgstr ""
3509
 
3510
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3511
+ #: content/myCRED-addon-sell-content.php:517
3512
  #, php-format
3513
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3514
  msgstr "O modelo deve conter o rótulo %buy_button% para as compras funcionarem!"
3515
 
3516
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3517
  msgid "For members that can not afford to buy"
3518
  msgstr ""
3519
 
3520
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3521
  msgid "Log template for Purchases"
3522
  msgstr "Modelo de registro para compras"
3523
 
3524
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3525
  msgid "Log template for Sales"
3526
  msgstr "Modelo de registro para vendas"
3527
 
3528
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3529
  #, php-format
3530
  msgid "%s Sell This"
3531
  msgstr "%s vender isso"
3532
 
3533
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3534
  #, php-format
3535
  msgid "%s Sell Content needs to be setup before you can use this feature."
3536
  msgstr "%s vender conteúdo precisa ser configurado antes da função ser utilizada."
3537
 
3538
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3539
  msgid "Setup add-on"
3540
  msgstr "Configurar add-on"
3541
 
3542
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3543
  msgid "Lets do it"
3544
  msgstr "Vamos fazer isso"
3545
 
3546
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3547
  #, php-format
3548
  msgid "Enable sale of this %s"
3549
  msgstr "Habilitar venda do %s"
3550
 
3551
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3552
  msgid "Purchase expires after"
3553
  msgstr "Compras expiram depois"
3554
 
3555
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3556
  msgid "Thank you for your purchase!"
3557
  msgstr "Obrigado pela sua compra!"
3558
 
3559
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3560
+ #: content/myCRED-addon-sell-content.php:1191
3561
  msgid "The following content is set for sale:"
3562
  msgstr "O conteúdo a seguir está definido para a venda:"
3563
 
3564
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3565
  msgid "Purchased"
3566
  msgstr "Comprado"
3567
 
3627
  msgstr ""
3628
 
3629
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3630
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3631
  msgid "Today"
3632
  msgstr "Hoje"
3633
 
3634
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3635
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3636
  msgid "This Week"
3637
  msgstr "Essa semana"
3638
 
3639
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3640
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3641
  msgid "This Month"
3642
  msgstr "Esse mês"
3643
 
3672
  msgid "Gains in the last 10 days"
3673
  msgstr ""
3674
 
3675
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3676
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3677
  msgid "View"
3678
  msgstr ""
3679
 
3680
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3681
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3682
  msgid "No data found"
3683
  msgstr ""
3684
 
3933
  msgid "Welcome to %s %s"
3934
  msgstr "Bem-vindo ao %s %s"
3935
 
3936
+ #: ../includes/mycred-admin.php:198
3937
  msgid "A log entry is required in order to adjust this users balance"
3938
  msgstr ""
3939
 
3940
+ #: ../includes/mycred-admin.php:200
3941
  msgid "Users balance saved"
3942
  msgstr ""
3943
 
3944
+ #: ../includes/mycred-admin.php:208
3945
  msgid "Users excluded"
3946
  msgstr ""
3947
 
3948
+ #: ../includes/mycred-admin.php:213
3949
  msgid ""
3950
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3951
  "rate settings and update all premium payment gateways!"
3952
  msgstr ""
3953
 
3954
+ #: ../includes/mycred-admin.php:242
3955
  msgid "User is excluded"
3956
  msgstr "O usuário foi excluído"
3957
 
3958
+ #: ../includes/mycred-admin.php:247
3959
  msgid "Log Entry can not be empty"
3960
  msgstr "Registro de entrada não pode estar vazio"
3961
 
3962
+ #: ../includes/mycred-admin.php:251
3963
  msgid "Amount can not be zero"
3964
  msgstr "Quantia não pode ser zero"
3965
 
3966
+ #: ../includes/mycred-admin.php:272
3967
  msgid "Failed to update this uses balance."
3968
  msgstr "Falha ao atualizar o saldo dos usuários."
3969
 
3970
+ #: ../includes/mycred-admin.php:406
3971
  msgid "Excluded"
3972
  msgstr "Excluído"
3973
 
3974
+ #: ../includes/mycred-admin.php:427
3975
  msgid "Adjust"
3976
  msgstr "Ajustar"
3977
 
3978
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3979
  msgid "Edit Balance"
3980
  msgstr ""
3981
 
3982
+ #: ../includes/mycred-admin.php:490
3983
  msgid "Profile"
3984
  msgstr ""
3985
 
3986
+ #: ../includes/mycred-admin.php:497
3987
  msgid "Extended Profile"
3988
  msgstr ""
3989
 
3990
+ #: ../includes/mycred-admin.php:591
3991
  #, php-format
3992
  msgid "This user is excluded from using %s"
3993
  msgstr ""
3994
 
3995
+ #: ../includes/mycred-admin.php:615
3996
  msgid "Edit User"
3997
  msgstr ""
3998
 
3999
+ #: ../includes/mycred-admin.php:617
4000
  msgctxt "user"
4001
  msgid "Add New"
4002
  msgstr ""
4003
 
4004
+ #: ../includes/mycred-admin.php:619
4005
  msgctxt "user"
4006
  msgid "Add Existing"
4007
  msgstr ""
4008
 
4009
+ #: ../includes/mycred-admin.php:630
4010
  #, php-format
4011
  msgid "Total %s Accumulated"
4012
  msgstr ""
4013
 
4014
+ #: ../includes/mycred-admin.php:631
4015
  #, php-format
4016
  msgid "Total %s Spent"
4017
  msgstr ""
4018
 
4019
+ #: ../includes/mycred-admin.php:642
4020
  msgid "View History"
4021
  msgstr ""
4022
 
4023
+ #: ../includes/mycred-admin.php:643
4024
  msgid "Exclude User"
4025
  msgstr ""
4026
 
4027
+ #: ../includes/mycred-admin.php:647
4028
  msgid "Adjust Balance"
4029
  msgstr ""
4030
 
4031
+ #: ../includes/mycred-admin.php:656
4032
  msgid ""
4033
  "Warning! Excluding this user will result in their balance being deleted "
4034
  "along with any entries currently in your log! This can not be undone!"
4035
  msgstr ""
4036
 
4037
+ #: ../includes/mycred-admin.php:721
4038
  #, php-format
4039
  msgid "%singular% balance"
4040
  msgstr "Saldo: %singular%"
4041
 
4042
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4043
  msgid "Update Balance"
4044
  msgstr "Atualizar saldo"
4045
 
4046
+ #: ../includes/mycred-admin.php:798
4047
  msgid "ID"
4048
  msgstr "ID"
4049
 
4050
+ #: ../includes/mycred-admin.php:804
4051
  msgid "A positive or negative value"
4052
  msgstr "Um valor positivo ou negativo"
4053
 
4700
  msgid "Install & Run"
4701
  msgstr "Instalar e Funcionar"
4702
 
4703
+ #: ../includes/mycred-log.php:485
4704
  #, php-format
4705
  msgid "Showing %d %s"
4706
  msgstr "Mostrando %d %s"
4707
 
4708
+ #: ../includes/mycred-log.php:485
4709
  msgid "entry"
4710
  msgstr "entrada"
4711
 
4712
+ #: ../includes/mycred-log.php:500
4713
  msgid "Go to the first page"
4714
  msgstr "Ir para a primeira página"
4715
 
4716
+ #: ../includes/mycred-log.php:507
4717
  msgid "Go to the previous page"
4718
  msgstr "Ir para a página anteiror"
4719
 
4720
+ #: ../includes/mycred-log.php:517
4721
  msgid "Current page"
4722
  msgstr "Página atual"
4723
 
4724
+ #: ../includes/mycred-log.php:523
4725
  #, php-format
4726
  msgctxt "mycred"
4727
  msgid "%1$s of %2$s"
4728
  msgstr ""
4729
 
4730
+ #: ../includes/mycred-log.php:527
4731
  msgid "Go to the next page"
4732
  msgstr "Ir para a próxima página"
4733
 
4734
+ #: ../includes/mycred-log.php:534
4735
  msgid "Go to the last page"
4736
  msgstr "Ir para a última página"
4737
 
4738
+ #: ../includes/mycred-log.php:611
4739
  msgid "Show all references"
4740
  msgstr "Mostrar todas as referências"
4741
 
4742
+ #: ../includes/mycred-log.php:628
4743
  msgid "User ID, Username, Email or Nicename"
4744
  msgstr ""
4745
 
4746
+ #: ../includes/mycred-log.php:636
4747
  msgid "Show in order"
4748
  msgstr "Mostrar na ordem"
4749
 
4750
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4751
  msgid "Ascending"
4752
  msgstr "Crescente"
4753
 
4754
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4755
  msgid "Descending"
4756
  msgstr "Decrescente"
4757
 
4758
+ #: ../includes/mycred-log.php:658
4759
  msgid "Filter"
4760
  msgstr "Filtro"
4761
 
4762
+ #: ../includes/mycred-log.php:718
4763
  msgid ""
4764
  "Log entries are exported to a CSV file and depending on the number of "
4765
  "entries selected, the process may take a few seconds."
4767
  "As entradas de registro são exportadas para um arquivo CSV e, dependendo do "
4768
  "número de entradas selecionadas, o processo pode demorar alguns segundos."
4769
 
4770
+ #: ../includes/mycred-log.php:725
4771
  msgid "No export options available."
4772
  msgstr "Não há opções de exportação disponíveis."
4773
 
4774
+ #: ../includes/mycred-log.php:758
4775
  msgid "Entry"
4776
  msgstr "Entrada"
4777
 
4778
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4779
  msgid "User Missing"
4780
  msgstr "Usuário ausente"
4781
 
4782
+ #: ../includes/mycred-log.php:958
4783
  msgid "No log entries found"
4784
  msgstr "Nenhuma entrada de registro encontrada"
4785
 
4786
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4787
  msgid "Search Log"
4788
  msgstr "Buscar no registro"
4789
 
4790
+ #: ../includes/mycred-log.php:977
4791
  msgid "search log entries"
4792
  msgstr "buscar entradas de registro"
4793
 
4794
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4795
  #: modules/mycred-module-buddypress.php:249
4796
  msgid "All"
4797
  msgstr "Todos"
4798
 
4799
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4800
  msgid "Yesterday"
4801
  msgstr "Ontem"
4802
 
5037
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5038
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5039
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5040
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5041
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5042
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5043
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5691
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5692
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5693
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5694
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5695
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5696
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5697
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
6021
  msgid "Entries"
6022
  msgstr "Entradas"
6023
 
6024
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6025
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6026
  msgid "Export"
6027
  msgstr "Exportar"
6028
 
6041
  "Certain hooks and shortcodes will not work correctly!"
6042
  msgstr ""
6043
 
6044
+ #: ../modules/mycred-module-log.php:563
6045
  msgid "Edit"
6046
  msgstr "Editar"
6047
 
6048
+ #: ../modules/mycred-module-log.php:610
6049
  msgid "Time"
6050
  msgstr "Tempo"
6051
 
6052
+ #: ../modules/mycred-module-log.php:614
6053
  msgid "Current Log Entry"
6054
  msgstr "Entrada de registro atual"
6055
 
6056
+ #: ../modules/mycred-module-log.php:616
6057
  msgid "The current saved log entry"
6058
  msgstr "Entrada de registro atual salva"
6059
 
6060
+ #: ../modules/mycred-module-log.php:619
6061
  msgid "Adjust Log Entry"
6062
  msgstr "Ajustar entrada de registro"
6063
 
6064
+ #: ../modules/mycred-module-log.php:621
6065
  msgid "The new log entry"
6066
  msgstr "Nova entrada de registro"
6067
 
6068
+ #: ../modules/mycred-module-log.php:624
6069
  msgid "Update Log Entry"
6070
  msgstr "Atualizar entrada de registro"
6071
 
6072
+ #: ../modules/mycred-module-log.php:695
6073
  #, php-format
6074
  msgid "My %s History"
6075
  msgstr "Meu %s histórico"
6769
  msgid "Reward with %plural%"
6770
  msgstr ""
6771
 
6772
+ #: ../plugins/mycred-hook-sharethis.php:19
6773
  #, php-format
6774
  msgid "%plural% for Sharing"
6775
  msgstr ""
6776
 
6777
+ #: ../plugins/mycred-hook-sharethis.php:20
6778
  #, php-format
6779
  msgid ""
6780
  "Awards %_plural% for users sharing / liking your website content to popular "
6781
  "social media sites."
6782
  msgstr ""
6783
 
6784
+ #: ../plugins/mycred-hook-sharethis.php:257
6785
  msgid "Your ShareThis public key is not set."
6786
  msgstr ""
6787
 
6788
+ #: ../plugins/mycred-hook-sharethis.php:262
6789
  msgid "No ShareThis services detected. Please check your installation."
6790
  msgstr ""
6791
 
lang/mycred-ru_RU.mo CHANGED
Binary file
lang/mycred-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:05:31 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -26,34 +26,34 @@ msgstr ""
26
  "content/plugins/mycred\n"
27
  "X-Poedit-SearchPath-1: ."
28
 
29
- #: ../mycred.php:449
30
  msgid "Balance"
31
  msgstr "Баланс/Счет"
32
 
33
- #: ../mycred.php:474
34
  msgid "%label% History"
35
  msgstr "%label% История"
36
 
37
- #: ../mycred.php:567
38
  #, php-format
39
  msgid "About %s"
40
  msgstr "Около %s"
41
 
42
- #: ../mycred.php:576
43
  msgid "Awesome People"
44
  msgstr "Потрясающие люди"
45
 
46
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
47
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
48
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
49
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
50
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
51
  #: php:636
52
  msgid "Processing..."
53
  msgstr "Обработка..."
54
 
55
  #. log entries???
56
- #: ../mycred.php:662
57
  msgid ""
58
  "Warning! All entries in your log will be permanently removed! This can not "
59
  "be undone!"
@@ -61,7 +61,7 @@ msgstr ""
61
  "Внимание! Все записи в журнале будут удалены без возможности восстановления. "
62
  "Это нельзя отменить! "
63
 
64
- #: ../mycred.php:663
65
  msgid ""
66
  "All log entries belonging to deleted users will be permanently deleted! This "
67
  "can not be undone!"
@@ -69,63 +69,63 @@ msgstr ""
69
  "Все регистрации в журнале, принадлежащие удаленным пользователям, будут "
70
  "навсегда удалены! Действие нельзя отменить!"
71
 
72
- #: ../mycred.php:664
73
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
74
  msgstr ""
75
  "Предупреждение! Все счета пользователя будут аннулированы! Невозможно "
76
  "выполнить действие! "
77
 
78
- #: ../mycred.php:665
79
  msgid "Done!"
80
  msgstr "Готово! "
81
 
82
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
83
  msgid "Close"
84
  msgstr "Закрыть"
85
 
86
- #: ../mycred.php:667
87
  msgid "Export users %plural%"
88
  msgstr "Перемещение пользователей %plural%"
89
 
90
- #: ../mycred.php:668
91
  msgid ""
92
  "In order to adjust the number of decimal places you want to use we must "
93
  "update your log. It is highly recommended that you backup your current log "
94
  "before continuing!"
95
  msgstr ""
96
 
97
- #: ../mycred.php:684
98
  msgid "Edit Users Balance"
99
  msgstr "Редактировать счет пользователя"
100
 
101
- #: ../mycred.php:702
102
  msgid "Edit Log Entry"
103
  msgstr "Редактировать запись журнала"
104
 
105
- #: ../mycred.php:706
106
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
107
  msgstr ""
108
  "Вы уверены, что желаете удалить эту запись из журнала? Это невозможно "
109
  "отменить!"
110
 
111
- #: ../mycred.php:707
112
  msgid "Log entry updated"
113
  msgstr "Запись в журнале обновлена"
114
 
115
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
116
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
117
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
118
  msgid "Setup"
119
  msgstr "Установка"
120
 
121
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
122
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
123
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
124
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
125
  msgid "Settings"
126
  msgstr "Настройки"
127
 
128
- #: ../mycred.php:803
129
  msgid ""
130
  "Make sure to backup your database and files before updating, in case "
131
  "anything goes wrong!"
@@ -172,8 +172,8 @@ msgid "Once per day (reset at midnight)"
172
  msgstr "Один раз в день (перезагрузка в полночь)"
173
 
174
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
175
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
176
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
177
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
179
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -199,7 +199,7 @@ msgid "click to open"
199
  msgstr "кликнуть, чтобы открыть"
200
 
201
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
202
- #: buy-creds.php:884
203
  msgid "Settings Updated"
204
  msgstr "Настройки обновлены"
205
 
@@ -240,7 +240,7 @@ msgid "Badge"
240
  msgstr ""
241
 
242
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
243
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
244
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
245
  #: addons/ranks/myCRED-addon-ranks.php:448
246
  msgid "Add New"
@@ -472,7 +472,7 @@ msgid "Status"
472
  msgstr "Статус"
473
 
474
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
475
- #: addon-email-notices.php:1293
476
  msgid "Save Changes"
477
  msgstr ""
478
 
@@ -538,11 +538,11 @@ msgid "Setup mass %_singular% payouts for your users."
538
  msgstr ""
539
 
540
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
541
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
542
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
543
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
544
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
545
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
546
  msgid "Access Denied"
547
  msgstr "Ошибка Доступа"
548
 
@@ -565,7 +565,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
565
  msgstr "Предупреждение! Этот модуль требует WP - утилиту Cron для работы."
566
 
567
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
568
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
569
  msgid "Enable"
570
  msgstr "Разрешить"
571
 
@@ -687,8 +687,8 @@ msgstr "Расход средств"
687
 
688
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
689
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
690
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
691
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
692
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
693
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
694
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -746,7 +746,7 @@ msgid "This user role is excluded from receiving interest on this balance."
746
  msgstr ""
747
 
748
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
749
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
750
  #: content.php:114
751
  msgid "Leave empty to use the default value."
752
  msgstr ""
@@ -759,15 +759,15 @@ msgstr ""
759
  msgid "Exclude from receiving interest"
760
  msgstr ""
761
 
762
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
763
  msgid "Compound interest rate saved."
764
  msgstr ""
765
 
766
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
767
  msgid "User excluded from receiving interest."
768
  msgstr ""
769
 
770
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
771
  msgid "User included in receiving interest."
772
  msgstr ""
773
 
@@ -776,7 +776,7 @@ msgid "Daily %_plural%"
776
  msgstr "Ежедневно %_plural%"
777
 
778
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
779
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
780
  #: modules/mycred-module-log.php:277
781
  msgid "History"
782
  msgstr "История"
@@ -794,10 +794,10 @@ msgid "Pay Users"
794
  msgstr "Заплатить пользователям"
795
 
796
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
797
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
798
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
799
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
800
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
801
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
802
  #: plugins/mycred-hook-affiliatewp.php:256
803
  msgid "Amount"
@@ -836,308 +836,308 @@ msgstr ""
836
  msgid "Payment Gateways"
837
  msgstr "Платежная система"
838
 
839
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
840
  msgctxt "Post Type General Name"
841
  msgid "Pending Payments"
842
  msgstr ""
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
845
  msgctxt "Post Type Singular Name"
846
  msgid "Pending Payment"
847
  msgstr ""
848
 
849
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
850
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
851
  msgid "Pending Payments"
852
  msgstr ""
853
 
854
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
855
  msgid "Edit Pending Payment"
856
  msgstr ""
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
859
- #: addon-buy-creds.php:1699
860
  msgid "No pending payments found"
861
  msgstr ""
862
 
863
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
864
  msgid "Not found in Trash"
865
  msgstr ""
866
 
867
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
868
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
869
  msgid "Transaction ID"
870
  msgstr "Код трансакции "
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
873
- #: addon-buy-creds.php:1025
874
  msgid "Buyer"
875
  msgstr ""
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
878
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
879
  #: gateway.php:594
880
  msgid "Cost"
881
  msgstr "Цена"
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
884
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
885
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
886
  msgid "Gateway"
887
  msgstr "Шлюз"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
890
  msgid "Type"
891
  msgstr ""
892
 
893
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
894
  msgid "Pay Out"
895
  msgstr ""
896
 
897
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
898
  msgid "buyCRED Purchase Log"
899
  msgstr "приобрести журнал покупок CRED"
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
902
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
903
  msgid "Purchase Log"
904
  msgstr "Журнал покупки"
905
 
906
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
907
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
908
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
909
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
910
  msgid "Payments"
911
  msgstr "Платежи"
912
 
913
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
914
  msgid "Please login to purchase %_plural%"
915
  msgstr "Пожалуйста войдите в систему для приобретения %_plural%"
916
 
917
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
918
  #, php-format
919
  msgid "Gift purchase from %display_name%."
920
  msgstr "Покупка подарка с %display_name%."
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
923
  #: addon-ranks.php:1084
924
  msgid "Minimum %plural%"
925
  msgstr "Минимальные %plural% "
926
 
927
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
928
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
929
  msgstr "Минимальное количество %plural% , которое клиент должен приобрести. "
930
 
931
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
932
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
933
  #: module-settings.php:656
934
  msgid "Point Types"
935
  msgstr "Виды очков"
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
938
  msgid "Select the point types that users can buy. You must select at least one!"
939
  msgstr ""
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
942
  msgid "Login Template"
943
  msgstr "Шаблон входа"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
946
  msgid "Content to show when a user is not logged in."
947
  msgstr "Контент показывается, когда пользователь не вошел в систему."
948
 
949
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
950
  msgid "Thank You Page"
951
  msgstr "Благодарность вашей странице"
952
 
953
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
954
- #: addon-buy-creds.php:668
955
  msgid "Custom URL"
956
  msgstr "Настраиваемый URL"
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
959
- #: addon-buy-creds.php:673
960
  msgid "Page"
961
  msgstr "Страница"
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
964
  msgid "Cancellation Page"
965
  msgstr "Страница аннулирования"
966
 
967
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
968
  msgid "Show seperate log for %_plural% purchases."
969
  msgstr "Показать отдельный системный журнал для %_plural% покупок."
970
 
971
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
972
  msgid "Gifting"
973
  msgstr "Дарить"
974
 
975
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for other users."
978
  msgstr "Позволить пользователям покупать %_plural% для других клиентов."
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
981
  #, php-format
982
  msgid "Allow users to buy %_plural% for content authors."
983
  msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
986
  #: hooks.php:3110
987
  msgid "Available Shortcodes"
988
  msgstr "Доступные короткие коды"
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
991
  #, php-format
992
  msgid "%s Exchange Rate"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
996
  msgid "Save Exchange Rates"
997
  msgstr ""
998
 
999
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
1000
  msgid "Exchange rate override saved"
1001
  msgstr ""
1002
 
1003
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
1004
  msgid "Payment completed"
1005
  msgstr ""
1006
 
1007
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
1008
  #, php-format
1009
  msgid "%s Payment Gateways"
1010
  msgstr "%s Способы оплаты"
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1013
- #: addon-buy-creds.php:1034
1014
  msgid "buyCRED Settings"
1015
  msgstr "настройки buyCRED"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1018
  msgid "Test Mode"
1019
  msgstr "Тестовый режим"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1022
  msgid "Enabled"
1023
  msgstr "Включено"
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1026
  msgid "Disabled"
1027
  msgstr "Отключено"
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1030
  msgid "Sandbox Mode"
1031
  msgstr "Режим изолированной программной среды."
1032
 
1033
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1034
  msgid "Enable for test purchases."
1035
  msgstr "Разрешить тестовые покупки."
1036
 
1037
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1038
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1039
  msgid "Update Settings"
1040
  msgstr "Настройки обновлений"
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1043
  msgid "More Gateways"
1044
  msgstr ""
1045
 
1046
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1047
- #: 666
1048
  msgid "Date"
1049
  msgstr "Дата "
1050
 
1051
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1052
  msgid "Payed"
1053
  msgstr "Оплачено"
1054
 
1055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1056
  msgid "<strong>buy</strong>CRED Purchase Log"
1057
  msgstr "<strong>купить</strong>CRED журнал покупки"
1058
 
1059
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1060
  #: booking/mycred-eventespresso3.php:367
1061
  msgid "Gateway Settings"
1062
  msgstr "Настройки шлюза"
1063
 
1064
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1065
- #: content/myCRED-addon-sell-content.php:1209
1066
  msgid "No purchases found"
1067
  msgstr "Покупок не обнаружено"
1068
 
1069
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1070
- #: addon-buy-creds.php:1411
1071
  msgid "This Add-on needs to setup before you can use this shortcode."
1072
  msgstr ""
1073
  "Это расширение необходимо установить перед началом использования этого "
1074
  "короткого номера."
1075
 
1076
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1077
- #: addon-buy-creds.php:1430
1078
  msgid "No gateways installed."
1079
  msgstr "Нет установленных шлюзов."
1080
 
1081
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1082
- #: addon-buy-creds.php:1431
1083
  msgid "Gateway does not exist."
1084
  msgstr "Шлюз не существует."
1085
 
1086
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1087
  msgid "Yourself"
1088
  msgstr "Самостоятельно"
1089
 
1090
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1091
  msgid "No active gateways found."
1092
  msgstr "Активных шлюзов не обнаружено."
1093
 
1094
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1095
  msgid "The selected gateway is not active."
1096
  msgstr "Выбранный шлюз не активен."
1097
 
1098
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1099
  #, php-format
1100
  msgid "Buy with %gateway%"
1101
  msgstr "Приобрести с %gateway%"
1102
 
1103
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1104
  #: content/myCRED-addon-sell-content.php:44
1105
  msgid "Buy Now"
1106
  msgstr "Купить сейчас"
1107
 
1108
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1109
  msgid "No users found"
1110
  msgstr "Пользователи не найдены"
1111
 
1112
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1113
  msgid "To"
1114
  msgstr "До"
1115
 
1116
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1117
  msgid "Select Amount"
1118
  msgstr "Выбать количество "
1119
 
1120
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1121
  msgid "min."
1122
  msgstr "мин."
1123
 
1124
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1125
  msgid "Select Gateway"
1126
  msgstr "Выбрать шлюз"
1127
 
1128
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1129
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1130
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1131
  #: php:35
1132
  msgid "Pay Now"
1133
  msgstr "Оплатить сейчас"
1134
 
1135
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1136
  #: php:536
1137
  msgid "Cancel"
1138
  msgstr "Отменить"
1139
 
1140
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1141
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1142
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1143
  msgid "Actions"
@@ -1178,12 +1178,12 @@ msgid "Cancel purchase"
1178
  msgstr "Отменить покупку"
1179
 
1180
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1181
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1182
  msgid "required"
1183
  msgstr "необходимо"
1184
 
1185
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1186
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1187
  msgid "optional"
1188
  msgstr "выборочно"
1189
 
@@ -1744,7 +1744,7 @@ msgstr "Заканчивается срок"
1744
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1745
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1746
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1747
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1748
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1749
  #: includes/importers/mycred-cubepoints.php:365
1750
  msgid "Point Type"
@@ -1756,7 +1756,7 @@ msgid "not yet used"
1756
  msgstr "еще не использовано"
1757
 
1758
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1759
- #: 395 ../modules/mycred-module-hooks.php:2507
1760
  msgid "Total"
1761
  msgstr "Общее "
1762
 
@@ -1925,7 +1925,7 @@ msgid "Apply Coupon"
1925
  msgstr "Подать запрос на купон"
1926
 
1927
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1928
- #: notices/myCRED-addon-email-notices.php:1267
1929
  msgid "Email Notice"
1930
  msgstr "Уведомление по электронной почте"
1931
 
@@ -2204,8 +2204,8 @@ msgid "Sent To"
2204
  msgstr "Отправить"
2205
 
2206
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2207
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2208
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2209
  msgid "User"
2210
  msgstr "Пользователь"
2211
 
@@ -2337,18 +2337,18 @@ msgstr "И-мейл извещение активно."
2337
  msgid "Settings saved."
2338
  msgstr ""
2339
 
2340
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2341
  msgid "Unsubscribe"
2342
  msgstr ""
2343
 
2344
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2345
  msgid "There are no email notifications yet."
2346
  msgstr ""
2347
 
2348
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2349
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2350
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2351
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2352
  msgid "Current Balance"
2353
  msgstr "Текущий баланс"
2354
 
@@ -2774,8 +2774,8 @@ msgstr "Заголовок, который отображается на кви
2774
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2775
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2777
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2778
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2779
  msgid "Button Label"
2780
  msgstr "Кнопка ярлыка"
2781
 
@@ -2788,8 +2788,8 @@ msgstr "Кнопка оплаты"
2788
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2791
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2792
- #: sell-content.php:682
2793
  msgid "Price"
2794
  msgstr "Цена"
2795
 
@@ -2815,12 +2815,12 @@ msgid "Log"
2815
  msgstr "Журнал"
2816
 
2817
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2818
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2819
  msgid "Log Entry"
2820
  msgstr "Журнал входа"
2821
 
2822
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2823
- #: content/myCRED-addon-sell-content.php:473
2824
  msgid "Templates"
2825
  msgstr "Шаблоны"
2826
 
@@ -2910,7 +2910,7 @@ msgid "Reject"
2910
  msgstr "Отклонить"
2911
 
2912
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2913
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2914
  #: modules/mycred-module-settings.php:699
2915
  msgid "Delete"
2916
  msgstr "Удалить"
@@ -3426,44 +3426,44 @@ msgstr ""
3426
  msgid "Save Profit Share"
3427
  msgstr ""
3428
 
3429
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3430
  msgid "Profit Share override saved"
3431
  msgstr ""
3432
 
3433
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3434
  msgid "You can not buy this content."
3435
  msgstr "Вы не можете приобрести этот контент."
3436
 
3437
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3438
  msgid "Error. Try Again"
3439
  msgstr "Ошибка. Повторите попытку"
3440
 
3441
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3442
  msgid "No Payout. Just charge."
3443
  msgstr "Нет выплат. Только расходы."
3444
 
3445
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3446
  msgid "Pay Content Author."
3447
  msgstr "Заплатить автору контента."
3448
 
3449
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3450
  #: overview.php:141 ../includes/mycred-overview.php:148
3451
  msgid "Sell Content"
3452
  msgstr "Продать контент"
3453
 
3454
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3455
  msgid "Post Types"
3456
  msgstr "Типы публикации"
3457
 
3458
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3459
  msgid "Comma separated list of post types that can be sold."
3460
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3461
 
3462
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3463
  msgid "Percentage to pay Author"
3464
  msgstr "Проценты для выплаты автору"
3465
 
3466
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3467
  msgid ""
3468
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3469
  "authors are not paid."
@@ -3471,31 +3471,31 @@ msgstr ""
3471
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3472
  "игнорируется, если авторам не платят. "
3473
 
3474
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3475
  msgid "Defaults"
3476
  msgstr "Неплатёж"
3477
 
3478
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3479
  msgid "Allow authors to change price."
3480
  msgstr "Разрешить авторам изменять цену. "
3481
 
3482
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3483
  msgid "Allow authors to change button label."
3484
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3485
 
3486
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3487
  msgid "Purchases expire after"
3488
  msgstr "Срок покупки истекает после"
3489
 
3490
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3491
  msgid "Use zero for permanent sales."
3492
  msgstr "Использовать ноль для постоянных распродаж."
3493
 
3494
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3495
  msgid "For Visitors"
3496
  msgstr ""
3497
 
3498
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3499
  #, php-format
3500
  msgid ""
3501
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
@@ -3504,69 +3504,69 @@ msgstr ""
3504
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3505
  "пользователь должен войти в систему для покупки контента!"
3506
 
3507
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3508
  msgid "For Members"
3509
  msgstr ""
3510
 
3511
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3512
- #: content/myCRED-addon-sell-content.php:516
3513
  #, php-format
3514
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3515
  msgstr ""
3516
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3517
  "работали! "
3518
 
3519
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3520
  msgid "For members that can not afford to buy"
3521
  msgstr ""
3522
 
3523
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3524
  msgid "Log template for Purchases"
3525
  msgstr "Журнал шаблона для покупок"
3526
 
3527
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3528
  msgid "Log template for Sales"
3529
  msgstr "Журнал шаблона для распродаж"
3530
 
3531
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3532
  #, php-format
3533
  msgid "%s Sell This"
3534
  msgstr "%s продать это"
3535
 
3536
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3537
  #, php-format
3538
  msgid "%s Sell Content needs to be setup before you can use this feature."
3539
  msgstr ""
3540
  "%s Необходимо установить продажу контента перед началом использования этого "
3541
  "свойства."
3542
 
3543
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3544
  msgid "Setup add-on"
3545
  msgstr "Расширение настройки"
3546
 
3547
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3548
  msgid "Lets do it"
3549
  msgstr "Выполнить это"
3550
 
3551
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3552
  #, php-format
3553
  msgid "Enable sale of this %s"
3554
  msgstr ""
3555
 
3556
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3557
  msgid "Purchase expires after"
3558
  msgstr "Срок действия покупки истекает после "
3559
 
3560
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3561
  msgid "Thank you for your purchase!"
3562
  msgstr "Благодарим вас за вашу покупку!"
3563
 
3564
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3565
- #: content/myCRED-addon-sell-content.php:1190
3566
  msgid "The following content is set for sale:"
3567
  msgstr "Следующий контент установлен на продажу:"
3568
 
3569
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3570
  msgid "Purchased"
3571
  msgstr "Купленный"
3572
 
@@ -3632,17 +3632,17 @@ msgid "Total Spent: %s"
3632
  msgstr ""
3633
 
3634
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3635
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3636
  msgid "Today"
3637
  msgstr "Сегодня"
3638
 
3639
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3640
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3641
  msgid "This Week"
3642
  msgstr "На этой неделе"
3643
 
3644
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3645
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3646
  msgid "This Month"
3647
  msgstr "В этом месяце"
3648
 
@@ -3677,13 +3677,13 @@ msgstr ""
3677
  msgid "Gains in the last 10 days"
3678
  msgstr ""
3679
 
3680
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3681
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3682
  msgid "View"
3683
  msgstr ""
3684
 
3685
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3686
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3687
  msgid "No data found"
3688
  msgstr ""
3689
 
@@ -3938,121 +3938,121 @@ msgstr "Показать лимит пользователя"
3938
  msgid "Welcome to %s %s"
3939
  msgstr "Добро пожаловать в %s %s"
3940
 
3941
- #: ../includes/mycred-admin.php:191
3942
  msgid "A log entry is required in order to adjust this users balance"
3943
  msgstr ""
3944
 
3945
- #: ../includes/mycred-admin.php:193
3946
  msgid "Users balance saved"
3947
  msgstr ""
3948
 
3949
- #: ../includes/mycred-admin.php:201
3950
  msgid "Users excluded"
3951
  msgstr ""
3952
 
3953
- #: ../includes/mycred-admin.php:206
3954
  msgid ""
3955
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3956
  "rate settings and update all premium payment gateways!"
3957
  msgstr ""
3958
 
3959
- #: ../includes/mycred-admin.php:234
3960
  msgid "User is excluded"
3961
  msgstr "Пользователь исключен"
3962
 
3963
- #: ../includes/mycred-admin.php:239
3964
  msgid "Log Entry can not be empty"
3965
  msgstr "Поле входа в журнал не может быть пустым"
3966
 
3967
- #: ../includes/mycred-admin.php:243
3968
  msgid "Amount can not be zero"
3969
  msgstr "Сумма не может быть равна нулю"
3970
 
3971
- #: ../includes/mycred-admin.php:264
3972
  msgid "Failed to update this uses balance."
3973
  msgstr "Ошибка обновления баланса пользователя."
3974
 
3975
- #: ../includes/mycred-admin.php:385
3976
  msgid "Excluded"
3977
  msgstr "Исключено"
3978
 
3979
- #: ../includes/mycred-admin.php:406
3980
  msgid "Adjust"
3981
  msgstr "Корректировать"
3982
 
3983
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3984
  msgid "Edit Balance"
3985
  msgstr ""
3986
 
3987
- #: ../includes/mycred-admin.php:463
3988
  msgid "Profile"
3989
  msgstr ""
3990
 
3991
- #: ../includes/mycred-admin.php:470
3992
  msgid "Extended Profile"
3993
  msgstr ""
3994
 
3995
- #: ../includes/mycred-admin.php:560
3996
  #, php-format
3997
  msgid "This user is excluded from using %s"
3998
  msgstr ""
3999
 
4000
- #: ../includes/mycred-admin.php:583
4001
  msgid "Edit User"
4002
  msgstr ""
4003
 
4004
- #: ../includes/mycred-admin.php:585
4005
  msgctxt "user"
4006
  msgid "Add New"
4007
  msgstr ""
4008
 
4009
- #: ../includes/mycred-admin.php:587
4010
  msgctxt "user"
4011
  msgid "Add Existing"
4012
  msgstr ""
4013
 
4014
- #: ../includes/mycred-admin.php:598
4015
  #, php-format
4016
  msgid "Total %s Accumulated"
4017
  msgstr ""
4018
 
4019
- #: ../includes/mycred-admin.php:599
4020
  #, php-format
4021
  msgid "Total %s Spent"
4022
  msgstr ""
4023
 
4024
- #: ../includes/mycred-admin.php:610
4025
  msgid "View History"
4026
  msgstr ""
4027
 
4028
- #: ../includes/mycred-admin.php:611
4029
  msgid "Exclude User"
4030
  msgstr ""
4031
 
4032
- #: ../includes/mycred-admin.php:615
4033
  msgid "Adjust Balance"
4034
  msgstr ""
4035
 
4036
- #: ../includes/mycred-admin.php:624
4037
  msgid ""
4038
  "Warning! Excluding this user will result in their balance being deleted "
4039
  "along with any entries currently in your log! This can not be undone!"
4040
  msgstr ""
4041
 
4042
- #: ../includes/mycred-admin.php:682
4043
  #, php-format
4044
  msgid "%singular% balance"
4045
  msgstr "%singular% баланс"
4046
 
4047
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
4048
  msgid "Update Balance"
4049
  msgstr "Обновить баланс"
4050
 
4051
- #: ../includes/mycred-admin.php:753
4052
  msgid "ID"
4053
  msgstr "ID"
4054
 
4055
- #: ../includes/mycred-admin.php:759
4056
  msgid "A positive or negative value"
4057
  msgstr "Положительное или отрицательное значение"
4058
 
@@ -4703,69 +4703,69 @@ msgstr "Почти готово! Нажмите кнопку ниже для з
4703
  msgid "Install & Run"
4704
  msgstr "Установка и запуск"
4705
 
4706
- #: ../includes/mycred-log.php:430
4707
  #, php-format
4708
  msgid "Showing %d %s"
4709
  msgstr "Отображение %d %s"
4710
 
4711
- #: ../includes/mycred-log.php:430
4712
  msgid "entry"
4713
  msgid_plural "entries"
4714
  msgstr[0] "запись"
4715
  msgstr[1] "записи"
4716
  msgstr[2] "записи"
4717
 
4718
- #: ../includes/mycred-log.php:444
4719
  msgid "Go to the first page"
4720
  msgstr "Перейти на первую страницу"
4721
 
4722
- #: ../includes/mycred-log.php:451
4723
  msgid "Go to the previous page"
4724
  msgstr "Перейти на предыдущую страницу"
4725
 
4726
- #: ../includes/mycred-log.php:460
4727
  msgid "Current page"
4728
  msgstr "Текущая страница"
4729
 
4730
- #: ../includes/mycred-log.php:466
4731
  #, php-format
4732
  msgctxt "mycred"
4733
  msgid "%1$s of %2$s"
4734
  msgstr ""
4735
 
4736
- #: ../includes/mycred-log.php:470
4737
  msgid "Go to the next page"
4738
  msgstr "Перейти на следующую страницу"
4739
 
4740
- #: ../includes/mycred-log.php:477
4741
  msgid "Go to the last page"
4742
  msgstr "Перейти на последнюю страницу"
4743
 
4744
- #: ../includes/mycred-log.php:544
4745
  msgid "Show all references"
4746
  msgstr "Показать все ссылки"
4747
 
4748
- #: ../includes/mycred-log.php:557
4749
  msgid "User ID, Username, Email or Nicename"
4750
  msgstr ""
4751
 
4752
- #: ../includes/mycred-log.php:563
4753
  msgid "Show in order"
4754
  msgstr "Показать в порядке"
4755
 
4756
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4757
  msgid "Ascending"
4758
  msgstr "По возрастанию"
4759
 
4760
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4761
  msgid "Descending"
4762
  msgstr "По убыванию"
4763
 
4764
- #: ../includes/mycred-log.php:582
4765
  msgid "Filter"
4766
  msgstr "Фильтр"
4767
 
4768
- #: ../includes/mycred-log.php:635
4769
  msgid ""
4770
  "Log entries are exported to a CSV file and depending on the number of "
4771
  "entries selected, the process may take a few seconds."
@@ -4773,36 +4773,36 @@ msgstr ""
4773
  "Входы в журнал выносятся в CSV файл и взависимости от количества выбранных "
4774
  "входов процесс может занять несколько секунд."
4775
 
4776
- #: ../includes/mycred-log.php:639
4777
  msgid "No export options available."
4778
  msgstr "Нет доступных параметров экспорта."
4779
 
4780
- #: ../includes/mycred-log.php:668
4781
  msgid "Entry"
4782
  msgstr "Запись"
4783
 
4784
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4785
  msgid "User Missing"
4786
  msgstr "Пользователь отсутствует"
4787
 
4788
- #: ../includes/mycred-log.php:839
4789
  msgid "No log entries found"
4790
  msgstr "Записей в журнале не найдено"
4791
 
4792
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4793
  msgid "Search Log"
4794
  msgstr "Искать"
4795
 
4796
- #: ../includes/mycred-log.php:855
4797
  msgid "search log entries"
4798
  msgstr "найти запись в журнале"
4799
 
4800
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4801
  #: modules/mycred-module-buddypress.php:249
4802
  msgid "All"
4803
  msgstr "Все "
4804
 
4805
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4806
  msgid "Yesterday"
4807
  msgstr "Вчера"
4808
 
@@ -5039,7 +5039,7 @@ msgstr ""
5039
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5040
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5041
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5042
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
5043
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5044
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5045
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5696,7 +5696,7 @@ msgstr ""
5696
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5697
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5698
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5699
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5700
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5701
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5702
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -6026,8 +6026,8 @@ msgstr "Запись обновлена"
6026
  msgid "Entries"
6027
  msgstr "Записи"
6028
 
6029
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
6030
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
6031
  msgid "Export"
6032
  msgstr "Экспорт"
6033
 
@@ -6046,35 +6046,35 @@ msgid ""
6046
  "Certain hooks and shortcodes will not work correctly!"
6047
  msgstr ""
6048
 
6049
- #: ../modules/mycred-module-log.php:565
6050
  msgid "Edit"
6051
  msgstr "Редактировать"
6052
 
6053
- #: ../modules/mycred-module-log.php:612
6054
  msgid "Time"
6055
  msgstr "Время"
6056
 
6057
- #: ../modules/mycred-module-log.php:616
6058
  msgid "Current Log Entry"
6059
  msgstr "Текущая запись в журнале"
6060
 
6061
- #: ../modules/mycred-module-log.php:618
6062
  msgid "The current saved log entry"
6063
  msgstr "Текущая сохраненная запись в журнале. "
6064
 
6065
- #: ../modules/mycred-module-log.php:621
6066
  msgid "Adjust Log Entry"
6067
  msgstr "Редактировать запись в журнале"
6068
 
6069
- #: ../modules/mycred-module-log.php:623
6070
  msgid "The new log entry"
6071
  msgstr "Новая запись в журнале"
6072
 
6073
- #: ../modules/mycred-module-log.php:626
6074
  msgid "Update Log Entry"
6075
  msgstr "Обновить запись в журнале"
6076
 
6077
- #: ../modules/mycred-module-log.php:697
6078
  #, php-format
6079
  msgid "My %s History"
6080
  msgstr "Моя %s история"
@@ -6777,23 +6777,23 @@ msgstr "Подписка на комментарии"
6777
  msgid "Reward with %plural%"
6778
  msgstr ""
6779
 
6780
- #: ../plugins/mycred-hook-sharethis.php:18
6781
  #, php-format
6782
  msgid "%plural% for Sharing"
6783
  msgstr ""
6784
 
6785
- #: ../plugins/mycred-hook-sharethis.php:19
6786
  #, php-format
6787
  msgid ""
6788
  "Awards %_plural% for users sharing / liking your website content to popular "
6789
  "social media sites."
6790
  msgstr ""
6791
 
6792
- #: ../plugins/mycred-hook-sharethis.php:232
6793
  msgid "Your ShareThis public key is not set."
6794
  msgstr ""
6795
 
6796
- #: ../plugins/mycred-hook-sharethis.php:237
6797
  msgid "No ShareThis services detected. Please check your installation."
6798
  msgstr ""
6799
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:43:36 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
26
  "content/plugins/mycred\n"
27
  "X-Poedit-SearchPath-1: ."
28
 
29
+ #: ../mycred.php:461
30
  msgid "Balance"
31
  msgstr "Баланс/Счет"
32
 
33
+ #: ../mycred.php:486
34
  msgid "%label% History"
35
  msgstr "%label% История"
36
 
37
+ #: ../mycred.php:580
38
  #, php-format
39
  msgid "About %s"
40
  msgstr "Около %s"
41
 
42
+ #: ../mycred.php:589
43
  msgid "Awesome People"
44
  msgstr "Потрясающие люди"
45
 
46
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
47
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
48
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
49
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
50
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
51
  #: php:636
52
  msgid "Processing..."
53
  msgstr "Обработка..."
54
 
55
  #. log entries???
56
+ #: ../mycred.php:678
57
  msgid ""
58
  "Warning! All entries in your log will be permanently removed! This can not "
59
  "be undone!"
61
  "Внимание! Все записи в журнале будут удалены без возможности восстановления. "
62
  "Это нельзя отменить! "
63
 
64
+ #: ../mycred.php:679
65
  msgid ""
66
  "All log entries belonging to deleted users will be permanently deleted! This "
67
  "can not be undone!"
69
  "Все регистрации в журнале, принадлежащие удаленным пользователям, будут "
70
  "навсегда удалены! Действие нельзя отменить!"
71
 
72
+ #: ../mycred.php:680
73
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
74
  msgstr ""
75
  "Предупреждение! Все счета пользователя будут аннулированы! Невозможно "
76
  "выполнить действие! "
77
 
78
+ #: ../mycred.php:681
79
  msgid "Done!"
80
  msgstr "Готово! "
81
 
82
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
83
  msgid "Close"
84
  msgstr "Закрыть"
85
 
86
+ #: ../mycred.php:683
87
  msgid "Export users %plural%"
88
  msgstr "Перемещение пользователей %plural%"
89
 
90
+ #: ../mycred.php:684
91
  msgid ""
92
  "In order to adjust the number of decimal places you want to use we must "
93
  "update your log. It is highly recommended that you backup your current log "
94
  "before continuing!"
95
  msgstr ""
96
 
97
+ #: ../mycred.php:700
98
  msgid "Edit Users Balance"
99
  msgstr "Редактировать счет пользователя"
100
 
101
+ #: ../mycred.php:718
102
  msgid "Edit Log Entry"
103
  msgstr "Редактировать запись журнала"
104
 
105
+ #: ../mycred.php:722
106
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
107
  msgstr ""
108
  "Вы уверены, что желаете удалить эту запись из журнала? Это невозможно "
109
  "отменить!"
110
 
111
+ #: ../mycred.php:723
112
  msgid "Log entry updated"
113
  msgstr "Запись в журнале обновлена"
114
 
115
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
116
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
117
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
118
  msgid "Setup"
119
  msgstr "Установка"
120
 
121
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
122
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
123
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
124
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
125
  msgid "Settings"
126
  msgstr "Настройки"
127
 
128
+ #: ../mycred.php:825
129
  msgid ""
130
  "Make sure to backup your database and files before updating, in case "
131
  "anything goes wrong!"
172
  msgstr "Один раз в день (перезагрузка в полночь)"
173
 
174
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
175
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
176
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
177
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
178
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
179
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
199
  msgstr "кликнуть, чтобы открыть"
200
 
201
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
202
+ #: buy-creds.php:927
203
  msgid "Settings Updated"
204
  msgstr "Настройки обновлены"
205
 
240
  msgstr ""
241
 
242
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
243
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
244
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
245
  #: addons/ranks/myCRED-addon-ranks.php:448
246
  msgid "Add New"
472
  msgstr "Статус"
473
 
474
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
475
+ #: addon-email-notices.php:1296
476
  msgid "Save Changes"
477
  msgstr ""
478
 
538
  msgstr ""
539
 
540
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
541
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
542
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
543
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
544
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
545
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
546
  msgid "Access Denied"
547
  msgstr "Ошибка Доступа"
548
 
565
  msgstr "Предупреждение! Этот модуль требует WP - утилиту Cron для работы."
566
 
567
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
568
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
569
  msgid "Enable"
570
  msgstr "Разрешить"
571
 
687
 
688
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
689
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
690
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
691
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
692
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
693
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
694
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
746
  msgstr ""
747
 
748
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
749
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
750
  #: content.php:114
751
  msgid "Leave empty to use the default value."
752
  msgstr ""
759
  msgid "Exclude from receiving interest"
760
  msgstr ""
761
 
762
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
763
  msgid "Compound interest rate saved."
764
  msgstr ""
765
 
766
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
767
  msgid "User excluded from receiving interest."
768
  msgstr ""
769
 
770
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
771
  msgid "User included in receiving interest."
772
  msgstr ""
773
 
776
  msgstr "Ежедневно %_plural%"
777
 
778
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
779
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
780
  #: modules/mycred-module-log.php:277
781
  msgid "History"
782
  msgstr "История"
794
  msgstr "Заплатить пользователям"
795
 
796
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
797
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
798
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
799
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
800
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
801
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
802
  #: plugins/mycred-hook-affiliatewp.php:256
803
  msgid "Amount"
836
  msgid "Payment Gateways"
837
  msgstr "Платежная система"
838
 
839
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
840
  msgctxt "Post Type General Name"
841
  msgid "Pending Payments"
842
  msgstr ""
843
 
844
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
845
  msgctxt "Post Type Singular Name"
846
  msgid "Pending Payment"
847
  msgstr ""
848
 
849
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
850
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
851
  msgid "Pending Payments"
852
  msgstr ""
853
 
854
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
855
  msgid "Edit Pending Payment"
856
  msgstr ""
857
 
858
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
859
+ #: addon-buy-creds.php:1752
860
  msgid "No pending payments found"
861
  msgstr ""
862
 
863
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
864
  msgid "Not found in Trash"
865
  msgstr ""
866
 
867
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
868
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
869
  msgid "Transaction ID"
870
  msgstr "Код трансакции "
871
 
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
873
+ #: addon-buy-creds.php:1074
874
  msgid "Buyer"
875
  msgstr ""
876
 
877
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
878
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
879
  #: gateway.php:594
880
  msgid "Cost"
881
  msgstr "Цена"
882
 
883
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
884
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
885
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
886
  msgid "Gateway"
887
  msgstr "Шлюз"
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
890
  msgid "Type"
891
  msgstr ""
892
 
893
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
894
  msgid "Pay Out"
895
  msgstr ""
896
 
897
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
898
  msgid "buyCRED Purchase Log"
899
  msgstr "приобрести журнал покупок CRED"
900
 
901
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
902
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
903
  msgid "Purchase Log"
904
  msgstr "Журнал покупки"
905
 
906
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
907
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
908
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
909
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
910
  msgid "Payments"
911
  msgstr "Платежи"
912
 
913
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
914
  msgid "Please login to purchase %_plural%"
915
  msgstr "Пожалуйста войдите в систему для приобретения %_plural%"
916
 
917
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
918
  #, php-format
919
  msgid "Gift purchase from %display_name%."
920
  msgstr "Покупка подарка с %display_name%."
921
 
922
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
923
  #: addon-ranks.php:1084
924
  msgid "Minimum %plural%"
925
  msgstr "Минимальные %plural% "
926
 
927
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
928
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
929
  msgstr "Минимальное количество %plural% , которое клиент должен приобрести. "
930
 
931
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
932
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
933
  #: module-settings.php:656
934
  msgid "Point Types"
935
  msgstr "Виды очков"
936
 
937
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
938
  msgid "Select the point types that users can buy. You must select at least one!"
939
  msgstr ""
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
942
  msgid "Login Template"
943
  msgstr "Шаблон входа"
944
 
945
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
946
  msgid "Content to show when a user is not logged in."
947
  msgstr "Контент показывается, когда пользователь не вошел в систему."
948
 
949
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
950
  msgid "Thank You Page"
951
  msgstr "Благодарность вашей странице"
952
 
953
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
954
+ #: addon-buy-creds.php:705
955
  msgid "Custom URL"
956
  msgstr "Настраиваемый URL"
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
959
+ #: addon-buy-creds.php:710
960
  msgid "Page"
961
  msgstr "Страница"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
964
  msgid "Cancellation Page"
965
  msgstr "Страница аннулирования"
966
 
967
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
968
  msgid "Show seperate log for %_plural% purchases."
969
  msgstr "Показать отдельный системный журнал для %_plural% покупок."
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
972
  msgid "Gifting"
973
  msgstr "Дарить"
974
 
975
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
976
  #, php-format
977
  msgid "Allow users to buy %_plural% for other users."
978
  msgstr "Позволить пользователям покупать %_plural% для других клиентов."
979
 
980
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
981
  #, php-format
982
  msgid "Allow users to buy %_plural% for content authors."
983
  msgstr "Разрешить пользователям покупать %_plural% для авторов контента."
984
 
985
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
986
  #: hooks.php:3110
987
  msgid "Available Shortcodes"
988
  msgstr "Доступные короткие коды"
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
991
  #, php-format
992
  msgid "%s Exchange Rate"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
996
  msgid "Save Exchange Rates"
997
  msgstr ""
998
 
999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1000
  msgid "Exchange rate override saved"
1001
  msgstr ""
1002
 
1003
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1004
  msgid "Payment completed"
1005
  msgstr ""
1006
 
1007
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1008
  #, php-format
1009
  msgid "%s Payment Gateways"
1010
  msgstr "%s Способы оплаты"
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1013
+ #: addon-buy-creds.php:1085
1014
  msgid "buyCRED Settings"
1015
  msgstr "настройки buyCRED"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1018
  msgid "Test Mode"
1019
  msgstr "Тестовый режим"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1022
  msgid "Enabled"
1023
  msgstr "Включено"
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1026
  msgid "Disabled"
1027
  msgstr "Отключено"
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1030
  msgid "Sandbox Mode"
1031
  msgstr "Режим изолированной программной среды."
1032
 
1033
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1034
  msgid "Enable for test purchases."
1035
  msgstr "Разрешить тестовые покупки."
1036
 
1037
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1038
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1039
  msgid "Update Settings"
1040
  msgstr "Настройки обновлений"
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1043
  msgid "More Gateways"
1044
  msgstr ""
1045
 
1046
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1047
+ #: 756
1048
  msgid "Date"
1049
  msgstr "Дата "
1050
 
1051
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1052
  msgid "Payed"
1053
  msgstr "Оплачено"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1056
  msgid "<strong>buy</strong>CRED Purchase Log"
1057
  msgstr "<strong>купить</strong>CRED журнал покупки"
1058
 
1059
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1060
  #: booking/mycred-eventespresso3.php:367
1061
  msgid "Gateway Settings"
1062
  msgstr "Настройки шлюза"
1063
 
1064
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1065
+ #: content/myCRED-addon-sell-content.php:1210
1066
  msgid "No purchases found"
1067
  msgstr "Покупок не обнаружено"
1068
 
1069
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1070
+ #: addon-buy-creds.php:1464
1071
  msgid "This Add-on needs to setup before you can use this shortcode."
1072
  msgstr ""
1073
  "Это расширение необходимо установить перед началом использования этого "
1074
  "короткого номера."
1075
 
1076
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1077
+ #: addon-buy-creds.php:1483
1078
  msgid "No gateways installed."
1079
  msgstr "Нет установленных шлюзов."
1080
 
1081
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1082
+ #: addon-buy-creds.php:1484
1083
  msgid "Gateway does not exist."
1084
  msgstr "Шлюз не существует."
1085
 
1086
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1087
  msgid "Yourself"
1088
  msgstr "Самостоятельно"
1089
 
1090
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1091
  msgid "No active gateways found."
1092
  msgstr "Активных шлюзов не обнаружено."
1093
 
1094
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1095
  msgid "The selected gateway is not active."
1096
  msgstr "Выбранный шлюз не активен."
1097
 
1098
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1099
  #, php-format
1100
  msgid "Buy with %gateway%"
1101
  msgstr "Приобрести с %gateway%"
1102
 
1103
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1104
  #: content/myCRED-addon-sell-content.php:44
1105
  msgid "Buy Now"
1106
  msgstr "Купить сейчас"
1107
 
1108
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1109
  msgid "No users found"
1110
  msgstr "Пользователи не найдены"
1111
 
1112
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1113
  msgid "To"
1114
  msgstr "До"
1115
 
1116
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1117
  msgid "Select Amount"
1118
  msgstr "Выбать количество "
1119
 
1120
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1121
  msgid "min."
1122
  msgstr "мин."
1123
 
1124
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1125
  msgid "Select Gateway"
1126
  msgstr "Выбрать шлюз"
1127
 
1128
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1129
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1130
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1131
  #: php:35
1132
  msgid "Pay Now"
1133
  msgstr "Оплатить сейчас"
1134
 
1135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1136
  #: php:536
1137
  msgid "Cancel"
1138
  msgstr "Отменить"
1139
 
1140
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1141
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1142
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1143
  msgid "Actions"
1178
  msgstr "Отменить покупку"
1179
 
1180
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1181
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1182
  msgid "required"
1183
  msgstr "необходимо"
1184
 
1185
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1186
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1187
  msgid "optional"
1188
  msgstr "выборочно"
1189
 
1744
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1745
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1746
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1747
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1748
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1749
  #: includes/importers/mycred-cubepoints.php:365
1750
  msgid "Point Type"
1756
  msgstr "еще не использовано"
1757
 
1758
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1759
+ #: 416 ../modules/mycred-module-hooks.php:2507
1760
  msgid "Total"
1761
  msgstr "Общее "
1762
 
1925
  msgstr "Подать запрос на купон"
1926
 
1927
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1928
+ #: notices/myCRED-addon-email-notices.php:1270
1929
  msgid "Email Notice"
1930
  msgstr "Уведомление по электронной почте"
1931
 
2204
  msgstr "Отправить"
2205
 
2206
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2207
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2208
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2209
  msgid "User"
2210
  msgstr "Пользователь"
2211
 
2337
  msgid "Settings saved."
2338
  msgstr ""
2339
 
2340
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2341
  msgid "Unsubscribe"
2342
  msgstr ""
2343
 
2344
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2345
  msgid "There are no email notifications yet."
2346
  msgstr ""
2347
 
2348
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2349
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2350
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2351
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2352
  msgid "Current Balance"
2353
  msgstr "Текущий баланс"
2354
 
2774
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2775
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2776
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2777
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2778
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2779
  msgid "Button Label"
2780
  msgstr "Кнопка ярлыка"
2781
 
2788
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2789
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2790
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2791
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2792
+ #: sell-content.php:683
2793
  msgid "Price"
2794
  msgstr "Цена"
2795
 
2815
  msgstr "Журнал"
2816
 
2817
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2818
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2819
  msgid "Log Entry"
2820
  msgstr "Журнал входа"
2821
 
2822
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2823
+ #: content/myCRED-addon-sell-content.php:474
2824
  msgid "Templates"
2825
  msgstr "Шаблоны"
2826
 
2910
  msgstr "Отклонить"
2911
 
2912
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2913
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2914
  #: modules/mycred-module-settings.php:699
2915
  msgid "Delete"
2916
  msgstr "Удалить"
3426
  msgid "Save Profit Share"
3427
  msgstr ""
3428
 
3429
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3430
  msgid "Profit Share override saved"
3431
  msgstr ""
3432
 
3433
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3434
  msgid "You can not buy this content."
3435
  msgstr "Вы не можете приобрести этот контент."
3436
 
3437
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3438
  msgid "Error. Try Again"
3439
  msgstr "Ошибка. Повторите попытку"
3440
 
3441
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3442
  msgid "No Payout. Just charge."
3443
  msgstr "Нет выплат. Только расходы."
3444
 
3445
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3446
  msgid "Pay Content Author."
3447
  msgstr "Заплатить автору контента."
3448
 
3449
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3450
  #: overview.php:141 ../includes/mycred-overview.php:148
3451
  msgid "Sell Content"
3452
  msgstr "Продать контент"
3453
 
3454
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3455
  msgid "Post Types"
3456
  msgstr "Типы публикации"
3457
 
3458
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3459
  msgid "Comma separated list of post types that can be sold."
3460
  msgstr "Разделенный запятой список типов постов, которые можно продать. "
3461
 
3462
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3463
  msgid "Percentage to pay Author"
3464
  msgstr "Проценты для выплаты автору"
3465
 
3466
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3467
  msgid ""
3468
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3469
  "authors are not paid."
3471
  "Процент от стоимости для выплаты автору. Не может быть нулевым и "
3472
  "игнорируется, если авторам не платят. "
3473
 
3474
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3475
  msgid "Defaults"
3476
  msgstr "Неплатёж"
3477
 
3478
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3479
  msgid "Allow authors to change price."
3480
  msgstr "Разрешить авторам изменять цену. "
3481
 
3482
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3483
  msgid "Allow authors to change button label."
3484
  msgstr "Разрешить авторам изменять кнопку ярлыка."
3485
 
3486
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3487
  msgid "Purchases expire after"
3488
  msgstr "Срок покупки истекает после"
3489
 
3490
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3491
  msgid "Use zero for permanent sales."
3492
  msgstr "Использовать ноль для постоянных распродаж."
3493
 
3494
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3495
  msgid "For Visitors"
3496
  msgstr ""
3497
 
3498
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3499
  #, php-format
3500
  msgid ""
3501
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3504
  "Не <strong>not</strong> используйте %buy_button% в этом шаблоне, поскольку "
3505
  "пользователь должен войти в систему для покупки контента!"
3506
 
3507
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3508
  msgid "For Members"
3509
  msgstr ""
3510
 
3511
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3512
+ #: content/myCRED-addon-sell-content.php:517
3513
  #, php-format
3514
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3515
  msgstr ""
3516
  "Ваш шаблон должен содержать тег %buy_button% для того, чтобы покупки "
3517
  "работали! "
3518
 
3519
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3520
  msgid "For members that can not afford to buy"
3521
  msgstr ""
3522
 
3523
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3524
  msgid "Log template for Purchases"
3525
  msgstr "Журнал шаблона для покупок"
3526
 
3527
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3528
  msgid "Log template for Sales"
3529
  msgstr "Журнал шаблона для распродаж"
3530
 
3531
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3532
  #, php-format
3533
  msgid "%s Sell This"
3534
  msgstr "%s продать это"
3535
 
3536
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3537
  #, php-format
3538
  msgid "%s Sell Content needs to be setup before you can use this feature."
3539
  msgstr ""
3540
  "%s Необходимо установить продажу контента перед началом использования этого "
3541
  "свойства."
3542
 
3543
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3544
  msgid "Setup add-on"
3545
  msgstr "Расширение настройки"
3546
 
3547
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3548
  msgid "Lets do it"
3549
  msgstr "Выполнить это"
3550
 
3551
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3552
  #, php-format
3553
  msgid "Enable sale of this %s"
3554
  msgstr ""
3555
 
3556
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3557
  msgid "Purchase expires after"
3558
  msgstr "Срок действия покупки истекает после "
3559
 
3560
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3561
  msgid "Thank you for your purchase!"
3562
  msgstr "Благодарим вас за вашу покупку!"
3563
 
3564
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3565
+ #: content/myCRED-addon-sell-content.php:1191
3566
  msgid "The following content is set for sale:"
3567
  msgstr "Следующий контент установлен на продажу:"
3568
 
3569
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3570
  msgid "Purchased"
3571
  msgstr "Купленный"
3572
 
3632
  msgstr ""
3633
 
3634
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3635
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3636
  msgid "Today"
3637
  msgstr "Сегодня"
3638
 
3639
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3640
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3641
  msgid "This Week"
3642
  msgstr "На этой неделе"
3643
 
3644
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3645
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3646
  msgid "This Month"
3647
  msgstr "В этом месяце"
3648
 
3677
  msgid "Gains in the last 10 days"
3678
  msgstr ""
3679
 
3680
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3681
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3682
  msgid "View"
3683
  msgstr ""
3684
 
3685
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3686
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3687
  msgid "No data found"
3688
  msgstr ""
3689
 
3938
  msgid "Welcome to %s %s"
3939
  msgstr "Добро пожаловать в %s %s"
3940
 
3941
+ #: ../includes/mycred-admin.php:198
3942
  msgid "A log entry is required in order to adjust this users balance"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-admin.php:200
3946
  msgid "Users balance saved"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-admin.php:208
3950
  msgid "Users excluded"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-admin.php:213
3954
  msgid ""
3955
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3956
  "rate settings and update all premium payment gateways!"
3957
  msgstr ""
3958
 
3959
+ #: ../includes/mycred-admin.php:242
3960
  msgid "User is excluded"
3961
  msgstr "Пользователь исключен"
3962
 
3963
+ #: ../includes/mycred-admin.php:247
3964
  msgid "Log Entry can not be empty"
3965
  msgstr "Поле входа в журнал не может быть пустым"
3966
 
3967
+ #: ../includes/mycred-admin.php:251
3968
  msgid "Amount can not be zero"
3969
  msgstr "Сумма не может быть равна нулю"
3970
 
3971
+ #: ../includes/mycred-admin.php:272
3972
  msgid "Failed to update this uses balance."
3973
  msgstr "Ошибка обновления баланса пользователя."
3974
 
3975
+ #: ../includes/mycred-admin.php:406
3976
  msgid "Excluded"
3977
  msgstr "Исключено"
3978
 
3979
+ #: ../includes/mycred-admin.php:427
3980
  msgid "Adjust"
3981
  msgstr "Корректировать"
3982
 
3983
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3984
  msgid "Edit Balance"
3985
  msgstr ""
3986
 
3987
+ #: ../includes/mycred-admin.php:490
3988
  msgid "Profile"
3989
  msgstr ""
3990
 
3991
+ #: ../includes/mycred-admin.php:497
3992
  msgid "Extended Profile"
3993
  msgstr ""
3994
 
3995
+ #: ../includes/mycred-admin.php:591
3996
  #, php-format
3997
  msgid "This user is excluded from using %s"
3998
  msgstr ""
3999
 
4000
+ #: ../includes/mycred-admin.php:615
4001
  msgid "Edit User"
4002
  msgstr ""
4003
 
4004
+ #: ../includes/mycred-admin.php:617
4005
  msgctxt "user"
4006
  msgid "Add New"
4007
  msgstr ""
4008
 
4009
+ #: ../includes/mycred-admin.php:619
4010
  msgctxt "user"
4011
  msgid "Add Existing"
4012
  msgstr ""
4013
 
4014
+ #: ../includes/mycred-admin.php:630
4015
  #, php-format
4016
  msgid "Total %s Accumulated"
4017
  msgstr ""
4018
 
4019
+ #: ../includes/mycred-admin.php:631
4020
  #, php-format
4021
  msgid "Total %s Spent"
4022
  msgstr ""
4023
 
4024
+ #: ../includes/mycred-admin.php:642
4025
  msgid "View History"
4026
  msgstr ""
4027
 
4028
+ #: ../includes/mycred-admin.php:643
4029
  msgid "Exclude User"
4030
  msgstr ""
4031
 
4032
+ #: ../includes/mycred-admin.php:647
4033
  msgid "Adjust Balance"
4034
  msgstr ""
4035
 
4036
+ #: ../includes/mycred-admin.php:656
4037
  msgid ""
4038
  "Warning! Excluding this user will result in their balance being deleted "
4039
  "along with any entries currently in your log! This can not be undone!"
4040
  msgstr ""
4041
 
4042
+ #: ../includes/mycred-admin.php:721
4043
  #, php-format
4044
  msgid "%singular% balance"
4045
  msgstr "%singular% баланс"
4046
 
4047
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4048
  msgid "Update Balance"
4049
  msgstr "Обновить баланс"
4050
 
4051
+ #: ../includes/mycred-admin.php:798
4052
  msgid "ID"
4053
  msgstr "ID"
4054
 
4055
+ #: ../includes/mycred-admin.php:804
4056
  msgid "A positive or negative value"
4057
  msgstr "Положительное или отрицательное значение"
4058
 
4703
  msgid "Install & Run"
4704
  msgstr "Установка и запуск"
4705
 
4706
+ #: ../includes/mycred-log.php:485
4707
  #, php-format
4708
  msgid "Showing %d %s"
4709
  msgstr "Отображение %d %s"
4710
 
4711
+ #: ../includes/mycred-log.php:485
4712
  msgid "entry"
4713
  msgid_plural "entries"
4714
  msgstr[0] "запись"
4715
  msgstr[1] "записи"
4716
  msgstr[2] "записи"
4717
 
4718
+ #: ../includes/mycred-log.php:500
4719
  msgid "Go to the first page"
4720
  msgstr "Перейти на первую страницу"
4721
 
4722
+ #: ../includes/mycred-log.php:507
4723
  msgid "Go to the previous page"
4724
  msgstr "Перейти на предыдущую страницу"
4725
 
4726
+ #: ../includes/mycred-log.php:517
4727
  msgid "Current page"
4728
  msgstr "Текущая страница"
4729
 
4730
+ #: ../includes/mycred-log.php:523
4731
  #, php-format
4732
  msgctxt "mycred"
4733
  msgid "%1$s of %2$s"
4734
  msgstr ""
4735
 
4736
+ #: ../includes/mycred-log.php:527
4737
  msgid "Go to the next page"
4738
  msgstr "Перейти на следующую страницу"
4739
 
4740
+ #: ../includes/mycred-log.php:534
4741
  msgid "Go to the last page"
4742
  msgstr "Перейти на последнюю страницу"
4743
 
4744
+ #: ../includes/mycred-log.php:611
4745
  msgid "Show all references"
4746
  msgstr "Показать все ссылки"
4747
 
4748
+ #: ../includes/mycred-log.php:628
4749
  msgid "User ID, Username, Email or Nicename"
4750
  msgstr ""
4751
 
4752
+ #: ../includes/mycred-log.php:636
4753
  msgid "Show in order"
4754
  msgstr "Показать в порядке"
4755
 
4756
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4757
  msgid "Ascending"
4758
  msgstr "По возрастанию"
4759
 
4760
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4761
  msgid "Descending"
4762
  msgstr "По убыванию"
4763
 
4764
+ #: ../includes/mycred-log.php:658
4765
  msgid "Filter"
4766
  msgstr "Фильтр"
4767
 
4768
+ #: ../includes/mycred-log.php:718
4769
  msgid ""
4770
  "Log entries are exported to a CSV file and depending on the number of "
4771
  "entries selected, the process may take a few seconds."
4773
  "Входы в журнал выносятся в CSV файл и взависимости от количества выбранных "
4774
  "входов процесс может занять несколько секунд."
4775
 
4776
+ #: ../includes/mycred-log.php:725
4777
  msgid "No export options available."
4778
  msgstr "Нет доступных параметров экспорта."
4779
 
4780
+ #: ../includes/mycred-log.php:758
4781
  msgid "Entry"
4782
  msgstr "Запись"
4783
 
4784
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4785
  msgid "User Missing"
4786
  msgstr "Пользователь отсутствует"
4787
 
4788
+ #: ../includes/mycred-log.php:958
4789
  msgid "No log entries found"
4790
  msgstr "Записей в журнале не найдено"
4791
 
4792
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4793
  msgid "Search Log"
4794
  msgstr "Искать"
4795
 
4796
+ #: ../includes/mycred-log.php:977
4797
  msgid "search log entries"
4798
  msgstr "найти запись в журнале"
4799
 
4800
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4801
  #: modules/mycred-module-buddypress.php:249
4802
  msgid "All"
4803
  msgstr "Все "
4804
 
4805
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4806
  msgid "Yesterday"
4807
  msgstr "Вчера"
4808
 
5039
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5040
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5041
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5042
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5043
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5044
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5045
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5696
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5697
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5698
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5699
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5700
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5701
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5702
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
6026
  msgid "Entries"
6027
  msgstr "Записи"
6028
 
6029
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6030
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6031
  msgid "Export"
6032
  msgstr "Экспорт"
6033
 
6046
  "Certain hooks and shortcodes will not work correctly!"
6047
  msgstr ""
6048
 
6049
+ #: ../modules/mycred-module-log.php:563
6050
  msgid "Edit"
6051
  msgstr "Редактировать"
6052
 
6053
+ #: ../modules/mycred-module-log.php:610
6054
  msgid "Time"
6055
  msgstr "Время"
6056
 
6057
+ #: ../modules/mycred-module-log.php:614
6058
  msgid "Current Log Entry"
6059
  msgstr "Текущая запись в журнале"
6060
 
6061
+ #: ../modules/mycred-module-log.php:616
6062
  msgid "The current saved log entry"
6063
  msgstr "Текущая сохраненная запись в журнале. "
6064
 
6065
+ #: ../modules/mycred-module-log.php:619
6066
  msgid "Adjust Log Entry"
6067
  msgstr "Редактировать запись в журнале"
6068
 
6069
+ #: ../modules/mycred-module-log.php:621
6070
  msgid "The new log entry"
6071
  msgstr "Новая запись в журнале"
6072
 
6073
+ #: ../modules/mycred-module-log.php:624
6074
  msgid "Update Log Entry"
6075
  msgstr "Обновить запись в журнале"
6076
 
6077
+ #: ../modules/mycred-module-log.php:695
6078
  #, php-format
6079
  msgid "My %s History"
6080
  msgstr "Моя %s история"
6777
  msgid "Reward with %plural%"
6778
  msgstr ""
6779
 
6780
+ #: ../plugins/mycred-hook-sharethis.php:19
6781
  #, php-format
6782
  msgid "%plural% for Sharing"
6783
  msgstr ""
6784
 
6785
+ #: ../plugins/mycred-hook-sharethis.php:20
6786
  #, php-format
6787
  msgid ""
6788
  "Awards %_plural% for users sharing / liking your website content to popular "
6789
  "social media sites."
6790
  msgstr ""
6791
 
6792
+ #: ../plugins/mycred-hook-sharethis.php:257
6793
  msgid "Your ShareThis public key is not set."
6794
  msgstr ""
6795
 
6796
+ #: ../plugins/mycred-hook-sharethis.php:262
6797
  msgid "No ShareThis services detected. Please check your installation."
6798
  msgstr ""
6799
 
lang/mycred-sv_SE.mo CHANGED
Binary file
lang/mycred-sv_SE.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed Apr 08 2015 17:05:53 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -25,97 +25,97 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: sv_SE"
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr "%label% Historik"
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Om %s"
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr "Hjälpsamma Användare"
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Arbetar..."
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr "Varning! Alla log inlägg kommer att raderas!"
59
 
60
- #: ../mycred.php:663
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr "All log inlägg för användare som har raderats kommer att raderas!"
65
 
66
- #: ../mycred.php:664
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr "Varning! Alla användares konton kommer att noll ställas!"
69
 
70
- #: ../mycred.php:665
71
  msgid "Done!"
72
  msgstr "Klart!"
73
 
74
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
75
  msgid "Close"
76
  msgstr "Stäng"
77
 
78
- #: ../mycred.php:667
79
  msgid "Export users %plural%"
80
  msgstr "Exportera användarens %plural%"
81
 
82
- #: ../mycred.php:668
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
- #: ../mycred.php:684
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
- #: ../mycred.php:702
94
  msgid "Edit Log Entry"
95
  msgstr "Justera log inlägg"
96
 
97
- #: ../mycred.php:706
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr "Är du säker på att du vill radera detta inlägg?"
100
 
101
- #: ../mycred.php:707
102
  msgid "Log entry updated"
103
  msgstr "Log inlägg updaterad"
104
 
105
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr "Setup"
110
 
111
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr "Inställningar"
117
 
118
- #: ../mycred.php:803
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
@@ -162,8 +162,8 @@ msgid "Once per day (reset at midnight)"
162
  msgstr "En gång om dagen (börjar om efter midnatt)"
163
 
164
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
165
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
166
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
167
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
168
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
169
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -189,7 +189,7 @@ msgid "click to open"
189
  msgstr "öppna"
190
 
191
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
192
- #: buy-creds.php:884
193
  msgid "Settings Updated"
194
  msgstr "Inställningar Sparade"
195
 
@@ -230,7 +230,7 @@ msgid "Badge"
230
  msgstr ""
231
 
232
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
233
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
234
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
235
  #: addons/ranks/myCRED-addon-ranks.php:448
236
  msgid "Add New"
@@ -462,7 +462,7 @@ msgid "Status"
462
  msgstr "Status"
463
 
464
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
465
- #: addon-email-notices.php:1293
466
  msgid "Save Changes"
467
  msgstr ""
468
 
@@ -528,11 +528,11 @@ msgid "Setup mass %_singular% payouts for your users."
528
  msgstr ""
529
 
530
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
531
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
532
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
533
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
534
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
535
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
536
  msgid "Access Denied"
537
  msgstr "Nekad Åtkomst"
538
 
@@ -554,7 +554,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
554
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
555
 
556
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
557
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
558
  msgid "Enable"
559
  msgstr "On"
560
 
@@ -676,8 +676,8 @@ msgstr "Utbetalning"
676
 
677
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
678
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
679
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
680
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
681
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
682
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
683
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -735,7 +735,7 @@ msgid "This user role is excluded from receiving interest on this balance."
735
  msgstr ""
736
 
737
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
738
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
739
  #: content.php:114
740
  msgid "Leave empty to use the default value."
741
  msgstr ""
@@ -748,15 +748,15 @@ msgstr ""
748
  msgid "Exclude from receiving interest"
749
  msgstr ""
750
 
751
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
752
  msgid "Compound interest rate saved."
753
  msgstr ""
754
 
755
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
756
  msgid "User excluded from receiving interest."
757
  msgstr ""
758
 
759
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
760
  msgid "User included in receiving interest."
761
  msgstr ""
762
 
@@ -765,7 +765,7 @@ msgid "Daily %_plural%"
765
  msgstr "Daglig %_plural%"
766
 
767
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
768
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
769
  #: modules/mycred-module-log.php:277
770
  msgid "History"
771
  msgstr ""
@@ -783,10 +783,10 @@ msgid "Pay Users"
783
  msgstr "Betala Användare"
784
 
785
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
786
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
787
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
788
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
789
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
790
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
791
  #: plugins/mycred-hook-affiliatewp.php:256
792
  msgid "Amount"
@@ -824,306 +824,306 @@ msgstr ""
824
  msgid "Payment Gateways"
825
  msgstr "Betalnings Operatörer"
826
 
827
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
828
  msgctxt "Post Type General Name"
829
  msgid "Pending Payments"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
833
  msgctxt "Post Type Singular Name"
834
  msgid "Pending Payment"
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
838
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
839
  msgid "Pending Payments"
840
  msgstr ""
841
 
842
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
843
  msgid "Edit Pending Payment"
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
847
- #: addon-buy-creds.php:1699
848
  msgid "No pending payments found"
849
  msgstr ""
850
 
851
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
852
  msgid "Not found in Trash"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
857
  msgid "Transaction ID"
858
  msgstr "Transaktions ID"
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
861
- #: addon-buy-creds.php:1025
862
  msgid "Buyer"
863
  msgstr ""
864
 
865
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
866
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
867
  #: gateway.php:594
868
  msgid "Cost"
869
  msgstr "Kostnad"
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
872
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
873
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
874
  msgid "Gateway"
875
  msgstr "Operatör"
876
 
877
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
878
  msgid "Type"
879
  msgstr ""
880
 
881
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
882
  msgid "Pay Out"
883
  msgstr ""
884
 
885
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
886
  msgid "buyCRED Purchase Log"
887
  msgstr "buyCRED Köp Log"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
890
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
891
  msgid "Purchase Log"
892
  msgstr "Köp Log"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
895
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
896
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
897
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
898
  msgid "Payments"
899
  msgstr "Köp"
900
 
901
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
902
  msgid "Please login to purchase %_plural%"
903
  msgstr "Logga in för att köpa %_plural%"
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
906
  #, php-format
907
  msgid "Gift purchase from %display_name%."
908
  msgstr "Gåva till %display_name%"
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
911
  #: addon-ranks.php:1084
912
  msgid "Minimum %plural%"
913
  msgstr "Minimum %plural%"
914
 
915
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
916
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
917
  msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
920
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
921
  #: module-settings.php:656
922
  msgid "Point Types"
923
  msgstr ""
924
 
925
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
926
  msgid "Select the point types that users can buy. You must select at least one!"
927
  msgstr ""
928
 
929
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
930
  msgid "Login Template"
931
  msgstr "Login Mall"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
934
  msgid "Content to show when a user is not logged in."
935
  msgstr "Information att visa när besökaren har inte loggat in."
936
 
937
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
938
  msgid "Thank You Page"
939
  msgstr "Tack Sida"
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
942
- #: addon-buy-creds.php:668
943
  msgid "Custom URL"
944
  msgstr "Annan URL"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
947
- #: addon-buy-creds.php:673
948
  msgid "Page"
949
  msgstr "Sida"
950
 
951
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
952
  msgid "Cancellation Page"
953
  msgstr "Cancel Sida"
954
 
955
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
956
  msgid "Show seperate log for %_plural% purchases."
957
  msgstr "Visa %_plural% köp på en separat sida."
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
960
  msgid "Gifting"
961
  msgstr "Köp åt andra"
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for other users."
966
  msgstr "Tillåt användare att köpa %_plural% åt andra användare än sig själva."
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
969
  #, php-format
970
  msgid "Allow users to buy %_plural% for content authors."
971
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
974
  #: hooks.php:3110
975
  msgid "Available Shortcodes"
976
  msgstr ""
977
 
978
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
979
  #, php-format
980
  msgid "%s Exchange Rate"
981
  msgstr ""
982
 
983
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
984
  msgid "Save Exchange Rates"
985
  msgstr ""
986
 
987
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
988
  msgid "Exchange rate override saved"
989
  msgstr ""
990
 
991
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
992
  msgid "Payment completed"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
996
  #, php-format
997
  msgid "%s Payment Gateways"
998
  msgstr "%s Betalnings Operatörer"
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
1001
- #: addon-buy-creds.php:1034
1002
  msgid "buyCRED Settings"
1003
  msgstr "buyCRED Inställningar"
1004
 
1005
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1006
  msgid "Test Mode"
1007
  msgstr "Test Mode"
1008
 
1009
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1010
  msgid "Enabled"
1011
  msgstr "On"
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1014
  msgid "Disabled"
1015
  msgstr "Off"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1018
  msgid "Sandbox Mode"
1019
  msgstr "Sandbox Mode"
1020
 
1021
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1022
  msgid "Enable for test purchases."
1023
  msgstr "Aktivera för test köp."
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1026
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1027
  msgid "Update Settings"
1028
  msgstr "Spara Ändringar"
1029
 
1030
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1031
  msgid "More Gateways"
1032
  msgstr ""
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1035
- #: 666
1036
  msgid "Date"
1037
  msgstr "Datum"
1038
 
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1040
  msgid "Payed"
1041
  msgstr "Betalt"
1042
 
1043
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1044
  msgid "<strong>buy</strong>CRED Purchase Log"
1045
  msgstr "<strong>buy</strong>CRED Köp Log"
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1048
  #: booking/mycred-eventespresso3.php:367
1049
  msgid "Gateway Settings"
1050
  msgstr "Operatör Inställningar"
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1053
- #: content/myCRED-addon-sell-content.php:1209
1054
  msgid "No purchases found"
1055
  msgstr "Inga Köp"
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1058
- #: addon-buy-creds.php:1411
1059
  msgid "This Add-on needs to setup before you can use this shortcode."
1060
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1063
- #: addon-buy-creds.php:1430
1064
  msgid "No gateways installed."
1065
  msgstr "Inga Operatörer är installerade."
1066
 
1067
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1068
- #: addon-buy-creds.php:1431
1069
  msgid "Gateway does not exist."
1070
  msgstr "Kunde inte finna operatör."
1071
 
1072
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1073
  msgid "Yourself"
1074
  msgstr "Till dig själv"
1075
 
1076
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1077
  msgid "No active gateways found."
1078
  msgstr "Kunde inte hitta några aktiverade operatörer."
1079
 
1080
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1081
  msgid "The selected gateway is not active."
1082
  msgstr "Operatören du valde är inte aktiverad."
1083
 
1084
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1085
  #, php-format
1086
  msgid "Buy with %gateway%"
1087
  msgstr "Köp genom %gateway%"
1088
 
1089
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1090
  #: content/myCRED-addon-sell-content.php:44
1091
  msgid "Buy Now"
1092
  msgstr "Köp"
1093
 
1094
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1095
  msgid "No users found"
1096
  msgstr "Kunde inte hitta någon"
1097
 
1098
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1099
  msgid "To"
1100
  msgstr "Till"
1101
 
1102
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1103
  msgid "Select Amount"
1104
  msgstr "Välj summa"
1105
 
1106
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1107
  msgid "min."
1108
  msgstr "min."
1109
 
1110
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1111
  msgid "Select Gateway"
1112
  msgstr "Välj Operatör"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1115
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1116
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1117
  #: php:35
1118
  msgid "Pay Now"
1119
  msgstr "Betala"
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1122
  #: php:536
1123
  msgid "Cancel"
1124
  msgstr ""
1125
 
1126
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1127
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1128
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1129
  msgid "Actions"
@@ -1164,12 +1164,12 @@ msgid "Cancel purchase"
1164
  msgstr "Cancellara köp"
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1167
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1168
  msgid "required"
1169
  msgstr "obligatoriskt"
1170
 
1171
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1172
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1173
  msgid "optional"
1174
  msgstr "valfritt"
1175
 
@@ -1720,7 +1720,7 @@ msgstr "Utlöper"
1720
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1721
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1722
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1723
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:411 .
1724
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1725
  #: includes/importers/mycred-cubepoints.php:365
1726
  msgid "Point Type"
@@ -1732,7 +1732,7 @@ msgid "not yet used"
1732
  msgstr "oanvänd"
1733
 
1734
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1735
- #: 395 ../modules/mycred-module-hooks.php:2507
1736
  msgid "Total"
1737
  msgstr "Total"
1738
 
@@ -1891,7 +1891,7 @@ msgid "Apply Coupon"
1891
  msgstr "Validera"
1892
 
1893
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1894
- #: notices/myCRED-addon-email-notices.php:1267
1895
  msgid "Email Notice"
1896
  msgstr "E-postmeddelande"
1897
 
@@ -2168,8 +2168,8 @@ msgid "Sent To"
2168
  msgstr "Skicka till"
2169
 
2170
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2171
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2172
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2173
  msgid "User"
2174
  msgstr "Användare"
2175
 
@@ -2301,18 +2301,18 @@ msgstr "Detta e-post meddelande är inte aktivt."
2301
  msgid "Settings saved."
2302
  msgstr ""
2303
 
2304
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2305
  msgid "Unsubscribe"
2306
  msgstr ""
2307
 
2308
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2309
  msgid "There are no email notifications yet."
2310
  msgstr ""
2311
 
2312
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2313
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2314
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2315
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2316
  msgid "Current Balance"
2317
  msgstr "Nuvarande Saldo"
2318
 
@@ -2735,8 +2735,8 @@ msgstr "Titel att visa på kvitton och i loggar"
2735
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2736
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2737
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2738
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2739
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2740
  msgid "Button Label"
2741
  msgstr "Knapp Text"
2742
 
@@ -2749,8 +2749,8 @@ msgstr "Betalnings Knapp"
2749
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2750
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2751
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2752
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2753
- #: sell-content.php:682
2754
  msgid "Price"
2755
  msgstr "Pris"
2756
 
@@ -2776,12 +2776,12 @@ msgid "Log"
2776
  msgstr "Log"
2777
 
2778
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2779
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2780
  msgid "Log Entry"
2781
  msgstr "Log Inlägg"
2782
 
2783
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2784
- #: content/myCRED-addon-sell-content.php:473
2785
  msgid "Templates"
2786
  msgstr "Mallar"
2787
 
@@ -2867,7 +2867,7 @@ msgid "Reject"
2867
  msgstr "Avvisa"
2868
 
2869
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2870
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2871
  #: modules/mycred-module-settings.php:699
2872
  msgid "Delete"
2873
  msgstr "Radera"
@@ -3371,44 +3371,44 @@ msgstr ""
3371
  msgid "Save Profit Share"
3372
  msgstr ""
3373
 
3374
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3375
  msgid "Profit Share override saved"
3376
  msgstr ""
3377
 
3378
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3379
  msgid "You can not buy this content."
3380
  msgstr "Du kan inte köpa detta innehåll"
3381
 
3382
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3383
  msgid "Error. Try Again"
3384
  msgstr "Fel. Försök igen"
3385
 
3386
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3387
  msgid "No Payout. Just charge."
3388
  msgstr "Ingen vinstdelning. Bara ta betalt."
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3391
  msgid "Pay Content Author."
3392
  msgstr "Dela vinst med författaren."
3393
 
3394
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3395
  #: overview.php:141 ../includes/mycred-overview.php:148
3396
  msgid "Sell Content"
3397
  msgstr "Sälj Innehåll"
3398
 
3399
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3400
  msgid "Post Types"
3401
  msgstr "Post Typer"
3402
 
3403
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3404
  msgid "Comma separated list of post types that can be sold."
3405
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3406
 
3407
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3408
  msgid "Percentage to pay Author"
3409
  msgstr "Procent att betala författaren"
3410
 
3411
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3412
  msgid ""
3413
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3414
  "authors are not paid."
@@ -3416,96 +3416,96 @@ msgstr ""
3416
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3417
  "ignorerar om vinstfördelning är inte aktiverad."
3418
 
3419
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3420
  msgid "Defaults"
3421
  msgstr "Standard Inställningar"
3422
 
3423
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3424
  msgid "Allow authors to change price."
3425
  msgstr "Tillåt författare att ändra priset."
3426
 
3427
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3428
  msgid "Allow authors to change button label."
3429
  msgstr "Tillåt användare att ändra knapp texten."
3430
 
3431
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3432
  msgid "Purchases expire after"
3433
  msgstr "Köp löper ut efter"
3434
 
3435
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3436
  msgid "Use zero for permanent sales."
3437
  msgstr "Använd noll till permanenta försäljningar."
3438
 
3439
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3440
  msgid "For Visitors"
3441
  msgstr ""
3442
 
3443
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3444
  #, php-format
3445
  msgid ""
3446
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3447
  "be logged in to buy content!"
3448
  msgstr "Använd inte %buy_button% coden här!"
3449
 
3450
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3451
  msgid "For Members"
3452
  msgstr ""
3453
 
3454
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3455
- #: content/myCRED-addon-sell-content.php:516
3456
  #, php-format
3457
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3458
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3459
 
3460
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3461
  msgid "For members that can not afford to buy"
3462
  msgstr ""
3463
 
3464
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3465
  msgid "Log template for Purchases"
3466
  msgstr "Log mall för köp"
3467
 
3468
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3469
  msgid "Log template for Sales"
3470
  msgstr "Log mall för försäljning"
3471
 
3472
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3473
  #, php-format
3474
  msgid "%s Sell This"
3475
  msgstr "%s Sälj Detta"
3476
 
3477
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3478
  #, php-format
3479
  msgid "%s Sell Content needs to be setup before you can use this feature."
3480
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3481
 
3482
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3483
  msgid "Setup add-on"
3484
  msgstr "Installera add-on"
3485
 
3486
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3487
  msgid "Lets do it"
3488
  msgstr "Kör!"
3489
 
3490
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3491
  #, php-format
3492
  msgid "Enable sale of this %s"
3493
  msgstr ""
3494
 
3495
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3496
  msgid "Purchase expires after"
3497
  msgstr "Köp löper ut efter"
3498
 
3499
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3500
  msgid "Thank you for your purchase!"
3501
  msgstr "Tack för ditt köp!"
3502
 
3503
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3504
- #: content/myCRED-addon-sell-content.php:1190
3505
  msgid "The following content is set for sale:"
3506
  msgstr "Följande innehåll är till salu:"
3507
 
3508
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3509
  msgid "Purchased"
3510
  msgstr "Köp historik"
3511
 
@@ -3571,17 +3571,17 @@ msgid "Total Spent: %s"
3571
  msgstr ""
3572
 
3573
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3574
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3575
  msgid "Today"
3576
  msgstr ""
3577
 
3578
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3579
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3580
  msgid "This Week"
3581
  msgstr ""
3582
 
3583
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3584
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3585
  msgid "This Month"
3586
  msgstr ""
3587
 
@@ -3616,13 +3616,13 @@ msgstr ""
3616
  msgid "Gains in the last 10 days"
3617
  msgstr ""
3618
 
3619
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3620
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3621
  msgid "View"
3622
  msgstr ""
3623
 
3624
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3625
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3626
  msgid "No data found"
3627
  msgstr ""
3628
 
@@ -3859,121 +3859,121 @@ msgstr ""
3859
  msgid "Welcome to %s %s"
3860
  msgstr ""
3861
 
3862
- #: ../includes/mycred-admin.php:191
3863
  msgid "A log entry is required in order to adjust this users balance"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-admin.php:193
3867
  msgid "Users balance saved"
3868
  msgstr ""
3869
 
3870
- #: ../includes/mycred-admin.php:201
3871
  msgid "Users excluded"
3872
  msgstr ""
3873
 
3874
- #: ../includes/mycred-admin.php:206
3875
  msgid ""
3876
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3877
  "rate settings and update all premium payment gateways!"
3878
  msgstr ""
3879
 
3880
- #: ../includes/mycred-admin.php:234
3881
  msgid "User is excluded"
3882
  msgstr ""
3883
 
3884
- #: ../includes/mycred-admin.php:239
3885
  msgid "Log Entry can not be empty"
3886
  msgstr ""
3887
 
3888
- #: ../includes/mycred-admin.php:243
3889
  msgid "Amount can not be zero"
3890
  msgstr ""
3891
 
3892
- #: ../includes/mycred-admin.php:264
3893
  msgid "Failed to update this uses balance."
3894
  msgstr ""
3895
 
3896
- #: ../includes/mycred-admin.php:385
3897
  msgid "Excluded"
3898
  msgstr ""
3899
 
3900
- #: ../includes/mycred-admin.php:406
3901
  msgid "Adjust"
3902
  msgstr ""
3903
 
3904
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3905
  msgid "Edit Balance"
3906
  msgstr ""
3907
 
3908
- #: ../includes/mycred-admin.php:463
3909
  msgid "Profile"
3910
  msgstr ""
3911
 
3912
- #: ../includes/mycred-admin.php:470
3913
  msgid "Extended Profile"
3914
  msgstr ""
3915
 
3916
- #: ../includes/mycred-admin.php:560
3917
  #, php-format
3918
  msgid "This user is excluded from using %s"
3919
  msgstr ""
3920
 
3921
- #: ../includes/mycred-admin.php:583
3922
  msgid "Edit User"
3923
  msgstr ""
3924
 
3925
- #: ../includes/mycred-admin.php:585
3926
  msgctxt "user"
3927
  msgid "Add New"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-admin.php:587
3931
  msgctxt "user"
3932
  msgid "Add Existing"
3933
  msgstr ""
3934
 
3935
- #: ../includes/mycred-admin.php:598
3936
  #, php-format
3937
  msgid "Total %s Accumulated"
3938
  msgstr ""
3939
 
3940
- #: ../includes/mycred-admin.php:599
3941
  #, php-format
3942
  msgid "Total %s Spent"
3943
  msgstr ""
3944
 
3945
- #: ../includes/mycred-admin.php:610
3946
  msgid "View History"
3947
  msgstr ""
3948
 
3949
- #: ../includes/mycred-admin.php:611
3950
  msgid "Exclude User"
3951
  msgstr ""
3952
 
3953
- #: ../includes/mycred-admin.php:615
3954
  msgid "Adjust Balance"
3955
  msgstr ""
3956
 
3957
- #: ../includes/mycred-admin.php:624
3958
  msgid ""
3959
  "Warning! Excluding this user will result in their balance being deleted "
3960
  "along with any entries currently in your log! This can not be undone!"
3961
  msgstr ""
3962
 
3963
- #: ../includes/mycred-admin.php:682
3964
  #, php-format
3965
  msgid "%singular% balance"
3966
  msgstr ""
3967
 
3968
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
3969
  msgid "Update Balance"
3970
  msgstr ""
3971
 
3972
- #: ../includes/mycred-admin.php:753
3973
  msgid "ID"
3974
  msgstr ""
3975
 
3976
- #: ../includes/mycred-admin.php:759
3977
  msgid "A positive or negative value"
3978
  msgstr ""
3979
 
@@ -4615,101 +4615,101 @@ msgstr ""
4615
  msgid "Install & Run"
4616
  msgstr ""
4617
 
4618
- #: ../includes/mycred-log.php:430
4619
  #, php-format
4620
  msgid "Showing %d %s"
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-log.php:430
4624
  msgid "entry"
4625
  msgstr ""
4626
 
4627
- #: ../includes/mycred-log.php:444
4628
  msgid "Go to the first page"
4629
  msgstr ""
4630
 
4631
- #: ../includes/mycred-log.php:451
4632
  msgid "Go to the previous page"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-log.php:460
4636
  msgid "Current page"
4637
  msgstr ""
4638
 
4639
- #: ../includes/mycred-log.php:466
4640
  #, php-format
4641
  msgctxt "mycred"
4642
  msgid "%1$s of %2$s"
4643
  msgstr ""
4644
 
4645
- #: ../includes/mycred-log.php:470
4646
  msgid "Go to the next page"
4647
  msgstr ""
4648
 
4649
- #: ../includes/mycred-log.php:477
4650
  msgid "Go to the last page"
4651
  msgstr ""
4652
 
4653
- #: ../includes/mycred-log.php:544
4654
  msgid "Show all references"
4655
  msgstr ""
4656
 
4657
- #: ../includes/mycred-log.php:557
4658
  msgid "User ID, Username, Email or Nicename"
4659
  msgstr ""
4660
 
4661
- #: ../includes/mycred-log.php:563
4662
  msgid "Show in order"
4663
  msgstr ""
4664
 
4665
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4666
  msgid "Ascending"
4667
  msgstr ""
4668
 
4669
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4670
  msgid "Descending"
4671
  msgstr ""
4672
 
4673
- #: ../includes/mycred-log.php:582
4674
  msgid "Filter"
4675
  msgstr ""
4676
 
4677
- #: ../includes/mycred-log.php:635
4678
  msgid ""
4679
  "Log entries are exported to a CSV file and depending on the number of "
4680
  "entries selected, the process may take a few seconds."
4681
  msgstr ""
4682
 
4683
- #: ../includes/mycred-log.php:639
4684
  msgid "No export options available."
4685
  msgstr ""
4686
 
4687
- #: ../includes/mycred-log.php:668
4688
  msgid "Entry"
4689
  msgstr ""
4690
 
4691
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4692
  msgid "User Missing"
4693
  msgstr "Användare saknas"
4694
 
4695
- #: ../includes/mycred-log.php:839
4696
  msgid "No log entries found"
4697
  msgstr ""
4698
 
4699
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4700
  msgid "Search Log"
4701
  msgstr ""
4702
 
4703
- #: ../includes/mycred-log.php:855
4704
  msgid "search log entries"
4705
  msgstr ""
4706
 
4707
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4708
  #: modules/mycred-module-buddypress.php:249
4709
  msgid "All"
4710
  msgstr ""
4711
 
4712
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4713
  msgid "Yesterday"
4714
  msgstr ""
4715
 
@@ -4936,7 +4936,7 @@ msgstr ""
4936
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4937
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4938
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4939
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4940
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4941
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4942
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5546,7 +5546,7 @@ msgstr ""
5546
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5547
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5548
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5549
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5550
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5551
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5552
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -5848,8 +5848,8 @@ msgstr ""
5848
  msgid "Entries"
5849
  msgstr ""
5850
 
5851
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5852
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5853
  msgid "Export"
5854
  msgstr ""
5855
 
@@ -5868,35 +5868,35 @@ msgid ""
5868
  "Certain hooks and shortcodes will not work correctly!"
5869
  msgstr ""
5870
 
5871
- #: ../modules/mycred-module-log.php:565
5872
  msgid "Edit"
5873
  msgstr ""
5874
 
5875
- #: ../modules/mycred-module-log.php:612
5876
  msgid "Time"
5877
  msgstr "Tid"
5878
 
5879
- #: ../modules/mycred-module-log.php:616
5880
  msgid "Current Log Entry"
5881
  msgstr ""
5882
 
5883
- #: ../modules/mycred-module-log.php:618
5884
  msgid "The current saved log entry"
5885
  msgstr ""
5886
 
5887
- #: ../modules/mycred-module-log.php:621
5888
  msgid "Adjust Log Entry"
5889
  msgstr ""
5890
 
5891
- #: ../modules/mycred-module-log.php:623
5892
  msgid "The new log entry"
5893
  msgstr ""
5894
 
5895
- #: ../modules/mycred-module-log.php:626
5896
  msgid "Update Log Entry"
5897
  msgstr ""
5898
 
5899
- #: ../modules/mycred-module-log.php:697
5900
  #, php-format
5901
  msgid "My %s History"
5902
  msgstr ""
@@ -6565,23 +6565,23 @@ msgstr ""
6565
  msgid "Reward with %plural%"
6566
  msgstr ""
6567
 
6568
- #: ../plugins/mycred-hook-sharethis.php:18
6569
  #, php-format
6570
  msgid "%plural% for Sharing"
6571
  msgstr ""
6572
 
6573
- #: ../plugins/mycred-hook-sharethis.php:19
6574
  #, php-format
6575
  msgid ""
6576
  "Awards %_plural% for users sharing / liking your website content to popular "
6577
  "social media sites."
6578
  msgstr ""
6579
 
6580
- #: ../plugins/mycred-hook-sharethis.php:232
6581
  msgid "Your ShareThis public key is not set."
6582
  msgstr ""
6583
 
6584
- #: ../plugins/mycred-hook-sharethis.php:237
6585
  msgid "No ShareThis services detected. Please check your installation."
6586
  msgstr ""
6587
 
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Mon Jun 08 2015 23:43:44 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: sv_SE"
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr "Saldo"
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr "%label% Historik"
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr "Om %s"
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr "Hjälpsamma Användare"
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr "Arbetar..."
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr "Varning! Alla log inlägg kommer att raderas!"
59
 
60
+ #: ../mycred.php:679
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr "All log inlägg för användare som har raderats kommer att raderas!"
65
 
66
+ #: ../mycred.php:680
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr "Varning! Alla användares konton kommer att noll ställas!"
69
 
70
+ #: ../mycred.php:681
71
  msgid "Done!"
72
  msgstr "Klart!"
73
 
74
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
75
  msgid "Close"
76
  msgstr "Stäng"
77
 
78
+ #: ../mycred.php:683
79
  msgid "Export users %plural%"
80
  msgstr "Exportera användarens %plural%"
81
 
82
+ #: ../mycred.php:684
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
+ #: ../mycred.php:700
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
+ #: ../mycred.php:718
94
  msgid "Edit Log Entry"
95
  msgstr "Justera log inlägg"
96
 
97
+ #: ../mycred.php:722
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr "Är du säker på att du vill radera detta inlägg?"
100
 
101
+ #: ../mycred.php:723
102
  msgid "Log entry updated"
103
  msgstr "Log inlägg updaterad"
104
 
105
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr "Setup"
110
 
111
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr "Inställningar"
117
 
118
+ #: ../mycred.php:825
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
162
  msgstr "En gång om dagen (börjar om efter midnatt)"
163
 
164
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
165
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
166
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
167
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
168
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
169
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
189
  msgstr "öppna"
190
 
191
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
192
+ #: buy-creds.php:927
193
  msgid "Settings Updated"
194
  msgstr "Inställningar Sparade"
195
 
230
  msgstr ""
231
 
232
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
233
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
234
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
235
  #: addons/ranks/myCRED-addon-ranks.php:448
236
  msgid "Add New"
462
  msgstr "Status"
463
 
464
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
465
+ #: addon-email-notices.php:1296
466
  msgid "Save Changes"
467
  msgstr ""
468
 
528
  msgstr ""
529
 
530
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
531
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
532
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
533
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
534
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
535
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
536
  msgid "Access Denied"
537
  msgstr "Nekad Åtkomst"
538
 
554
  msgstr "Varning! Denna add-on behöver WP-Cron aktiverat!"
555
 
556
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
557
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
558
  msgid "Enable"
559
  msgstr "On"
560
 
676
 
677
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
678
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
679
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
680
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
681
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
682
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
683
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
735
  msgstr ""
736
 
737
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
738
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
739
  #: content.php:114
740
  msgid "Leave empty to use the default value."
741
  msgstr ""
748
  msgid "Exclude from receiving interest"
749
  msgstr ""
750
 
751
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
752
  msgid "Compound interest rate saved."
753
  msgstr ""
754
 
755
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
756
  msgid "User excluded from receiving interest."
757
  msgstr ""
758
 
759
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
760
  msgid "User included in receiving interest."
761
  msgstr ""
762
 
765
  msgstr "Daglig %_plural%"
766
 
767
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
768
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
769
  #: modules/mycred-module-log.php:277
770
  msgid "History"
771
  msgstr ""
783
  msgstr "Betala Användare"
784
 
785
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
786
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
787
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
788
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
789
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
790
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
791
  #: plugins/mycred-hook-affiliatewp.php:256
792
  msgid "Amount"
824
  msgid "Payment Gateways"
825
  msgstr "Betalnings Operatörer"
826
 
827
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
828
  msgctxt "Post Type General Name"
829
  msgid "Pending Payments"
830
  msgstr ""
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
833
  msgctxt "Post Type Singular Name"
834
  msgid "Pending Payment"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
838
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
839
  msgid "Pending Payments"
840
  msgstr ""
841
 
842
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
843
  msgid "Edit Pending Payment"
844
  msgstr ""
845
 
846
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
847
+ #: addon-buy-creds.php:1752
848
  msgid "No pending payments found"
849
  msgstr ""
850
 
851
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
852
  msgid "Not found in Trash"
853
  msgstr ""
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
857
  msgid "Transaction ID"
858
  msgstr "Transaktions ID"
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1074
862
  msgid "Buyer"
863
  msgstr ""
864
 
865
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
866
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
867
  #: gateway.php:594
868
  msgid "Cost"
869
  msgstr "Kostnad"
870
 
871
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
872
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
873
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
874
  msgid "Gateway"
875
  msgstr "Operatör"
876
 
877
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
878
  msgid "Type"
879
  msgstr ""
880
 
881
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
882
  msgid "Pay Out"
883
  msgstr ""
884
 
885
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
886
  msgid "buyCRED Purchase Log"
887
  msgstr "buyCRED Köp Log"
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
890
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
891
  msgid "Purchase Log"
892
  msgstr "Köp Log"
893
 
894
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
895
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
896
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
897
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
898
  msgid "Payments"
899
  msgstr "Köp"
900
 
901
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
902
  msgid "Please login to purchase %_plural%"
903
  msgstr "Logga in för att köpa %_plural%"
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
906
  #, php-format
907
  msgid "Gift purchase from %display_name%."
908
  msgstr "Gåva till %display_name%"
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
911
  #: addon-ranks.php:1084
912
  msgid "Minimum %plural%"
913
  msgstr "Minimum %plural%"
914
 
915
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
916
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
917
  msgstr "Minsta köp användare kan göra. Sets till 1 om inget anges."
918
 
919
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
920
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
921
  #: module-settings.php:656
922
  msgid "Point Types"
923
  msgstr ""
924
 
925
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
926
  msgid "Select the point types that users can buy. You must select at least one!"
927
  msgstr ""
928
 
929
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
930
  msgid "Login Template"
931
  msgstr "Login Mall"
932
 
933
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
934
  msgid "Content to show when a user is not logged in."
935
  msgstr "Information att visa när besökaren har inte loggat in."
936
 
937
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
938
  msgid "Thank You Page"
939
  msgstr "Tack Sida"
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:705
943
  msgid "Custom URL"
944
  msgstr "Annan URL"
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
947
+ #: addon-buy-creds.php:710
948
  msgid "Page"
949
  msgstr "Sida"
950
 
951
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
952
  msgid "Cancellation Page"
953
  msgstr "Cancel Sida"
954
 
955
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
956
  msgid "Show seperate log for %_plural% purchases."
957
  msgstr "Visa %_plural% köp på en separat sida."
958
 
959
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
960
  msgid "Gifting"
961
  msgstr "Köp åt andra"
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for other users."
966
  msgstr "Tillåt användare att köpa %_plural% åt andra användare än sig själva."
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
969
  #, php-format
970
  msgid "Allow users to buy %_plural% for content authors."
971
  msgstr "Tillåt användare att köpra %_plural% åt post författare."
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
974
  #: hooks.php:3110
975
  msgid "Available Shortcodes"
976
  msgstr ""
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
979
  #, php-format
980
  msgid "%s Exchange Rate"
981
  msgstr ""
982
 
983
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
984
  msgid "Save Exchange Rates"
985
  msgstr ""
986
 
987
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
988
  msgid "Exchange rate override saved"
989
  msgstr ""
990
 
991
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
992
  msgid "Payment completed"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
996
  #, php-format
997
  msgid "%s Payment Gateways"
998
  msgstr "%s Betalnings Operatörer"
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1001
+ #: addon-buy-creds.php:1085
1002
  msgid "buyCRED Settings"
1003
  msgstr "buyCRED Inställningar"
1004
 
1005
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1006
  msgid "Test Mode"
1007
  msgstr "Test Mode"
1008
 
1009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1010
  msgid "Enabled"
1011
  msgstr "On"
1012
 
1013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1014
  msgid "Disabled"
1015
  msgstr "Off"
1016
 
1017
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1018
  msgid "Sandbox Mode"
1019
  msgstr "Sandbox Mode"
1020
 
1021
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1022
  msgid "Enable for test purchases."
1023
  msgstr "Aktivera för test köp."
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1026
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1027
  msgid "Update Settings"
1028
  msgstr "Spara Ändringar"
1029
 
1030
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1031
  msgid "More Gateways"
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1035
+ #: 756
1036
  msgid "Date"
1037
  msgstr "Datum"
1038
 
1039
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1040
  msgid "Payed"
1041
  msgstr "Betalt"
1042
 
1043
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1044
  msgid "<strong>buy</strong>CRED Purchase Log"
1045
  msgstr "<strong>buy</strong>CRED Köp Log"
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1048
  #: booking/mycred-eventespresso3.php:367
1049
  msgid "Gateway Settings"
1050
  msgstr "Operatör Inställningar"
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1053
+ #: content/myCRED-addon-sell-content.php:1210
1054
  msgid "No purchases found"
1055
  msgstr "Inga Köp"
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1058
+ #: addon-buy-creds.php:1464
1059
  msgid "This Add-on needs to setup before you can use this shortcode."
1060
  msgstr "Du måste sätta up denna add-on innan du kan använda denna shortcode."
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1063
+ #: addon-buy-creds.php:1483
1064
  msgid "No gateways installed."
1065
  msgstr "Inga Operatörer är installerade."
1066
 
1067
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1068
+ #: addon-buy-creds.php:1484
1069
  msgid "Gateway does not exist."
1070
  msgstr "Kunde inte finna operatör."
1071
 
1072
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1073
  msgid "Yourself"
1074
  msgstr "Till dig själv"
1075
 
1076
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1077
  msgid "No active gateways found."
1078
  msgstr "Kunde inte hitta några aktiverade operatörer."
1079
 
1080
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1081
  msgid "The selected gateway is not active."
1082
  msgstr "Operatören du valde är inte aktiverad."
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1085
  #, php-format
1086
  msgid "Buy with %gateway%"
1087
  msgstr "Köp genom %gateway%"
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1090
  #: content/myCRED-addon-sell-content.php:44
1091
  msgid "Buy Now"
1092
  msgstr "Köp"
1093
 
1094
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1095
  msgid "No users found"
1096
  msgstr "Kunde inte hitta någon"
1097
 
1098
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1099
  msgid "To"
1100
  msgstr "Till"
1101
 
1102
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1103
  msgid "Select Amount"
1104
  msgstr "Välj summa"
1105
 
1106
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1107
  msgid "min."
1108
  msgstr "min."
1109
 
1110
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1111
  msgid "Select Gateway"
1112
  msgstr "Välj Operatör"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1115
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1116
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1117
  #: php:35
1118
  msgid "Pay Now"
1119
  msgstr "Betala"
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1122
  #: php:536
1123
  msgid "Cancel"
1124
  msgstr ""
1125
 
1126
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1127
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1128
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1129
  msgid "Actions"
1164
  msgstr "Cancellara köp"
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1167
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1168
  msgid "required"
1169
  msgstr "obligatoriskt"
1170
 
1171
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1172
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1173
  msgid "optional"
1174
  msgstr "valfritt"
1175
 
1720
  #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1721
  #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1722
  #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1723
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1724
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1725
  #: includes/importers/mycred-cubepoints.php:365
1726
  msgid "Point Type"
1732
  msgstr "oanvänd"
1733
 
1734
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1735
+ #: 416 ../modules/mycred-module-hooks.php:2507
1736
  msgid "Total"
1737
  msgstr "Total"
1738
 
1891
  msgstr "Validera"
1892
 
1893
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1894
+ #: notices/myCRED-addon-email-notices.php:1270
1895
  msgid "Email Notice"
1896
  msgstr "E-postmeddelande"
1897
 
2168
  msgstr "Skicka till"
2169
 
2170
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2171
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2172
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2173
  msgid "User"
2174
  msgstr "Användare"
2175
 
2301
  msgid "Settings saved."
2302
  msgstr ""
2303
 
2304
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2305
  msgid "Unsubscribe"
2306
  msgstr ""
2307
 
2308
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2309
  msgid "There are no email notifications yet."
2310
  msgstr ""
2311
 
2312
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2313
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2314
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2315
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2316
  msgid "Current Balance"
2317
  msgstr "Nuvarande Saldo"
2318
 
2735
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2736
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2737
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2738
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2739
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2740
  msgid "Button Label"
2741
  msgstr "Knapp Text"
2742
 
2749
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2750
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2751
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2752
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2753
+ #: sell-content.php:683
2754
  msgid "Price"
2755
  msgstr "Pris"
2756
 
2776
  msgstr "Log"
2777
 
2778
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2779
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2780
  msgid "Log Entry"
2781
  msgstr "Log Inlägg"
2782
 
2783
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2784
+ #: content/myCRED-addon-sell-content.php:474
2785
  msgid "Templates"
2786
  msgstr "Mallar"
2787
 
2867
  msgstr "Avvisa"
2868
 
2869
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2870
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2871
  #: modules/mycred-module-settings.php:699
2872
  msgid "Delete"
2873
  msgstr "Radera"
3371
  msgid "Save Profit Share"
3372
  msgstr ""
3373
 
3374
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3375
  msgid "Profit Share override saved"
3376
  msgstr ""
3377
 
3378
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3379
  msgid "You can not buy this content."
3380
  msgstr "Du kan inte köpa detta innehåll"
3381
 
3382
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3383
  msgid "Error. Try Again"
3384
  msgstr "Fel. Försök igen"
3385
 
3386
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3387
  msgid "No Payout. Just charge."
3388
  msgstr "Ingen vinstdelning. Bara ta betalt."
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3391
  msgid "Pay Content Author."
3392
  msgstr "Dela vinst med författaren."
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3395
  #: overview.php:141 ../includes/mycred-overview.php:148
3396
  msgid "Sell Content"
3397
  msgstr "Sälj Innehåll"
3398
 
3399
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3400
  msgid "Post Types"
3401
  msgstr "Post Typer"
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3404
  msgid "Comma separated list of post types that can be sold."
3405
  msgstr "Kommaseparerade lista av post typer som kan köpas."
3406
 
3407
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3408
  msgid "Percentage to pay Author"
3409
  msgstr "Procent att betala författaren"
3410
 
3411
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3412
  msgid ""
3413
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3414
  "authors are not paid."
3416
  "Ett procent tal att betala författaren. Kan inte vara noll och detta "
3417
  "ignorerar om vinstfördelning är inte aktiverad."
3418
 
3419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3420
  msgid "Defaults"
3421
  msgstr "Standard Inställningar"
3422
 
3423
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3424
  msgid "Allow authors to change price."
3425
  msgstr "Tillåt författare att ändra priset."
3426
 
3427
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3428
  msgid "Allow authors to change button label."
3429
  msgstr "Tillåt användare att ändra knapp texten."
3430
 
3431
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3432
  msgid "Purchases expire after"
3433
  msgstr "Köp löper ut efter"
3434
 
3435
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3436
  msgid "Use zero for permanent sales."
3437
  msgstr "Använd noll till permanenta försäljningar."
3438
 
3439
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3440
  msgid "For Visitors"
3441
  msgstr ""
3442
 
3443
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3444
  #, php-format
3445
  msgid ""
3446
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3447
  "be logged in to buy content!"
3448
  msgstr "Använd inte %buy_button% coden här!"
3449
 
3450
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3451
  msgid "For Members"
3452
  msgstr ""
3453
 
3454
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3455
+ #: content/myCRED-addon-sell-content.php:517
3456
  #, php-format
3457
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3458
  msgstr "Du måste använda %buy_button% coden för att köp skall fungera!"
3459
 
3460
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3461
  msgid "For members that can not afford to buy"
3462
  msgstr ""
3463
 
3464
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3465
  msgid "Log template for Purchases"
3466
  msgstr "Log mall för köp"
3467
 
3468
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3469
  msgid "Log template for Sales"
3470
  msgstr "Log mall för försäljning"
3471
 
3472
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3473
  #, php-format
3474
  msgid "%s Sell This"
3475
  msgstr "%s Sälj Detta"
3476
 
3477
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3478
  #, php-format
3479
  msgid "%s Sell Content needs to be setup before you can use this feature."
3480
  msgstr "%s Sälj Innehåll måste installeras innan du kan använda denna funktion!"
3481
 
3482
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3483
  msgid "Setup add-on"
3484
  msgstr "Installera add-on"
3485
 
3486
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3487
  msgid "Lets do it"
3488
  msgstr "Kör!"
3489
 
3490
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3491
  #, php-format
3492
  msgid "Enable sale of this %s"
3493
  msgstr ""
3494
 
3495
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3496
  msgid "Purchase expires after"
3497
  msgstr "Köp löper ut efter"
3498
 
3499
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3500
  msgid "Thank you for your purchase!"
3501
  msgstr "Tack för ditt köp!"
3502
 
3503
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3504
+ #: content/myCRED-addon-sell-content.php:1191
3505
  msgid "The following content is set for sale:"
3506
  msgstr "Följande innehåll är till salu:"
3507
 
3508
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3509
  msgid "Purchased"
3510
  msgstr "Köp historik"
3511
 
3571
  msgstr ""
3572
 
3573
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3574
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3575
  msgid "Today"
3576
  msgstr ""
3577
 
3578
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3579
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3580
  msgid "This Week"
3581
  msgstr ""
3582
 
3583
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3584
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3585
  msgid "This Month"
3586
  msgstr ""
3587
 
3616
  msgid "Gains in the last 10 days"
3617
  msgstr ""
3618
 
3619
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3620
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3621
  msgid "View"
3622
  msgstr ""
3623
 
3624
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3625
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3626
  msgid "No data found"
3627
  msgstr ""
3628
 
3859
  msgid "Welcome to %s %s"
3860
  msgstr ""
3861
 
3862
+ #: ../includes/mycred-admin.php:198
3863
  msgid "A log entry is required in order to adjust this users balance"
3864
  msgstr ""
3865
 
3866
+ #: ../includes/mycred-admin.php:200
3867
  msgid "Users balance saved"
3868
  msgstr ""
3869
 
3870
+ #: ../includes/mycred-admin.php:208
3871
  msgid "Users excluded"
3872
  msgstr ""
3873
 
3874
+ #: ../includes/mycred-admin.php:213
3875
  msgid ""
3876
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3877
  "rate settings and update all premium payment gateways!"
3878
  msgstr ""
3879
 
3880
+ #: ../includes/mycred-admin.php:242
3881
  msgid "User is excluded"
3882
  msgstr ""
3883
 
3884
+ #: ../includes/mycred-admin.php:247
3885
  msgid "Log Entry can not be empty"
3886
  msgstr ""
3887
 
3888
+ #: ../includes/mycred-admin.php:251
3889
  msgid "Amount can not be zero"
3890
  msgstr ""
3891
 
3892
+ #: ../includes/mycred-admin.php:272
3893
  msgid "Failed to update this uses balance."
3894
  msgstr ""
3895
 
3896
+ #: ../includes/mycred-admin.php:406
3897
  msgid "Excluded"
3898
  msgstr ""
3899
 
3900
+ #: ../includes/mycred-admin.php:427
3901
  msgid "Adjust"
3902
  msgstr ""
3903
 
3904
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3905
  msgid "Edit Balance"
3906
  msgstr ""
3907
 
3908
+ #: ../includes/mycred-admin.php:490
3909
  msgid "Profile"
3910
  msgstr ""
3911
 
3912
+ #: ../includes/mycred-admin.php:497
3913
  msgid "Extended Profile"
3914
  msgstr ""
3915
 
3916
+ #: ../includes/mycred-admin.php:591
3917
  #, php-format
3918
  msgid "This user is excluded from using %s"
3919
  msgstr ""
3920
 
3921
+ #: ../includes/mycred-admin.php:615
3922
  msgid "Edit User"
3923
  msgstr ""
3924
 
3925
+ #: ../includes/mycred-admin.php:617
3926
  msgctxt "user"
3927
  msgid "Add New"
3928
  msgstr ""
3929
 
3930
+ #: ../includes/mycred-admin.php:619
3931
  msgctxt "user"
3932
  msgid "Add Existing"
3933
  msgstr ""
3934
 
3935
+ #: ../includes/mycred-admin.php:630
3936
  #, php-format
3937
  msgid "Total %s Accumulated"
3938
  msgstr ""
3939
 
3940
+ #: ../includes/mycred-admin.php:631
3941
  #, php-format
3942
  msgid "Total %s Spent"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/mycred-admin.php:642
3946
  msgid "View History"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/mycred-admin.php:643
3950
  msgid "Exclude User"
3951
  msgstr ""
3952
 
3953
+ #: ../includes/mycred-admin.php:647
3954
  msgid "Adjust Balance"
3955
  msgstr ""
3956
 
3957
+ #: ../includes/mycred-admin.php:656
3958
  msgid ""
3959
  "Warning! Excluding this user will result in their balance being deleted "
3960
  "along with any entries currently in your log! This can not be undone!"
3961
  msgstr ""
3962
 
3963
+ #: ../includes/mycred-admin.php:721
3964
  #, php-format
3965
  msgid "%singular% balance"
3966
  msgstr ""
3967
 
3968
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3969
  msgid "Update Balance"
3970
  msgstr ""
3971
 
3972
+ #: ../includes/mycred-admin.php:798
3973
  msgid "ID"
3974
  msgstr ""
3975
 
3976
+ #: ../includes/mycred-admin.php:804
3977
  msgid "A positive or negative value"
3978
  msgstr ""
3979
 
4615
  msgid "Install & Run"
4616
  msgstr ""
4617
 
4618
+ #: ../includes/mycred-log.php:485
4619
  #, php-format
4620
  msgid "Showing %d %s"
4621
  msgstr ""
4622
 
4623
+ #: ../includes/mycred-log.php:485
4624
  msgid "entry"
4625
  msgstr ""
4626
 
4627
+ #: ../includes/mycred-log.php:500
4628
  msgid "Go to the first page"
4629
  msgstr ""
4630
 
4631
+ #: ../includes/mycred-log.php:507
4632
  msgid "Go to the previous page"
4633
  msgstr ""
4634
 
4635
+ #: ../includes/mycred-log.php:517
4636
  msgid "Current page"
4637
  msgstr ""
4638
 
4639
+ #: ../includes/mycred-log.php:523
4640
  #, php-format
4641
  msgctxt "mycred"
4642
  msgid "%1$s of %2$s"
4643
  msgstr ""
4644
 
4645
+ #: ../includes/mycred-log.php:527
4646
  msgid "Go to the next page"
4647
  msgstr ""
4648
 
4649
+ #: ../includes/mycred-log.php:534
4650
  msgid "Go to the last page"
4651
  msgstr ""
4652
 
4653
+ #: ../includes/mycred-log.php:611
4654
  msgid "Show all references"
4655
  msgstr ""
4656
 
4657
+ #: ../includes/mycred-log.php:628
4658
  msgid "User ID, Username, Email or Nicename"
4659
  msgstr ""
4660
 
4661
+ #: ../includes/mycred-log.php:636
4662
  msgid "Show in order"
4663
  msgstr ""
4664
 
4665
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4666
  msgid "Ascending"
4667
  msgstr ""
4668
 
4669
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4670
  msgid "Descending"
4671
  msgstr ""
4672
 
4673
+ #: ../includes/mycred-log.php:658
4674
  msgid "Filter"
4675
  msgstr ""
4676
 
4677
+ #: ../includes/mycred-log.php:718
4678
  msgid ""
4679
  "Log entries are exported to a CSV file and depending on the number of "
4680
  "entries selected, the process may take a few seconds."
4681
  msgstr ""
4682
 
4683
+ #: ../includes/mycred-log.php:725
4684
  msgid "No export options available."
4685
  msgstr ""
4686
 
4687
+ #: ../includes/mycred-log.php:758
4688
  msgid "Entry"
4689
  msgstr ""
4690
 
4691
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4692
  msgid "User Missing"
4693
  msgstr "Användare saknas"
4694
 
4695
+ #: ../includes/mycred-log.php:958
4696
  msgid "No log entries found"
4697
  msgstr ""
4698
 
4699
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4700
  msgid "Search Log"
4701
  msgstr ""
4702
 
4703
+ #: ../includes/mycred-log.php:977
4704
  msgid "search log entries"
4705
  msgstr ""
4706
 
4707
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4708
  #: modules/mycred-module-buddypress.php:249
4709
  msgid "All"
4710
  msgstr ""
4711
 
4712
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4713
  msgid "Yesterday"
4714
  msgstr ""
4715
 
4936
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4937
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4938
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4939
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4940
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4941
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4942
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5546
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5547
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5548
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5549
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5550
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5551
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5552
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5848
  msgid "Entries"
5849
  msgstr ""
5850
 
5851
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5852
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5853
  msgid "Export"
5854
  msgstr ""
5855
 
5868
  "Certain hooks and shortcodes will not work correctly!"
5869
  msgstr ""
5870
 
5871
+ #: ../modules/mycred-module-log.php:563
5872
  msgid "Edit"
5873
  msgstr ""
5874
 
5875
+ #: ../modules/mycred-module-log.php:610
5876
  msgid "Time"
5877
  msgstr "Tid"
5878
 
5879
+ #: ../modules/mycred-module-log.php:614
5880
  msgid "Current Log Entry"
5881
  msgstr ""
5882
 
5883
+ #: ../modules/mycred-module-log.php:616
5884
  msgid "The current saved log entry"
5885
  msgstr ""
5886
 
5887
+ #: ../modules/mycred-module-log.php:619
5888
  msgid "Adjust Log Entry"
5889
  msgstr ""
5890
 
5891
+ #: ../modules/mycred-module-log.php:621
5892
  msgid "The new log entry"
5893
  msgstr ""
5894
 
5895
+ #: ../modules/mycred-module-log.php:624
5896
  msgid "Update Log Entry"
5897
  msgstr ""
5898
 
5899
+ #: ../modules/mycred-module-log.php:695
5900
  #, php-format
5901
  msgid "My %s History"
5902
  msgstr ""
6565
  msgid "Reward with %plural%"
6566
  msgstr ""
6567
 
6568
+ #: ../plugins/mycred-hook-sharethis.php:19
6569
  #, php-format
6570
  msgid "%plural% for Sharing"
6571
  msgstr ""
6572
 
6573
+ #: ../plugins/mycred-hook-sharethis.php:20
6574
  #, php-format
6575
  msgid ""
6576
  "Awards %_plural% for users sharing / liking your website content to popular "
6577
  "social media sites."
6578
  msgstr ""
6579
 
6580
+ #: ../plugins/mycred-hook-sharethis.php:257
6581
  msgid "Your ShareThis public key is not set."
6582
  msgstr ""
6583
 
6584
+ #: ../plugins/mycred-hook-sharethis.php:262
6585
  msgid "No ShareThis services detected. Please check your installation."
6586
  msgstr ""
6587
 
lang/mycred-zh_CN.mo CHANGED
Binary file
lang/mycred-zh_CN.po CHANGED
@@ -3,7 +3,7 @@ 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: Wed Apr 08 2015 17:09:34 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
@@ -23,97 +23,97 @@ msgstr ""
23
  "X-Loco-Target-Locale: zh_CN\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
- #: ../mycred.php:449
27
  msgid "Balance"
28
  msgstr "余额"
29
 
30
- #: ../mycred.php:474
31
  msgid "%label% History"
32
  msgstr "%label% 历史"
33
 
34
- #: ../mycred.php:567
35
  #, php-format
36
  msgid "About %s"
37
  msgstr "关于 %s"
38
 
39
- #: ../mycred.php:576
40
  msgid "Awesome People"
41
  msgstr "太棒了"
42
 
43
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
44
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
45
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
46
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
47
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
48
  #: php:636
49
  msgid "Processing..."
50
  msgstr "处理中..."
51
 
52
- #: ../mycred.php:662
53
  msgid ""
54
  "Warning! All entries in your log will be permanently removed! This can not "
55
  "be undone!"
56
  msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
57
 
58
- #: ../mycred.php:663
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
63
 
64
- #: ../mycred.php:664
65
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
66
  msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
67
 
68
- #: ../mycred.php:665
69
  msgid "Done!"
70
  msgstr "完成了!"
71
 
72
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
73
  msgid "Close"
74
  msgstr "关闭"
75
 
76
- #: ../mycred.php:667
77
  msgid "Export users %plural%"
78
  msgstr "导出用户 %plural%"
79
 
80
- #: ../mycred.php:668
81
  msgid ""
82
  "In order to adjust the number of decimal places you want to use we must "
83
  "update your log. It is highly recommended that you backup your current log "
84
  "before continuing!"
85
  msgstr "为了调整为您想使用的小数位,我们必须更新您的日志。强烈推荐您在继续之前备份当前的日志!"
86
 
87
- #: ../mycred.php:684
88
  msgid "Edit Users Balance"
89
  msgstr "编辑用户余额"
90
 
91
- #: ../mycred.php:702
92
  msgid "Edit Log Entry"
93
  msgstr "编辑日志条目"
94
 
95
- #: ../mycred.php:706
96
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
97
  msgstr "您确定要删除此日志条目?此操作无法撤消!"
98
 
99
- #: ../mycred.php:707
100
  msgid "Log entry updated"
101
  msgstr "日志条目更新"
102
 
103
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
104
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr "设置"
108
 
109
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
110
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
111
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
112
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
113
  msgid "Settings"
114
  msgstr "设置"
115
 
116
- #: ../mycred.php:803
117
  msgid ""
118
  "Make sure to backup your database and files before updating, in case "
119
  "anything goes wrong!"
@@ -158,8 +158,8 @@ msgid "Once per day (reset at midnight)"
158
  msgstr "每天一次(在午夜重置)"
159
 
160
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
161
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
162
- #: addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
163
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
164
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
165
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -185,7 +185,7 @@ msgid "click to open"
185
  msgstr "点击打开"
186
 
187
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
188
- #: buy-creds.php:884
189
  msgid "Settings Updated"
190
  msgstr "设置已更新"
191
 
@@ -226,7 +226,7 @@ msgid "Badge"
226
  msgstr "勋章"
227
 
228
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
229
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
230
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
231
  #: addons/ranks/myCRED-addon-ranks.php:448
232
  msgid "Add New"
@@ -458,7 +458,7 @@ msgid "Status"
458
  msgstr "状态"
459
 
460
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
461
- #: addon-email-notices.php:1293
462
  msgid "Save Changes"
463
  msgstr "保存更改"
464
 
@@ -524,11 +524,11 @@ msgid "Setup mass %_singular% payouts for your users."
524
  msgstr "为用户安装%_singular%。"
525
 
526
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
527
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
528
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
529
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
530
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
531
- #: modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
532
  msgid "Access Denied"
533
  msgstr "拒绝访问"
534
 
@@ -550,7 +550,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
550
  msgstr "警告!此扩展需要 WP-Cron 来工作。"
551
 
552
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
553
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
554
  msgid "Enable"
555
  msgstr "启用"
556
 
@@ -672,8 +672,8 @@ msgstr "支付"
672
 
673
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
674
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
675
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
676
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
677
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
678
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
679
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -731,7 +731,7 @@ msgid "This user role is excluded from receiving interest on this balance."
731
  msgstr "该用户角色被排除在可接收利息的用户之外。"
732
 
733
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
734
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
735
  #: content.php:114
736
  msgid "Leave empty to use the default value."
737
  msgstr "留空可使用默认值。"
@@ -744,15 +744,15 @@ msgstr "保存利率"
744
  msgid "Exclude from receiving interest"
745
  msgstr "从可接收利息的用户中排除"
746
 
747
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
748
  msgid "Compound interest rate saved."
749
  msgstr "复利率已保存。"
750
 
751
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
752
  msgid "User excluded from receiving interest."
753
  msgstr "用户已从可接收利息的用户中排除。"
754
 
755
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
756
  msgid "User included in receiving interest."
757
  msgstr "用户可接收到利息。"
758
 
@@ -761,7 +761,7 @@ msgid "Daily %_plural%"
761
  msgstr "每日 %_plural%"
762
 
763
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
764
- #: includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
765
  #: modules/mycred-module-log.php:277
766
  msgid "History"
767
  msgstr "历史"
@@ -779,10 +779,10 @@ msgid "Pay Users"
779
  msgstr "用户支付"
780
 
781
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
782
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
783
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
784
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
785
- #: includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
786
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
787
  #: plugins/mycred-hook-affiliatewp.php:256
788
  msgid "Amount"
@@ -817,306 +817,306 @@ msgstr "您可以随时禁用此服务来停止支出。但要记住,取消后
817
  msgid "Payment Gateways"
818
  msgstr "支付网关"
819
 
820
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
821
  msgctxt "Post Type General Name"
822
  msgid "Pending Payments"
823
  msgstr "待审的支付"
824
 
825
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
826
  msgctxt "Post Type Singular Name"
827
  msgid "Pending Payment"
828
  msgstr "待审的支付"
829
 
830
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
831
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
832
  msgid "Pending Payments"
833
  msgstr "待审的支付"
834
 
835
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
836
  msgid "Edit Pending Payment"
837
  msgstr "编辑待审的支付"
838
 
839
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
840
- #: addon-buy-creds.php:1699
841
  msgid "No pending payments found"
842
  msgstr "没有找到待审支付"
843
 
844
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
845
  msgid "Not found in Trash"
846
  msgstr "没有在回收站中找到"
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
849
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
850
  msgid "Transaction ID"
851
  msgstr "交易 ID"
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
854
- #: addon-buy-creds.php:1025
855
  msgid "Buyer"
856
  msgstr "买家"
857
 
858
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
859
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
860
  #: gateway.php:594
861
  msgid "Cost"
862
  msgstr "花费"
863
 
864
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
865
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
866
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
867
  msgid "Gateway"
868
  msgstr "网关"
869
 
870
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
871
  msgid "Type"
872
  msgstr "类型"
873
 
874
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
875
  msgid "Pay Out"
876
  msgstr "支出"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
879
  msgid "buyCRED Purchase Log"
880
  msgstr "buyCRED 购买记录"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
883
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
884
  msgid "Purchase Log"
885
  msgstr "购买记录"
886
 
887
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
888
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
889
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
890
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
891
  msgid "Payments"
892
  msgstr "付款"
893
 
894
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
895
  msgid "Please login to purchase %_plural%"
896
  msgstr "请登录后购买 %_plural%"
897
 
898
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
899
  #, php-format
900
  msgid "Gift purchase from %display_name%."
901
  msgstr "从 %display_name% 礼品购买"
902
 
903
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
904
  #: addon-ranks.php:1084
905
  msgid "Minimum %plural%"
906
  msgstr "最小 %plural%"
907
 
908
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
909
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
910
  msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
913
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
914
  #: module-settings.php:656
915
  msgid "Point Types"
916
  msgstr "积分类型"
917
 
918
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
919
  msgid "Select the point types that users can buy. You must select at least one!"
920
  msgstr "选择用户可购的几分类型。您至少应该选择一种!"
921
 
922
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
923
  msgid "Login Template"
924
  msgstr "登录模板"
925
 
926
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
927
  msgid "Content to show when a user is not logged in."
928
  msgstr "用户没有登录时显示的内容。"
929
 
930
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
931
  msgid "Thank You Page"
932
  msgstr "感谢页面"
933
 
934
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
935
- #: addon-buy-creds.php:668
936
  msgid "Custom URL"
937
  msgstr "自定义链接"
938
 
939
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
940
- #: addon-buy-creds.php:673
941
  msgid "Page"
942
  msgstr "页面"
943
 
944
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
945
  msgid "Cancellation Page"
946
  msgstr "取消页面"
947
 
948
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
949
  msgid "Show seperate log for %_plural% purchases."
950
  msgstr "为 %_plural% 购买显示单独的日志。"
951
 
952
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
953
  msgid "Gifting"
954
  msgstr "送礼"
955
 
956
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
957
  #, php-format
958
  msgid "Allow users to buy %_plural% for other users."
959
  msgstr "允许用户为其他用户购买 %_plural% 。"
960
 
961
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
962
  #, php-format
963
  msgid "Allow users to buy %_plural% for content authors."
964
  msgstr "允许用户为内容作者购买 %_plural% 。"
965
 
966
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
967
  #: hooks.php:3110
968
  msgid "Available Shortcodes"
969
  msgstr "可用简码"
970
 
971
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
972
  #, php-format
973
  msgid "%s Exchange Rate"
974
  msgstr "%s 转换率"
975
 
976
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
977
  msgid "Save Exchange Rates"
978
  msgstr "保存转换率"
979
 
980
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
981
  msgid "Exchange rate override saved"
982
  msgstr "转换率重写已保存"
983
 
984
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
985
  msgid "Payment completed"
986
  msgstr "支付已完成"
987
 
988
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
989
  #, php-format
990
  msgid "%s Payment Gateways"
991
  msgstr "%s 支付网关"
992
 
993
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
994
- #: addon-buy-creds.php:1034
995
  msgid "buyCRED Settings"
996
  msgstr "buyCRED设置"
997
 
998
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
999
  msgid "Test Mode"
1000
  msgstr "测试模式"
1001
 
1002
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1003
  msgid "Enabled"
1004
  msgstr "已启用"
1005
 
1006
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1007
  msgid "Disabled"
1008
  msgstr "已禁用"
1009
 
1010
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1011
  msgid "Sandbox Mode"
1012
  msgstr "沙箱模式"
1013
 
1014
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1015
  msgid "Enable for test purchases."
1016
  msgstr "启用测试购买。"
1017
 
1018
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1019
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1020
  msgid "Update Settings"
1021
  msgstr "更新设置"
1022
 
1023
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1024
  msgid "More Gateways"
1025
  msgstr "更多网关"
1026
 
1027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1028
- #: 666
1029
  msgid "Date"
1030
  msgstr "日期"
1031
 
1032
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1033
  msgid "Payed"
1034
  msgstr "已支付"
1035
 
1036
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1037
  msgid "<strong>buy</strong>CRED Purchase Log"
1038
  msgstr "<strong>buy</strong>CRED购买日志"
1039
 
1040
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1041
  #: booking/mycred-eventespresso3.php:367
1042
  msgid "Gateway Settings"
1043
  msgstr "网关设置"
1044
 
1045
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1046
- #: content/myCRED-addon-sell-content.php:1209
1047
  msgid "No purchases found"
1048
  msgstr "没有找到购买"
1049
 
1050
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1051
- #: addon-buy-creds.php:1411
1052
  msgid "This Add-on needs to setup before you can use this shortcode."
1053
  msgstr "你需要安装这个扩展才可以使用这个简码。"
1054
 
1055
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1056
- #: addon-buy-creds.php:1430
1057
  msgid "No gateways installed."
1058
  msgstr "没有安装网关。"
1059
 
1060
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1061
- #: addon-buy-creds.php:1431
1062
  msgid "Gateway does not exist."
1063
  msgstr "网关不存在。"
1064
 
1065
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1066
  msgid "Yourself"
1067
  msgstr "你自己"
1068
 
1069
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1070
  msgid "No active gateways found."
1071
  msgstr "没有活跃的网关。"
1072
 
1073
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1074
  msgid "The selected gateway is not active."
1075
  msgstr "所选择的网关没启用。"
1076
 
1077
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1078
  #, php-format
1079
  msgid "Buy with %gateway%"
1080
  msgstr "通过 %gateway% 购买。"
1081
 
1082
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1083
  #: content/myCRED-addon-sell-content.php:44
1084
  msgid "Buy Now"
1085
  msgstr "立即购买"
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1088
  msgid "No users found"
1089
  msgstr "没有找到用户"
1090
 
1091
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1092
  msgid "To"
1093
  msgstr "给"
1094
 
1095
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1096
  msgid "Select Amount"
1097
  msgstr "选择金额"
1098
 
1099
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1100
  msgid "min."
1101
  msgstr "至少"
1102
 
1103
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1104
  msgid "Select Gateway"
1105
  msgstr "选择网关"
1106
 
1107
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1108
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1109
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1110
  #: php:35
1111
  msgid "Pay Now"
1112
  msgstr "马上支付"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1115
  #: php:536
1116
  msgid "Cancel"
1117
  msgstr "取消"
1118
 
1119
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1120
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1121
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1122
  msgid "Actions"
@@ -1157,12 +1157,12 @@ msgid "Cancel purchase"
1157
  msgstr "取消购买"
1158
 
1159
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1160
- #: includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1161
  msgid "required"
1162
  msgstr "必填"
1163
 
1164
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1165
- #: includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1166
  msgid "optional"
1167
  msgstr "可选"
1168
 
@@ -1704,7 +1704,7 @@ msgstr "过期"
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:1045 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1200 ../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"
@@ -1716,7 +1716,7 @@ 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:2507
1720
  msgid "Total"
1721
  msgstr "全部"
1722
 
@@ -1867,7 +1867,7 @@ msgid "Apply Coupon"
1867
  msgstr "申请优惠券"
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:1267
1871
  msgid "Email Notice"
1872
  msgstr "邮件通知"
1873
 
@@ -2138,8 +2138,8 @@ msgid "Sent To"
2138
  msgstr "发送给"
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2142
- #: includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2143
  msgid "User"
2144
  msgstr "用户"
2145
 
@@ -2269,18 +2269,18 @@ msgstr "此邮件通知已被激活。"
2269
  msgid "Settings saved."
2270
  msgstr "设置已保存。"
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2273
  msgid "Unsubscribe"
2274
  msgstr "不再订阅"
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2277
  msgid "There are no email notifications yet."
2278
  msgstr "尚无邮件通知。"
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2284
  msgid "Current Balance"
2285
  msgstr "当前余额"
2286
 
@@ -2684,8 +2684,8 @@ msgstr "显示在收据和日志上的标题"
2684
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2685
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2686
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2687
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2688
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2689
  msgid "Button Label"
2690
  msgstr "按钮标签"
2691
 
@@ -2698,8 +2698,8 @@ msgstr "支付按钮"
2698
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2699
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2700
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2701
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2702
- #: sell-content.php:682
2703
  msgid "Price"
2704
  msgstr "价格"
2705
 
@@ -2723,12 +2723,12 @@ msgid "Log"
2723
  msgstr "日志"
2724
 
2725
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2726
- #: includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2727
  msgid "Log Entry"
2728
  msgstr "日志条目"
2729
 
2730
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2731
- #: content/myCRED-addon-sell-content.php:473
2732
  msgid "Templates"
2733
  msgstr "模板"
2734
 
@@ -2812,7 +2812,7 @@ msgid "Reject"
2812
  msgstr "拒绝"
2813
 
2814
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2815
- #: modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2816
  #: modules/mycred-module-settings.php:699
2817
  msgid "Delete"
2818
  msgstr "删除"
@@ -3302,139 +3302,139 @@ msgstr "利润分享"
3302
  msgid "Save Profit Share"
3303
  msgstr "保存利润分享"
3304
 
3305
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3306
  msgid "Profit Share override saved"
3307
  msgstr "利润分享重写已保存"
3308
 
3309
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3310
  msgid "You can not buy this content."
3311
  msgstr "你无法购买这个内容。"
3312
 
3313
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3314
  msgid "Error. Try Again"
3315
  msgstr "错误,请重试"
3316
 
3317
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3318
  msgid "No Payout. Just charge."
3319
  msgstr "不支付,只是充值。"
3320
 
3321
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3322
  msgid "Pay Content Author."
3323
  msgstr "支付内容作者。"
3324
 
3325
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3326
  #: overview.php:141 ../includes/mycred-overview.php:148
3327
  msgid "Sell Content"
3328
  msgstr "销售内容"
3329
 
3330
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3331
  msgid "Post Types"
3332
  msgstr "文章类型"
3333
 
3334
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3335
  msgid "Comma separated list of post types that can be sold."
3336
  msgstr "用逗号分隔的可以出售的文章类型列表。"
3337
 
3338
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3339
  msgid "Percentage to pay Author"
3340
  msgstr "支付作者的百分比"
3341
 
3342
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3343
  msgid ""
3344
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3345
  "authors are not paid."
3346
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3347
 
3348
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3349
  msgid "Defaults"
3350
  msgstr "默认"
3351
 
3352
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3353
  msgid "Allow authors to change price."
3354
  msgstr "允许作者更改价格。"
3355
 
3356
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3357
  msgid "Allow authors to change button label."
3358
  msgstr "允许作者更改按钮标签。"
3359
 
3360
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3361
  msgid "Purchases expire after"
3362
  msgstr "多久后购买过期"
3363
 
3364
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3365
  msgid "Use zero for permanent sales."
3366
  msgstr "使用零永久销售。"
3367
 
3368
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3369
  msgid "For Visitors"
3370
  msgstr "为访客"
3371
 
3372
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3373
  #, php-format
3374
  msgid ""
3375
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3376
  "be logged in to buy content!"
3377
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3378
 
3379
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3380
  msgid "For Members"
3381
  msgstr "为用户"
3382
 
3383
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3384
- #: content/myCRED-addon-sell-content.php:516
3385
  #, php-format
3386
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3387
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3388
 
3389
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3390
  msgid "For members that can not afford to buy"
3391
  msgstr "为买不起的会员"
3392
 
3393
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3394
  msgid "Log template for Purchases"
3395
  msgstr "用于购买的日志模板"
3396
 
3397
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3398
  msgid "Log template for Sales"
3399
  msgstr "用于销售的日志模板"
3400
 
3401
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3402
  #, php-format
3403
  msgid "%s Sell This"
3404
  msgstr "%s 销售这个"
3405
 
3406
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3407
  #, php-format
3408
  msgid "%s Sell Content needs to be setup before you can use this feature."
3409
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3410
 
3411
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3412
  msgid "Setup add-on"
3413
  msgstr "设置扩展"
3414
 
3415
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3416
  msgid "Lets do it"
3417
  msgstr "让我们开始吧"
3418
 
3419
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3420
  #, php-format
3421
  msgid "Enable sale of this %s"
3422
  msgstr "售卖此 %s"
3423
 
3424
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3425
  msgid "Purchase expires after"
3426
  msgstr "多久后购买过期"
3427
 
3428
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3429
  msgid "Thank you for your purchase!"
3430
  msgstr "非常感谢您的购买!"
3431
 
3432
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3433
- #: content/myCRED-addon-sell-content.php:1190
3434
  msgid "The following content is set for sale:"
3435
  msgstr "下面的内容是设置来销售的:"
3436
 
3437
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3438
  msgid "Purchased"
3439
  msgstr "购买"
3440
 
@@ -3500,17 +3500,17 @@ msgid "Total Spent: %s"
3500
  msgstr "共花去: %s"
3501
 
3502
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3503
- #: includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3504
  msgid "Today"
3505
  msgstr "今天"
3506
 
3507
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3508
- #: includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3509
  msgid "This Week"
3510
  msgstr "本周"
3511
 
3512
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3513
- #: includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3514
  msgid "This Month"
3515
  msgstr "本月"
3516
 
@@ -3545,13 +3545,13 @@ msgstr "您的用户在此时段最常见的获取%_plural% 的方式。"
3545
  msgid "Gains in the last 10 days"
3546
  msgstr "最近10天获得"
3547
 
3548
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3549
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3550
  msgid "View"
3551
  msgstr "查看"
3552
 
3553
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3554
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3555
  msgid "No data found"
3556
  msgstr "没有找到数据"
3557
 
@@ -3788,121 +3788,121 @@ msgstr "显示用户限制"
3788
  msgid "Welcome to %s %s"
3789
  msgstr "欢迎访问 %s %s"
3790
 
3791
- #: ../includes/mycred-admin.php:191
3792
  msgid "A log entry is required in order to adjust this users balance"
3793
  msgstr "调整用户余额时必需的日志条目"
3794
 
3795
- #: ../includes/mycred-admin.php:193
3796
  msgid "Users balance saved"
3797
  msgstr "用户余额已保存"
3798
 
3799
- #: ../includes/mycred-admin.php:201
3800
  msgid "Users excluded"
3801
  msgstr "被排除的用户"
3802
 
3803
- #: ../includes/mycred-admin.php:206
3804
  msgid ""
3805
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3806
  "rate settings and update all premium payment gateways!"
3807
  msgstr "全部buyCRED支付网关已被禁用!请检查您的转换率设置并更新全部付费支付网关!"
3808
 
3809
- #: ../includes/mycred-admin.php:234
3810
  msgid "User is excluded"
3811
  msgstr "用户被排除在外"
3812
 
3813
- #: ../includes/mycred-admin.php:239
3814
  msgid "Log Entry can not be empty"
3815
  msgstr "日志条目不能为空"
3816
 
3817
- #: ../includes/mycred-admin.php:243
3818
  msgid "Amount can not be zero"
3819
  msgstr "数目不能为零"
3820
 
3821
- #: ../includes/mycred-admin.php:264
3822
  msgid "Failed to update this uses balance."
3823
  msgstr "无法更新该用户的余额。"
3824
 
3825
- #: ../includes/mycred-admin.php:385
3826
  msgid "Excluded"
3827
  msgstr "排除"
3828
 
3829
- #: ../includes/mycred-admin.php:406
3830
  msgid "Adjust"
3831
  msgstr "调整"
3832
 
3833
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3834
  msgid "Edit Balance"
3835
  msgstr "编辑余额"
3836
 
3837
- #: ../includes/mycred-admin.php:463
3838
  msgid "Profile"
3839
  msgstr "资料页"
3840
 
3841
- #: ../includes/mycred-admin.php:470
3842
  msgid "Extended Profile"
3843
  msgstr "扩展籽料页"
3844
 
3845
- #: ../includes/mycred-admin.php:560
3846
  #, php-format
3847
  msgid "This user is excluded from using %s"
3848
  msgstr "该用户已被从可用%s的用户中排除"
3849
 
3850
- #: ../includes/mycred-admin.php:583
3851
  msgid "Edit User"
3852
  msgstr "编辑用户"
3853
 
3854
- #: ../includes/mycred-admin.php:585
3855
  msgctxt "user"
3856
  msgid "Add New"
3857
  msgstr "添加新的"
3858
 
3859
- #: ../includes/mycred-admin.php:587
3860
  msgctxt "user"
3861
  msgid "Add Existing"
3862
  msgstr "添加已存在的"
3863
 
3864
- #: ../includes/mycred-admin.php:598
3865
  #, php-format
3866
  msgid "Total %s Accumulated"
3867
  msgstr "累计共%s"
3868
 
3869
- #: ../includes/mycred-admin.php:599
3870
  #, php-format
3871
  msgid "Total %s Spent"
3872
  msgstr "共消费%s"
3873
 
3874
- #: ../includes/mycred-admin.php:610
3875
  msgid "View History"
3876
  msgstr "查看记录"
3877
 
3878
- #: ../includes/mycred-admin.php:611
3879
  msgid "Exclude User"
3880
  msgstr "排除用户"
3881
 
3882
- #: ../includes/mycred-admin.php:615
3883
  msgid "Adjust Balance"
3884
  msgstr "调整余额"
3885
 
3886
- #: ../includes/mycred-admin.php:624
3887
  msgid ""
3888
  "Warning! Excluding this user will result in their balance being deleted "
3889
  "along with any entries currently in your log! This can not be undone!"
3890
  msgstr "警告!排除此用户将会导致不可撤销的资产和日志被删除!"
3891
 
3892
- #: ../includes/mycred-admin.php:682
3893
  #, php-format
3894
  msgid "%singular% balance"
3895
  msgstr "%singular% balance"
3896
 
3897
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
3898
  msgid "Update Balance"
3899
  msgstr "更新余额"
3900
 
3901
- #: ../includes/mycred-admin.php:753
3902
  msgid "ID"
3903
  msgstr "ID"
3904
 
3905
- #: ../includes/mycred-admin.php:759
3906
  msgid "A positive or negative value"
3907
  msgstr "正值或负值"
3908
 
@@ -4546,103 +4546,103 @@ msgstr "差不多完成了!点击下面的按钮来完成这个设置。"
4546
  msgid "Install & Run"
4547
  msgstr "安装与运行"
4548
 
4549
- #: ../includes/mycred-log.php:430
4550
  #, php-format
4551
  msgid "Showing %d %s"
4552
  msgstr "显示为 %d %s"
4553
 
4554
- #: ../includes/mycred-log.php:430
4555
  msgid "entry"
4556
  msgid_plural "entries"
4557
  msgstr[0] "条目"
4558
  msgstr[1] "条目"
4559
 
4560
- #: ../includes/mycred-log.php:444
4561
  msgid "Go to the first page"
4562
  msgstr "转到第页"
4563
 
4564
- #: ../includes/mycred-log.php:451
4565
  msgid "Go to the previous page"
4566
  msgstr "转到前一页"
4567
 
4568
- #: ../includes/mycred-log.php:460
4569
  msgid "Current page"
4570
  msgstr "当前页"
4571
 
4572
- #: ../includes/mycred-log.php:466
4573
  #, php-format
4574
  msgctxt "mycred"
4575
  msgid "%1$s of %2$s"
4576
  msgstr "%1$s / %2$s"
4577
 
4578
- #: ../includes/mycred-log.php:470
4579
  msgid "Go to the next page"
4580
  msgstr "转到下一个页面"
4581
 
4582
- #: ../includes/mycred-log.php:477
4583
  msgid "Go to the last page"
4584
  msgstr "转到最后一页"
4585
 
4586
- #: ../includes/mycred-log.php:544
4587
  msgid "Show all references"
4588
  msgstr "显示所有引用"
4589
 
4590
- #: ../includes/mycred-log.php:557
4591
  msgid "User ID, Username, Email or Nicename"
4592
  msgstr ""
4593
 
4594
- #: ../includes/mycred-log.php:563
4595
  msgid "Show in order"
4596
  msgstr "显示顺序"
4597
 
4598
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4599
  msgid "Ascending"
4600
  msgstr "升序"
4601
 
4602
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4603
  msgid "Descending"
4604
  msgstr "降序"
4605
 
4606
- #: ../includes/mycred-log.php:582
4607
  msgid "Filter"
4608
  msgstr "过滤器"
4609
 
4610
- #: ../includes/mycred-log.php:635
4611
  msgid ""
4612
  "Log entries are exported to a CSV file and depending on the number of "
4613
  "entries selected, the process may take a few seconds."
4614
  msgstr "日志条目导出到CSV文件,根据所选条目的数量,这个过程可能需要几秒钟。"
4615
 
4616
- #: ../includes/mycred-log.php:639
4617
  msgid "No export options available."
4618
  msgstr "没有可用的导出选项。"
4619
 
4620
- #: ../includes/mycred-log.php:668
4621
  msgid "Entry"
4622
  msgstr "条目"
4623
 
4624
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4625
  msgid "User Missing"
4626
  msgstr "用户丢失"
4627
 
4628
- #: ../includes/mycred-log.php:839
4629
  msgid "No log entries found"
4630
  msgstr "没有找到日志条目"
4631
 
4632
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4633
  msgid "Search Log"
4634
  msgstr "搜索日志"
4635
 
4636
- #: ../includes/mycred-log.php:855
4637
  msgid "search log entries"
4638
  msgstr "搜索日志条目"
4639
 
4640
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4641
  #: modules/mycred-module-buddypress.php:249
4642
  msgid "All"
4643
  msgstr "所有"
4644
 
4645
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4646
  msgid "Yesterday"
4647
  msgstr "昨天"
4648
 
@@ -4869,7 +4869,7 @@ msgstr "实例"
4869
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4870
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4871
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4872
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4873
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4874
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4875
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5483,7 +5483,7 @@ msgstr "钩子是用来奖励或扣除用户 %_plural% 的,这取决于他们
5483
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5484
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5485
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5486
- #: plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5487
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5488
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5489
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -5787,8 +5787,8 @@ msgstr "项目更新"
5787
  msgid "Entries"
5788
  msgstr "条目"
5789
 
5790
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5791
- #: modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5792
  msgid "Export"
5793
  msgstr "导出"
5794
 
@@ -5807,35 +5807,35 @@ msgid ""
5807
  "Certain hooks and shortcodes will not work correctly!"
5808
  msgstr "警告。Mcrypt PHP库未在该服务器上安装!中央银行和缎带吗将不会正常工作!"
5809
 
5810
- #: ../modules/mycred-module-log.php:565
5811
  msgid "Edit"
5812
  msgstr "编辑"
5813
 
5814
- #: ../modules/mycred-module-log.php:612
5815
  msgid "Time"
5816
  msgstr "时间"
5817
 
5818
- #: ../modules/mycred-module-log.php:616
5819
  msgid "Current Log Entry"
5820
  msgstr "当前日志条目"
5821
 
5822
- #: ../modules/mycred-module-log.php:618
5823
  msgid "The current saved log entry"
5824
  msgstr "当前保存的日志条目"
5825
 
5826
- #: ../modules/mycred-module-log.php:621
5827
  msgid "Adjust Log Entry"
5828
  msgstr "调整日志条目"
5829
 
5830
- #: ../modules/mycred-module-log.php:623
5831
  msgid "The new log entry"
5832
  msgstr "新的日志条目"
5833
 
5834
- #: ../modules/mycred-module-log.php:626
5835
  msgid "Update Log Entry"
5836
  msgstr "更新日志条目"
5837
 
5838
- #: ../modules/mycred-module-log.php:697
5839
  #, php-format
5840
  msgid "My %s History"
5841
  msgstr "我的 %s 历史"
@@ -6506,23 +6506,23 @@ msgstr "评论订阅"
6506
  msgid "Reward with %plural%"
6507
  msgstr "奖励%plural%"
6508
 
6509
- #: ../plugins/mycred-hook-sharethis.php:18
6510
  #, php-format
6511
  msgid "%plural% for Sharing"
6512
  msgstr "%plural% 为分享"
6513
 
6514
- #: ../plugins/mycred-hook-sharethis.php:19
6515
  #, php-format
6516
  msgid ""
6517
  "Awards %_plural% for users sharing / liking your website content to popular "
6518
  "social media sites."
6519
  msgstr "奖励用户%_plural%当他们分享/链接您的网站内容到流行的社交媒体网络时。"
6520
 
6521
- #: ../plugins/mycred-hook-sharethis.php:232
6522
  msgid "Your ShareThis public key is not set."
6523
  msgstr "您的ShareThis公钥尚未设置。"
6524
 
6525
- #: ../plugins/mycred-hook-sharethis.php:237
6526
  msgid "No ShareThis services detected. Please check your installation."
6527
  msgstr "未检测到ShareThis。请检查您的安装。"
6528
 
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 Jun 08 2015 23:44:15 GMT+0200 (CEST)\n"
7
  "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
23
  "X-Loco-Target-Locale: zh_CN\n"
24
  "X-Poedit-SearchPath-0: .."
25
 
26
+ #: ../mycred.php:461
27
  msgid "Balance"
28
  msgstr "余额"
29
 
30
+ #: ../mycred.php:486
31
  msgid "%label% History"
32
  msgstr "%label% 历史"
33
 
34
+ #: ../mycred.php:580
35
  #, php-format
36
  msgid "About %s"
37
  msgstr "关于 %s"
38
 
39
+ #: ../mycred.php:589
40
  msgid "Awesome People"
41
  msgstr "太棒了"
42
 
43
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
44
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
45
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
46
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
47
  #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
48
  #: php:636
49
  msgid "Processing..."
50
  msgstr "处理中..."
51
 
52
+ #: ../mycred.php:678
53
  msgid ""
54
  "Warning! All entries in your log will be permanently removed! This can not "
55
  "be undone!"
56
  msgstr "警告!在日志中的所有条目将被永久删除!此操作无法撤消!"
57
 
58
+ #: ../mycred.php:679
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr "属于已删除用户的所有日志条目将被永久删除!此操作无法撤消!"
63
 
64
+ #: ../mycred.php:680
65
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
66
  msgstr "警告!所有的用户余额将被设置为零!此操作无法撤消!"
67
 
68
+ #: ../mycred.php:681
69
  msgid "Done!"
70
  msgstr "完成了!"
71
 
72
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
73
  msgid "Close"
74
  msgstr "关闭"
75
 
76
+ #: ../mycred.php:683
77
  msgid "Export users %plural%"
78
  msgstr "导出用户 %plural%"
79
 
80
+ #: ../mycred.php:684
81
  msgid ""
82
  "In order to adjust the number of decimal places you want to use we must "
83
  "update your log. It is highly recommended that you backup your current log "
84
  "before continuing!"
85
  msgstr "为了调整为您想使用的小数位,我们必须更新您的日志。强烈推荐您在继续之前备份当前的日志!"
86
 
87
+ #: ../mycred.php:700
88
  msgid "Edit Users Balance"
89
  msgstr "编辑用户余额"
90
 
91
+ #: ../mycred.php:718
92
  msgid "Edit Log Entry"
93
  msgstr "编辑日志条目"
94
 
95
+ #: ../mycred.php:722
96
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
97
  msgstr "您确定要删除此日志条目?此操作无法撤消!"
98
 
99
+ #: ../mycred.php:723
100
  msgid "Log entry updated"
101
  msgstr "日志条目更新"
102
 
103
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
104
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr "设置"
108
 
109
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
110
  #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
111
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
112
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
113
  msgid "Settings"
114
  msgstr "设置"
115
 
116
+ #: ../mycred.php:825
117
  msgid ""
118
  "Make sure to backup your database and files before updating, in case "
119
  "anything goes wrong!"
158
  msgstr "每天一次(在午夜重置)"
159
 
160
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
161
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
162
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
163
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
164
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
165
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
185
  msgstr "点击打开"
186
 
187
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
188
+ #: buy-creds.php:927
189
  msgid "Settings Updated"
190
  msgstr "设置已更新"
191
 
226
  msgstr "勋章"
227
 
228
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
229
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
230
  #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
231
  #: addons/ranks/myCRED-addon-ranks.php:448
232
  msgid "Add New"
458
  msgstr "状态"
459
 
460
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
461
+ #: addon-email-notices.php:1296
462
  msgid "Save Changes"
463
  msgstr "保存更改"
464
 
524
  msgstr "为用户安装%_singular%。"
525
 
526
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
527
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
528
+ #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
529
  #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
530
  #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
531
+ #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
532
  msgid "Access Denied"
533
  msgstr "拒绝访问"
534
 
550
  msgstr "警告!此扩展需要 WP-Cron 来工作。"
551
 
552
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
553
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
554
  msgid "Enable"
555
  msgstr "启用"
556
 
672
 
673
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
674
  #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
675
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
676
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
677
  #: addons/gateway/carts/mycred-marketpress.php:395 ..
678
  #: addons/gateway/carts/mycred-marketpress.php:428 ..
679
  #: addons/gateway/carts/mycred-woocommerce.php:104 ..
731
  msgstr "该用户角色被排除在可接收利息的用户之外。"
732
 
733
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
734
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
735
  #: content.php:114
736
  msgid "Leave empty to use the default value."
737
  msgstr "留空可使用默认值。"
744
  msgid "Exclude from receiving interest"
745
  msgstr "从可接收利息的用户中排除"
746
 
747
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
748
  msgid "Compound interest rate saved."
749
  msgstr "复利率已保存。"
750
 
751
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
752
  msgid "User excluded from receiving interest."
753
  msgstr "用户已从可接收利息的用户中排除。"
754
 
755
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
756
  msgid "User included in receiving interest."
757
  msgstr "用户可接收到利息。"
758
 
761
  msgstr "每日 %_plural%"
762
 
763
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
764
+ #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
765
  #: modules/mycred-module-log.php:277
766
  msgid "History"
767
  msgstr "历史"
779
  msgstr "用户支付"
780
 
781
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
782
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
783
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
784
  #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
785
+ #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
786
  #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
787
  #: plugins/mycred-hook-affiliatewp.php:256
788
  msgid "Amount"
817
  msgid "Payment Gateways"
818
  msgstr "支付网关"
819
 
820
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
821
  msgctxt "Post Type General Name"
822
  msgid "Pending Payments"
823
  msgstr "待审的支付"
824
 
825
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
826
  msgctxt "Post Type Singular Name"
827
  msgid "Pending Payment"
828
  msgstr "待审的支付"
829
 
830
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
831
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
832
  msgid "Pending Payments"
833
  msgstr "待审的支付"
834
 
835
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
836
  msgid "Edit Pending Payment"
837
  msgstr "编辑待审的支付"
838
 
839
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
840
+ #: addon-buy-creds.php:1752
841
  msgid "No pending payments found"
842
  msgstr "没有找到待审支付"
843
 
844
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
845
  msgid "Not found in Trash"
846
  msgstr "没有在回收站中找到"
847
 
848
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
849
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
850
  msgid "Transaction ID"
851
  msgstr "交易 ID"
852
 
853
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
854
+ #: addon-buy-creds.php:1074
855
  msgid "Buyer"
856
  msgstr "买家"
857
 
858
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
859
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
860
  #: gateway.php:594
861
  msgid "Cost"
862
  msgstr "花费"
863
 
864
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
865
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
866
  #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
867
  msgid "Gateway"
868
  msgstr "网关"
869
 
870
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
871
  msgid "Type"
872
  msgstr "类型"
873
 
874
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
875
  msgid "Pay Out"
876
  msgstr "支出"
877
 
878
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
879
  msgid "buyCRED Purchase Log"
880
  msgstr "buyCRED 购买记录"
881
 
882
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
883
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
884
  msgid "Purchase Log"
885
  msgstr "购买记录"
886
 
887
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
888
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
889
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
890
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
891
  msgid "Payments"
892
  msgstr "付款"
893
 
894
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
895
  msgid "Please login to purchase %_plural%"
896
  msgstr "请登录后购买 %_plural%"
897
 
898
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
899
  #, php-format
900
  msgid "Gift purchase from %display_name%."
901
  msgstr "从 %display_name% 礼品购买"
902
 
903
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
904
  #: addon-ranks.php:1084
905
  msgid "Minimum %plural%"
906
  msgstr "最小 %plural%"
907
 
908
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
909
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
910
  msgstr "用户必须购买的最小 %plural% 数量。默认为 1。"
911
 
912
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
913
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
914
  #: module-settings.php:656
915
  msgid "Point Types"
916
  msgstr "积分类型"
917
 
918
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
919
  msgid "Select the point types that users can buy. You must select at least one!"
920
  msgstr "选择用户可购的几分类型。您至少应该选择一种!"
921
 
922
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
923
  msgid "Login Template"
924
  msgstr "登录模板"
925
 
926
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
927
  msgid "Content to show when a user is not logged in."
928
  msgstr "用户没有登录时显示的内容。"
929
 
930
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
931
  msgid "Thank You Page"
932
  msgstr "感谢页面"
933
 
934
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
935
+ #: addon-buy-creds.php:705
936
  msgid "Custom URL"
937
  msgstr "自定义链接"
938
 
939
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
940
+ #: addon-buy-creds.php:710
941
  msgid "Page"
942
  msgstr "页面"
943
 
944
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
945
  msgid "Cancellation Page"
946
  msgstr "取消页面"
947
 
948
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
949
  msgid "Show seperate log for %_plural% purchases."
950
  msgstr "为 %_plural% 购买显示单独的日志。"
951
 
952
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
953
  msgid "Gifting"
954
  msgstr "送礼"
955
 
956
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
957
  #, php-format
958
  msgid "Allow users to buy %_plural% for other users."
959
  msgstr "允许用户为其他用户购买 %_plural% 。"
960
 
961
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
962
  #, php-format
963
  msgid "Allow users to buy %_plural% for content authors."
964
  msgstr "允许用户为内容作者购买 %_plural% 。"
965
 
966
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
967
  #: hooks.php:3110
968
  msgid "Available Shortcodes"
969
  msgstr "可用简码"
970
 
971
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
972
  #, php-format
973
  msgid "%s Exchange Rate"
974
  msgstr "%s 转换率"
975
 
976
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
977
  msgid "Save Exchange Rates"
978
  msgstr "保存转换率"
979
 
980
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
981
  msgid "Exchange rate override saved"
982
  msgstr "转换率重写已保存"
983
 
984
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
985
  msgid "Payment completed"
986
  msgstr "支付已完成"
987
 
988
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
989
  #, php-format
990
  msgid "%s Payment Gateways"
991
  msgstr "%s 支付网关"
992
 
993
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
994
+ #: addon-buy-creds.php:1085
995
  msgid "buyCRED Settings"
996
  msgstr "buyCRED设置"
997
 
998
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
999
  msgid "Test Mode"
1000
  msgstr "测试模式"
1001
 
1002
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1003
  msgid "Enabled"
1004
  msgstr "已启用"
1005
 
1006
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1007
  msgid "Disabled"
1008
  msgstr "已禁用"
1009
 
1010
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1011
  msgid "Sandbox Mode"
1012
  msgstr "沙箱模式"
1013
 
1014
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1015
  msgid "Enable for test purchases."
1016
  msgstr "启用测试购买。"
1017
 
1018
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1019
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1020
  msgid "Update Settings"
1021
  msgstr "更新设置"
1022
 
1023
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1024
  msgid "More Gateways"
1025
  msgstr "更多网关"
1026
 
1027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1028
+ #: 756
1029
  msgid "Date"
1030
  msgstr "日期"
1031
 
1032
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1033
  msgid "Payed"
1034
  msgstr "已支付"
1035
 
1036
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1037
  msgid "<strong>buy</strong>CRED Purchase Log"
1038
  msgstr "<strong>buy</strong>CRED购买日志"
1039
 
1040
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1041
  #: booking/mycred-eventespresso3.php:367
1042
  msgid "Gateway Settings"
1043
  msgstr "网关设置"
1044
 
1045
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1046
+ #: content/myCRED-addon-sell-content.php:1210
1047
  msgid "No purchases found"
1048
  msgstr "没有找到购买"
1049
 
1050
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1051
+ #: addon-buy-creds.php:1464
1052
  msgid "This Add-on needs to setup before you can use this shortcode."
1053
  msgstr "你需要安装这个扩展才可以使用这个简码。"
1054
 
1055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1056
+ #: addon-buy-creds.php:1483
1057
  msgid "No gateways installed."
1058
  msgstr "没有安装网关。"
1059
 
1060
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1061
+ #: addon-buy-creds.php:1484
1062
  msgid "Gateway does not exist."
1063
  msgstr "网关不存在。"
1064
 
1065
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1066
  msgid "Yourself"
1067
  msgstr "你自己"
1068
 
1069
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1070
  msgid "No active gateways found."
1071
  msgstr "没有活跃的网关。"
1072
 
1073
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1074
  msgid "The selected gateway is not active."
1075
  msgstr "所选择的网关没启用。"
1076
 
1077
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1078
  #, php-format
1079
  msgid "Buy with %gateway%"
1080
  msgstr "通过 %gateway% 购买。"
1081
 
1082
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1083
  #: content/myCRED-addon-sell-content.php:44
1084
  msgid "Buy Now"
1085
  msgstr "立即购买"
1086
 
1087
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1088
  msgid "No users found"
1089
  msgstr "没有找到用户"
1090
 
1091
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1092
  msgid "To"
1093
  msgstr "给"
1094
 
1095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1096
  msgid "Select Amount"
1097
  msgstr "选择金额"
1098
 
1099
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1100
  msgid "min."
1101
  msgstr "至少"
1102
 
1103
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1104
  msgid "Select Gateway"
1105
  msgstr "选择网关"
1106
 
1107
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1108
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1109
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1110
  #: php:35
1111
  msgid "Pay Now"
1112
  msgstr "马上支付"
1113
 
1114
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1115
  #: php:536
1116
  msgid "Cancel"
1117
  msgstr "取消"
1118
 
1119
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1120
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1121
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1122
  msgid "Actions"
1157
  msgstr "取消购买"
1158
 
1159
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1160
+ #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1161
  msgid "required"
1162
  msgstr "必填"
1163
 
1164
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1165
+ #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1166
  msgid "optional"
1167
  msgstr "可选"
1168
 
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:1045 ../addons/ranks/myCRED-
1707
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1708
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
  #: includes/importers/mycred-cubepoints.php:365
1710
  msgid "Point Type"
1716
  msgstr "还没有使用"
1717
 
1718
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
+ #: 416 ../modules/mycred-module-hooks.php:2507
1720
  msgid "Total"
1721
  msgstr "全部"
1722
 
1867
  msgstr "申请优惠券"
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:1270
1871
  msgid "Email Notice"
1872
  msgstr "邮件通知"
1873
 
2138
  msgstr "发送给"
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2142
+ #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2143
  msgid "User"
2144
  msgstr "用户"
2145
 
2269
  msgid "Settings saved."
2270
  msgstr "设置已保存。"
2271
 
2272
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2273
  msgid "Unsubscribe"
2274
  msgstr "不再订阅"
2275
 
2276
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2277
  msgid "There are no email notifications yet."
2278
  msgstr "尚无邮件通知。"
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2284
  msgid "Current Balance"
2285
  msgstr "当前余额"
2286
 
2684
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2685
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2686
  #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2687
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2688
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2689
  msgid "Button Label"
2690
  msgstr "按钮标签"
2691
 
2698
  #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2699
  #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2700
  #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2701
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2702
+ #: sell-content.php:683
2703
  msgid "Price"
2704
  msgstr "价格"
2705
 
2723
  msgstr "日志"
2724
 
2725
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2726
+ #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2727
  msgid "Log Entry"
2728
  msgstr "日志条目"
2729
 
2730
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2731
+ #: content/myCRED-addon-sell-content.php:474
2732
  msgid "Templates"
2733
  msgstr "模板"
2734
 
2812
  msgstr "拒绝"
2813
 
2814
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2815
+ #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2816
  #: modules/mycred-module-settings.php:699
2817
  msgid "Delete"
2818
  msgstr "删除"
3302
  msgid "Save Profit Share"
3303
  msgstr "保存利润分享"
3304
 
3305
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3306
  msgid "Profit Share override saved"
3307
  msgstr "利润分享重写已保存"
3308
 
3309
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3310
  msgid "You can not buy this content."
3311
  msgstr "你无法购买这个内容。"
3312
 
3313
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3314
  msgid "Error. Try Again"
3315
  msgstr "错误,请重试"
3316
 
3317
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3318
  msgid "No Payout. Just charge."
3319
  msgstr "不支付,只是充值。"
3320
 
3321
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3322
  msgid "Pay Content Author."
3323
  msgstr "支付内容作者。"
3324
 
3325
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3326
  #: overview.php:141 ../includes/mycred-overview.php:148
3327
  msgid "Sell Content"
3328
  msgstr "销售内容"
3329
 
3330
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3331
  msgid "Post Types"
3332
  msgstr "文章类型"
3333
 
3334
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3335
  msgid "Comma separated list of post types that can be sold."
3336
  msgstr "用逗号分隔的可以出售的文章类型列表。"
3337
 
3338
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3339
  msgid "Percentage to pay Author"
3340
  msgstr "支付作者的百分比"
3341
 
3342
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3343
  msgid ""
3344
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3345
  "authors are not paid."
3346
  msgstr "支付给作者的金额百分比。不能为零,如果不支付给作者,则忽略。"
3347
 
3348
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3349
  msgid "Defaults"
3350
  msgstr "默认"
3351
 
3352
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3353
  msgid "Allow authors to change price."
3354
  msgstr "允许作者更改价格。"
3355
 
3356
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3357
  msgid "Allow authors to change button label."
3358
  msgstr "允许作者更改按钮标签。"
3359
 
3360
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3361
  msgid "Purchases expire after"
3362
  msgstr "多久后购买过期"
3363
 
3364
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3365
  msgid "Use zero for permanent sales."
3366
  msgstr "使用零永久销售。"
3367
 
3368
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3369
  msgid "For Visitors"
3370
  msgstr "为访客"
3371
 
3372
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3373
  #, php-format
3374
  msgid ""
3375
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3376
  "be logged in to buy content!"
3377
  msgstr "<strong>不要</strong>在这个模板中使用 %buy_button%,否则用户必须登录后购买内容!"
3378
 
3379
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3380
  msgid "For Members"
3381
  msgstr "为用户"
3382
 
3383
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3384
+ #: content/myCRED-addon-sell-content.php:517
3385
  #, php-format
3386
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3387
  msgstr "您的模板必须包含 %buy_button% 标记让购买生效!"
3388
 
3389
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3390
  msgid "For members that can not afford to buy"
3391
  msgstr "为买不起的会员"
3392
 
3393
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3394
  msgid "Log template for Purchases"
3395
  msgstr "用于购买的日志模板"
3396
 
3397
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3398
  msgid "Log template for Sales"
3399
  msgstr "用于销售的日志模板"
3400
 
3401
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3402
  #, php-format
3403
  msgid "%s Sell This"
3404
  msgstr "%s 销售这个"
3405
 
3406
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3407
  #, php-format
3408
  msgid "%s Sell Content needs to be setup before you can use this feature."
3409
  msgstr "%s 销售内容需要设置,然后才能使用此功能。"
3410
 
3411
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3412
  msgid "Setup add-on"
3413
  msgstr "设置扩展"
3414
 
3415
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3416
  msgid "Lets do it"
3417
  msgstr "让我们开始吧"
3418
 
3419
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3420
  #, php-format
3421
  msgid "Enable sale of this %s"
3422
  msgstr "售卖此 %s"
3423
 
3424
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3425
  msgid "Purchase expires after"
3426
  msgstr "多久后购买过期"
3427
 
3428
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3429
  msgid "Thank you for your purchase!"
3430
  msgstr "非常感谢您的购买!"
3431
 
3432
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3433
+ #: content/myCRED-addon-sell-content.php:1191
3434
  msgid "The following content is set for sale:"
3435
  msgstr "下面的内容是设置来销售的:"
3436
 
3437
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3438
  msgid "Purchased"
3439
  msgstr "购买"
3440
 
3500
  msgstr "共花去: %s"
3501
 
3502
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3503
+ #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3504
  msgid "Today"
3505
  msgstr "今天"
3506
 
3507
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3508
+ #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3509
  msgid "This Week"
3510
  msgstr "本周"
3511
 
3512
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3513
+ #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3514
  msgid "This Month"
3515
  msgstr "本月"
3516
 
3545
  msgid "Gains in the last 10 days"
3546
  msgstr "最近10天获得"
3547
 
3548
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3549
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3550
  msgid "View"
3551
  msgstr "查看"
3552
 
3553
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3554
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3555
  msgid "No data found"
3556
  msgstr "没有找到数据"
3557
 
3788
  msgid "Welcome to %s %s"
3789
  msgstr "欢迎访问 %s %s"
3790
 
3791
+ #: ../includes/mycred-admin.php:198
3792
  msgid "A log entry is required in order to adjust this users balance"
3793
  msgstr "调整用户余额时必需的日志条目"
3794
 
3795
+ #: ../includes/mycred-admin.php:200
3796
  msgid "Users balance saved"
3797
  msgstr "用户余额已保存"
3798
 
3799
+ #: ../includes/mycred-admin.php:208
3800
  msgid "Users excluded"
3801
  msgstr "被排除的用户"
3802
 
3803
+ #: ../includes/mycred-admin.php:213
3804
  msgid ""
3805
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3806
  "rate settings and update all premium payment gateways!"
3807
  msgstr "全部buyCRED支付网关已被禁用!请检查您的转换率设置并更新全部付费支付网关!"
3808
 
3809
+ #: ../includes/mycred-admin.php:242
3810
  msgid "User is excluded"
3811
  msgstr "用户被排除在外"
3812
 
3813
+ #: ../includes/mycred-admin.php:247
3814
  msgid "Log Entry can not be empty"
3815
  msgstr "日志条目不能为空"
3816
 
3817
+ #: ../includes/mycred-admin.php:251
3818
  msgid "Amount can not be zero"
3819
  msgstr "数目不能为零"
3820
 
3821
+ #: ../includes/mycred-admin.php:272
3822
  msgid "Failed to update this uses balance."
3823
  msgstr "无法更新该用户的余额。"
3824
 
3825
+ #: ../includes/mycred-admin.php:406
3826
  msgid "Excluded"
3827
  msgstr "排除"
3828
 
3829
+ #: ../includes/mycred-admin.php:427
3830
  msgid "Adjust"
3831
  msgstr "调整"
3832
 
3833
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3834
  msgid "Edit Balance"
3835
  msgstr "编辑余额"
3836
 
3837
+ #: ../includes/mycred-admin.php:490
3838
  msgid "Profile"
3839
  msgstr "资料页"
3840
 
3841
+ #: ../includes/mycred-admin.php:497
3842
  msgid "Extended Profile"
3843
  msgstr "扩展籽料页"
3844
 
3845
+ #: ../includes/mycred-admin.php:591
3846
  #, php-format
3847
  msgid "This user is excluded from using %s"
3848
  msgstr "该用户已被从可用%s的用户中排除"
3849
 
3850
+ #: ../includes/mycred-admin.php:615
3851
  msgid "Edit User"
3852
  msgstr "编辑用户"
3853
 
3854
+ #: ../includes/mycred-admin.php:617
3855
  msgctxt "user"
3856
  msgid "Add New"
3857
  msgstr "添加新的"
3858
 
3859
+ #: ../includes/mycred-admin.php:619
3860
  msgctxt "user"
3861
  msgid "Add Existing"
3862
  msgstr "添加已存在的"
3863
 
3864
+ #: ../includes/mycred-admin.php:630
3865
  #, php-format
3866
  msgid "Total %s Accumulated"
3867
  msgstr "累计共%s"
3868
 
3869
+ #: ../includes/mycred-admin.php:631
3870
  #, php-format
3871
  msgid "Total %s Spent"
3872
  msgstr "共消费%s"
3873
 
3874
+ #: ../includes/mycred-admin.php:642
3875
  msgid "View History"
3876
  msgstr "查看记录"
3877
 
3878
+ #: ../includes/mycred-admin.php:643
3879
  msgid "Exclude User"
3880
  msgstr "排除用户"
3881
 
3882
+ #: ../includes/mycred-admin.php:647
3883
  msgid "Adjust Balance"
3884
  msgstr "调整余额"
3885
 
3886
+ #: ../includes/mycred-admin.php:656
3887
  msgid ""
3888
  "Warning! Excluding this user will result in their balance being deleted "
3889
  "along with any entries currently in your log! This can not be undone!"
3890
  msgstr "警告!排除此用户将会导致不可撤销的资产和日志被删除!"
3891
 
3892
+ #: ../includes/mycred-admin.php:721
3893
  #, php-format
3894
  msgid "%singular% balance"
3895
  msgstr "%singular% balance"
3896
 
3897
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3898
  msgid "Update Balance"
3899
  msgstr "更新余额"
3900
 
3901
+ #: ../includes/mycred-admin.php:798
3902
  msgid "ID"
3903
  msgstr "ID"
3904
 
3905
+ #: ../includes/mycred-admin.php:804
3906
  msgid "A positive or negative value"
3907
  msgstr "正值或负值"
3908
 
4546
  msgid "Install & Run"
4547
  msgstr "安装与运行"
4548
 
4549
+ #: ../includes/mycred-log.php:485
4550
  #, php-format
4551
  msgid "Showing %d %s"
4552
  msgstr "显示为 %d %s"
4553
 
4554
+ #: ../includes/mycred-log.php:485
4555
  msgid "entry"
4556
  msgid_plural "entries"
4557
  msgstr[0] "条目"
4558
  msgstr[1] "条目"
4559
 
4560
+ #: ../includes/mycred-log.php:500
4561
  msgid "Go to the first page"
4562
  msgstr "转到第页"
4563
 
4564
+ #: ../includes/mycred-log.php:507
4565
  msgid "Go to the previous page"
4566
  msgstr "转到前一页"
4567
 
4568
+ #: ../includes/mycred-log.php:517
4569
  msgid "Current page"
4570
  msgstr "当前页"
4571
 
4572
+ #: ../includes/mycred-log.php:523
4573
  #, php-format
4574
  msgctxt "mycred"
4575
  msgid "%1$s of %2$s"
4576
  msgstr "%1$s / %2$s"
4577
 
4578
+ #: ../includes/mycred-log.php:527
4579
  msgid "Go to the next page"
4580
  msgstr "转到下一个页面"
4581
 
4582
+ #: ../includes/mycred-log.php:534
4583
  msgid "Go to the last page"
4584
  msgstr "转到最后一页"
4585
 
4586
+ #: ../includes/mycred-log.php:611
4587
  msgid "Show all references"
4588
  msgstr "显示所有引用"
4589
 
4590
+ #: ../includes/mycred-log.php:628
4591
  msgid "User ID, Username, Email or Nicename"
4592
  msgstr ""
4593
 
4594
+ #: ../includes/mycred-log.php:636
4595
  msgid "Show in order"
4596
  msgstr "显示顺序"
4597
 
4598
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4599
  msgid "Ascending"
4600
  msgstr "升序"
4601
 
4602
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4603
  msgid "Descending"
4604
  msgstr "降序"
4605
 
4606
+ #: ../includes/mycred-log.php:658
4607
  msgid "Filter"
4608
  msgstr "过滤器"
4609
 
4610
+ #: ../includes/mycred-log.php:718
4611
  msgid ""
4612
  "Log entries are exported to a CSV file and depending on the number of "
4613
  "entries selected, the process may take a few seconds."
4614
  msgstr "日志条目导出到CSV文件,根据所选条目的数量,这个过程可能需要几秒钟。"
4615
 
4616
+ #: ../includes/mycred-log.php:725
4617
  msgid "No export options available."
4618
  msgstr "没有可用的导出选项。"
4619
 
4620
+ #: ../includes/mycred-log.php:758
4621
  msgid "Entry"
4622
  msgstr "条目"
4623
 
4624
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4625
  msgid "User Missing"
4626
  msgstr "用户丢失"
4627
 
4628
+ #: ../includes/mycred-log.php:958
4629
  msgid "No log entries found"
4630
  msgstr "没有找到日志条目"
4631
 
4632
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4633
  msgid "Search Log"
4634
  msgstr "搜索日志"
4635
 
4636
+ #: ../includes/mycred-log.php:977
4637
  msgid "search log entries"
4638
  msgstr "搜索日志条目"
4639
 
4640
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4641
  #: modules/mycred-module-buddypress.php:249
4642
  msgid "All"
4643
  msgstr "所有"
4644
 
4645
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4646
  msgid "Yesterday"
4647
  msgstr "昨天"
4648
 
4869
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4870
  #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4871
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4872
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4873
  #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4874
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4875
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5483
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5484
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5485
  #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5486
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5487
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5488
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5489
  #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5787
  msgid "Entries"
5788
  msgstr "条目"
5789
 
5790
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5791
+ #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5792
  msgid "Export"
5793
  msgstr "导出"
5794
 
5807
  "Certain hooks and shortcodes will not work correctly!"
5808
  msgstr "警告。Mcrypt PHP库未在该服务器上安装!中央银行和缎带吗将不会正常工作!"
5809
 
5810
+ #: ../modules/mycred-module-log.php:563
5811
  msgid "Edit"
5812
  msgstr "编辑"
5813
 
5814
+ #: ../modules/mycred-module-log.php:610
5815
  msgid "Time"
5816
  msgstr "时间"
5817
 
5818
+ #: ../modules/mycred-module-log.php:614
5819
  msgid "Current Log Entry"
5820
  msgstr "当前日志条目"
5821
 
5822
+ #: ../modules/mycred-module-log.php:616
5823
  msgid "The current saved log entry"
5824
  msgstr "当前保存的日志条目"
5825
 
5826
+ #: ../modules/mycred-module-log.php:619
5827
  msgid "Adjust Log Entry"
5828
  msgstr "调整日志条目"
5829
 
5830
+ #: ../modules/mycred-module-log.php:621
5831
  msgid "The new log entry"
5832
  msgstr "新的日志条目"
5833
 
5834
+ #: ../modules/mycred-module-log.php:624
5835
  msgid "Update Log Entry"
5836
  msgstr "更新日志条目"
5837
 
5838
+ #: ../modules/mycred-module-log.php:695
5839
  #, php-format
5840
  msgid "My %s History"
5841
  msgstr "我的 %s 历史"
6506
  msgid "Reward with %plural%"
6507
  msgstr "奖励%plural%"
6508
 
6509
+ #: ../plugins/mycred-hook-sharethis.php:19
6510
  #, php-format
6511
  msgid "%plural% for Sharing"
6512
  msgstr "%plural% 为分享"
6513
 
6514
+ #: ../plugins/mycred-hook-sharethis.php:20
6515
  #, php-format
6516
  msgid ""
6517
  "Awards %_plural% for users sharing / liking your website content to popular "
6518
  "social media sites."
6519
  msgstr "奖励用户%_plural%当他们分享/链接您的网站内容到流行的社交媒体网络时。"
6520
 
6521
+ #: ../plugins/mycred-hook-sharethis.php:257
6522
  msgid "Your ShareThis public key is not set."
6523
  msgstr "您的ShareThis公钥尚未设置。"
6524
 
6525
+ #: ../plugins/mycred-hook-sharethis.php:262
6526
  msgid "No ShareThis services detected. Please check your installation."
6527
  msgstr "未检测到ShareThis。请检查您的安装。"
6528
 
lang/mycred.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
- "POT-Revision-Date: Wed Apr 08 2015 17:00:37 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
@@ -25,97 +25,97 @@ msgstr ""
25
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
26
  "X-Poedit-SearchPath-0: ."
27
 
28
- #: ../mycred.php:449
29
  msgid "Balance"
30
  msgstr ""
31
 
32
- #: ../mycred.php:474
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
- #: ../mycred.php:567
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
- #: ../mycred.php:576
42
  msgid "Awesome People"
43
  msgstr ""
44
 
45
- #: ../mycred.php:661 ../mycred.php:686 ../mycred.php:704 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:371 ..
49
  #: /addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr ""
53
 
54
- #: ../mycred.php:662
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr ""
59
 
60
- #: ../mycred.php:663
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:664
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:665
71
  msgid "Done!"
72
  msgstr ""
73
 
74
- #: ../mycred.php:666 ../mycred.php:685 ../mycred.php:703
75
  msgid "Close"
76
  msgstr ""
77
 
78
- #: ../mycred.php:667
79
  msgid "Export users %plural%"
80
  msgstr ""
81
 
82
- #: ../mycred.php:668
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
- #: ../mycred.php:684
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
- #: ../mycred.php:702
94
  msgid "Edit Log Entry"
95
  msgstr ""
96
 
97
- #: ../mycred.php:706
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr ""
100
 
101
- #: ../mycred.php:707
102
  msgid "Log entry updated"
103
  msgstr ""
104
 
105
- #: ../mycred.php:761 ../mycred.php:782 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
- #: ../mycred.php:763 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: /addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
118
- #: ../mycred.php:803
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
@@ -160,8 +160,8 @@ msgid "Once per day (reset at midnight)"
160
  msgstr ""
161
 
162
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ..
164
- #: /addons/buy-creds/myCRED-addon-buy-creds.php:681 ../addons/buy-
165
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
@@ -187,7 +187,7 @@ msgid "click to open"
187
  msgstr ""
188
 
189
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
- #: buy-creds.php:884
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
@@ -228,7 +228,7 @@ msgid "Badge"
228
  msgstr ""
229
 
230
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
- #: buy-creds.php:267 ../addons/buy-creds/myCRED-addon-buy-creds.php:268 ..
232
  #: /addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
  #: /addons/ranks/myCRED-addon-ranks.php:448
234
  msgid "Add New"
@@ -460,7 +460,7 @@ msgid "Status"
460
  msgstr ""
461
 
462
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
- #: addon-email-notices.php:1293
464
  msgid "Save Changes"
465
  msgstr ""
466
 
@@ -526,11 +526,11 @@ msgid "Setup mass %_singular% payouts for your users."
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
- #: addon-buy-creds.php:873 ../addons/buy-creds/myCRED-addon-buy-creds.php:973 ..
530
- #: /addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:556 ..
531
  #: /includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
  #: /modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
- #: /modules/mycred-module-log.php:649 ../modules/mycred-module-settings.php:484
534
  msgid "Access Denied"
535
  msgstr ""
536
 
@@ -552,7 +552,7 @@ msgid "Warning! This add-on requires WP - Cron to work."
552
  msgstr ""
553
 
554
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
- #: addon-buy-creds.php:909 ../modules/mycred-module-hooks.php:222
556
  msgid "Enable"
557
  msgstr ""
558
 
@@ -674,8 +674,8 @@ msgstr ""
674
 
675
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
  #: /addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
- #: creds/myCRED-addon-buy-creds.php:633 ../addons/buy-creds/myCRED-addon-buy-
678
- #: creds.php:698 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
  #: /addons/gateway/carts/mycred-marketpress.php:395 ..
680
  #: /addons/gateway/carts/mycred-marketpress.php:428 ..
681
  #: /addons/gateway/carts/mycred-woocommerce.php:104 ..
@@ -733,7 +733,7 @@ msgid "This user role is excluded from receiving interest on this balance."
733
  msgstr ""
734
 
735
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
- #: creds/myCRED-addon-buy-creds.php:794 ../addons/sell-content/myCRED-addon-sell-
737
  #: content.php:114
738
  msgid "Leave empty to use the default value."
739
  msgstr ""
@@ -746,15 +746,15 @@ msgstr ""
746
  msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
- #: ../addons/banking/services/mycred-bank-service-interest.php:673
750
  msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
- #: ../addons/banking/services/mycred-bank-service-interest.php:675
754
  msgid "User excluded from receiving interest."
755
  msgstr ""
756
 
757
- #: ../addons/banking/services/mycred-bank-service-interest.php:677
758
  msgid "User included in receiving interest."
759
  msgstr ""
760
 
@@ -763,7 +763,7 @@ msgid "Daily %_plural%"
763
  msgstr ""
764
 
765
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
- #: /includes/mycred-admin.php:405 ../modules/mycred-module-log.php:276 ..
767
  #: /modules/mycred-module-log.php:277
768
  msgid "History"
769
  msgstr ""
@@ -781,10 +781,10 @@ msgid "Pay Users"
781
  msgstr ""
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
- #: creds/myCRED-addon-buy-creds.php:309 ../addons/buy-creds/myCRED-addon-buy-
785
- #: creds.php:1580 ../addons/buy-creds/myCRED-addon-buy-creds.php:1660 ..
786
  #: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
- #: /includes/mycred-admin.php:709 ../includes/mycred-admin.php:759 ..
788
  #: /includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
  #: /plugins/mycred-hook-affiliatewp.php:256
790
  msgid "Amount"
@@ -819,306 +819,306 @@ msgstr ""
819
  msgid "Payment Gateways"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:261
823
  msgctxt "Post Type General Name"
824
  msgid "Pending Payments"
825
  msgstr ""
826
 
827
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:262
828
  msgctxt "Post Type Singular Name"
829
  msgid "Pending Payment"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:263 ../addons/buy-creds/myCRED-
833
- #: addon-buy-creds.php:265 ../addons/buy-creds/myCRED-addon-buy-creds.php:276
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
838
  msgid "Edit Pending Payment"
839
  msgstr ""
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:272 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:1699
843
  msgid "No pending payments found"
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
847
  msgid "Not found in Trash"
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:306 ../addons/buy-creds/myCRED-
851
- #: addon-buy-creds.php:1029 ../addons/buy-creds/myCRED-addon-buy-creds.php:1658
852
  msgid "Transaction ID"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:308 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:1025
857
  msgid "Buyer"
858
  msgstr ""
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:310 ../addons/buy-creds/myCRED-
861
- #: addon-buy-creds.php:1661 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
  #: gateway.php:594
863
  msgid "Cost"
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1024 ../addons/buy-creds/myCRED-addon-buy-creds.php:1659 ..
868
  #: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
  msgid "Gateway"
870
  msgstr ""
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:312
873
  msgid "Type"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:405
877
  msgid "Pay Out"
878
  msgstr ""
879
 
880
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:438
881
  msgid "buyCRED Purchase Log"
882
  msgstr ""
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439 ../addons/buy-creds/myCRED-
885
- #: addon-buy-creds.php:688 ../addons/buy-creds/myCRED-addon-buy-creds.php:879
886
  msgid "Purchase Log"
887
  msgstr ""
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:539 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:423
893
  msgid "Payments"
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:573
897
  msgid "Please login to purchase %_plural%"
898
  msgstr ""
899
 
900
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:588
901
  #, php-format
902
  msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../addons/ranks/myCRED-
906
  #: addon-ranks.php:1084
907
  msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:607
911
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
912
  msgstr ""
913
 
914
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612 ../addons/transfer/myCRED-
915
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
  #: module-settings.php:656
917
  msgid "Point Types"
918
  msgstr ""
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:615
921
  msgid "Select the point types that users can buy. You must select at least one!"
922
  msgstr ""
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:626
925
  msgid "Login Template"
926
  msgstr ""
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:630
929
  msgid "Content to show when a user is not logged in."
930
  msgstr ""
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:640
933
  msgid "Thank You Page"
934
  msgstr ""
935
 
936
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:643 ../addons/buy-creds/myCRED-
937
- #: addon-buy-creds.php:668
938
  msgid "Custom URL"
939
  msgstr ""
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:648 ../addons/buy-creds/myCRED-
942
- #: addon-buy-creds.php:673
943
  msgid "Page"
944
  msgstr ""
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
947
  msgid "Cancellation Page"
948
  msgstr ""
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:690
951
  msgid "Show seperate log for %_plural% purchases."
952
  msgstr ""
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:692
955
  msgid "Gifting"
956
  msgstr ""
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:694
959
  #, php-format
960
  msgid "Allow users to buy %_plural% for other users."
961
  msgstr ""
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:695
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703 ../modules/mycred-module-
969
  #: hooks.php:3110
970
  msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:788
974
  #, php-format
975
  msgid "%s Exchange Rate"
976
  msgstr ""
977
 
978
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:802
979
  msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:857
983
  msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:860
987
  msgid "Payment completed"
988
  msgstr ""
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879
991
  #, php-format
992
  msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:879 ../addons/buy-creds/myCRED-
996
- #: addon-buy-creds.php:1034
997
  msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:902
1001
  msgid "Test Mode"
1002
  msgstr ""
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:904
1005
  msgid "Enabled"
1006
  msgstr ""
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907
1009
  msgid "Disabled"
1010
  msgstr ""
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:917
1013
  msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:920
1017
  msgid "Enable for test purchases."
1018
  msgstr ""
1019
 
1020
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:937 ../addons/gateway/event-
1021
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
  msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:938
1026
  msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1026 ../includes/mycred-log.php:
1030
- #: 666
1031
  msgid "Date"
1032
  msgstr ""
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
1035
  msgid "Payed"
1036
  msgstr ""
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034
1039
  msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1034 ../addons/gateway/event-
1043
  #: booking/mycred-eventespresso3.php:367
1044
  msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1219 ../addons/sell-
1048
- #: content/myCRED-addon-sell-content.php:1209
1049
  msgid "No purchases found"
1050
  msgstr ""
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1296 ../addons/buy-creds/myCRED-
1053
- #: addon-buy-creds.php:1411
1054
  msgid "This Add-on needs to setup before you can use this shortcode."
1055
  msgstr ""
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1315 ../addons/buy-creds/myCRED-
1058
- #: addon-buy-creds.php:1430
1059
  msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1316 ../addons/buy-creds/myCRED-
1063
- #: addon-buy-creds.php:1431
1064
  msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1364
1068
  msgid "Yourself"
1069
  msgstr ""
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1432
1072
  msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1433
1076
  msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1480
1080
  #, php-format
1081
  msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486 ../addons/sell-
1085
  #: content/myCRED-addon-sell-content.php:44
1086
  msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1531
1090
  msgid "No users found"
1091
  msgstr ""
1092
 
1093
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1541
1094
  msgid "To"
1095
  msgstr ""
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1558
1098
  msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1582
1102
  msgid "min."
1103
  msgstr ""
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1590
1106
  msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/gateway/event-
1110
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
  #: php:35
1113
  msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1634 ../includes/mycred-install.
1117
  #: php:536
1118
  msgid "Cancel"
1119
  msgstr ""
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1662 ../addons/ranks/myCRED-
1122
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
  msgid "Actions"
@@ -1159,12 +1159,12 @@ msgid "Cancel purchase"
1159
  msgstr ""
1160
 
1161
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1162
- #: /includes/mycred-admin.php:703 ../includes/mycred-admin.php:745
1163
  msgid "required"
1164
  msgstr ""
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1167
- #: /includes/mycred-admin.php:705 ../includes/mycred-admin.php:747
1168
  msgid "optional"
1169
  msgstr ""
1170
 
@@ -1704,7 +1704,7 @@ msgstr ""
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:1045 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1200 ../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"
@@ -1716,7 +1716,7 @@ 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:2507
1720
  msgid "Total"
1721
  msgstr ""
1722
 
@@ -1867,7 +1867,7 @@ msgid "Apply Coupon"
1867
  msgstr ""
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:1267
1871
  msgid "Email Notice"
1872
  msgstr ""
1873
 
@@ -2138,8 +2138,8 @@ msgid "Sent To"
2138
  msgstr ""
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:754 ..
2142
- #: /includes/mycred-log.php:665 ../modules/mycred-module-log.php:611
2143
  msgid "User"
2144
  msgstr ""
2145
 
@@ -2269,18 +2269,18 @@ msgstr ""
2269
  msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1266
2273
  msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1287
2277
  msgid "There are no email notifications yet."
2278
  msgstr ""
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
- #: php:412 ../includes/mycred-admin.php:597 ../includes/mycred-admin.php:755
2284
  msgid "Current Balance"
2285
  msgstr ""
2286
 
@@ -2681,8 +2681,8 @@ msgstr ""
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2682
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2683
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2684
- #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
2685
- #: sell-content.php:686 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2686
  msgid "Button Label"
2687
  msgstr ""
2688
 
@@ -2695,8 +2695,8 @@ msgstr ""
2695
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2696
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2697
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2698
- #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
2699
- #: sell-content.php:682
2700
  msgid "Price"
2701
  msgstr ""
2702
 
@@ -2720,12 +2720,12 @@ msgid "Log"
2720
  msgstr ""
2721
 
2722
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2723
- #: /includes/mycred-admin.php:718 ../includes/mycred-admin.php:760
2724
  msgid "Log Entry"
2725
  msgstr ""
2726
 
2727
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2728
- #: content/myCRED-addon-sell-content.php:473
2729
  msgid "Templates"
2730
  msgstr ""
2731
 
@@ -2809,7 +2809,7 @@ msgid "Reject"
2809
  msgstr ""
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
- #: /modules/mycred-module-log.php:565 ../modules/mycred-module-settings.php:678 ..
2813
  #: /modules/mycred-module-settings.php:699
2814
  msgid "Delete"
2815
  msgstr ""
@@ -3299,139 +3299,139 @@ msgstr ""
3299
  msgid "Save Profit Share"
3300
  msgstr ""
3301
 
3302
- #: ../addons/sell-content/myCRED-addon-sell-content.php:165
3303
  msgid "Profit Share override saved"
3304
  msgstr ""
3305
 
3306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:327
3307
  msgid "You can not buy this content."
3308
  msgstr ""
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:372
3311
  msgid "Error. Try Again"
3312
  msgstr ""
3313
 
3314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:394
3315
  msgid "No Payout. Just charge."
3316
  msgstr ""
3317
 
3318
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3319
  msgid "Pay Content Author."
3320
  msgstr ""
3321
 
3322
- #: ../addons/sell-content/myCRED-addon-sell-content.php:401 ../includes/mycred-
3323
  #: overview.php:141 ../includes/mycred-overview.php:148
3324
  msgid "Sell Content"
3325
  msgstr ""
3326
 
3327
- #: ../addons/sell-content/myCRED-addon-sell-content.php:403
3328
  msgid "Post Types"
3329
  msgstr ""
3330
 
3331
- #: ../addons/sell-content/myCRED-addon-sell-content.php:407
3332
  msgid "Comma separated list of post types that can be sold."
3333
  msgstr ""
3334
 
3335
- #: ../addons/sell-content/myCRED-addon-sell-content.php:437
3336
  msgid "Percentage to pay Author"
3337
  msgstr ""
3338
 
3339
- #: ../addons/sell-content/myCRED-addon-sell-content.php:439
3340
  msgid ""
3341
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3342
  "authors are not paid."
3343
  msgstr ""
3344
 
3345
- #: ../addons/sell-content/myCRED-addon-sell-content.php:447
3346
  msgid "Defaults"
3347
  msgstr ""
3348
 
3349
- #: ../addons/sell-content/myCRED-addon-sell-content.php:455
3350
  msgid "Allow authors to change price."
3351
  msgstr ""
3352
 
3353
- #: ../addons/sell-content/myCRED-addon-sell-content.php:464
3354
  msgid "Allow authors to change button label."
3355
  msgstr ""
3356
 
3357
- #: ../addons/sell-content/myCRED-addon-sell-content.php:468
3358
  msgid "Purchases expire after"
3359
  msgstr ""
3360
 
3361
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
3362
  msgid "Use zero for permanent sales."
3363
  msgstr ""
3364
 
3365
- #: ../addons/sell-content/myCRED-addon-sell-content.php:476
3366
  msgid "For Visitors"
3367
  msgstr ""
3368
 
3369
- #: ../addons/sell-content/myCRED-addon-sell-content.php:486
3370
  #, php-format
3371
  msgid ""
3372
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3373
  "be logged in to buy content!"
3374
  msgstr ""
3375
 
3376
- #: ../addons/sell-content/myCRED-addon-sell-content.php:491
3377
  msgid "For Members"
3378
  msgstr ""
3379
 
3380
- #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
3381
- #: content/myCRED-addon-sell-content.php:516
3382
  #, php-format
3383
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3384
  msgstr ""
3385
 
3386
- #: ../addons/sell-content/myCRED-addon-sell-content.php:506
3387
  msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
3391
  msgid "Log template for Purchases"
3392
  msgstr ""
3393
 
3394
- #: ../addons/sell-content/myCRED-addon-sell-content.php:527
3395
  msgid "Log template for Sales"
3396
  msgstr ""
3397
 
3398
- #: ../addons/sell-content/myCRED-addon-sell-content.php:580
3399
  #, php-format
3400
  msgid "%s Sell This"
3401
  msgstr ""
3402
 
3403
- #: ../addons/sell-content/myCRED-addon-sell-content.php:635
3404
  #, php-format
3405
  msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
 
3408
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3409
  msgid "Setup add-on"
3410
  msgstr ""
3411
 
3412
- #: ../addons/sell-content/myCRED-addon-sell-content.php:638
3413
  msgid "Lets do it"
3414
  msgstr ""
3415
 
3416
- #: ../addons/sell-content/myCRED-addon-sell-content.php:676
3417
  #, php-format
3418
  msgid "Enable sale of this %s"
3419
  msgstr ""
3420
 
3421
- #: ../addons/sell-content/myCRED-addon-sell-content.php:690
3422
  msgid "Purchase expires after"
3423
  msgstr ""
3424
 
3425
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
3426
  msgid "Thank you for your purchase!"
3427
  msgstr ""
3428
 
3429
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
3430
- #: content/myCRED-addon-sell-content.php:1190
3431
  msgid "The following content is set for sale:"
3432
  msgstr ""
3433
 
3434
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
3435
  msgid "Purchased"
3436
  msgstr ""
3437
 
@@ -3497,17 +3497,17 @@ msgid "Total Spent: %s"
3497
  msgstr ""
3498
 
3499
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
- #: /includes/mycred-log.php:869 ../modules/mycred-module-buddypress.php:237
3501
  msgid "Today"
3502
  msgstr ""
3503
 
3504
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
- #: /includes/mycred-log.php:871 ../modules/mycred-module-buddypress.php:239
3506
  msgid "This Week"
3507
  msgstr ""
3508
 
3509
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
- #: /includes/mycred-log.php:872 ../modules/mycred-module-buddypress.php:240
3511
  msgid "This Month"
3512
  msgstr ""
3513
 
@@ -3542,13 +3542,13 @@ msgstr ""
3542
  msgid "Gains in the last 10 days"
3543
  msgstr ""
3544
 
3545
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:152 ..
3546
- #: /addons/stats/widgets/mycred-stats-widget-daily-loses.php:152
3547
  msgid "View"
3548
  msgstr ""
3549
 
3550
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:167 ..
3551
- #: /addons/stats/widgets/mycred-stats-widget-daily-loses.php:167
3552
  msgid "No data found"
3553
  msgstr ""
3554
 
@@ -3785,121 +3785,121 @@ msgstr ""
3785
  msgid "Welcome to %s %s"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-admin.php:191
3789
  msgid "A log entry is required in order to adjust this users balance"
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-admin.php:193
3793
  msgid "Users balance saved"
3794
  msgstr ""
3795
 
3796
- #: ../includes/mycred-admin.php:201
3797
  msgid "Users excluded"
3798
  msgstr ""
3799
 
3800
- #: ../includes/mycred-admin.php:206
3801
  msgid ""
3802
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3803
  "rate settings and update all premium payment gateways!"
3804
  msgstr ""
3805
 
3806
- #: ../includes/mycred-admin.php:234
3807
  msgid "User is excluded"
3808
  msgstr ""
3809
 
3810
- #: ../includes/mycred-admin.php:239
3811
  msgid "Log Entry can not be empty"
3812
  msgstr ""
3813
 
3814
- #: ../includes/mycred-admin.php:243
3815
  msgid "Amount can not be zero"
3816
  msgstr ""
3817
 
3818
- #: ../includes/mycred-admin.php:264
3819
  msgid "Failed to update this uses balance."
3820
  msgstr ""
3821
 
3822
- #: ../includes/mycred-admin.php:385
3823
  msgid "Excluded"
3824
  msgstr ""
3825
 
3826
- #: ../includes/mycred-admin.php:406
3827
  msgid "Adjust"
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-admin.php:444 ../includes/mycred-admin.php:445
3831
  msgid "Edit Balance"
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-admin.php:463
3835
  msgid "Profile"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-admin.php:470
3839
  msgid "Extended Profile"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-admin.php:560
3843
  #, php-format
3844
  msgid "This user is excluded from using %s"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-admin.php:583
3848
  msgid "Edit User"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-admin.php:585
3852
  msgctxt "user"
3853
  msgid "Add New"
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-admin.php:587
3857
  msgctxt "user"
3858
  msgid "Add Existing"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-admin.php:598
3862
  #, php-format
3863
  msgid "Total %s Accumulated"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-admin.php:599
3867
  #, php-format
3868
  msgid "Total %s Spent"
3869
  msgstr ""
3870
 
3871
- #: ../includes/mycred-admin.php:610
3872
  msgid "View History"
3873
  msgstr ""
3874
 
3875
- #: ../includes/mycred-admin.php:611
3876
  msgid "Exclude User"
3877
  msgstr ""
3878
 
3879
- #: ../includes/mycred-admin.php:615
3880
  msgid "Adjust Balance"
3881
  msgstr ""
3882
 
3883
- #: ../includes/mycred-admin.php:624
3884
  msgid ""
3885
  "Warning! Excluding this user will result in their balance being deleted "
3886
  "along with any entries currently in your log! This can not be undone!"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-admin.php:682
3890
  #, php-format
3891
  msgid "%singular% balance"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-admin.php:722 ../includes/mycred-admin.php:761
3895
  msgid "Update Balance"
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-admin.php:753
3899
  msgid "ID"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-admin.php:759
3903
  msgid "A positive or negative value"
3904
  msgstr ""
3905
 
@@ -4541,101 +4541,101 @@ msgstr ""
4541
  msgid "Install & Run"
4542
  msgstr ""
4543
 
4544
- #: ../includes/mycred-log.php:430
4545
  #, php-format
4546
  msgid "Showing %d %s"
4547
  msgstr ""
4548
 
4549
- #: ../includes/mycred-log.php:430
4550
  msgid "entry"
4551
  msgstr ""
4552
 
4553
- #: ../includes/mycred-log.php:444
4554
  msgid "Go to the first page"
4555
  msgstr ""
4556
 
4557
- #: ../includes/mycred-log.php:451
4558
  msgid "Go to the previous page"
4559
  msgstr ""
4560
 
4561
- #: ../includes/mycred-log.php:460
4562
  msgid "Current page"
4563
  msgstr ""
4564
 
4565
- #: ../includes/mycred-log.php:466
4566
  #, php-format
4567
  msgctxt "mycred"
4568
  msgid "%1$s of %2$s"
4569
  msgstr ""
4570
 
4571
- #: ../includes/mycred-log.php:470
4572
  msgid "Go to the next page"
4573
  msgstr ""
4574
 
4575
- #: ../includes/mycred-log.php:477
4576
  msgid "Go to the last page"
4577
  msgstr ""
4578
 
4579
- #: ../includes/mycred-log.php:544
4580
  msgid "Show all references"
4581
  msgstr ""
4582
 
4583
- #: ../includes/mycred-log.php:557
4584
  msgid "User ID, Username, Email or Nicename"
4585
  msgstr ""
4586
 
4587
- #: ../includes/mycred-log.php:563
4588
  msgid "Show in order"
4589
  msgstr ""
4590
 
4591
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:426
4592
  msgid "Ascending"
4593
  msgstr ""
4594
 
4595
- #: ../includes/mycred-log.php:564 ../includes/mycred-widgets.php:427
4596
  msgid "Descending"
4597
  msgstr ""
4598
 
4599
- #: ../includes/mycred-log.php:582
4600
  msgid "Filter"
4601
  msgstr ""
4602
 
4603
- #: ../includes/mycred-log.php:635
4604
  msgid ""
4605
  "Log entries are exported to a CSV file and depending on the number of "
4606
  "entries selected, the process may take a few seconds."
4607
  msgstr ""
4608
 
4609
- #: ../includes/mycred-log.php:639
4610
  msgid "No export options available."
4611
  msgstr ""
4612
 
4613
- #: ../includes/mycred-log.php:668
4614
  msgid "Entry"
4615
  msgstr ""
4616
 
4617
- #: ../includes/mycred-log.php:769 ../modules/mycred-module-log.php:527
4618
  msgid "User Missing"
4619
  msgstr ""
4620
 
4621
- #: ../includes/mycred-log.php:839
4622
  msgid "No log entries found"
4623
  msgstr ""
4624
 
4625
- #: ../includes/mycred-log.php:854 ../includes/mycred-log.php:856
4626
  msgid "Search Log"
4627
  msgstr ""
4628
 
4629
- #: ../includes/mycred-log.php:855
4630
  msgid "search log entries"
4631
  msgstr ""
4632
 
4633
- #: ../includes/mycred-log.php:868 ../modules/mycred-module-buddypress.php:236 ..
4634
  #: /modules/mycred-module-buddypress.php:249
4635
  msgid "All"
4636
  msgstr ""
4637
 
4638
- #: ../includes/mycred-log.php:870 ../modules/mycred-module-buddypress.php:238
4639
  msgid "Yesterday"
4640
  msgstr ""
4641
 
@@ -4862,7 +4862,7 @@ msgstr ""
4862
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4863
  #: /plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4864
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4865
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:278 ..
4866
  #: /plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4867
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4868
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
@@ -5472,7 +5472,7 @@ msgstr ""
5472
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5473
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5474
  #: /plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5475
- #: /plugins/mycred-hook-sharethis.php:283 ../plugins/mycred-hook-simplepress.php:
5476
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5477
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5478
  #: /plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
@@ -5774,8 +5774,8 @@ msgstr ""
5774
  msgid "Entries"
5775
  msgstr ""
5776
 
5777
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:433 ..
5778
- #: /modules/mycred-module-log.php:705 ../modules/mycred-module-settings.php:772
5779
  msgid "Export"
5780
  msgstr ""
5781
 
@@ -5794,35 +5794,35 @@ msgid ""
5794
  "Certain hooks and shortcodes will not work correctly!"
5795
  msgstr ""
5796
 
5797
- #: ../modules/mycred-module-log.php:565
5798
  msgid "Edit"
5799
  msgstr ""
5800
 
5801
- #: ../modules/mycred-module-log.php:612
5802
  msgid "Time"
5803
  msgstr ""
5804
 
5805
- #: ../modules/mycred-module-log.php:616
5806
  msgid "Current Log Entry"
5807
  msgstr ""
5808
 
5809
- #: ../modules/mycred-module-log.php:618
5810
  msgid "The current saved log entry"
5811
  msgstr ""
5812
 
5813
- #: ../modules/mycred-module-log.php:621
5814
  msgid "Adjust Log Entry"
5815
  msgstr ""
5816
 
5817
- #: ../modules/mycred-module-log.php:623
5818
  msgid "The new log entry"
5819
  msgstr ""
5820
 
5821
- #: ../modules/mycred-module-log.php:626
5822
  msgid "Update Log Entry"
5823
  msgstr ""
5824
 
5825
- #: ../modules/mycred-module-log.php:697
5826
  #, php-format
5827
  msgid "My %s History"
5828
  msgstr ""
@@ -6491,23 +6491,23 @@ msgstr ""
6491
  msgid "Reward with %plural%"
6492
  msgstr ""
6493
 
6494
- #: ../plugins/mycred-hook-sharethis.php:18
6495
  #, php-format
6496
  msgid "%plural% for Sharing"
6497
  msgstr ""
6498
 
6499
- #: ../plugins/mycred-hook-sharethis.php:19
6500
  #, php-format
6501
  msgid ""
6502
  "Awards %_plural% for users sharing / liking your website content to popular "
6503
  "social media sites."
6504
  msgstr ""
6505
 
6506
- #: ../plugins/mycred-hook-sharethis.php:232
6507
  msgid "Your ShareThis public key is not set."
6508
  msgstr ""
6509
 
6510
- #: ../plugins/mycred-hook-sharethis.php:237
6511
  msgid "No ShareThis services detected. Please check your installation."
6512
  msgstr ""
6513
 
5
  "Project-Id-Version: myCRED\n"
6
  "Report-Msgid-Bugs-To: http://mycred.me\n"
7
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
8
+ "POT-Revision-Date: Mon Jun 08 2015 23:42:07 GMT+0200 (CEST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
11
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
25
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
26
  "X-Poedit-SearchPath-0: ."
27
 
28
+ #: ../mycred.php:461
29
  msgid "Balance"
30
  msgstr ""
31
 
32
+ #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
+ #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
+ #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr ""
44
 
45
+ #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
  #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
  #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
+ #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
  #: /addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
  #: php:636
51
  msgid "Processing..."
52
  msgstr ""
53
 
54
+ #: ../mycred.php:678
55
  msgid ""
56
  "Warning! All entries in your log will be permanently removed! This can not "
57
  "be undone!"
58
  msgstr ""
59
 
60
+ #: ../mycred.php:679
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
+ #: ../mycred.php:680
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
 
70
+ #: ../mycred.php:681
71
  msgid "Done!"
72
  msgstr ""
73
 
74
+ #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
75
  msgid "Close"
76
  msgstr ""
77
 
78
+ #: ../mycred.php:683
79
  msgid "Export users %plural%"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:684
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
+ #: ../mycred.php:700
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
+ #: ../mycred.php:718
94
  msgid "Edit Log Entry"
95
  msgstr ""
96
 
97
+ #: ../mycred.php:722
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr ""
100
 
101
+ #: ../mycred.php:723
102
  msgid "Log entry updated"
103
  msgstr ""
104
 
105
+ #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
106
  #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
  #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
+ #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
  #: /addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
  #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
  #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
118
+ #: ../mycred.php:825
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
160
  msgstr ""
161
 
162
  #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
+ #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
164
+ #: /addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
165
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
  #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
  #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
187
  msgstr ""
188
 
189
  #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
+ #: buy-creds.php:927
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
228
  msgstr ""
229
 
230
  #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
+ #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
232
  #: /addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
  #: /addons/ranks/myCRED-addon-ranks.php:448
234
  msgid "Add New"
460
  msgstr ""
461
 
462
  #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
+ #: addon-email-notices.php:1296
464
  msgid "Save Changes"
465
  msgstr ""
466
 
526
  msgstr ""
527
 
528
  #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
+ #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
530
+ #: /addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
531
  #: /includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
  #: /modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
+ #: /modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
534
  msgid "Access Denied"
535
  msgstr ""
536
 
552
  msgstr ""
553
 
554
  #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
+ #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
556
  msgid "Enable"
557
  msgstr ""
558
 
674
 
675
  #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
  #: /addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
+ #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
678
+ #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
  #: /addons/gateway/carts/mycred-marketpress.php:395 ..
680
  #: /addons/gateway/carts/mycred-marketpress.php:428 ..
681
  #: /addons/gateway/carts/mycred-woocommerce.php:104 ..
733
  msgstr ""
734
 
735
  #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
+ #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
737
  #: content.php:114
738
  msgid "Leave empty to use the default value."
739
  msgstr ""
746
  msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
+ #: ../addons/banking/services/mycred-bank-service-interest.php:676
750
  msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
+ #: ../addons/banking/services/mycred-bank-service-interest.php:678
754
  msgid "User excluded from receiving interest."
755
  msgstr ""
756
 
757
+ #: ../addons/banking/services/mycred-bank-service-interest.php:680
758
  msgid "User included in receiving interest."
759
  msgstr ""
760
 
763
  msgstr ""
764
 
765
  #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
+ #: /includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
767
  #: /modules/mycred-module-log.php:277
768
  msgid "History"
769
  msgstr ""
781
  msgstr ""
782
 
783
  #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
+ #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
785
+ #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
786
  #: /addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
+ #: /includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
788
  #: /includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
  #: /plugins/mycred-hook-affiliatewp.php:256
790
  msgid "Amount"
819
  msgid "Payment Gateways"
820
  msgstr ""
821
 
822
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
823
  msgctxt "Post Type General Name"
824
  msgid "Pending Payments"
825
  msgstr ""
826
 
827
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
828
  msgctxt "Post Type Singular Name"
829
  msgid "Pending Payment"
830
  msgstr ""
831
 
832
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
833
+ #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
834
  msgid "Pending Payments"
835
  msgstr ""
836
 
837
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
838
  msgid "Edit Pending Payment"
839
  msgstr ""
840
 
841
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
842
+ #: addon-buy-creds.php:1752
843
  msgid "No pending payments found"
844
  msgstr ""
845
 
846
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
847
  msgid "Not found in Trash"
848
  msgstr ""
849
 
850
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
851
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
852
  msgid "Transaction ID"
853
  msgstr ""
854
 
855
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
856
+ #: addon-buy-creds.php:1074
857
  msgid "Buyer"
858
  msgstr ""
859
 
860
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
861
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
  #: gateway.php:594
863
  msgid "Cost"
864
  msgstr ""
865
 
866
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
867
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
868
  #: /includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
  msgid "Gateway"
870
  msgstr ""
871
 
872
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
873
  msgid "Type"
874
  msgstr ""
875
 
876
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
877
  msgid "Pay Out"
878
  msgstr ""
879
 
880
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
881
  msgid "buyCRED Purchase Log"
882
  msgstr ""
883
 
884
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
885
+ #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
886
  msgid "Purchase Log"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
890
  #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
  #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
893
  msgid "Payments"
894
  msgstr ""
895
 
896
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
897
  msgid "Please login to purchase %_plural%"
898
  msgstr ""
899
 
900
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
901
  #, php-format
902
  msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
906
  #: addon-ranks.php:1084
907
  msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
911
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
912
  msgstr ""
913
 
914
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
915
  #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
  #: module-settings.php:656
917
  msgid "Point Types"
918
  msgstr ""
919
 
920
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
921
  msgid "Select the point types that users can buy. You must select at least one!"
922
  msgstr ""
923
 
924
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
925
  msgid "Login Template"
926
  msgstr ""
927
 
928
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
929
  msgid "Content to show when a user is not logged in."
930
  msgstr ""
931
 
932
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
933
  msgid "Thank You Page"
934
  msgstr ""
935
 
936
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
937
+ #: addon-buy-creds.php:705
938
  msgid "Custom URL"
939
  msgstr ""
940
 
941
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
942
+ #: addon-buy-creds.php:710
943
  msgid "Page"
944
  msgstr ""
945
 
946
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
947
  msgid "Cancellation Page"
948
  msgstr ""
949
 
950
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
951
  msgid "Show seperate log for %_plural% purchases."
952
  msgstr ""
953
 
954
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
955
  msgid "Gifting"
956
  msgstr ""
957
 
958
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
959
  #, php-format
960
  msgid "Allow users to buy %_plural% for other users."
961
  msgstr ""
962
 
963
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
964
  #, php-format
965
  msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
969
  #: hooks.php:3110
970
  msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
974
  #, php-format
975
  msgid "%s Exchange Rate"
976
  msgstr ""
977
 
978
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
979
  msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
983
  msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
987
  msgid "Payment completed"
988
  msgstr ""
989
 
990
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
991
  #, php-format
992
  msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
996
+ #: addon-buy-creds.php:1085
997
  msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1001
  msgid "Test Mode"
1002
  msgstr ""
1003
 
1004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1005
  msgid "Enabled"
1006
  msgstr ""
1007
 
1008
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1009
  msgid "Disabled"
1010
  msgstr ""
1011
 
1012
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1013
  msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1017
  msgid "Enable for test purchases."
1018
  msgstr ""
1019
 
1020
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1021
  #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
  msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1026
  msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1030
+ #: 756
1031
  msgid "Date"
1032
  msgstr ""
1033
 
1034
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1035
  msgid "Payed"
1036
  msgstr ""
1037
 
1038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1039
  msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1043
  #: booking/mycred-eventespresso3.php:367
1044
  msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1048
+ #: content/myCRED-addon-sell-content.php:1210
1049
  msgid "No purchases found"
1050
  msgstr ""
1051
 
1052
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1053
+ #: addon-buy-creds.php:1464
1054
  msgid "This Add-on needs to setup before you can use this shortcode."
1055
  msgstr ""
1056
 
1057
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1058
+ #: addon-buy-creds.php:1483
1059
  msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1063
+ #: addon-buy-creds.php:1484
1064
  msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1068
  msgid "Yourself"
1069
  msgstr ""
1070
 
1071
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1072
  msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1076
  msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1080
  #, php-format
1081
  msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1085
  #: content/myCRED-addon-sell-content.php:44
1086
  msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1090
  msgid "No users found"
1091
  msgstr ""
1092
 
1093
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1094
  msgid "To"
1095
  msgstr ""
1096
 
1097
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1098
  msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1102
  msgid "min."
1103
  msgstr ""
1104
 
1105
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1106
  msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1110
  #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
  #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
  #: php:35
1113
  msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1117
  #: php:536
1118
  msgid "Cancel"
1119
  msgstr ""
1120
 
1121
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1122
  #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
  #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
  msgid "Actions"
1159
  msgstr ""
1160
 
1161
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1162
+ #: /includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1163
  msgid "required"
1164
  msgstr ""
1165
 
1166
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1167
+ #: /includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1168
  msgid "optional"
1169
  msgstr ""
1170
 
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:1045 ../addons/ranks/myCRED-
1707
+ #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1708
  #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
  #: /includes/importers/mycred-cubepoints.php:365
1710
  msgid "Point Type"
1716
  msgstr ""
1717
 
1718
  #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
+ #: 416 ../modules/mycred-module-hooks.php:2507
1720
  msgid "Total"
1721
  msgstr ""
1722
 
1867
  msgstr ""
1868
 
1869
  #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:1270
1871
  msgid "Email Notice"
1872
  msgstr ""
1873
 
2138
  msgstr ""
2139
 
2140
  #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
+ #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2142
+ #: /includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2143
  msgid "User"
2144
  msgstr ""
2145
 
2269
  msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2273
  msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2277
  msgid "There are no email notifications yet."
2278
  msgstr ""
2279
 
2280
  #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
  #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
  #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
+ #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2284
  msgid "Current Balance"
2285
  msgstr ""
2286
 
2681
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2682
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2683
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2684
+ #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2685
+ #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2686
  msgid "Button Label"
2687
  msgstr ""
2688
 
2695
  #: /addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2696
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2697
  #: /addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2698
+ #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2699
+ #: sell-content.php:683
2700
  msgid "Price"
2701
  msgstr ""
2702
 
2720
  msgstr ""
2721
 
2722
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2723
+ #: /includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2724
  msgid "Log Entry"
2725
  msgstr ""
2726
 
2727
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2728
+ #: content/myCRED-addon-sell-content.php:474
2729
  msgid "Templates"
2730
  msgstr ""
2731
 
2809
  msgstr ""
2810
 
2811
  #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
+ #: /modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2813
  #: /modules/mycred-module-settings.php:699
2814
  msgid "Delete"
2815
  msgstr ""
3299
  msgid "Save Profit Share"
3300
  msgstr ""
3301
 
3302
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3303
  msgid "Profit Share override saved"
3304
  msgstr ""
3305
 
3306
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3307
  msgid "You can not buy this content."
3308
  msgstr ""
3309
 
3310
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3311
  msgid "Error. Try Again"
3312
  msgstr ""
3313
 
3314
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3315
  msgid "No Payout. Just charge."
3316
  msgstr ""
3317
 
3318
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3319
  msgid "Pay Content Author."
3320
  msgstr ""
3321
 
3322
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3323
  #: overview.php:141 ../includes/mycred-overview.php:148
3324
  msgid "Sell Content"
3325
  msgstr ""
3326
 
3327
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3328
  msgid "Post Types"
3329
  msgstr ""
3330
 
3331
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3332
  msgid "Comma separated list of post types that can be sold."
3333
  msgstr ""
3334
 
3335
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3336
  msgid "Percentage to pay Author"
3337
  msgstr ""
3338
 
3339
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3340
  msgid ""
3341
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3342
  "authors are not paid."
3343
  msgstr ""
3344
 
3345
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3346
  msgid "Defaults"
3347
  msgstr ""
3348
 
3349
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3350
  msgid "Allow authors to change price."
3351
  msgstr ""
3352
 
3353
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3354
  msgid "Allow authors to change button label."
3355
  msgstr ""
3356
 
3357
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3358
  msgid "Purchases expire after"
3359
  msgstr ""
3360
 
3361
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3362
  msgid "Use zero for permanent sales."
3363
  msgstr ""
3364
 
3365
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3366
  msgid "For Visitors"
3367
  msgstr ""
3368
 
3369
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3370
  #, php-format
3371
  msgid ""
3372
  "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3373
  "be logged in to buy content!"
3374
  msgstr ""
3375
 
3376
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3377
  msgid "For Members"
3378
  msgstr ""
3379
 
3380
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3381
+ #: content/myCRED-addon-sell-content.php:517
3382
  #, php-format
3383
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3384
  msgstr ""
3385
 
3386
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3387
  msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3391
  msgid "Log template for Purchases"
3392
  msgstr ""
3393
 
3394
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3395
  msgid "Log template for Sales"
3396
  msgstr ""
3397
 
3398
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3399
  #, php-format
3400
  msgid "%s Sell This"
3401
  msgstr ""
3402
 
3403
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3404
  #, php-format
3405
  msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
 
3408
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3409
  msgid "Setup add-on"
3410
  msgstr ""
3411
 
3412
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3413
  msgid "Lets do it"
3414
  msgstr ""
3415
 
3416
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3417
  #, php-format
3418
  msgid "Enable sale of this %s"
3419
  msgstr ""
3420
 
3421
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3422
  msgid "Purchase expires after"
3423
  msgstr ""
3424
 
3425
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3426
  msgid "Thank you for your purchase!"
3427
  msgstr ""
3428
 
3429
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3430
+ #: content/myCRED-addon-sell-content.php:1191
3431
  msgid "The following content is set for sale:"
3432
  msgstr ""
3433
 
3434
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3435
  msgid "Purchased"
3436
  msgstr ""
3437
 
3497
  msgstr ""
3498
 
3499
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
+ #: /includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3501
  msgid "Today"
3502
  msgstr ""
3503
 
3504
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
+ #: /includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3506
  msgid "This Week"
3507
  msgstr ""
3508
 
3509
  #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
+ #: /includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3511
  msgid "This Month"
3512
  msgstr ""
3513
 
3542
  msgid "Gains in the last 10 days"
3543
  msgstr ""
3544
 
3545
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3546
+ #: /addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3547
  msgid "View"
3548
  msgstr ""
3549
 
3550
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3551
+ #: /addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3552
  msgid "No data found"
3553
  msgstr ""
3554
 
3785
  msgid "Welcome to %s %s"
3786
  msgstr ""
3787
 
3788
+ #: ../includes/mycred-admin.php:198
3789
  msgid "A log entry is required in order to adjust this users balance"
3790
  msgstr ""
3791
 
3792
+ #: ../includes/mycred-admin.php:200
3793
  msgid "Users balance saved"
3794
  msgstr ""
3795
 
3796
+ #: ../includes/mycred-admin.php:208
3797
  msgid "Users excluded"
3798
  msgstr ""
3799
 
3800
+ #: ../includes/mycred-admin.php:213
3801
  msgid ""
3802
  "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3803
  "rate settings and update all premium payment gateways!"
3804
  msgstr ""
3805
 
3806
+ #: ../includes/mycred-admin.php:242
3807
  msgid "User is excluded"
3808
  msgstr ""
3809
 
3810
+ #: ../includes/mycred-admin.php:247
3811
  msgid "Log Entry can not be empty"
3812
  msgstr ""
3813
 
3814
+ #: ../includes/mycred-admin.php:251
3815
  msgid "Amount can not be zero"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/mycred-admin.php:272
3819
  msgid "Failed to update this uses balance."
3820
  msgstr ""
3821
 
3822
+ #: ../includes/mycred-admin.php:406
3823
  msgid "Excluded"
3824
  msgstr ""
3825
 
3826
+ #: ../includes/mycred-admin.php:427
3827
  msgid "Adjust"
3828
  msgstr ""
3829
 
3830
+ #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3831
  msgid "Edit Balance"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/mycred-admin.php:490
3835
  msgid "Profile"
3836
  msgstr ""
3837
 
3838
+ #: ../includes/mycred-admin.php:497
3839
  msgid "Extended Profile"
3840
  msgstr ""
3841
 
3842
+ #: ../includes/mycred-admin.php:591
3843
  #, php-format
3844
  msgid "This user is excluded from using %s"
3845
  msgstr ""
3846
 
3847
+ #: ../includes/mycred-admin.php:615
3848
  msgid "Edit User"
3849
  msgstr ""
3850
 
3851
+ #: ../includes/mycred-admin.php:617
3852
  msgctxt "user"
3853
  msgid "Add New"
3854
  msgstr ""
3855
 
3856
+ #: ../includes/mycred-admin.php:619
3857
  msgctxt "user"
3858
  msgid "Add Existing"
3859
  msgstr ""
3860
 
3861
+ #: ../includes/mycred-admin.php:630
3862
  #, php-format
3863
  msgid "Total %s Accumulated"
3864
  msgstr ""
3865
 
3866
+ #: ../includes/mycred-admin.php:631
3867
  #, php-format
3868
  msgid "Total %s Spent"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/mycred-admin.php:642
3872
  msgid "View History"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/mycred-admin.php:643
3876
  msgid "Exclude User"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/mycred-admin.php:647
3880
  msgid "Adjust Balance"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/mycred-admin.php:656
3884
  msgid ""
3885
  "Warning! Excluding this user will result in their balance being deleted "
3886
  "along with any entries currently in your log! This can not be undone!"
3887
  msgstr ""
3888
 
3889
+ #: ../includes/mycred-admin.php:721
3890
  #, php-format
3891
  msgid "%singular% balance"
3892
  msgstr ""
3893
 
3894
+ #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3895
  msgid "Update Balance"
3896
  msgstr ""
3897
 
3898
+ #: ../includes/mycred-admin.php:798
3899
  msgid "ID"
3900
  msgstr ""
3901
 
3902
+ #: ../includes/mycred-admin.php:804
3903
  msgid "A positive or negative value"
3904
  msgstr ""
3905
 
4541
  msgid "Install & Run"
4542
  msgstr ""
4543
 
4544
+ #: ../includes/mycred-log.php:485
4545
  #, php-format
4546
  msgid "Showing %d %s"
4547
  msgstr ""
4548
 
4549
+ #: ../includes/mycred-log.php:485
4550
  msgid "entry"
4551
  msgstr ""
4552
 
4553
+ #: ../includes/mycred-log.php:500
4554
  msgid "Go to the first page"
4555
  msgstr ""
4556
 
4557
+ #: ../includes/mycred-log.php:507
4558
  msgid "Go to the previous page"
4559
  msgstr ""
4560
 
4561
+ #: ../includes/mycred-log.php:517
4562
  msgid "Current page"
4563
  msgstr ""
4564
 
4565
+ #: ../includes/mycred-log.php:523
4566
  #, php-format
4567
  msgctxt "mycred"
4568
  msgid "%1$s of %2$s"
4569
  msgstr ""
4570
 
4571
+ #: ../includes/mycred-log.php:527
4572
  msgid "Go to the next page"
4573
  msgstr ""
4574
 
4575
+ #: ../includes/mycred-log.php:534
4576
  msgid "Go to the last page"
4577
  msgstr ""
4578
 
4579
+ #: ../includes/mycred-log.php:611
4580
  msgid "Show all references"
4581
  msgstr ""
4582
 
4583
+ #: ../includes/mycred-log.php:628
4584
  msgid "User ID, Username, Email or Nicename"
4585
  msgstr ""
4586
 
4587
+ #: ../includes/mycred-log.php:636
4588
  msgid "Show in order"
4589
  msgstr ""
4590
 
4591
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4592
  msgid "Ascending"
4593
  msgstr ""
4594
 
4595
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4596
  msgid "Descending"
4597
  msgstr ""
4598
 
4599
+ #: ../includes/mycred-log.php:658
4600
  msgid "Filter"
4601
  msgstr ""
4602
 
4603
+ #: ../includes/mycred-log.php:718
4604
  msgid ""
4605
  "Log entries are exported to a CSV file and depending on the number of "
4606
  "entries selected, the process may take a few seconds."
4607
  msgstr ""
4608
 
4609
+ #: ../includes/mycred-log.php:725
4610
  msgid "No export options available."
4611
  msgstr ""
4612
 
4613
+ #: ../includes/mycred-log.php:758
4614
  msgid "Entry"
4615
  msgstr ""
4616
 
4617
+ #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4618
  msgid "User Missing"
4619
  msgstr ""
4620
 
4621
+ #: ../includes/mycred-log.php:958
4622
  msgid "No log entries found"
4623
  msgstr ""
4624
 
4625
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4626
  msgid "Search Log"
4627
  msgstr ""
4628
 
4629
+ #: ../includes/mycred-log.php:977
4630
  msgid "search log entries"
4631
  msgstr ""
4632
 
4633
+ #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4634
  #: /modules/mycred-module-buddypress.php:249
4635
  msgid "All"
4636
  msgstr ""
4637
 
4638
+ #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4639
  msgid "Yesterday"
4640
  msgstr ""
4641
 
4862
  #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4863
  #: /plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4864
  #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4865
+ #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4866
  #: /plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4867
  #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4868
  #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5472
  #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5473
  #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5474
  #: /plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5475
+ #: /plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5476
  #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5477
  #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5478
  #: /plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5774
  msgid "Entries"
5775
  msgstr ""
5776
 
5777
+ #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5778
+ #: /modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5779
  msgid "Export"
5780
  msgstr ""
5781
 
5794
  "Certain hooks and shortcodes will not work correctly!"
5795
  msgstr ""
5796
 
5797
+ #: ../modules/mycred-module-log.php:563
5798
  msgid "Edit"
5799
  msgstr ""
5800
 
5801
+ #: ../modules/mycred-module-log.php:610
5802
  msgid "Time"
5803
  msgstr ""
5804
 
5805
+ #: ../modules/mycred-module-log.php:614
5806
  msgid "Current Log Entry"
5807
  msgstr ""
5808
 
5809
+ #: ../modules/mycred-module-log.php:616
5810
  msgid "The current saved log entry"
5811
  msgstr ""
5812
 
5813
+ #: ../modules/mycred-module-log.php:619
5814
  msgid "Adjust Log Entry"
5815
  msgstr ""
5816
 
5817
+ #: ../modules/mycred-module-log.php:621
5818
  msgid "The new log entry"
5819
  msgstr ""
5820
 
5821
+ #: ../modules/mycred-module-log.php:624
5822
  msgid "Update Log Entry"
5823
  msgstr ""
5824
 
5825
+ #: ../modules/mycred-module-log.php:695
5826
  #, php-format
5827
  msgid "My %s History"
5828
  msgstr ""
6491
  msgid "Reward with %plural%"
6492
  msgstr ""
6493
 
6494
+ #: ../plugins/mycred-hook-sharethis.php:19
6495
  #, php-format
6496
  msgid "%plural% for Sharing"
6497
  msgstr ""
6498
 
6499
+ #: ../plugins/mycred-hook-sharethis.php:20
6500
  #, php-format
6501
  msgid ""
6502
  "Awards %_plural% for users sharing / liking your website content to popular "
6503
  "social media sites."
6504
  msgstr ""
6505
 
6506
+ #: ../plugins/mycred-hook-sharethis.php:257
6507
  msgid "Your ShareThis public key is not set."
6508
  msgstr ""
6509
 
6510
+ #: ../plugins/mycred-hook-sharethis.php:262
6511
  msgid "No ShareThis services detected. Please check your installation."
6512
  msgstr ""
6513
 
modules/mycred-module-addons.php CHANGED
@@ -365,7 +365,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) :
365
  /**
366
  * Activate / Deactivate Button
367
  * @since 0.1
368
- * @version 1.0
369
  */
370
  public function activate_deactivate( $key ) {
371
 
@@ -391,7 +391,7 @@ if ( ! class_exists( 'myCRED_Addons_Module' ) ) :
391
  $link_text = __( 'Activate', 'mycred' );
392
  }
393
 
394
- return '<a href="' . add_query_arg( $args, $url ) . '" title="' . $link_title . '" class="button button-large button-primary mycred-action">' . $link_text . '</a>';
395
 
396
  }
397
 
365
  /**
366
  * Activate / Deactivate Button
367
  * @since 0.1
368
+ * @version 1.0.1
369
  */
370
  public function activate_deactivate( $key ) {
371
 
391
  $link_text = __( 'Activate', 'mycred' );
392
  }
393
 
394
+ return '<a href="' . esc_url( add_query_arg( $args, $url ) ) . '" title="' . $link_title . '" class="button button-large button-primary mycred-action">' . $link_text . '</a>';
395
 
396
  }
397
 
modules/mycred-module-buddypress.php CHANGED
@@ -89,7 +89,7 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) :
89
 
90
  }
91
 
92
- return apply_filters( 'mycred_bp_logout_url', $logouturl, $this );
93
 
94
  }
95
 
@@ -242,7 +242,7 @@ if ( ! class_exists( 'myCRED_BuddyPress_Module' ) ) :
242
 
243
  $ctype = '/';
244
  if ( $this->selected_type != 'mycred_default' )
245
- $ctype .= add_query_arg( array( 'show-ctype' => $this->selected_type ) );
246
 
247
  // "All" is default
248
  bp_core_new_subnav_item( array(
89
 
90
  }
91
 
92
+ return apply_filters( 'mycred_bp_logout_url', esc_url( $logouturl ), $this );
93
 
94
  }
95
 
242
 
243
  $ctype = '/';
244
  if ( $this->selected_type != 'mycred_default' )
245
+ $ctype .= esc_url( add_query_arg( array( 'show-ctype' => $this->selected_type ) ) );
246
 
247
  // "All" is default
248
  bp_core_new_subnav_item( array(
modules/mycred-module-hooks.php CHANGED
@@ -2840,7 +2840,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
2840
  * Get Ref Link
2841
  * Returns a given users referral id with optional url appended.
2842
  * @since 1.4
2843
- * @version 1.0
2844
  */
2845
  public function get_ref_link( $user_id = '', $url = '' ) {
2846
 
@@ -2858,7 +2858,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
2858
  else
2859
  $link = add_query_arg( array( $this->ref_key => $ref_id ) );
2860
 
2861
- return apply_filters( 'mycred_affiliate_get_ref_link', $link, $user_id, $url, $this );
2862
 
2863
  }
2864
 
@@ -2984,7 +2984,7 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
2984
  /**
2985
  * Preference for Affiliate Hook
2986
  * @since 1.4
2987
- * @version 1.0.2
2988
  */
2989
  public function preferences() {
2990
 
@@ -3045,13 +3045,13 @@ if ( ! class_exists( 'myCRED_Hook_Affiliate' ) ) :
3045
  <li>
3046
  <input type="radio" name="<?php echo $this->field_name( array( 'setup' => 'links' ) ); ?>" id="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-numeric" <?php checked( $prefs['setup']['links'], 'numeric' ); ?> value="numeric" />
3047
  <label for="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-numeric"><?php _e( 'Assign numeric referral IDs to each user.', 'mycred' ); ?></label><br />
3048
- <span class="description"><?php printf( '%s: %s', __( 'Example', 'mycred' ), add_query_arg( array( $this->ref_key => 1 ), home_url( '/' ) ) ); ?></span>
3049
  </li>
3050
  <li class="empty">&nbsp;</li>
3051
  <li>
3052
  <input type="radio" name="<?php echo $this->field_name( array( 'setup' => 'links' ) ); ?>" id="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-username" <?php checked( $prefs['setup']['links'], 'username' ); ?> value="username" />
3053
  <label for="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-username"><?php _e( 'Assign usernames as IDs for each user.', 'mycred' ); ?></label><br />
3054
- <span class="description"><?php printf( '%s: %s', __( 'Example', 'mycred' ), add_query_arg( array( $this->ref_key => 'john+doe' ), home_url( '/' ) ) ); ?></span>
3055
  </li>
3056
  </ol>
3057
  <label class="subheader"><?php _e( 'IP Limit', 'mycred' ); ?></label>
2840
  * Get Ref Link
2841
  * Returns a given users referral id with optional url appended.
2842
  * @since 1.4
2843
+ * @version 1.0.1
2844
  */
2845
  public function get_ref_link( $user_id = '', $url = '' ) {
2846
 
2858
  else
2859
  $link = add_query_arg( array( $this->ref_key => $ref_id ) );
2860
 
2861
+ return apply_filters( 'mycred_affiliate_get_ref_link', esc_url( $link ), $user_id, $url, $this );
2862
 
2863
  }
2864
 
2984
  /**
2985
  * Preference for Affiliate Hook
2986
  * @since 1.4
2987
+ * @version 1.0.3
2988
  */
2989
  public function preferences() {
2990
 
3045
  <li>
3046
  <input type="radio" name="<?php echo $this->field_name( array( 'setup' => 'links' ) ); ?>" id="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-numeric" <?php checked( $prefs['setup']['links'], 'numeric' ); ?> value="numeric" />
3047
  <label for="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-numeric"><?php _e( 'Assign numeric referral IDs to each user.', 'mycred' ); ?></label><br />
3048
+ <span class="description"><?php printf( '%s: %s', __( 'Example', 'mycred' ), esc_url( add_query_arg( array( $this->ref_key => 1 ), home_url( '/' ) ) ) ); ?></span>
3049
  </li>
3050
  <li class="empty">&nbsp;</li>
3051
  <li>
3052
  <input type="radio" name="<?php echo $this->field_name( array( 'setup' => 'links' ) ); ?>" id="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-username" <?php checked( $prefs['setup']['links'], 'username' ); ?> value="username" />
3053
  <label for="<?php echo $this->field_id( array( 'setup' => 'links' ) ); ?>-username"><?php _e( 'Assign usernames as IDs for each user.', 'mycred' ); ?></label><br />
3054
+ <span class="description"><?php printf( '%s: %s', __( 'Example', 'mycred' ), esc_url( add_query_arg( array( $this->ref_key => 'john+doe' ), home_url( '/' ) ) ) ); ?></span>
3055
  </li>
3056
  </ol>
3057
  <label class="subheader"><?php _e( 'IP Limit', 'mycred' ); ?></label>
modules/mycred-module-log.php CHANGED
@@ -428,8 +428,6 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
428
 
429
  <?php do_action( 'mycred_top_log_page', $this ); ?>
430
 
431
- <div class="clear"></div>
432
-
433
  <?php $log->exporter( __( 'Export', 'mycred' ) ); ?>
434
 
435
  <form method="get" action="" name="mycred-thelog-form" novalidate>
@@ -700,8 +698,6 @@ if ( ! class_exists( 'myCRED_Log_Module' ) ) :
700
 
701
  <?php do_action( 'mycred_top_my_log_page', $this ); ?>
702
 
703
- <div class="clear"></div>
704
-
705
  <?php $log->exporter( __( 'Export', 'mycred' ), true ); ?>
706
 
707
  <form method="get" action="" name="mycred-mylog-form" novalidate>
428
 
429
  <?php do_action( 'mycred_top_log_page', $this ); ?>
430
 
 
 
431
  <?php $log->exporter( __( 'Export', 'mycred' ) ); ?>
432
 
433
  <form method="get" action="" name="mycred-thelog-form" novalidate>
698
 
699
  <?php do_action( 'mycred_top_my_log_page', $this ); ?>
700
 
 
 
701
  <?php $log->exporter( __( 'Export', 'mycred' ), true ); ?>
702
 
703
  <form method="get" action="" name="mycred-mylog-form" novalidate>
modules/mycred-module-settings.php CHANGED
@@ -235,7 +235,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) :
235
  * Update Log Cred Format Action
236
  * Will attempt to modify the myCRED log's cred column format.
237
  * @since 1.6
238
- * @version 1.0
239
  */
240
  public function action_update_log_cred_format() {
241
 
@@ -289,7 +289,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) :
289
 
290
  // Send the good news
291
  wp_send_json_success( array(
292
- 'url' => add_query_arg( array( 'page' => 'myCRED_page_settings', 'open-tab' => 0 ), admin_url( 'admin.php' ) ),
293
  'label' => __( 'Log Updated', 'mycred' )
294
  ) );
295
 
@@ -411,7 +411,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) :
411
  /**
412
  * Adjust Decimal Places Settings
413
  * @since 1.6
414
- * @version 1.0
415
  */
416
  public function adjust_decimal_places() {
417
 
@@ -462,7 +462,7 @@ if ( ! class_exists( 'myCRED_Settings_Module' ) ) :
462
 
463
  ?>
464
  </select><br />
465
- <span class="description"><?php printf( __( '<a href="%s">Click here</a> to change your default point types setup.', 'mycred' ), $url ); ?></span>
466
  </li>
467
  <?php
468
 
235
  * Update Log Cred Format Action
236
  * Will attempt to modify the myCRED log's cred column format.
237
  * @since 1.6
238
+ * @version 1.0.1
239
  */
240
  public function action_update_log_cred_format() {
241
 
289
 
290
  // Send the good news
291
  wp_send_json_success( array(
292
+ 'url' => esc_url( add_query_arg( array( 'page' => 'myCRED_page_settings', 'open-tab' => 0 ), admin_url( 'admin.php' ) ) ),
293
  'label' => __( 'Log Updated', 'mycred' )
294
  ) );
295
 
411
  /**
412
  * Adjust Decimal Places Settings
413
  * @since 1.6
414
+ * @version 1.0.1
415
  */
416
  public function adjust_decimal_places() {
417
 
462
 
463
  ?>
464
  </select><br />
465
+ <span class="description"><?php printf( __( '<a href="%s">Click here</a> to change your default point types setup.', 'mycred' ), esc_url( $url ) ); ?></span>
466
  </li>
467
  <?php
468
 
mycred.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: myCRED
4
  * Plugin URI: http://mycred.me
5
  * Description: <strong>my</strong>CRED is an adaptive points management system for WordPress powered websites, giving you full control on how points are gained, used, traded, managed, logged or presented.
6
- * Version: 1.6.3
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
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 3.8
12
- * Tested up to: WP 4.1
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
@@ -20,7 +20,7 @@
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
- define( 'myCRED_VERSION', '1.6.3' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
@@ -47,7 +47,7 @@ require_once myCRED_ABSTRACTS_DIR . 'mycred-abstract-module.php';
47
  * @since 1.3
48
  * @version 1.0
49
  */
50
- if ( ! class_exists( 'myCRED_Core' ) ) {
51
  final class myCRED_Core {
52
 
53
  /**
@@ -56,8 +56,9 @@ if ( ! class_exists( 'myCRED_Core' ) ) {
56
  function __construct() {
57
  _deprecated_function( __CLASS__, '1.3', 'mycred_load()' );
58
  }
 
59
  }
60
- }
61
 
62
  /**
63
  * Required
@@ -65,8 +66,8 @@ if ( ! class_exists( 'myCRED_Core' ) ) {
65
  * @version 1.2
66
  */
67
  if ( ! function_exists( 'mycred_load' ) ) :
68
- function mycred_load()
69
- {
70
  // Check Network blocking
71
  if ( mycred_is_site_blocked() ) return;
72
 
@@ -84,6 +85,7 @@ if ( ! function_exists( 'mycred_load' ) ) :
84
 
85
  // Add-ons
86
  require_once myCRED_MODULES_DIR . 'mycred-module-addons.php';
 
87
  $addons = new myCRED_Addons_Module();
88
  $addons->load();
89
  $addons->run_addons();
@@ -113,8 +115,8 @@ mycred_load();
113
  * @version 1.1.1
114
  */
115
  if ( ! function_exists( 'mycred_plugin_activation' ) ) :
116
- function mycred_plugin_activation()
117
- {
118
  // Load Installer
119
  require_once myCRED_INCLUDES_DIR . 'mycred-install.php';
120
  $install = new myCRED_Install();
@@ -138,8 +140,8 @@ endif;
138
  * @version 1.0
139
  */
140
  if ( ! function_exists( 'mycred_plugin_deactivation' ) ) :
141
- function mycred_plugin_deactivation()
142
- {
143
  // Clear Cron
144
  wp_clear_scheduled_hook( 'mycred_reset_key' );
145
  wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
@@ -147,6 +149,7 @@ if ( ! function_exists( 'mycred_plugin_deactivation' ) ) :
147
  wp_clear_scheduled_hook( 'mycred_banking_interest_payout' );
148
 
149
  do_action( 'mycred_deactivation' );
 
150
  }
151
  endif;
152
 
@@ -156,8 +159,8 @@ endif;
156
  * @version 1.0
157
  */
158
  if ( ! function_exists( 'mycred_plugin_uninstall' ) ) :
159
- function mycred_plugin_uninstall()
160
- {
161
  // Load Installer
162
  require_once myCRED_INCLUDES_DIR . 'mycred-install.php';
163
  $install = new myCRED_Install();
@@ -169,6 +172,7 @@ if ( ! function_exists( 'mycred_plugin_uninstall' ) ) :
169
 
170
  do_action( 'mycred_after_deletion', $install );
171
  unset( $install );
 
172
  }
173
  endif;
174
 
@@ -178,11 +182,11 @@ endif;
178
  * @version 1.6
179
  */
180
  if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
181
- function mycred_plugin_start_up()
182
- {
183
  global $mycred, $mycred_types, $mycred_modules;
184
- $mycred = new myCRED_Settings();
185
 
 
186
  $mycred_types = mycred_get_types();
187
 
188
  require_once myCRED_INCLUDES_DIR . 'mycred-shortcodes.php';
@@ -210,6 +214,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
210
 
211
  // Load Settings
212
  require_once myCRED_MODULES_DIR . 'mycred-module-settings.php';
 
213
  foreach ( $mycred_types as $type => $title ) {
214
  $mycred_modules[ $type ]['settings'] = new myCRED_Settings_Module( $type );
215
  $mycred_modules[ $type ]['settings']->load();
@@ -275,6 +280,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
275
 
276
  // Load hooks
277
  require_once myCRED_MODULES_DIR . 'mycred-module-hooks.php';
 
278
  foreach ( $mycred_types as $type => $title ) {
279
  $mycred_modules[ $type ]['hooks'] = new myCRED_Hooks_Module( $type );
280
  $mycred_modules[ $type ]['hooks']->load();
@@ -282,6 +288,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
282
 
283
  // Load log
284
  require_once myCRED_MODULES_DIR . 'mycred-module-log.php';
 
285
  foreach ( $mycred_types as $type => $title ) {
286
  $mycred_modules[ $type ]['log'] = new myCRED_Log_Module( $type );
287
  $mycred_modules[ $type ]['log']->load();
@@ -302,6 +309,7 @@ if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
302
  $admin->load();
303
 
304
  do_action( 'mycred_pre_init' );
 
305
  }
306
  endif;
307
 
@@ -311,8 +319,8 @@ endif;
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' );
@@ -351,6 +359,7 @@ if ( ! function_exists( 'mycred_init' ) ) :
351
 
352
  // Let others play
353
  do_action( 'mycred_init' );
 
354
  }
355
  endif;
356
 
@@ -360,8 +369,8 @@ endif;
360
  * @version 1.1
361
  */
362
  if ( ! function_exists( 'mycred_widgets_init' ) ) :
363
- function mycred_widgets_init()
364
- {
365
  // Register Widgets
366
  register_widget( 'myCRED_Widget_Balance' );
367
  register_widget( 'myCRED_Widget_Leaderboard' );
@@ -372,6 +381,7 @@ if ( ! function_exists( 'mycred_widgets_init' ) ) :
372
 
373
  // Let others play
374
  do_action( 'mycred_widgets_init' );
 
375
  }
376
  endif;
377
 
@@ -381,8 +391,8 @@ endif;
381
  * @version 1.3
382
  */
383
  if ( ! function_exists( 'mycred_admin_init' ) ) :
384
- function mycred_admin_init()
385
- {
386
  // Run update if needed
387
  $mycred_version = get_option( 'mycred_version', myCRED_VERSION );
388
  if ( $mycred_version != myCRED_VERSION )
@@ -403,9 +413,9 @@ if ( ! function_exists( 'mycred_admin_init' ) ) :
403
 
404
  delete_transient( '_mycred_activation_redirect' );
405
 
406
- $url = add_query_arg( array( 'page' => 'mycred' ), admin_url( 'index.php' ) );
407
- wp_safe_redirect( $url );
408
  die;
 
409
  }
410
  endif;
411
 
@@ -415,11 +425,12 @@ endif;
415
  * @version 1.1
416
  */
417
  if ( ! function_exists( 'mycred_admin_head' ) ) :
418
- function mycred_admin_head()
419
- {
420
  remove_submenu_page( 'index.php', 'mycred' );
421
  remove_submenu_page( 'index.php', 'mycred-credit' );
422
  remove_submenu_page( 'users.php', 'mycred-edit-balance' );
 
423
  }
424
  endif;
425
 
@@ -429,8 +440,8 @@ endif;
429
  * @version 1.4.2
430
  */
431
  if ( ! function_exists( 'mycred_hook_into_toolbar' ) ) :
432
- function mycred_hook_into_toolbar( $wp_admin_bar )
433
- {
434
  if ( ! is_user_logged_in() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) return;
435
 
436
  $user_id = get_current_user_id();
@@ -525,6 +536,7 @@ if ( ! function_exists( 'mycred_hook_into_toolbar' ) ) :
525
 
526
  // Let others play
527
  do_action( 'mycred_tool_bar', $wp_admin_bar, $mycred );
 
528
  }
529
  endif;
530
 
@@ -535,10 +547,10 @@ endif;
535
  * @version 1.2
536
  */
537
  if ( ! function_exists( 'mycred_admin_menu' ) ) :
538
- function mycred_admin_menu()
539
- {
540
  $mycred = mycred();
541
- $name = mycred_label( true );
542
 
543
  global $mycred_types, $wp_version;
544
 
@@ -588,6 +600,7 @@ if ( ! function_exists( 'mycred_admin_menu' ) ) :
588
 
589
  // Let others play
590
  do_action( 'mycred_add_menu', $mycred );
 
591
  }
592
  endif;
593
 
@@ -598,8 +611,8 @@ endif;
598
  * @version 1.0
599
  */
600
  if ( ! function_exists( 'mycred_enqueue_front' ) ) :
601
- function mycred_enqueue_front()
602
- {
603
  global $mycred_sending_points;
604
 
605
  // Send Points Shortcode
@@ -625,6 +638,7 @@ if ( ! function_exists( 'mycred_enqueue_front' ) ) :
625
 
626
  // Let others play
627
  do_action( 'mycred_front_enqueue' );
 
628
  }
629
  endif;
630
 
@@ -634,9 +648,10 @@ endif;
634
  * @version 1.2.1
635
  */
636
  if ( ! function_exists( 'mycred_enqueue_admin' ) ) :
637
- function mycred_enqueue_admin()
638
- {
639
  $mycred = mycred();
 
640
  // General Admin Script
641
  wp_register_script(
642
  'mycred-admin',
@@ -686,7 +701,7 @@ if ( ! function_exists( 'mycred_enqueue_admin' ) ) :
686
  'working' => esc_attr__( 'Processing...', 'mycred' )
687
  )
688
  );
689
-
690
  // Log Edit Script
691
  wp_register_script(
692
  'mycred-edit-log',
@@ -721,6 +736,7 @@ if ( ! function_exists( 'mycred_enqueue_admin' ) ) :
721
  myCRED_VERSION . '.1',
722
  'all'
723
  );
 
724
  wp_register_style(
725
  'mycred-inline-edit',
726
  plugins_url( 'assets/css/inline-edit.css', myCRED_THIS ),
@@ -731,6 +747,7 @@ if ( ! function_exists( 'mycred_enqueue_admin' ) ) :
731
 
732
  // Let others play
733
  do_action( 'mycred_admin_enqueue' );
 
734
  }
735
  endif;
736
 
@@ -740,9 +757,10 @@ endif;
740
  * @version 1.0
741
  */
742
  if ( ! function_exists( 'mycred_admin_page_styles' ) ) :
743
- function mycred_admin_page_styles()
744
- {
745
  wp_enqueue_style( 'mycred-admin' );
 
746
  }
747
  endif;
748
 
@@ -752,8 +770,8 @@ endif;
752
  * @version 1.1
753
  */
754
  if ( ! function_exists( 'mycred_plugin_links' ) ) :
755
- function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context )
756
- {
757
  if ( mycred_is_site_blocked() ) return $actions;
758
 
759
  // Link to Setup
@@ -764,6 +782,7 @@ if ( ! function_exists( 'mycred_plugin_links' ) ) :
764
 
765
  ksort( $actions );
766
  return $actions;
 
767
  }
768
  endif;
769
 
@@ -773,10 +792,10 @@ endif;
773
  * @version 1.1
774
  */
775
  if ( ! function_exists( 'mycred_plugin_description_links' ) ) :
776
- function mycred_plugin_description_links( $links, $file )
777
- {
778
  if ( $file != plugin_basename( myCRED_THIS ) ) return $links;
779
-
780
  // Link to Setup
781
  if ( ! is_mycred_ready() ) {
782
  $links[] = '<a href="' . admin_url( 'plugins.php?page=myCRED-setup' ) . '">' . __( 'Setup', 'mycred' ) . '</a>';
@@ -789,6 +808,7 @@ if ( ! function_exists( 'mycred_plugin_description_links' ) ) :
789
  $links[] = '<a href="http://mycred.me/store/" target="_blank">Store</a>';
790
 
791
  return $links;
 
792
  }
793
  endif;
794
 
@@ -800,7 +820,9 @@ endif;
800
  */
801
  if ( ! function_exists( 'mycred_update_warning' ) ) :
802
  function mycred_update_warning() {
 
803
  echo '<div style="color:#cc0000;">' . __( 'Make sure to backup your database and files before updating, in case anything goes wrong!', 'mycred' ) . '</div>';
 
804
  }
805
  endif;
806
 
@@ -810,10 +832,11 @@ endif;
810
  * @version 1.1
811
  */
812
  if ( ! function_exists( 'mycred_reset_key' ) ) :
813
- function mycred_reset_key()
814
- {
815
  $protect = mycred_protect();
816
  if ( $protect !== false )
817
  $protect->reset_key();
 
818
  }
819
  endif;
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.4
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
10
  * Author Email: support@mycred.me
11
  * Requires at least: WP 3.8
12
+ * Tested up to: WP 4.3
13
  * Text Domain: mycred
14
  * Domain Path: /lang
15
  * License: GPLv2 or later
20
  * BuddyPress Compatible: yes
21
  * Forum URI: http://mycred.me/support/forums/
22
  */
23
+ define( 'myCRED_VERSION', '1.6.4' );
24
  define( 'myCRED_SLUG', 'mycred' );
25
  define( 'myCRED_NAME', '<strong>my</strong>CRED' );
26
 
47
  * @since 1.3
48
  * @version 1.0
49
  */
50
+ if ( ! class_exists( 'myCRED_Core' ) ) :
51
  final class myCRED_Core {
52
 
53
  /**
56
  function __construct() {
57
  _deprecated_function( __CLASS__, '1.3', 'mycred_load()' );
58
  }
59
+
60
  }
61
+ endif;
62
 
63
  /**
64
  * Required
66
  * @version 1.2
67
  */
68
  if ( ! function_exists( 'mycred_load' ) ) :
69
+ function mycred_load() {
70
+
71
  // Check Network blocking
72
  if ( mycred_is_site_blocked() ) return;
73
 
85
 
86
  // Add-ons
87
  require_once myCRED_MODULES_DIR . 'mycred-module-addons.php';
88
+
89
  $addons = new myCRED_Addons_Module();
90
  $addons->load();
91
  $addons->run_addons();
115
  * @version 1.1.1
116
  */
117
  if ( ! function_exists( 'mycred_plugin_activation' ) ) :
118
+ function mycred_plugin_activation() {
119
+
120
  // Load Installer
121
  require_once myCRED_INCLUDES_DIR . 'mycred-install.php';
122
  $install = new myCRED_Install();
140
  * @version 1.0
141
  */
142
  if ( ! function_exists( 'mycred_plugin_deactivation' ) ) :
143
+ function mycred_plugin_deactivation() {
144
+
145
  // Clear Cron
146
  wp_clear_scheduled_hook( 'mycred_reset_key' );
147
  wp_clear_scheduled_hook( 'mycred_banking_recurring_payout' );
149
  wp_clear_scheduled_hook( 'mycred_banking_interest_payout' );
150
 
151
  do_action( 'mycred_deactivation' );
152
+
153
  }
154
  endif;
155
 
159
  * @version 1.0
160
  */
161
  if ( ! function_exists( 'mycred_plugin_uninstall' ) ) :
162
+ function mycred_plugin_uninstall() {
163
+
164
  // Load Installer
165
  require_once myCRED_INCLUDES_DIR . 'mycred-install.php';
166
  $install = new myCRED_Install();
172
 
173
  do_action( 'mycred_after_deletion', $install );
174
  unset( $install );
175
+
176
  }
177
  endif;
178
 
182
  * @version 1.6
183
  */
184
  if ( ! function_exists( 'mycred_plugin_start_up' ) ) :
185
+ function mycred_plugin_start_up() {
186
+
187
  global $mycred, $mycred_types, $mycred_modules;
 
188
 
189
+ $mycred = new myCRED_Settings();
190
  $mycred_types = mycred_get_types();
191
 
192
  require_once myCRED_INCLUDES_DIR . 'mycred-shortcodes.php';
214
 
215
  // Load Settings
216
  require_once myCRED_MODULES_DIR . 'mycred-module-settings.php';
217
+
218
  foreach ( $mycred_types as $type => $title ) {
219
  $mycred_modules[ $type ]['settings'] = new myCRED_Settings_Module( $type );
220
  $mycred_modules[ $type ]['settings']->load();
280
 
281
  // Load hooks
282
  require_once myCRED_MODULES_DIR . 'mycred-module-hooks.php';
283
+
284
  foreach ( $mycred_types as $type => $title ) {
285
  $mycred_modules[ $type ]['hooks'] = new myCRED_Hooks_Module( $type );
286
  $mycred_modules[ $type ]['hooks']->load();
288
 
289
  // Load log
290
  require_once myCRED_MODULES_DIR . 'mycred-module-log.php';
291
+
292
  foreach ( $mycred_types as $type => $title ) {
293
  $mycred_modules[ $type ]['log'] = new myCRED_Log_Module( $type );
294
  $mycred_modules[ $type ]['log']->load();
309
  $admin->load();
310
 
311
  do_action( 'mycred_pre_init' );
312
+
313
  }
314
  endif;
315
 
319
  * @version 1.3.1
320
  */
321
  if ( ! function_exists( 'mycred_init' ) ) :
322
+ function mycred_init() {
323
+
324
  // Add Cron Schedule
325
  if ( ! wp_next_scheduled( 'mycred_reset_key' ) )
326
  wp_schedule_event( date_i18n( 'U' ), apply_filters( 'mycred_cron_reset_key', 'daily' ), 'mycred_reset_key' );
359
 
360
  // Let others play
361
  do_action( 'mycred_init' );
362
+
363
  }
364
  endif;
365
 
369
  * @version 1.1
370
  */
371
  if ( ! function_exists( 'mycred_widgets_init' ) ) :
372
+ function mycred_widgets_init() {
373
+
374
  // Register Widgets
375
  register_widget( 'myCRED_Widget_Balance' );
376
  register_widget( 'myCRED_Widget_Leaderboard' );
381
 
382
  // Let others play
383
  do_action( 'mycred_widgets_init' );
384
+
385
  }
386
  endif;
387
 
391
  * @version 1.3
392
  */
393
  if ( ! function_exists( 'mycred_admin_init' ) ) :
394
+ function mycred_admin_init() {
395
+
396
  // Run update if needed
397
  $mycred_version = get_option( 'mycred_version', myCRED_VERSION );
398
  if ( $mycred_version != myCRED_VERSION )
413
 
414
  delete_transient( '_mycred_activation_redirect' );
415
 
416
+ wp_safe_redirect( add_query_arg( array( 'page' => 'mycred' ), admin_url( 'index.php' ) ) );
 
417
  die;
418
+
419
  }
420
  endif;
421
 
425
  * @version 1.1
426
  */
427
  if ( ! function_exists( 'mycred_admin_head' ) ) :
428
+ function mycred_admin_head() {
429
+
430
  remove_submenu_page( 'index.php', 'mycred' );
431
  remove_submenu_page( 'index.php', 'mycred-credit' );
432
  remove_submenu_page( 'users.php', 'mycred-edit-balance' );
433
+
434
  }
435
  endif;
436
 
440
  * @version 1.4.2
441
  */
442
  if ( ! function_exists( 'mycred_hook_into_toolbar' ) ) :
443
+ function mycred_hook_into_toolbar( $wp_admin_bar ) {
444
+
445
  if ( ! is_user_logged_in() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) return;
446
 
447
  $user_id = get_current_user_id();
536
 
537
  // Let others play
538
  do_action( 'mycred_tool_bar', $wp_admin_bar, $mycred );
539
+
540
  }
541
  endif;
542
 
547
  * @version 1.2
548
  */
549
  if ( ! function_exists( 'mycred_admin_menu' ) ) :
550
+ function mycred_admin_menu() {
551
+
552
  $mycred = mycred();
553
+ $name = mycred_label( true );
554
 
555
  global $mycred_types, $wp_version;
556
 
600
 
601
  // Let others play
602
  do_action( 'mycred_add_menu', $mycred );
603
+
604
  }
605
  endif;
606
 
611
  * @version 1.0
612
  */
613
  if ( ! function_exists( 'mycred_enqueue_front' ) ) :
614
+ function mycred_enqueue_front() {
615
+
616
  global $mycred_sending_points;
617
 
618
  // Send Points Shortcode
638
 
639
  // Let others play
640
  do_action( 'mycred_front_enqueue' );
641
+
642
  }
643
  endif;
644
 
648
  * @version 1.2.1
649
  */
650
  if ( ! function_exists( 'mycred_enqueue_admin' ) ) :
651
+ function mycred_enqueue_admin() {
652
+
653
  $mycred = mycred();
654
+
655
  // General Admin Script
656
  wp_register_script(
657
  'mycred-admin',
701
  'working' => esc_attr__( 'Processing...', 'mycred' )
702
  )
703
  );
704
+
705
  // Log Edit Script
706
  wp_register_script(
707
  'mycred-edit-log',
736
  myCRED_VERSION . '.1',
737
  'all'
738
  );
739
+
740
  wp_register_style(
741
  'mycred-inline-edit',
742
  plugins_url( 'assets/css/inline-edit.css', myCRED_THIS ),
747
 
748
  // Let others play
749
  do_action( 'mycred_admin_enqueue' );
750
+
751
  }
752
  endif;
753
 
757
  * @version 1.0
758
  */
759
  if ( ! function_exists( 'mycred_admin_page_styles' ) ) :
760
+ function mycred_admin_page_styles() {
761
+
762
  wp_enqueue_style( 'mycred-admin' );
763
+
764
  }
765
  endif;
766
 
770
  * @version 1.1
771
  */
772
  if ( ! function_exists( 'mycred_plugin_links' ) ) :
773
+ function mycred_plugin_links( $actions, $plugin_file, $plugin_data, $context ) {
774
+
775
  if ( mycred_is_site_blocked() ) return $actions;
776
 
777
  // Link to Setup
782
 
783
  ksort( $actions );
784
  return $actions;
785
+
786
  }
787
  endif;
788
 
792
  * @version 1.1
793
  */
794
  if ( ! function_exists( 'mycred_plugin_description_links' ) ) :
795
+ function mycred_plugin_description_links( $links, $file ) {
796
+
797
  if ( $file != plugin_basename( myCRED_THIS ) ) return $links;
798
+
799
  // Link to Setup
800
  if ( ! is_mycred_ready() ) {
801
  $links[] = '<a href="' . admin_url( 'plugins.php?page=myCRED-setup' ) . '">' . __( 'Setup', 'mycred' ) . '</a>';
808
  $links[] = '<a href="http://mycred.me/store/" target="_blank">Store</a>';
809
 
810
  return $links;
811
+
812
  }
813
  endif;
814
 
820
  */
821
  if ( ! function_exists( 'mycred_update_warning' ) ) :
822
  function mycred_update_warning() {
823
+
824
  echo '<div style="color:#cc0000;">' . __( 'Make sure to backup your database and files before updating, in case anything goes wrong!', 'mycred' ) . '</div>';
825
+
826
  }
827
  endif;
828
 
832
  * @version 1.1
833
  */
834
  if ( ! function_exists( 'mycred_reset_key' ) ) :
835
+ function mycred_reset_key() {
836
+
837
  $protect = mycred_protect();
838
  if ( $protect !== false )
839
  $protect->reset_key();
840
+
841
  }
842
  endif;
plugins/mycred-hook-sharethis.php CHANGED
@@ -1,149 +1,170 @@
1
  <?php
 
2
 
3
  /**
4
  * Share This Plugin
5
  * @since 1.5
 
 
 
 
 
 
6
  * @version 1.0
7
  */
8
- if ( defined( 'myCRED_VERSION' ) ) {
9
-
10
- /**
11
- * Register Hook
12
- * @since 1.5
13
- * @version 1.0
14
- */
15
- add_filter( 'mycred_setup_hooks', 'sharethis_myCRED_Hook' );
16
- function sharethis_myCRED_Hook( $installed ) {
17
- $installed['sharethis'] = array(
18
- 'title' => __( '%plural% for Sharing', 'mycred' ),
19
- 'description' => __( 'Awards %_plural% for users sharing / liking your website content to popular social media sites.', 'mycred' ),
20
- 'callback' => array( 'myCRED_ShareThis' )
21
- );
22
- return $installed;
23
- }
24
 
25
- /**
26
- * Parse ShareThis Tags
27
- * @since 1.5
28
- * @version 1.0
29
- */
30
- add_filter( 'mycred_parse_log_entry', 'mycred_parse_sharethis_tags', 10, 2 );
31
- function mycred_parse_sharethis_tags( $content, $log ) {
32
- // Only applicable to this hook
33
- if ( $log->ref != 'share' ) return $content;
34
-
35
- $data = maybe_unserialize( $log->data );
36
- $names = mycred_get_share_service_names();
37
-
38
- if ( isset( $names[ $data['service'] ] ) )
39
- $service = $names[ $data['service'] ];
40
- else
41
- $service = ucfirst( $data['service'] );
42
-
43
- $content = str_replace( '%service%', $service, $content );
44
- return $content;
45
- }
46
 
47
- /**
48
- * Get ShareThis Service Names
49
- * @since 1.5
50
- * @version 1.0
51
- */
52
- function mycred_get_share_service_names() {
53
- return apply_filters( 'mycred_get_sharethis_service_name', array(
54
- 'facebook' => 'Facebook',
55
- 'fblike' => 'Facebook Like',
56
- 'fbunlike' => 'Facebook Unlike',
57
- 'fbsub' => 'Facebook Subscribe',
58
- 'fbsend' => 'Facebook Send',
59
- 'fbrec' => 'Facebook Recommend',
60
- 'wordpress' => 'WordPress',
61
- 'google_bmarks' => 'Google Bookmarks',
62
- 'youtube' => 'YouTube',
63
- 'twitterfollow' => 'Twitter Follow',
64
- 'pinterestfollow' => 'Pinterest Follow',
65
- 'plusone' => 'Google +1',
66
- 'instagram' => 'Instagram Badge',
67
- 'foursquarefollow' => 'Foursquare Follow',
68
- 'foursquaresave' => 'Foursquare Save',
69
- 'blogger' => 'Blogger',
70
- 'twitter' => 'Tweet',
71
- 'linkedin' => 'LinkedIn',
72
- 'pinterest' => 'Pinterest',
73
- 'email' => 'Email',
74
- 'googleplus' => 'Google+',
75
- 'amazon_wishlist' => 'Amazon Wishlist',
76
- 'bebo' => 'Bebo',
77
- 'delicious' => 'Delicious',
78
- 'myspace' => 'MySpace',
79
- 'reddit' => 'Reddit',
80
- 'slashdot' => 'Slashdot',
81
- 'tumblr' => 'Tumblr'
82
- ) );
83
- }
84
 
85
- /**
86
- * ShareThis Hook
87
- * @since 1.5
88
- * @version 1.0
89
- */
90
- if ( ! class_exists( 'myCRED_ShareThis' ) && class_exists( 'myCRED_Hook' ) ) {
91
- class myCRED_ShareThis extends myCRED_Hook {
92
-
93
- /**
94
- * Construct
95
- */
96
- function __construct( $hook_prefs, $type = 'mycred_default' ) {
97
- parent::__construct( array(
98
- 'id' => 'sharethis',
99
- 'defaults' => array()
100
- ), $hook_prefs, $type );
101
- }
102
 
103
- /**
104
- * Run
105
- * @since 1.5
106
- * @version 1.0
107
- */
108
- public function run() {
109
- add_action( 'wp_footer', array( $this, 'detect_shares' ), 80 );
110
 
111
- add_action( 'wp_ajax_mycred-share-this-' . $this->mycred_type, array( $this, 'ajax' ) );
112
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
 
114
- /**
115
- * Detect Shares
116
- * @since 1.5
117
- * @version 1.1
118
- */
119
- public function detect_shares() {
120
-
121
- if ( is_page() || is_single() ) {
122
-
123
- // Get post / page ID from outside the loop
124
- if ( ! in_the_loop() ) {
125
- if ( is_ssl() )
126
- $actual_link = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
127
- else
128
- $actual_link = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
129
- $post_id = url_to_postid( $actual_link );
130
- }
131
-
132
- // Get post / page ID from inside the loop
133
- else {
134
- global $post;
135
- $post_id = $post->ID;
136
- }
 
 
 
137
 
138
  ?>
139
- <script type="text/javascript">
140
  jQuery(function($) {
141
 
142
- stLight.options({ publisher : '<?php echo get_option( 'st_pubid' ); ?>' });
143
-
144
  function mycred_detect_share_<?php echo sanitize_key( $this->mycred_type ); ?>( event,service ) {
145
- //console.log( 'Event: ' + event );
146
- //console.log( 'Service: ' + service );
 
147
 
148
  $.ajax({
149
  type : "POST",
@@ -159,116 +180,119 @@ jQuery(function($) {
159
  console.log( response );
160
  }
161
  });
162
- }
163
-
 
 
164
  stLight.subscribe( 'click', mycred_detect_share_<?php echo sanitize_key( $this->mycred_type ); ?> );
165
 
166
  });
167
  </script>
168
  <?php
169
- }
170
 
171
  }
172
 
173
- /**
174
- * Ajax Handler
175
- * @since 1.5
176
- * @version 1.0
177
- */
178
- public function ajax() {
179
 
180
- check_ajax_referer( 'mycred-share-this' . $this->mycred_type, 'token' );
 
 
 
 
 
181
 
182
- if ( ! isset( $_POST['post_id'] ) || ! isset( $_POST['via'] ) ) wp_send_json( 'ERROR' );
183
 
184
- $post_id = absint( $_POST['post_id'] );
185
- $service = sanitize_key( $_POST['via'] );
186
- if ( $service == 'sharethis' ) wp_send_json( '' );
187
 
188
- // Make sure this instance is enabled
189
- if ( ! isset( $this->prefs[ $service ] ) || $this->prefs[ $service ]['creds'] == 0 ) wp_send_json( '' );
 
190
 
191
- $user_id = get_current_user_id();
 
192
 
193
- // Check for exclusion
194
- if ( $this->core->exclude_user( $user_id ) ) wp_send_json( '' );
195
 
196
- // Make sure this share is unique
197
- $data = array( 'ref_type' => 'post', 'service' => $service );
198
- if ( $this->core->has_entry( 'share', $post_id, $user_id, $data, $this->mycred_type ) ) wp_send_json( 'HAS ENTRY' );
199
 
200
- // Limit
201
- if ( $this->over_hook_limit( $service, 'share' ) ) wp_send_json( 'LIMIT' );
 
202
 
203
- // Execute
204
- $this->core->add_creds(
205
- 'share',
206
- $user_id,
207
- $this->prefs[ $service ]['creds'],
208
- $this->prefs[ $service ]['log'],
209
- $post_id,
210
- $data,
211
- $this->mycred_type
212
- );
213
-
214
- wp_send_json( 'DONE' );
215
 
216
- }
 
 
 
 
 
 
 
 
 
217
 
218
- /**
219
- * Preferences for ShareThis Hook
220
- * @since 0.1
221
- * @version 1.1
222
- */
223
- public function preferences() {
224
- $prefs = $this->prefs;
225
-
226
- $st_public_key = get_option( 'st_pubid', false );
227
- $st_services = get_option( 'st_services', false );
228
 
229
- // Public key is not yet setup
230
- if ( $st_public_key === false ) :
231
-
232
- echo '<p>' . __( 'Your ShareThis public key is not set.', 'mycred' ) . '</p>';
233
 
234
- // Services is not yet setup
235
- elseif ( $st_services === false ) :
 
 
 
 
236
 
237
- echo '<p>' . __( 'No ShareThis services detected. Please check your installation.', 'mycred' ) . '</p>';
238
 
239
- // All is well!
240
- else :
241
 
242
- $names = mycred_get_share_service_names();
 
243
 
244
- // Loop though selected services
245
- $services = explode( ',', $st_services );
246
 
247
- // Add facebook unlike to facebook like.
248
- if ( in_array( 'fblike', $services ) )
249
- $services[] = 'fbunlike';
250
 
251
- foreach ( $services as $service ) {
252
- $service = str_replace( ' ', '', $service );
253
- if ( $service == '' || $service == 'sharethis' ) continue;
254
 
255
- if ( ! isset( $this->prefs[ $service ] ) )
256
- $this->prefs[ $service ] = array(
257
- 'creds' => 0,
258
- 'log' => '%plural% for sharing %link_with_title% on %service%',
259
- 'limit' => '0/x'
260
- );
261
 
262
- if ( ! isset( $this->prefs[ $service ]['limit'] ) )
263
- $this->prefs[ $service ]['limit'] = '0/x';
264
 
265
- if ( isset( $names[ $service ] ) )
266
- $service_name = $names[ $service ];
267
- else
268
- $service_name = ucfirst( $service );
269
 
270
- ?>
 
 
271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  <label for="<?php echo $this->field_id( array( $service, 'creds' ) ); ?>" class="subheader"><?php echo $service_name; ?></label>
273
  <ol>
274
  <li>
@@ -286,44 +310,46 @@ jQuery(function($) {
286
  </li>
287
  </ol>
288
  <?php
289
- }
290
 
291
- endif;
292
- }
293
-
294
- /**
295
- * Sanitise Preferences
296
- * @since 1.6
297
- * @version 1.0.1
298
- */
299
- function sanitise_preferences( $data ) {
300
 
301
- $st_services = get_option( 'st_services', false );
302
 
303
- // Loop though selected services
304
- $services = explode( ',', $st_services );
 
 
 
 
305
 
306
- // Add facebook unlike to facebook like.
307
- if ( in_array( 'fblike', $services ) )
308
- $services[] = 'fbunlike';
309
 
310
- foreach ( $services as $service ) {
311
- $service = str_replace( ' ', '', $service );
312
 
313
- if ( isset( $data[ $service ]['limit'] ) && isset( $data[ $service ]['limit_by'] ) ) {
314
- $limit = sanitize_text_field( $data[ $service ]['limit'] );
315
- if ( $limit == '' ) $limit = 0;
316
- $data[ $service ]['limit'] = $limit . '/' . $data[ $service ]['limit_by'];
317
- unset( $data[ $service ]['limit_by'] );
318
- }
319
 
320
- }
 
321
 
322
- return $data;
 
 
 
 
 
323
 
324
  }
 
 
 
325
  }
 
326
  }
327
- }
 
328
 
329
  ?>
1
  <?php
2
+ if ( ! defined( 'myCRED_VERSION' ) ) exit;
3
 
4
  /**
5
  * Share This Plugin
6
  * @since 1.5
7
+ * @version 1.0.1
8
+ */
9
+
10
+ /**
11
+ * Register Hook
12
+ * @since 1.5
13
  * @version 1.0
14
  */
15
+ add_filter( 'mycred_setup_hooks', 'sharethis_myCRED_Hook' );
16
+ function sharethis_myCRED_Hook( $installed ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ $installed['sharethis'] = array(
19
+ 'title' => __( '%plural% for Sharing', 'mycred' ),
20
+ 'description' => __( 'Awards %_plural% for users sharing / liking your website content to popular social media sites.', 'mycred' ),
21
+ 'callback' => array( 'myCRED_ShareThis' )
22
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
+ return $installed;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
+ }
27
+
28
+ /**
29
+ * Parse ShareThis Tags
30
+ * @since 1.5
31
+ * @version 1.0
32
+ */
33
+ add_filter( 'mycred_parse_log_entry', 'mycred_parse_sharethis_tags', 10, 2 );
34
+ function mycred_parse_sharethis_tags( $content, $log ) {
 
 
 
 
 
 
 
 
35
 
36
+ // Only applicable to this hook
37
+ if ( $log->ref != 'share' ) return $content;
 
 
 
 
 
38
 
39
+ $data = maybe_unserialize( $log->data );
40
+ $names = mycred_get_share_service_names();
41
+
42
+ if ( isset( $names[ $data['service'] ] ) )
43
+ $service = $names[ $data['service'] ];
44
+ else
45
+ $service = ucfirst( $data['service'] );
46
+
47
+ $content = str_replace( '%service%', $service, $content );
48
+
49
+ return $content;
50
+
51
+ }
52
+
53
+ /**
54
+ * Get ShareThis Service Names
55
+ * @since 1.5
56
+ * @version 1.0
57
+ */
58
+ function mycred_get_share_service_names() {
59
+
60
+ return apply_filters( 'mycred_get_sharethis_service_name', array(
61
+ 'facebook' => 'Facebook',
62
+ 'fblike' => 'Facebook Like',
63
+ 'fbunlike' => 'Facebook Unlike',
64
+ 'fbsub' => 'Facebook Subscribe',
65
+ 'fbsend' => 'Facebook Send',
66
+ 'fbrec' => 'Facebook Recommend',
67
+ 'wordpress' => 'WordPress',
68
+ 'google_bmarks' => 'Google Bookmarks',
69
+ 'youtube' => 'YouTube',
70
+ 'twitterfollow' => 'Twitter Follow',
71
+ 'pinterestfollow' => 'Pinterest Follow',
72
+ 'plusone' => 'Google +1',
73
+ 'instagram' => 'Instagram Badge',
74
+ 'foursquarefollow' => 'Foursquare Follow',
75
+ 'foursquaresave' => 'Foursquare Save',
76
+ 'blogger' => 'Blogger',
77
+ 'twitter' => 'Tweet',
78
+ 'linkedin' => 'LinkedIn',
79
+ 'pinterest' => 'Pinterest',
80
+ 'email' => 'Email',
81
+ 'googleplus' => 'Google+',
82
+ 'amazon_wishlist' => 'Amazon Wishlist',
83
+ 'bebo' => 'Bebo',
84
+ 'delicious' => 'Delicious',
85
+ 'myspace' => 'MySpace',
86
+ 'reddit' => 'Reddit',
87
+ 'slashdot' => 'Slashdot',
88
+ 'tumblr' => 'Tumblr'
89
+ ) );
90
+
91
+ }
92
+
93
+ /**
94
+ * ShareThis Hook
95
+ * @since 1.5
96
+ * @version 1.0
97
+ */
98
+ if ( ! class_exists( 'myCRED_ShareThis' ) && class_exists( 'myCRED_Hook' ) ) :
99
+
100
+ class myCRED_ShareThis extends myCRED_Hook {
101
+
102
+ /**
103
+ * Construct
104
+ */
105
+ function __construct( $hook_prefs, $type = 'mycred_default' ) {
106
+
107
+ parent::__construct( array(
108
+ 'id' => 'sharethis',
109
+ 'defaults' => array()
110
+ ), $hook_prefs, $type );
111
+
112
+ }
113
+
114
+ /**
115
+ * Run
116
+ * @since 1.5
117
+ * @version 1.0
118
+ */
119
+ public function run() {
120
+
121
+ add_action( 'wp_footer', array( $this, 'detect_shares' ), 80 );
122
+ add_action( 'wp_ajax_mycred-share-this-' . $this->mycred_type, array( $this, 'ajax' ) );
123
+
124
+ }
125
+
126
+ /**
127
+ * Detect Shares
128
+ * @since 1.5
129
+ * @version 1.2
130
+ */
131
+ public function detect_shares() {
132
 
133
+ if ( ! is_user_logged_in() ) return;
134
+
135
+ if ( is_singular() && apply_filters( 'mycred_load_share_this', true, $this ) ) {
136
+
137
+ // Get post / page ID from outside the loop
138
+ if ( ! in_the_loop() ) {
139
+
140
+ if ( is_ssl() )
141
+ $actual_link = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
142
+ else
143
+ $actual_link = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
144
+
145
+ $post_id = url_to_postid( $actual_link );
146
+
147
+ }
148
+
149
+ // Get post / page ID from inside the loop
150
+ else {
151
+
152
+ global $post;
153
+
154
+ $post_id = $post->ID;
155
+
156
+ }
157
+
158
+ $post_id = apply_filters( 'mycred_shared_post_id', $post_id, $this );
159
 
160
  ?>
161
+ <script type="text/javascript">
162
  jQuery(function($) {
163
 
 
 
164
  function mycred_detect_share_<?php echo sanitize_key( $this->mycred_type ); ?>( event,service ) {
165
+
166
+ console.log( 'Event: ' + event );
167
+ console.log( 'Service: ' + service );
168
 
169
  $.ajax({
170
  type : "POST",
180
  console.log( response );
181
  }
182
  });
183
+
184
+ };
185
+
186
+ stLight.options({ publisher : '<?php echo get_option( 'st_pubid' ); ?>' });
187
  stLight.subscribe( 'click', mycred_detect_share_<?php echo sanitize_key( $this->mycred_type ); ?> );
188
 
189
  });
190
  </script>
191
  <?php
 
192
 
193
  }
194
 
195
+ }
 
 
 
 
 
196
 
197
+ /**
198
+ * Ajax Handler
199
+ * @since 1.5
200
+ * @version 1.0
201
+ */
202
+ public function ajax() {
203
 
204
+ check_ajax_referer( 'mycred-share-this' . $this->mycred_type, 'token' );
205
 
206
+ if ( ! isset( $_POST['post_id'] ) || ! isset( $_POST['via'] ) ) wp_send_json( 'ERROR' );
 
 
207
 
208
+ $post_id = absint( $_POST['post_id'] );
209
+ $service = sanitize_key( $_POST['via'] );
210
+ if ( $service == 'sharethis' ) wp_send_json( '' );
211
 
212
+ // Make sure this instance is enabled
213
+ if ( ! isset( $this->prefs[ $service ] ) || $this->prefs[ $service ]['creds'] == 0 ) wp_send_json( '' );
214
 
215
+ $user_id = get_current_user_id();
 
216
 
217
+ // Check for exclusion
218
+ if ( $this->core->exclude_user( $user_id ) ) wp_send_json( '' );
 
219
 
220
+ // Make sure this share is unique
221
+ $data = array( 'ref_type' => 'post', 'service' => $service );
222
+ if ( $this->core->has_entry( 'share', $post_id, $user_id, $data, $this->mycred_type ) ) wp_send_json( 'HAS ENTRY' );
223
 
224
+ // Limit
225
+ if ( $this->over_hook_limit( $service, 'share' ) ) wp_send_json( 'LIMIT' );
 
 
 
 
 
 
 
 
 
 
226
 
227
+ // Execute
228
+ $this->core->add_creds(
229
+ 'share',
230
+ $user_id,
231
+ $this->prefs[ $service ]['creds'],
232
+ $this->prefs[ $service ]['log'],
233
+ $post_id,
234
+ $data,
235
+ $this->mycred_type
236
+ );
237
 
238
+ wp_send_json( 'DONE' );
 
 
 
 
 
 
 
 
 
239
 
240
+ }
 
 
 
241
 
242
+ /**
243
+ * Preferences for ShareThis Hook
244
+ * @since 0.1
245
+ * @version 1.1
246
+ */
247
+ public function preferences() {
248
 
249
+ $prefs = $this->prefs;
250
 
251
+ $st_public_key = get_option( 'st_pubid', false );
252
+ $st_services = get_option( 'st_services', false );
253
 
254
+ // Public key is not yet setup
255
+ if ( $st_public_key === false ) :
256
 
257
+ echo '<p>' . __( 'Your ShareThis public key is not set.', 'mycred' ) . '</p>';
 
258
 
259
+ // Services is not yet setup
260
+ elseif ( $st_services === false ) :
 
261
 
262
+ echo '<p>' . __( 'No ShareThis services detected. Please check your installation.', 'mycred' ) . '</p>';
 
 
263
 
264
+ // All is well!
265
+ else :
 
 
 
 
266
 
267
+ $names = mycred_get_share_service_names();
 
268
 
269
+ // Loop though selected services
270
+ $services = explode( ',', $st_services );
 
 
271
 
272
+ // Add facebook unlike to facebook like.
273
+ if ( in_array( 'fblike', $services ) )
274
+ $services[] = 'fbunlike';
275
 
276
+ foreach ( $services as $service ) {
277
+ $service = str_replace( ' ', '', $service );
278
+ if ( $service == '' || $service == 'sharethis' ) continue;
279
+
280
+ if ( ! isset( $this->prefs[ $service ] ) )
281
+ $this->prefs[ $service ] = array(
282
+ 'creds' => 0,
283
+ 'log' => '%plural% for sharing %link_with_title% on %service%',
284
+ 'limit' => '0/x'
285
+ );
286
+
287
+ if ( ! isset( $this->prefs[ $service ]['limit'] ) )
288
+ $this->prefs[ $service ]['limit'] = '0/x';
289
+
290
+ if ( isset( $names[ $service ] ) )
291
+ $service_name = $names[ $service ];
292
+ else
293
+ $service_name = ucfirst( $service );
294
+
295
+ ?>
296
  <label for="<?php echo $this->field_id( array( $service, 'creds' ) ); ?>" class="subheader"><?php echo $service_name; ?></label>
297
  <ol>
298
  <li>
310
  </li>
311
  </ol>
312
  <?php
313
+ }
314
 
315
+ endif;
 
 
 
 
 
 
 
 
316
 
317
+ }
318
 
319
+ /**
320
+ * Sanitise Preferences
321
+ * @since 1.6
322
+ * @version 1.0.1
323
+ */
324
+ function sanitise_preferences( $data ) {
325
 
326
+ $st_services = get_option( 'st_services', false );
 
 
327
 
328
+ // Loop though selected services
329
+ $services = explode( ',', $st_services );
330
 
331
+ // Add facebook unlike to facebook like.
332
+ if ( in_array( 'fblike', $services ) )
333
+ $services[] = 'fbunlike';
 
 
 
334
 
335
+ foreach ( $services as $service ) {
336
+ $service = str_replace( ' ', '', $service );
337
 
338
+ if ( isset( $data[ $service ]['limit'] ) && isset( $data[ $service ]['limit_by'] ) ) {
339
+ $limit = sanitize_text_field( $data[ $service ]['limit'] );
340
+ if ( $limit == '' ) $limit = 0;
341
+ $data[ $service ]['limit'] = $limit . '/' . $data[ $service ]['limit_by'];
342
+ unset( $data[ $service ]['limit_by'] );
343
+ }
344
 
345
  }
346
+
347
+ return $data;
348
+
349
  }
350
+
351
  }
352
+
353
+ endif;
354
 
355
  ?>
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.1
6
- Stable tag: 1.6.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -106,8 +106,8 @@ myCRED supports importing, exporting, inline editing and manual deletion of log
106
 
107
  == Upgrade Notice ==
108
 
109
- = 1.6.3 =
110
- Translation updates with proper escaping, adjusted log module, badge module and buyCRED module.
111
 
112
 
113
  == Other Notes ==
@@ -126,27 +126,18 @@ Translation updates with proper escaping, adjusted log module, badge module and
126
  * Russian - Skladchik
127
  * Chinese - suifengtec [Website](http://coolwp.com)
128
  * Portuguese (Brazil) - Guilherme
 
129
 
130
 
131
  == Changelog ==
132
 
133
- = 1.6.3 =
134
- FIX - Coupons min- or max- requirement is not enforced.
135
- FIX - mycred_my_badges shortcode is using a bad loop.
136
- FIX - WooCommerce refunds fails when refunding an order paid with points.
137
- FIX - Banking add-ons recurring payout service is using a bad SQL query when decimals are used.
138
- FIX - Fixed error in mycred_hook_table shortcode when looping through hooks.
139
- FIX - Fixed bad logic for mycred_translate_limit_code.
140
- FIX - over_hook_limit() should also take into account the point type.
141
- FIX - Added missing table cell classes for order display function in buyCRED.
142
- TWEAK - Adjusted exclude_user() to always handle a user ID even if nothing is passed to the function.
143
- TWEAK - Cleaned up the affiliate hook and replaced the built in hook limit with the new 1.6 system.
144
- TWEAK - Wrapped myCRED scripts in anonymous functions.
145
- TWEAK - Improved the transfer.js script.
146
- TWEAK - Added <br> element to allowed html.
147
- UPDATE - Updated plugin credit page.
148
- NEW - Added new mycred_my_badge filter to adjust how each badge is presented when viewing a users earned badges.
149
- NEW - Query Log class now also accepts username/login/email filtering instead of just ID.
150
 
151
  = 1.6.2 =
152
  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.3.1
6
+ Stable tag: 1.6.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
106
 
107
  == Upgrade Notice ==
108
 
109
+ = 1.6.4 =
110
+ WP 4.3 compatibility update, clean up of code and Japanese language support.
111
 
112
 
113
  == Other Notes ==
126
  * Russian - Skladchik
127
  * Chinese - suifengtec [Website](http://coolwp.com)
128
  * Portuguese (Brazil) - Guilherme
129
+ * Japanese - Mochizuki Hiroshi
130
 
131
 
132
  == Changelog ==
133
 
134
+ = 1.6.4 =
135
+ UPDATE - Minor adjustment to the admin log pages visual structure.
136
+ UPDATE - Adjusted widget constructors for 4.3 compatibility.
137
+ NEW - Added Japanese translation.
138
+
139
+ = 1.6.3 =
140
+ http://mycred.me/support/changelog/
 
 
 
 
 
 
 
 
 
 
141
 
142
  = 1.6.2 =
143
  http://mycred.me/support/changelog/