myCRED - Version 1.8.11

Version Description

Zombaio payment gateway is no longer available and completely removed in this update.

=

Download this release

Release Info

Developer wpexpertsio
Plugin Icon 128x128 myCRED
Version 1.8.11
Comparing to
See all releases

Code changes from version 1.8.9 to 1.8.11

abstracts/mycred-abstract-module.php CHANGED
@@ -388,7 +388,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
388
 
389
  // In case we are using the Master Template feautre on multisites, and this is not the main
390
  // site in the network, bail.
391
- if ( mycred_override_settings() && ! mycred_is_main_site() ) return;
392
 
393
  // Minimum requirements
394
  if ( ! empty( $this->labels ) && ! empty( $this->screen_id ) ) {
388
 
389
  // In case we are using the Master Template feautre on multisites, and this is not the main
390
  // site in the network, bail.
391
+ if ( $this->module_id != 'myCRED_Log_Module' && mycred_override_settings() && ! mycred_is_main_site() ) return;
392
 
393
  // Minimum requirements
394
  if ( ! empty( $this->labels ) && ! empty( $this->screen_id ) ) {
addons/badges/assets/js/edit-badge.js CHANGED
@@ -5,6 +5,7 @@ jQuery(function($){
5
  var AddNewLevelButton = $( '#badges-add-new-level' );
6
  var AddNewRequirementButton = $( '#badges-add-new-requirement' );
7
  var ChangeDefaultImageButton = $( '#badges-change-default-image' );
 
8
 
9
  var TotalBadgeLevels = 1;
10
  var TotalRequirements = 1;
@@ -530,6 +531,8 @@ jQuery(function($){
530
  $( '#mycred-badge-default .default-image-wrapper' ).empty().removeClass( 'empty dashicons' ).html( '<img src="' + attachment.url + '" alt="Badge default image" \/><input type="hidden" name="mycred_badge[main_image]" value="' + attachment.id + '" \/><input type="hidden" name="mycred_badge[main_image_url]" value="" \/>' ).fadeIn();
531
  button.text( myCREDBadge.changeimage );
532
 
 
 
533
  });
534
 
535
  }
@@ -564,6 +567,16 @@ jQuery(function($){
564
  }
565
  });
566
 
 
 
 
 
 
 
 
 
 
 
567
  });
568
 
569
  });
5
  var AddNewLevelButton = $( '#badges-add-new-level' );
6
  var AddNewRequirementButton = $( '#badges-add-new-requirement' );
7
  var ChangeDefaultImageButton = $( '#badges-change-default-image' );
8
+ var RemoveDefaultImageButton = $( '#badges-remove-default-image' );
9
 
10
  var TotalBadgeLevels = 1;
11
  var TotalRequirements = 1;
531
  $( '#mycred-badge-default .default-image-wrapper' ).empty().removeClass( 'empty dashicons' ).html( '<img src="' + attachment.url + '" alt="Badge default image" \/><input type="hidden" name="mycred_badge[main_image]" value="' + attachment.id + '" \/><input type="hidden" name="mycred_badge[main_image_url]" value="" \/>' ).fadeIn();
532
  button.text( myCREDBadge.changeimage );
533
 
534
+ RemoveDefaultImageButton.removeClass('hidden');
535
+
536
  });
537
 
538
  }
567
  }
568
  });
569
 
570
+ RemoveDefaultImageButton.on( 'click', function(e){
571
+
572
+ $('.default-image-wrapper input').val('');
573
+ $('.default-image-wrapper img').remove();
574
+ $('.default-image-wrapper').addClass('empty').addClass('dashicons');
575
+ ChangeDefaultImageButton.text( myCREDBadge.setimage );
576
+ $(this).addClass('hidden');
577
+
578
+ });
579
+
580
  });
581
 
582
  });
addons/badges/includes/mycred-badge-secondary.php CHANGED
@@ -60,7 +60,7 @@ if ( ! class_exists( 'myCRED_Badge_Secondary' ) ) :
60
  $gravityforms = RGFormsModel::get_forms();
61
  $form_list = '<option>Any</option>';
62
  foreach ($gravityforms as $form) {
63
- $form_list .= '<option value="'.$form->id.'" '.( $requirement['specific'] == $form->id ? ' selected="selected"' : '').' >'.$form->title.'</option>';
64
  }
65
  $data = '<div class="form-group"><select name="mycred_badge[levels]['.$level.'][requires]['.$requirement_id.'][specific]" class="form-control specific" data-row="'.$requirement_id.'" >'.$form_list.'</select></div>';
66
  }
@@ -81,7 +81,7 @@ if ( ! class_exists( 'myCRED_Badge_Secondary' ) ) :
81
  $gravityforms = RGFormsModel::get_forms();
82
  $form_list = '<option>Any</option>';
83
  foreach ( $gravityforms as $form ) {
84
- $form_list .= '<option value="'.$form->id.'">'.$form->title.'</option>';
85
  }
86
  $data = '<div class="form-group"><select name="{{element_name}}" class="form-control specific" data-row="{{reqlevel}}" >'.$form_list.'</select></div>';
87
  echo "var mycred_badge_gravity_form_submission = '".$data."';";
60
  $gravityforms = RGFormsModel::get_forms();
61
  $form_list = '<option>Any</option>';
62
  foreach ($gravityforms as $form) {
63
+ $form_list .= '<option value="'.$form->id.'" '.( $requirement['specific'] == $form->id ? ' selected="selected"' : '').' >'. htmlentities( $form->title, ENT_QUOTES ) .'</option>';
64
  }
65
  $data = '<div class="form-group"><select name="mycred_badge[levels]['.$level.'][requires]['.$requirement_id.'][specific]" class="form-control specific" data-row="'.$requirement_id.'" >'.$form_list.'</select></div>';
66
  }
81
  $gravityforms = RGFormsModel::get_forms();
82
  $form_list = '<option>Any</option>';
83
  foreach ( $gravityforms as $form ) {
84
+ $form_list .= '<option value="'.$form->id.'">'. htmlentities( $form->title, ENT_QUOTES ) .'</option>';
85
  }
86
  $data = '<div class="form-group"><select name="{{element_name}}" class="form-control specific" data-row="{{reqlevel}}" >'.$form_list.'</select></div>';
87
  echo "var mycred_badge_gravity_form_submission = '".$data."';";
addons/badges/myCRED-addon-badges.php CHANGED
@@ -806,6 +806,7 @@ jQuery(function($) {
806
  </div>
807
  <div class="level-image-actions">
808
  <button type="button" class="button button-secondary" id="badges-change-default-image" data-do="<?php if ( $default_image == '' ) echo 'set'; else echo 'change'; ?>"><?php if ( $default_image == '' ) _e( 'Set Image', 'mycred' ); else _e( 'Change Image', 'mycred' ); ?></button>
 
809
  </div>
810
  </div>
811
  <span class="description"><?php _e( 'Optional image to show when a user has not earned this badge.', 'mycred' ); ?></span>
806
  </div>
807
  <div class="level-image-actions">
808
  <button type="button" class="button button-secondary" id="badges-change-default-image" data-do="<?php if ( $default_image == '' ) echo 'set'; else echo 'change'; ?>"><?php if ( $default_image == '' ) _e( 'Set Image', 'mycred' ); else _e( 'Change Image', 'mycred' ); ?></button>
809
+ <button type="button" class="button button-secondary <?php echo ( ( ! $attachment ) ? 'hidden' : '' ); ?>" id="badges-remove-default-image"><?php _e( 'Remove Image', 'mycred' ); ?></button>
810
  </div>
811
  </div>
812
  <span class="description"><?php _e( 'Optional image to show when a user has not earned this badge.', 'mycred' ); ?></span>
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -434,7 +434,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) :
434
  $button = '<button type="button" id="checkout-action-button" data-act="toggle" data-value="' . esc_attr( $this->toggle_id ) . '" class="btn btn-default">' . esc_js( $button_label ) . '</button>';
435
 
436
  elseif ( ! empty( $this->redirect_to ) )
437
- $button = '<button type="button" id="checkout-action-button" data-act="redirect" data-value="' . $this->redirect_to . '" class="btn btn-default">' . esc_js( $button_label ) . '</button>';
438
 
439
  $button = apply_filters( 'mycred_buycred_checkout_button', $button, $this );
440
 
434
  $button = '<button type="button" id="checkout-action-button" data-act="toggle" data-value="' . esc_attr( $this->toggle_id ) . '" class="btn btn-default">' . esc_js( $button_label ) . '</button>';
435
 
436
  elseif ( ! empty( $this->redirect_to ) )
437
+ $button = '<button type="button" id="checkout-action-button" data-act="redirect" data-value="' . $this->redirect_to . '" class="btn btn-default '. $this->id .'">' . esc_js( $button_label ) . '</button>';
438
 
439
  $button = apply_filters( 'mycred_buycred_checkout_button', $button, $this );
440
 
addons/buy-creds/assets/css/checkout.css CHANGED
@@ -1,7 +1,7 @@
1
  #buycred-checkout-wrapper { display: none; }
2
  #buycred-checkout-wrapper.open { display: table; position: fixed; top: 0; left: 0; z-index: 999999; width: 100%; height: 100%; overflow: hidden; background-color: rgba(0,0,0,0.6); border: none; padding: 0; margin: 0; text-align: center; }
3
  #buycred-checkout-wrapper.open .checkout-inside { display: table-cell; vertical-align: middle; text-align: center; margin: 0 auto; }
4
- #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper { display: block; margin: 0 auto; text-align: left; width: 400px; border: 24px solid transparent; border-radius: 6px; padding: 0; background-color: rgba(0,0,0,0.2); }
5
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box { border-radius: 6px; }
6
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box .padded { background-color: white; padding: 12px; }
7
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box .warning { background-color: orange; color: white; padding: 12px; text-align: center; text-transform: uppercase; }
1
  #buycred-checkout-wrapper { display: none; }
2
  #buycred-checkout-wrapper.open { display: table; position: fixed; top: 0; left: 0; z-index: 999999; width: 100%; height: 100%; overflow: hidden; background-color: rgba(0,0,0,0.6); border: none; padding: 0; margin: 0; text-align: center; }
3
  #buycred-checkout-wrapper.open .checkout-inside { display: table-cell; vertical-align: middle; text-align: center; margin: 0 auto; }
4
+ #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper { display: block; margin: 0 auto; text-align: left; width: calc(100% - 52px); max-width: 400px; border: 24px solid transparent; border-radius: 6px; padding: 0; background-color: rgba(0,0,0,0.2); }
5
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box { border-radius: 6px; }
6
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box .padded { background-color: white; padding: 12px; }
7
  #buycred-checkout-wrapper.open .checkout-inside .checkout-wrapper #checkout-box .warning { background-color: orange; color: white; padding: 12px; text-align: center; text-transform: uppercase; }
addons/buy-creds/assets/js/checkout.js CHANGED
@@ -144,8 +144,13 @@ console.log( formdata );
144
 
145
  if ( buttontype == 'redirect' ) {
146
 
147
- pageform.attr( 'action', buttonvalue );
148
- pageform.submit();
 
 
 
 
 
149
 
150
  $(this).attr( 'disabled', 'disabled' ).html( buyCRED.redirecting );
151
 
144
 
145
  if ( buttontype == 'redirect' ) {
146
 
147
+ if ( $(this).hasClass('bitpay') ) {
148
+ window.location = buttonvalue;
149
+ }
150
+ else {
151
+ pageform.attr( 'action', buttonvalue );
152
+ pageform.submit();
153
+ }
154
 
155
  $(this).attr( 'disabled', 'disabled' ).html( buyCRED.redirecting );
156
 
addons/buy-creds/gateways/bitpay.php CHANGED
@@ -663,7 +663,7 @@ if ( ! function_exists( 'buycred_bitpay_decrypt' ) ) :
663
 
664
  // Strict base64 char check
665
  if (false === base64_decode($decrypted, true)) {
666
- $error_string .= ' [Warning] In bitpay_decrypt: data appears to have already been decrypted. Strict base64 check failed.';
667
  } else {
668
  $decrypted = base64_decode($decrypted);
669
  }
663
 
664
  // Strict base64 char check
665
  if (false === base64_decode($decrypted, true)) {
666
+ $error_string = ' [Warning] In bitpay_decrypt: data appears to have already been decrypted. Strict base64 check failed.';
667
  } else {
668
  $decrypted = base64_decode($decrypted);
669
  }
addons/buy-creds/modules/buycred-module-pending.php CHANGED
@@ -245,10 +245,6 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
245
  */
246
  public function add_to_menu() {
247
 
248
- // In case we are using the Master Template feautre on multisites, and this is not the main
249
- // site in the network, bail.
250
- if ( mycred_override_settings() ) return;
251
-
252
  add_submenu_page(
253
  MYCRED_SLUG,
254
  __( 'Pending Payments', 'mycred' ),
245
  */
246
  public function add_to_menu() {
247
 
 
 
 
 
248
  add_submenu_page(
249
  MYCRED_SLUG,
250
  __( 'Pending Payments', 'mycred' ),
assets/css/admin-subscription.css CHANGED
@@ -1,10 +1,22 @@
1
  /** myCRED Membership **/
2
  .mmc_welcome{ margin: 12px;padding: 50px 10px;border-radius: 10px;text-align: center;width: 500p }
3
- .mmc_title{ text-align: center;font-size: 30px;font-weight: 100 }
4
  .mmc_welcome .mmc_lincense_key{ width: 404px;border-radius: 6px;font-size: 17px;padding: 9px 14px;margin-top: 30px }
5
  .mmc_welcome .mmc_save_license{ font-size: 12px;height: 40px;width: 90px;font-size: 17px }
6
- .mmc_welcome_content{ width: 500px;margin: 0 auto }
7
  .mmc_welcome_content a{ text-align: left }
8
  .mmc_license_link a{ text-decoration: none }
9
  .mmc_license_link{ text-align: left;margin: 5px 0px}
10
- .mycred-membership-menu-label { color: #ffffff; margin: 5px; background: #892bff; padding: 1px 5px 3px 5px; border-radius: 4px; font-size: 10px; }
 
 
 
 
 
 
 
 
 
 
 
 
1
  /** myCRED Membership **/
2
  .mmc_welcome{ margin: 12px;padding: 50px 10px;border-radius: 10px;text-align: center;width: 500p }
3
+ .mmc_title{ text-align: center;font-size: 30px;font-weight: 100; line-height: 35px; }
4
  .mmc_welcome .mmc_lincense_key{ width: 404px;border-radius: 6px;font-size: 17px;padding: 9px 14px;margin-top: 30px }
5
  .mmc_welcome .mmc_save_license{ font-size: 12px;height: 40px;width: 90px;font-size: 17px }
6
+ .mmc_welcome_content form{ width: 500px;margin: 0 auto }
7
  .mmc_welcome_content a{ text-align: left }
8
  .mmc_license_link a{ text-decoration: none }
9
  .mmc_license_link{ text-align: left;margin: 5px 0px}
10
+ .mycred-membership-menu-label { color: #ffffff; margin: 5px; background: #892bff; padding: 1px 5px 3px 5px; border-radius: 4px; font-size: 10px; }
11
+
12
+ /** myCred Review **/
13
+ .mycred-review-notice { padding: 15px 15px 15px 0; background-color: #fff; border-radius: 3px; margin: 20px 20px 0 0; border-left: 4px solid transparent; } .mycred-review-notice:after { content: ''; display: table; clear: both; }
14
+ .mycred-review-thumbnail { width: 114px; float: left; line-height: 80px; text-align: center; border-right: 4px solid transparent; }
15
+ .mycred-review-thumbnail img { width: 74px; vertical-align: middle; }
16
+ .mycred-review-text { overflow: hidden; }
17
+ .mycred-review-text h3 { font-size: 24px; margin: 0 0 5px; font-weight: 400; line-height: 1.3; }
18
+ .mycred-review-text p { font-size: 13px; margin: 0 0 5px; }
19
+ .mycred-review-ul { margin: 0; padding: 0; }
20
+ .mycred-review-ul li { display: inline-block; margin-right: 15px; }
21
+ .mycred-review-ul li a { display: inline-block; color: #10738B; text-decoration: none; padding-left: 26px; position: relative; }
22
+ .mycred-review-ul li a span { position: absolute; left: 0; top: -2px; }
includes/classes/class.query-log.php CHANGED
@@ -171,6 +171,8 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
171
  /**
172
  * Set Query Limit
173
  */
 
 
174
  if ( $number !== NULL ) {
175
 
176
  $page = 1;
171
  /**
172
  * Set Query Limit
173
  */
174
+
175
+ $limits = '';
176
  if ( $number !== NULL ) {
177
 
178
  $page = 1;
includes/mycred-functions.php CHANGED
@@ -3464,7 +3464,7 @@ endif;
3464
  * @version 1.0.1
3465
  */
3466
  if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
3467
- function mycred_translate_limit_code( $code = '' ) {
3468
 
3469
  if ( $code == '' ) return '-';
3470
 
@@ -3495,7 +3495,7 @@ if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
3495
 
3496
  }
3497
 
3498
- return apply_filters( 'mycred_translate_limit_code', $result, $code );
3499
 
3500
  }
3501
  endif;
3464
  * @version 1.0.1
3465
  */
3466
  if ( ! function_exists( 'mycred_translate_limit_code' ) ) :
3467
+ function mycred_translate_limit_code( $code = '', $id, $mycred ) {
3468
 
3469
  if ( $code == '' ) return '-';
3470
 
3495
 
3496
  }
3497
 
3498
+ return apply_filters( 'mycred_translate_limit_code', $result, $code, $id, $mycred );
3499
 
3500
  }
3501
  endif;
includes/shortcodes/mycred_hook_table.php CHANGED
@@ -124,7 +124,7 @@ if ( ! function_exists( 'mycred_render_shortcode_hook_table' ) ) :
124
  }
125
  }
126
  else {
127
- $limit = mycred_translate_limit_code( $limit );
128
  }
129
 
130
  $creds = apply_filters( 'mycred_hook_table_creds', $mycred->format_creds( $prefs['creds'] ), $id, $prefs, $atts );
124
  }
125
  }
126
  else {
127
+ $limit = mycred_translate_limit_code( $limit, $id, $mycred );
128
  }
129
 
130
  $creds = apply_filters( 'mycred_hook_table_creds', $mycred->format_creds( $prefs['creds'] ), $id, $prefs, $atts );
includes/widgets/mycred-widget-leaderboard.php CHANGED
@@ -29,7 +29,22 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
29
  * Widget Output
30
  */
31
  public function widget( $args, $instance ) {
32
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  extract( $args, EXTR_SKIP );
34
 
35
  // Check if we want to show this to visitors
29
  * Widget Output
30
  */
31
  public function widget( $args, $instance ) {
32
+
33
+ $instance['title'] = isset( $instance['title'] ) ? $instance['title'] : 'Leaderboard';
34
+ $instance['type'] = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
35
+ $instance['based_on'] = isset( $instance['based_on'] ) ? $instance['based_on'] : 'balance';
36
+ $instance['total'] = isset( $instance['total'] ) ? $instance['total'] : 0;
37
+ $instance['number'] = isset( $instance['number'] ) ? $instance['number'] : 5;
38
+ $instance['show_visitors'] = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
39
+ $instance['row_layout'] = isset( $instance['row_layout'] ) ? $instance['row_layout'] : '<span>#%position%</span> <span>%user_profile_link%</span> <span>%cred_f%</span>';
40
+ $instance['offset'] = isset( $instance['offset'] ) ? $instance['offset'] : 0;
41
+ $instance['order'] = isset( $instance['order'] ) ? $instance['order'] : 'DESC';
42
+ $instance['current'] = isset( $instance['current'] ) ? $instance['current'] : 0;
43
+ $instance['timeframe'] = isset( $instance['timeframe'] ) ? $instance['timeframe'] : '';
44
+ $instance['wrap'] = isset( $instance['wrap'] ) ? $instance['wrap'] : 'li';
45
+ $instance['nothing'] = isset( $instance['nothing'] ) ? $instance['nothing'] : 'Leaderboard is empty';
46
+ $instance['exclude_zero'] = isset( $instance['exclude_zero'] ) ? $instance['exclude_zero'] : 1;
47
+
48
  extract( $args, EXTR_SKIP );
49
 
50
  // Check if we want to show this to visitors
lang/mycred.pot CHANGED
@@ -4,2907 +4,3932 @@ msgstr ""
4
  "Project-Id-Version: myCRED\n"
5
  "Report-Msgid-Bugs-To: http://mycred.me\n"
6
  "POT-Creation-Date: 2017-10-23 16:15+0000\n"
7
- "POT-Revision-Date: Fri Aug 12 2016 19:22:02 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
- "Last-Translator: Gabriel Sebastian Merovingi <support@mycred.me>\n"
10
- "Language-Team: myCRED & All the awesome users helping out <support@mycred.me>"
11
- "\n"
12
  "Language: \n"
13
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Generator: Loco - https://localise.biz/\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
21
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
22
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
23
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
24
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
- "X-Poedit-SearchPath-0: ."
26
-
27
- #: mycred.php:621
28
  #, php-format
29
  msgid "%s Log Import"
30
  msgstr ""
31
 
32
- #: mycred.php:622
33
  msgid "Import log entries via a CSV file."
34
  msgstr ""
35
 
36
- #: mycred.php:633
37
  #, php-format
38
  msgid "%s Balance Import"
39
  msgstr ""
40
 
41
- #: mycred.php:634
42
  msgid "Import balances via a CSV file."
43
  msgstr ""
44
 
45
- #: mycred.php:645
46
  #, php-format
47
  msgid "%s CubePoints Import"
48
  msgstr ""
49
 
50
- #: mycred.php:646
51
  msgid "Import CubePoints log entries and / or balances."
52
  msgstr ""
53
 
54
- #: mycred.php:688 modules/mycred-module-settings.php:430
55
- #: modules/mycred-module-management.php:316 modules/mycred-module-log.php:551
56
- #: addons/badges/myCRED-addon-badges.php:754
57
- #: addons/transfer/myCRED-addon-transfer.php:160
58
- #: addons/ranks/myCRED-addon-ranks.php:1148
59
- #: addons/ranks/myCRED-addon-ranks.php:1745
60
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
 
 
 
 
61
  msgid "Processing..."
62
  msgstr ""
63
 
64
- #: mycred.php:689
65
  msgid "Sent"
66
  msgstr ""
67
 
68
- #: mycred.php:690
69
  msgid "Error - Try Again"
70
  msgstr ""
71
 
72
- #: mycred.php:893 modules/mycred-module-management.php:558
73
- #: includes/widgets/mycred-widget-leaderboard.php:115
74
- #: addons/transfer/includes/mycred-transfer-object.php:824
 
 
 
75
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
 
76
  msgid "Balance"
77
  msgstr ""
78
 
79
- #: mycred.php:960 modules/mycred-module-caching.php:258
80
- #: modules/mycred-module-management.php:473 modules/mycred-module-log.php:370
81
- #: modules/mycred-module-log.php:371
82
- #: addons/buy-creds/modules/buycred-module-pending.php:500
83
  msgid "History"
84
  msgstr ""
85
 
86
- #: mycred.php:1025 mycred.php:1046
87
- #: addons/notifications/myCRED-addon-notifications.php:194
88
- #: addons/email-notices/myCRED-addon-email-notices.php:360
89
- #: addons/gateway/event-booking/mycred-eventsmanager.php:591
90
  #: addons/banking/services/mycred-service-interest.php:477
91
- #: addons/buy-creds/gateways/zombaio.php:383
92
- #: addons/buy-creds/gateways/skrill.php:274
93
- #: addons/buy-creds/gateways/paypal-standard.php:301
94
- #: addons/buy-creds/gateways/netbilling.php:244
95
  #: addons/buy-creds/gateways/bank-transfer.php:175
96
  #: addons/buy-creds/gateways/bitpay.php:533
 
 
 
 
 
 
 
 
97
  msgid "Setup"
98
  msgstr ""
99
 
100
- #: mycred.php:1027 modules/mycred-module-network.php:270
 
 
101
  #: modules/mycred-module-settings.php:21 modules/mycred-module-settings.php:22
102
- #: modules/mycred-module-settings.php:23 modules/mycred-module-settings.php:529
 
103
  msgid "Settings"
104
  msgstr ""
105
 
106
- #: includes/mycred-functions.php:112
107
- msgid "Point"
108
- msgstr ""
109
-
110
- #: includes/mycred-functions.php:113
111
- msgid "Points"
112
  msgstr ""
113
 
114
- #: includes/mycred-functions.php:525
115
- msgid "Deleted"
 
 
 
 
 
 
 
116
  msgstr ""
117
 
118
- #: includes/mycred-functions.php:653
119
- msgid "Deleted Item"
 
120
  msgstr ""
121
 
122
- #: includes/mycred-functions.php:732
123
- #: addons/gateway/carts/mycred-wpecommerce.php:370
124
- msgid "General"
125
  msgstr ""
126
 
127
- #: includes/mycred-functions.php:739
128
- msgid "User Related"
 
129
  msgstr ""
130
 
131
- #: includes/mycred-functions.php:746
132
- msgid "Post Related"
133
  msgstr ""
134
 
135
- #: includes/mycred-functions.php:753
136
- msgid "Comment Related"
137
  msgstr ""
138
 
139
- #: includes/mycred-functions.php:760
140
- msgid "Widget Related"
141
  msgstr ""
142
 
143
- #: includes/mycred-functions.php:767
144
- msgid "Amount Related"
145
  msgstr ""
146
 
147
- #: includes/mycred-functions.php:774
148
- msgid "Video Related"
 
 
 
 
 
 
 
 
 
149
  msgstr ""
150
 
151
- #: includes/mycred-functions.php:785
152
- msgid "and"
 
153
  msgstr ""
154
 
155
- #: includes/mycred-functions.php:787
156
- msgid "Available Template Tags:"
 
157
  msgstr ""
158
 
159
- #: includes/mycred-functions.php:3449 abstracts/mycred-abstract-hook.php:314
160
- #: abstracts/mycred-abstract-hook.php:386
161
- #: includes/hooks/mycred-hook-link-clicks.php:54
162
- #: addons/transfer/includes/mycred-transfer-object.php:494
163
- #: addons/buy-creds/includes/buycred-functions.php:198
164
- #: addons/buy-creds/modules/buycred-module-core.php:405
165
- msgid "No limit"
166
  msgstr ""
167
 
168
- #: includes/mycred-functions.php:3455
169
- msgid "in total"
 
 
 
 
 
 
 
170
  msgstr ""
171
 
172
- #: includes/mycred-functions.php:3457
173
- msgid "per day"
174
  msgstr ""
175
 
176
- #: includes/mycred-functions.php:3460
177
- msgid "per week"
 
 
 
 
 
 
178
  msgstr ""
179
 
180
- #: includes/mycred-functions.php:3463
181
- msgid "per month"
182
  msgstr ""
183
 
184
- #: includes/mycred-functions.php:3465 includes/mycred-functions.php:3471
185
- #, php-format
186
- msgid "Maximum once"
187
- msgid_plural "Maximum %d times"
188
- msgstr[0] ""
189
- msgstr[1] ""
190
-
191
- #: includes/mycred-functions.php:3493
192
- #, php-format
193
- msgctxt "e.g. 5 th"
194
- msgid "%d th"
195
  msgstr ""
196
 
197
- #: includes/mycred-functions.php:3497
198
- #, php-format
199
- msgctxt "e.g. 1 st"
200
- msgid "%d st"
201
  msgstr ""
202
 
203
- #: includes/mycred-functions.php:3498
204
- #, php-format
205
- msgctxt "e.g. 2 nd"
206
- msgid "%d nd"
207
  msgstr ""
208
 
209
- #: includes/mycred-functions.php:3499
210
- #, php-format
211
- msgctxt "e.g. 3 rd"
212
- msgid "%d rd"
213
  msgstr ""
214
 
215
- #: includes/mycred-install.php:63
216
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
217
  msgstr ""
218
 
219
- #: includes/mycred-install.php:68
220
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
 
 
 
 
 
 
221
  msgstr ""
222
 
223
- #: includes/mycred-install.php:73
224
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
225
  msgstr ""
226
 
227
- #: includes/mycred-install.php:78
228
- msgid ""
229
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
230
- "check your PHP configuration or contact your host and ask them to enable it "
231
- "for you!"
232
  msgstr ""
233
 
234
- #: includes/mycred-install.php:83
235
- msgid ""
236
- "Sorry but your WordPress installation does not reach the minimum "
237
- "requirements for running myCRED. The following errors were given:"
238
  msgstr ""
239
 
240
- #: includes/mycred-setup.php:50
241
- #, php-format
242
- msgid "%s needs your attention."
243
  msgstr ""
244
 
245
- #: includes/mycred-setup.php:50
246
- msgid "Run Setup"
247
  msgstr ""
248
 
249
- #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
250
- msgid "myCRED Setup"
251
  msgstr ""
252
 
253
- #: includes/mycred-setup.php:105
254
- #: addons/sell-content/myCRED-addon-sell-content.php:639
255
- #, php-format
256
- msgid "%s Setup"
257
  msgstr ""
258
 
259
- #: includes/mycred-setup.php:106
260
- #, php-format
261
- msgid ""
262
- "Before you can begin using %s, you must setup your first point type. This "
263
- "includes what you want to call your points, how these points are presented "
264
- "and who has access to it."
265
  msgstr ""
266
 
267
- #: includes/mycred-setup.php:111
268
- msgid "Your First Point Type"
 
269
  msgstr ""
270
 
271
- #: includes/mycred-setup.php:127
272
- msgid "Advanced Settings"
 
 
 
273
  msgstr ""
274
 
275
- #: includes/mycred-setup.php:133
276
- msgid "Change Default Point Type Key"
 
 
277
  msgstr ""
278
 
279
- #: includes/mycred-setup.php:135
280
- msgid ""
281
- "You can change the meta key used to store the default point type using the "
282
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
283
- "file to use."
284
  msgstr ""
285
 
286
- #: includes/mycred-setup.php:136
287
- msgid ""
288
- "If you intend to change the default meta key, you should do so before "
289
- "continuing on in this setup!"
290
  msgstr ""
291
 
292
- #: includes/mycred-setup.php:139
293
- msgid "Whitelabel"
294
  msgstr ""
295
 
296
- #: includes/mycred-setup.php:141
297
- msgid ""
298
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
299
- "above code to your wp-config.php file to use."
300
  msgstr ""
301
 
302
- #: includes/mycred-setup.php:149
303
- msgid "Create Point Type"
 
 
 
304
  msgstr ""
305
 
306
- #: includes/mycred-setup.php:149
307
- msgid "Hide"
 
 
 
308
  msgstr ""
309
 
310
- #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
311
- #: addons/email-notices/myCRED-addon-email-notices.php:1185
312
- msgid "Advanced"
313
  msgstr ""
314
 
315
- #: includes/mycred-setup.php:155
316
- msgid "Processing ..."
317
  msgstr ""
318
 
319
- #: includes/mycred-setup.php:160
320
- msgid "Setup Complete!"
321
  msgstr ""
322
 
323
- #: includes/mycred-setup.php:161
324
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
325
  msgstr ""
326
 
327
- #: includes/mycred-setup.php:166
328
- msgid "Enabling Hooks"
 
329
  msgstr ""
330
 
331
- #: includes/mycred-setup.php:167
332
- msgid ""
333
- "If you intend to give your users points for interacting with your website "
334
- "automatically, your next step should be to enable and setup the hooks you "
335
- "want to use."
336
  msgstr ""
337
 
338
- #: includes/mycred-setup.php:168
339
- msgid "Setup Hooks"
340
  msgstr ""
341
 
342
- #: includes/mycred-setup.php:171 modules/mycred-module-addons.php:25
343
- #: modules/mycred-module-addons.php:26 modules/mycred-module-addons.php:342
344
- msgid "Add-ons"
345
  msgstr ""
346
 
347
- #: includes/mycred-setup.php:172
348
- msgid ""
349
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
350
- "your next step should be to enable and setup your add-ons."
351
  msgstr ""
352
 
353
- #: includes/mycred-setup.php:173
354
- msgid "Setup Add-ons"
 
 
355
  msgstr ""
356
 
357
- #: includes/mycred-setup.php:176
358
- msgid "Adjust Settings"
359
  msgstr ""
360
 
361
- #: includes/mycred-setup.php:177
362
- msgid ""
363
- "If you need to make further changes to your settings or add new point types, "
364
- "you can visit your default point type's settings."
365
  msgstr ""
366
 
367
- #: includes/mycred-setup.php:178
368
- msgid "View Settings"
369
  msgstr ""
370
 
371
- #: includes/mycred-setup.php:275 modules/mycred-module-settings.php:547
372
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460
373
- #: addons/gateway/event-booking/mycred-eventsmanager.php:658
374
- msgid "Labels"
375
- msgstr ""
376
-
377
- #: includes/mycred-setup.php:279 modules/mycred-module-settings.php:551
378
- msgid "Singular"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
  msgstr ""
380
 
381
- #: includes/mycred-setup.php:280 includes/mycred-setup.php:286
382
- #: includes/mycred-setup.php:333 includes/mycred-setup.php:340
383
- #: modules/mycred-module-settings.php:552
384
- #: modules/mycred-module-settings.php:558
385
- #: modules/mycred-module-settings.php:608
386
- #: modules/mycred-module-settings.php:615
387
- #: modules/mycred-module-settings.php:803
388
- #: modules/mycred-module-settings.php:809
389
- #: addons/coupons/myCRED-addon-coupons.php:697
390
- #: addons/coupons/myCRED-addon-coupons.php:704
391
- #: addons/coupons/myCRED-addon-coupons.php:713
392
- #: addons/coupons/myCRED-addon-coupons.php:720
393
- #: addons/coupons/myCRED-addon-coupons.php:729
394
- #: addons/coupons/myCRED-addon-coupons.php:736
395
- #: addons/coupons/myCRED-addon-coupons.php:745
396
- #: addons/coupons/myCRED-addon-coupons.php:752
397
- #: addons/sell-content/myCRED-addon-sell-content.php:674
398
- #: addons/sell-content/myCRED-addon-sell-content.php:690
399
- #: addons/sell-content/myCRED-addon-sell-content.php:697
400
- #: addons/sell-content/myCRED-addon-sell-content.php:720
401
- #: addons/banking/services/mycred-service-central.php:111
402
- #: addons/banking/services/mycred-service-interest.php:482
403
- #: addons/banking/services/mycred-service-interest.php:500
404
- #: addons/buy-creds/modules/buycred-module-core.php:531
405
- #: addons/buy-creds/modules/buycred-module-core.php:556
406
- msgid "Required"
407
  msgstr ""
408
 
409
- #: includes/mycred-setup.php:285 modules/mycred-module-settings.php:557
410
- msgid "Plural"
 
 
 
 
411
  msgstr ""
412
 
413
- #: includes/mycred-setup.php:290 modules/mycred-module-settings.php:562
414
- msgid ""
415
- "These labels are used throughout the admin area and when presenting points "
416
- "to your users."
417
  msgstr ""
418
 
419
- #: includes/mycred-setup.php:293 modules/mycred-module-settings.php:565
420
- #: addons/email-notices/myCRED-addon-email-notices.php:1155
421
- msgid "Format"
 
422
  msgstr ""
423
 
424
- #: includes/mycred-setup.php:297 modules/mycred-module-settings.php:569
425
- msgid "Prefix"
 
426
  msgstr ""
427
 
428
- #: includes/mycred-setup.php:303 modules/mycred-module-settings.php:575
429
- msgid "Separators"
 
430
  msgstr ""
431
 
432
- #: includes/mycred-setup.php:311 modules/mycred-module-settings.php:583
433
- msgid "Decimals"
 
 
 
434
  msgstr ""
435
 
436
- #: includes/mycred-setup.php:317 modules/mycred-module-settings.php:589
437
- msgid "Suffix"
 
438
  msgstr ""
439
 
440
- #: includes/mycred-setup.php:322
441
- msgid "Set to decimals to zero if you prefer to use whole numbers."
442
  msgstr ""
443
 
444
- #: includes/mycred-setup.php:328 modules/mycred-module-settings.php:603
445
- msgid "Security"
446
  msgstr ""
447
 
448
- #: includes/mycred-setup.php:332 modules/mycred-module-settings.php:607
449
- msgid "Point Editors"
 
 
 
 
450
  msgstr ""
451
 
452
- #: includes/mycred-setup.php:334 modules/mycred-module-settings.php:609
453
- msgid "The capability of users who can edit balances."
454
  msgstr ""
455
 
456
- #: includes/mycred-setup.php:339 modules/mycred-module-settings.php:614
457
- msgid "Point Administrators"
458
  msgstr ""
459
 
460
- #: includes/mycred-setup.php:341 modules/mycred-module-settings.php:616
461
- msgid "The capability of users who can edit settings."
462
  msgstr ""
463
 
464
- #: includes/mycred-setup.php:346 modules/mycred-module-settings.php:622
465
- msgid "Max. Amount"
 
466
  msgstr ""
467
 
468
- #: includes/mycred-setup.php:348 modules/mycred-module-settings.php:624
469
- msgid "The maximum amount allowed to be paid out in a single instance."
470
  msgstr ""
471
 
472
- #: includes/mycred-setup.php:353 modules/mycred-module-settings.php:629
473
- msgid "Exclude by User ID"
474
  msgstr ""
475
 
476
- #: includes/mycred-setup.php:354 modules/mycred-module-settings.php:630
477
- msgid "Optional"
 
478
  msgstr ""
479
 
480
- #: includes/mycred-setup.php:355 modules/mycred-module-settings.php:631
481
- msgid "Comma separated list of user IDs to exclude from using this point type."
 
482
  msgstr ""
483
 
484
- #: includes/mycred-setup.php:359 modules/mycred-module-settings.php:635
485
- msgid "Exclude point editors"
 
 
486
  msgstr ""
487
 
488
- #: includes/mycred-setup.php:362 modules/mycred-module-settings.php:638
489
- msgid "Exclude point administrators"
 
 
490
  msgstr ""
491
 
492
- #: includes/mycred-setup.php:395 includes/mycred-setup.php:453
493
- msgid "Please make sure you fill out all required fields!"
 
 
 
 
 
 
 
 
494
  msgstr ""
495
 
496
- #: includes/mycred-remote.php:581
497
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
 
 
 
 
 
 
 
 
498
  msgstr ""
499
 
500
- #: includes/mycred-remote.php:585
501
- msgid "Click Update Settings to load the Remote API settings."
 
 
502
  msgstr ""
503
 
504
- #: includes/mycred-remote.php:588
505
- msgid "Allow Remote Access"
506
  msgstr ""
507
 
508
- #: includes/mycred-remote.php:613
509
- msgid "Remote Access"
 
 
 
 
510
  msgstr ""
511
 
512
- #: includes/mycred-remote.php:615
513
- msgid "API Key"
 
514
  msgstr ""
515
 
516
- #: includes/mycred-remote.php:618
517
- msgid "Key"
 
 
518
  msgstr ""
519
 
520
- #: includes/mycred-remote.php:619
521
- msgid "16, 24 or 32 characters"
522
  msgstr ""
523
 
524
- #: includes/mycred-remote.php:620
525
- msgid "Required for this feature to work!<br />Minimum 12 characters."
526
  msgstr ""
527
 
528
- #: includes/mycred-remote.php:623
529
- msgid "Key Length"
530
  msgstr ""
531
 
532
- #: includes/mycred-remote.php:628
533
- msgid "Generate New Key"
534
  msgstr ""
535
 
536
- #: includes/mycred-remote.php:630
537
- msgid "Warning!"
 
 
 
538
  msgstr ""
539
 
540
- #: includes/mycred-remote.php:630
541
- msgid ""
542
- "Keep this key safe! Those you share this key with will be able to remotely "
543
- "deduct / add / transfer %plural%!"
544
  msgstr ""
545
 
546
- #: includes/mycred-remote.php:632
547
- msgid "Incoming URI"
548
  msgstr ""
549
 
550
- #: includes/mycred-remote.php:636
551
- msgid ""
552
- "The incoming call address. Remote calls made to any other URL will be "
553
- "ignored."
554
  msgstr ""
555
 
556
- #: includes/mycred-remote.php:639
557
- msgid "Debug Mode"
558
  msgstr ""
559
 
560
- #: includes/mycred-remote.php:642
561
  msgid ""
562
- "Remember to disable when not used to prevent mischievous calls from learning "
563
- "about your setup!"
564
  msgstr ""
565
 
566
- #: includes/mycred-overview.php:25
567
- #, php-format
568
- msgid "%s Overview"
 
569
  msgstr ""
570
 
571
- #: includes/mycred-overview.php:120
572
- msgid "Total amount in circulation"
573
  msgstr ""
574
 
575
- #: includes/mycred-overview.php:127
576
- msgid "Awarded"
577
  msgstr ""
578
 
579
- #: includes/mycred-overview.php:138
580
- msgid "Deducted"
581
  msgstr ""
582
 
583
- #: abstracts/mycred-abstract-module.php:516
584
- #: modules/mycred-module-network.php:218
585
- msgid "click to close"
586
  msgstr ""
587
 
588
- #: abstracts/mycred-abstract-module.php:517
589
- #: modules/mycred-module-network.php:219
590
- msgid "click to open"
 
 
591
  msgstr ""
592
 
593
- #: abstracts/mycred-abstract-module.php:550
594
- #: modules/mycred-module-network.php:261
595
- #: addons/gateway/event-booking/mycred-eventespresso3.php:451
596
- #: addons/email-notices/includes/mycred-email-shortcodes.php:15
597
- #: addons/buy-creds/modules/buycred-module-core.php:726
598
- msgid "Settings Updated"
599
  msgstr ""
600
 
601
- #: abstracts/mycred-abstract-hook.php:104
602
- msgid "This Hook has no settings"
 
603
  msgstr ""
604
 
605
- #: abstracts/mycred-abstract-hook.php:315
606
- #: addons/buy-creds/includes/buycred-functions.php:199
607
- msgid "/ Day"
608
  msgstr ""
609
 
610
- #: abstracts/mycred-abstract-hook.php:316
611
- #: addons/buy-creds/includes/buycred-functions.php:200
612
- msgid "/ Week"
 
 
 
613
  msgstr ""
614
 
615
- #: abstracts/mycred-abstract-hook.php:317
616
- #: addons/buy-creds/includes/buycred-functions.php:201
617
- msgid "/ Month"
618
  msgstr ""
619
 
620
- #: abstracts/mycred-abstract-hook.php:318
621
- msgid "in Total"
622
  msgstr ""
623
 
624
- #: abstracts/mycred-abstract-hook.php:387
625
- msgid "Once every 24 hours"
626
  msgstr ""
627
 
628
- #: abstracts/mycred-abstract-hook.php:388
629
- msgid "Once every 7 days"
630
  msgstr ""
631
 
632
- #: abstracts/mycred-abstract-hook.php:389
633
- msgid "Once per day (reset at midnight)"
634
  msgstr ""
635
 
636
- #: abstracts/mycred-abstract-hook.php:396
637
- #: addons/badges/myCRED-addon-badges.php:928
638
- #: addons/email-notices/includes/mycred-email-functions.php:95
639
- #: addons/banking/abstracts/mycred-abstract-service.php:351
640
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1659
641
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1684
642
- #: addons/buy-creds/gateways/zombaio.php:482
643
- #: addons/buy-creds/gateways/zombaio.php:514
644
- #: addons/buy-creds/modules/buycred-module-core.php:468
645
- #: addons/buy-creds/modules/buycred-module-core.php:498
646
- msgid "Select"
647
  msgstr ""
648
 
649
- #: modules/mycred-module-network.php:141
650
- msgid "Blocked"
651
  msgstr ""
652
 
653
- #: modules/mycred-module-network.php:149
654
- msgid "Installed"
655
  msgstr ""
656
 
657
- #: modules/mycred-module-network.php:151
658
- msgid "Not Installed"
659
  msgstr ""
660
 
661
- #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:275
662
- msgid "Master Template"
663
  msgstr ""
664
 
665
- #: modules/mycred-module-network.php:156 modules/mycred-module-network.php:280
666
- #: modules/mycred-module-network.php:296 modules/mycred-module-export.php:378
667
- #: addons/sell-content/myCRED-addon-sell-content.php:481
668
- msgid "Enabled"
669
  msgstr ""
670
 
671
- #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
672
- msgid "Network Settings"
 
673
  msgstr ""
674
 
675
- #: modules/mycred-module-network.php:241
676
- #, php-format
677
- msgid "%s Network"
 
678
  msgstr ""
679
 
680
- #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
681
- #: modules/mycred-module-network.php:292 modules/mycred-module-hooks.php:287
682
- #: modules/mycred-module-addons.php:342 modules/mycred-module-addons.php:384
683
- #: modules/mycred-module-settings.php:529 modules/mycred-module-log.php:634
684
- #: includes/importers/mycred-log-entries.php:241
685
- #: includes/importers/mycred-cubepoints.php:307
686
- #: includes/importers/mycred-balances.php:247
687
- #: addons/buy-creds/modules/buycred-module-core.php:777
688
- msgid "Documentation"
689
  msgstr ""
690
 
691
- #: modules/mycred-module-network.php:247
692
- msgid "I am sorry but your network is too big to use these features."
 
693
  msgstr ""
694
 
695
- #: modules/mycred-module-network.php:257
696
- #, php-format
697
- msgid "Note! %s has not yet been setup."
 
698
  msgstr ""
699
 
700
- #: modules/mycred-module-network.php:285 modules/mycred-module-network.php:301
701
- #: modules/mycred-module-export.php:377
702
- #: addons/sell-content/myCRED-addon-sell-content.php:396
703
- #: addons/sell-content/myCRED-addon-sell-content.php:480
704
- #: addons/stats/includes/mycred-stats-functions.php:403
705
- #: addons/buy-creds/modules/buycred-module-core.php:1274
706
- #: includes/hooks/external/mycred-hook-affiliatewp.php:362
707
- msgid "Disabled"
708
  msgstr ""
709
 
710
- #: modules/mycred-module-network.php:291
711
- msgid "Central Logging"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  msgstr ""
713
 
714
- #: modules/mycred-module-network.php:308
715
- msgid "Site Block"
 
716
  msgstr ""
717
 
718
- #: modules/mycred-module-network.php:312
719
- msgid "Blog IDs"
 
 
 
 
720
  msgstr ""
721
 
722
- #: modules/mycred-module-network.php:314
723
- #, php-format
724
- msgid "Comma separated list of blog ids where %s is to be disabled."
725
  msgstr ""
726
 
727
- #: modules/mycred-module-network.php:327
728
- msgid "Save Network Settings"
729
  msgstr ""
730
 
731
- #: modules/mycred-module-export.php:260 modules/mycred-module-export.php:287
732
- #: modules/mycred-module-export.php:337 modules/mycred-module-settings.php:869
733
- msgid "Export"
734
  msgstr ""
735
 
736
- #: modules/mycred-module-export.php:309 modules/mycred-module-export.php:356
737
- #: includes/classes/class.query-log.php:1801
738
- msgid ""
739
- "Log entries are exported to a CSV file and depending on the number of "
740
- "entries selected, the process may take a few seconds."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
741
  msgstr ""
742
 
743
- #: modules/mycred-module-export.php:382
744
- msgid "Make both format options available."
745
  msgstr ""
746
 
747
- #: modules/mycred-module-export.php:384
748
- msgid "Exports"
 
749
  msgstr ""
750
 
751
- #: modules/mycred-module-export.php:390
752
- msgid "Front End Exports"
 
753
  msgstr ""
754
 
755
- #: modules/mycred-module-export.php:406 modules/mycred-module-export.php:454
756
- msgid "Export Format"
757
  msgstr ""
758
 
759
- #: modules/mycred-module-export.php:422 modules/mycred-module-export.php:470
760
- msgid "File Name"
761
  msgstr ""
762
 
763
- #: modules/mycred-module-export.php:424 modules/mycred-module-export.php:472
764
- #: addons/coupons/myCRED-addon-coupons.php:263
765
- #: addons/coupons/myCRED-addon-coupons.php:507
766
- #: addons/email-notices/myCRED-addon-email-notices.php:363
767
- #: addons/ranks/myCRED-addon-ranks.php:1245
768
- #: addons/ranks/myCRED-addon-ranks.php:1413
769
- #: addons/ranks/myCRED-addon-ranks.php:1420
770
- #: includes/classes/class.query-export.php:263
771
- #: includes/classes/class.query-export.php:391
772
- #: includes/widgets/mycred-widget-leaderboard.php:102
773
- #: includes/widgets/mycred-widget-balance.php:183
774
- #: includes/importers/mycred-cubepoints.php:357
775
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483
776
- #: addons/gateway/event-booking/mycred-eventsmanager.php:604
777
- #: addons/gateway/carts/mycred-wpecommerce.php:383
778
- #: addons/gateway/carts/mycred-woocommerce.php:125
779
- #: addons/gateway/carts/mycred-woocommerce.php:166
780
- #: addons/buy-creds/includes/buycred-shortcodes.php:347
781
- #: addons/buy-creds/modules/buycred-module-pending.php:625
782
- msgid "Point Type"
783
  msgstr ""
784
 
785
- #: modules/mycred-module-export.php:424 modules/mycred-module-export.php:472
786
- #: modules/mycred-module-management.php:747
787
- #: addons/buy-creds/includes/buycred-shortcodes.php:108
788
- msgid "Username"
 
789
  msgstr ""
790
 
791
- #: modules/mycred-module-export.php:431
 
 
 
 
792
  msgid ""
793
- "If enabled, users will only be able to export their own log entries! Export "
794
- "tools becomes available wherever you are using the mycred_history shortcode "
795
- "or in the users profile."
796
  msgstr ""
797
 
798
- #: modules/mycred-module-export.php:438
799
- msgid "Back End Exports"
800
  msgstr ""
801
 
802
- #: modules/mycred-module-export.php:479
803
  msgid ""
804
- "Raw format should be used when you intend to use the export tool to backup "
805
- "or import entries in another installation. Formatted exports reflect what "
806
- "users see in their history archive."
807
  msgstr ""
808
 
809
- #: modules/mycred-module-caching.php:251
810
- #: addons/stats/myCRED-addon-stats.php:397
811
- msgid "Optimization"
812
  msgstr ""
813
 
814
- #: modules/mycred-module-caching.php:260 modules/mycred-module-caching.php:279
815
- msgid "No caching"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
816
  msgstr ""
817
 
818
- #: modules/mycred-module-caching.php:263 modules/mycred-module-caching.php:282
819
- msgid "Clear cache each time a users balance changes"
820
  msgstr ""
821
 
822
- #: modules/mycred-module-caching.php:266 modules/mycred-module-caching.php:285
823
- msgid "Clear cache once a day"
824
  msgstr ""
825
 
826
- #: modules/mycred-module-caching.php:269 modules/mycred-module-caching.php:288
827
- msgid "Clear cache manually"
828
  msgstr ""
829
 
830
- #: modules/mycred-module-caching.php:272 modules/mycred-module-caching.php:291
831
- msgid "Clear Cache Now"
 
 
832
  msgstr ""
833
 
834
- #: modules/mycred-module-caching.php:277
835
- msgid "Leaderboards"
 
 
 
836
  msgstr ""
837
 
838
- #: modules/mycred-module-caching.php:296 modules/mycred-module-caching.php:310
839
- msgid "Auto Delete Log Entries"
840
  msgstr ""
841
 
842
- #: modules/mycred-module-caching.php:298 modules/mycred-module-caching.php:312
843
- msgid "Log disabled"
844
  msgstr ""
845
 
846
- #: modules/mycred-module-caching.php:301 modules/mycred-module-caching.php:315
847
- #, php-format
848
- msgctxt "documentation"
849
- msgid ""
850
- "Option to automatically delete log entries after certain number of days. "
851
- "Please read the %s before using this feature as it's use has consequences! "
852
- "Use zero to disable."
853
  msgstr ""
854
 
855
- #: modules/mycred-module-caching.php:301 modules/mycred-module-caching.php:315
856
- msgid "documentation"
 
 
 
857
  msgstr ""
858
 
859
- #: modules/mycred-module-hooks.php:28 modules/mycred-module-hooks.php:29
860
- #: modules/mycred-module-hooks.php:30 modules/mycred-module-hooks.php:287
861
- msgid "Hooks"
862
  msgstr ""
863
 
864
- #: modules/mycred-module-hooks.php:76
865
- msgid "%plural% for registrations"
 
 
866
  msgstr ""
867
 
868
- #: modules/mycred-module-hooks.php:77
869
- msgid "Award %_plural% for users joining your website."
870
  msgstr ""
871
 
872
- #: modules/mycred-module-hooks.php:84
873
- msgid "%plural% for Anniversary"
874
  msgstr ""
875
 
876
- #: modules/mycred-module-hooks.php:85
877
- msgid "Award %_plural% for each year a user has been member."
878
  msgstr ""
879
 
880
- #: modules/mycred-module-hooks.php:92
881
- msgid "%plural% for daily visits"
882
  msgstr ""
883
 
884
- #: modules/mycred-module-hooks.php:93
885
- msgid "Award %_plural% for visiting your website on a daily basis."
 
886
  msgstr ""
887
 
888
- #: modules/mycred-module-hooks.php:100
889
- msgid "%plural% for viewing content"
890
  msgstr ""
891
 
892
- #: modules/mycred-module-hooks.php:101
893
- msgid "Award %_plural% for viewing content."
894
  msgstr ""
895
 
896
- #: modules/mycred-module-hooks.php:108
897
- msgid "%plural% for logins"
898
  msgstr ""
899
 
900
- #: modules/mycred-module-hooks.php:109
901
- msgid "Award %_plural% for logging in."
902
  msgstr ""
903
 
904
- #: modules/mycred-module-hooks.php:116
905
- msgid "%plural% for publishing content"
906
  msgstr ""
907
 
908
- #: modules/mycred-module-hooks.php:117
909
- msgid "Award %_plural% for publishing content."
910
  msgstr ""
911
 
912
- #: modules/mycred-module-hooks.php:124
913
- msgid "%plural% for trashed content"
 
 
914
  msgstr ""
915
 
916
- #: modules/mycred-module-hooks.php:125
917
- msgid "Award or Deduct %_plural% when content gets trashed."
918
  msgstr ""
919
 
920
- #: modules/mycred-module-hooks.php:132
921
- msgid "%plural% for comments"
 
 
 
 
 
 
922
  msgstr ""
923
 
924
- #: modules/mycred-module-hooks.php:132
925
- msgid "%plural% for Disqus comments"
 
926
  msgstr ""
927
 
928
- #: modules/mycred-module-hooks.php:133
929
- msgid "Award %_plural% for making comments."
 
930
  msgstr ""
931
 
932
- #: modules/mycred-module-hooks.php:140
933
- msgid "%plural% for clicking on links"
934
  msgstr ""
935
 
936
- #: modules/mycred-module-hooks.php:141
937
- msgid ""
938
- "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
939
  msgstr ""
940
 
941
- #: modules/mycred-module-hooks.php:148
942
- msgid "%plural% for viewing Videos"
943
  msgstr ""
944
 
945
- #: modules/mycred-module-hooks.php:149
946
- msgid ""
947
- "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
948
  msgstr ""
949
 
950
- #: modules/mycred-module-hooks.php:156
951
- msgid "%plural% for referrals"
 
 
952
  msgstr ""
953
 
954
- #: modules/mycred-module-hooks.php:157
955
- msgid "Award %_plural% for signup or visitor referrals."
 
956
  msgstr ""
957
 
958
- #: modules/mycred-module-hooks.php:333 modules/mycred-module-hooks.php:449
959
- #: modules/mycred-module-settings.php:759
960
- #: modules/mycred-module-settings.php:785
961
- #: includes/classes/class.query-log.php:1136
962
- #: includes/classes/class.query-log.php:1736
963
- #: addons/banking/services/mycred-service-payouts.php:472
964
- msgid "Delete"
965
  msgstr ""
966
 
967
- #: modules/mycred-module-hooks.php:333 modules/mycred-module-hooks.php:449
968
- #: modules/mycred-module-settings.php:435
969
- #: modules/mycred-module-management.php:315 modules/mycred-module-log.php:550
970
- #: addons/banking/myCRED-addon-banking.php:204
971
- msgid "Close"
972
  msgstr ""
973
 
974
- #: modules/mycred-module-hooks.php:336 modules/mycred-module-hooks.php:452
975
- #: addons/buy-creds/modules/buycred-module-pending.php:541
976
- msgid "Save"
977
  msgstr ""
978
 
979
- #: modules/mycred-module-hooks.php:373 modules/mycred-module-management.php:583
980
- #: addons/buy-creds/includes/buycred-shortcodes.php:326
981
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1191
982
- msgid "Cancel"
983
  msgstr ""
984
 
985
- #: modules/mycred-module-hooks.php:374
986
- msgid "Add Hook"
987
- msgstr ""
 
 
 
988
 
989
- #: modules/mycred-module-hooks.php:413
990
- msgid "Active Hooks"
991
  msgstr ""
992
 
993
- #: modules/mycred-module-hooks.php:416
994
- msgid "The following hooks are used for all users."
995
  msgstr ""
996
 
997
- #: modules/mycred-module-buddypress.php:31
998
- msgid "My History"
 
999
  msgstr ""
1000
 
1001
- #: modules/mycred-module-buddypress.php:32
1002
- #, php-format
1003
- msgid "%s's History"
 
 
 
1004
  msgstr ""
1005
 
1006
- #: modules/mycred-module-buddypress.php:131
1007
- msgid "Current balance"
1008
  msgstr ""
1009
 
1010
- #: modules/mycred-module-buddypress.php:236
1011
- #: modules/mycred-module-buddypress.php:249
1012
- #: includes/classes/class.query-log.php:1859
1013
- msgid "All"
1014
  msgstr ""
1015
 
1016
- #: modules/mycred-module-buddypress.php:237
1017
- #: includes/classes/class.query-log.php:1860
1018
- msgid "Today"
1019
  msgstr ""
1020
 
1021
- #: modules/mycred-module-buddypress.php:238
1022
- #: includes/classes/class.query-log.php:1861
1023
- msgid "Yesterday"
1024
  msgstr ""
1025
 
1026
- #: modules/mycred-module-buddypress.php:239
1027
- #: includes/classes/class.query-log.php:1862
1028
- msgid "This Week"
1029
  msgstr ""
1030
 
1031
- #: modules/mycred-module-buddypress.php:240
1032
- #: includes/classes/class.query-log.php:1863
1033
- msgid "This Month"
 
1034
  msgstr ""
1035
 
1036
- #: modules/mycred-module-buddypress.php:352
1037
- msgid "Show:"
1038
  msgstr ""
1039
 
1040
- #: modules/mycred-module-buddypress.php:352
1041
- msgid "Go"
 
1042
  msgstr ""
1043
 
1044
- #: modules/mycred-module-buddypress.php:404
1045
- #: modules/mycred-module-buddypress.php:411
1046
- #: addons/badges/myCRED-addon-badges.php:1188
1047
- #: addons/badges/myCRED-addon-badges.php:1222
1048
- #: addons/gateway/carts/mycred-woocommerce.php:147
1049
- msgid "Do not show"
1050
  msgstr ""
1051
 
1052
- #: modules/mycred-module-buddypress.php:405
1053
- #: addons/badges/myCRED-addon-badges.php:1189
1054
- msgid "Include in Profile Header"
1055
  msgstr ""
1056
 
1057
- #: modules/mycred-module-buddypress.php:406
1058
- #: addons/badges/myCRED-addon-badges.php:1190
1059
- #: addons/ranks/myCRED-addon-ranks.php:1655
1060
- msgid "Include under the \"Profile\" tab"
 
 
 
 
 
1061
  msgstr ""
1062
 
1063
- #: modules/mycred-module-buddypress.php:407
1064
- #: addons/badges/myCRED-addon-badges.php:1191
1065
- msgid "Include under the \"Profile\" tab and Profile Header"
1066
  msgstr ""
1067
 
1068
- #: modules/mycred-module-buddypress.php:412
1069
- msgid "Show in Profile"
1070
  msgstr ""
1071
 
1072
- #: modules/mycred-module-buddypress.php:432
1073
- msgid "%singular% Balance"
 
 
 
 
 
 
 
 
 
 
 
1074
  msgstr ""
1075
 
1076
- #: modules/mycred-module-buddypress.php:447
1077
- msgid "Members and visitors can view other members %_singular% balance."
1078
  msgstr ""
1079
 
1080
- #: modules/mycred-module-buddypress.php:453
1081
- #: addons/notifications/myCRED-addon-notifications.php:198
1082
- #: addons/ranks/myCRED-addon-ranks.php:1670
1083
- #: addons/ranks/myCRED-addon-ranks.php:1711
1084
- msgid "Template"
1085
  msgstr ""
1086
 
1087
- #: modules/mycred-module-buddypress.php:463
1088
- msgid "%plural% History"
 
1089
  msgstr ""
1090
 
1091
- #: modules/mycred-module-buddypress.php:477
1092
- msgid "Members can view each others %_plural% history."
1093
  msgstr ""
1094
 
1095
- #: modules/mycred-module-buddypress.php:482
1096
- msgid "Menu Title"
1097
  msgstr ""
1098
 
1099
- #: modules/mycred-module-buddypress.php:484
1100
- msgid "Title shown to me"
 
 
1101
  msgstr ""
1102
 
1103
- #: modules/mycred-module-buddypress.php:491
1104
- #, php-format
1105
- msgid "Title shown to others. Use %s to show the first name."
1106
  msgstr ""
1107
 
1108
- #: modules/mycred-module-buddypress.php:499
1109
- msgid "Menu Position"
1110
  msgstr ""
1111
 
1112
- #: modules/mycred-module-buddypress.php:501
1113
- msgid "Current menu positions:"
1114
  msgstr ""
1115
 
1116
- #: modules/mycred-module-buddypress.php:506
1117
- msgid "History URL slug"
1118
  msgstr ""
1119
 
1120
- #: modules/mycred-module-buddypress.php:508
1121
- msgid "The history page slug. Must be URL friendly."
1122
  msgstr ""
1123
 
1124
- #: modules/mycred-module-buddypress.php:513
1125
- msgid "Number of history entries to show"
 
 
1126
  msgstr ""
1127
 
1128
- #: modules/mycred-module-addons.php:177
1129
- msgid "Give your users badges based on their interaction with your website."
 
1130
  msgstr ""
1131
 
1132
- #: modules/mycred-module-addons.php:189
1133
- msgid ""
1134
- "Setup recurring payouts or offer / charge interest on user account balances."
1135
  msgstr ""
1136
 
1137
- #: modules/mycred-module-addons.php:201
1138
- msgid ""
1139
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
1140
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
1141
- "also let your users buy points for other members."
1142
  msgstr ""
1143
 
1144
- #: modules/mycred-module-addons.php:213
1145
- msgid ""
1146
- "The coupons add-on allows you to create coupons that users can use to add "
1147
- "points to their accounts."
1148
  msgstr ""
1149
 
1150
- #: modules/mycred-module-addons.php:225
1151
- msgid "Create email notices for any type of myCRED instance."
1152
  msgstr ""
1153
 
1154
- #: modules/mycred-module-addons.php:237
1155
- msgid ""
1156
- "Let your users pay using their <strong>my</strong>CRED points balance. "
1157
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
1158
- "Bookings: Event Espresso and Events Manager (free & pro)."
1159
  msgstr ""
1160
 
1161
- #: modules/mycred-module-addons.php:249
1162
- msgid "Create pop-up notifications for when users gain or loose points."
1163
  msgstr ""
1164
 
1165
- #: modules/mycred-module-addons.php:262
1166
- msgid ""
1167
- "Create ranks for users reaching a certain number of %_plural% with the "
1168
- "option to add logos for each rank."
1169
  msgstr ""
1170
 
1171
- #: modules/mycred-module-addons.php:274
1172
- msgid ""
1173
- "This add-on allows you to sell posts, pages or any public post types on your "
1174
- "website. You can either sell the entire content or using our shortcode, sell "
1175
- "parts of your content allowing you to offer \"teasers\"."
1176
  msgstr ""
1177
 
1178
- #: modules/mycred-module-addons.php:286
1179
- msgid ""
1180
- "Gives you access to your myCRED Statistics based on your users gains and "
1181
- "loses."
 
 
 
 
 
 
 
1182
  msgstr ""
1183
 
1184
- #: modules/mycred-module-addons.php:297
1185
- msgid ""
1186
- "Allow your users to send or \"donate\" points to other members by either "
1187
- "using the mycred_transfer shortcode or the myCRED Transfer widget."
 
 
1188
  msgstr ""
1189
 
1190
- #: modules/mycred-module-addons.php:349
1191
- msgid "Add-on Activated"
 
1192
  msgstr ""
1193
 
1194
- #: modules/mycred-module-addons.php:352
1195
- msgid "Add-on Deactivated"
 
 
 
1196
  msgstr ""
1197
 
1198
- #: modules/mycred-module-addons.php:431
1199
- msgid "Activate"
1200
  msgstr ""
1201
 
1202
- #: modules/mycred-module-addons.php:437
1203
- msgid "Deactivate"
1204
  msgstr ""
1205
 
1206
- #: modules/mycred-module-settings.php:144
1207
- msgid "Accounts successfully reset"
 
 
1208
  msgstr ""
1209
 
1210
- #: modules/mycred-module-settings.php:196
1211
- msgid "No users found to export"
1212
  msgstr ""
1213
 
1214
- #: modules/mycred-module-settings.php:246
1215
- msgid "Invalid decimal value."
 
1216
  msgstr ""
1217
 
1218
- #: modules/mycred-module-settings.php:294
1219
- msgid "Log Updated"
 
 
 
1220
  msgstr ""
1221
 
1222
- #: modules/mycred-module-settings.php:431
1223
- msgid ""
1224
- "Warning! All entries in your log will be permanently removed! This can not "
1225
- "be undone!"
1226
  msgstr ""
1227
 
1228
- #: modules/mycred-module-settings.php:432
1229
- msgid ""
1230
- "All log entries belonging to deleted users will be permanently deleted! This "
1231
- "can not be undone!"
1232
  msgstr ""
1233
 
1234
- #: modules/mycred-module-settings.php:433
1235
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
1236
  msgstr ""
1237
 
1238
- #: modules/mycred-module-settings.php:434
1239
- msgid "Done!"
1240
  msgstr ""
1241
 
1242
- #: modules/mycred-module-settings.php:436
1243
- msgid "Export %singular% Balances"
1244
  msgstr ""
1245
 
1246
- #: modules/mycred-module-settings.php:437
1247
- msgid ""
1248
- "In order to adjust the number of decimal places you want to use we must "
1249
- "update your log. It is highly recommended that you backup your current log "
1250
- "before continuing!"
1251
  msgstr ""
1252
 
1253
- #: modules/mycred-module-settings.php:462
1254
- msgid "Update Database"
1255
  msgstr ""
1256
 
1257
- #: modules/mycred-module-settings.php:473
1258
- #: modules/mycred-module-settings.php:485
1259
- msgid "No decimals"
1260
  msgstr ""
1261
 
1262
- #: modules/mycred-module-settings.php:497
1263
- #, php-format
1264
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
1265
  msgstr ""
1266
 
1267
- #: modules/mycred-module-settings.php:534
1268
  #, php-format
1269
- msgid "Thank you for using %s. If you have a moment, please leave a %s."
1270
  msgstr ""
1271
 
1272
- #: modules/mycred-module-settings.php:534
1273
- msgid "review"
1274
  msgstr ""
1275
 
1276
- #: modules/mycred-module-settings.php:542
1277
- msgid "Core Settings"
1278
  msgstr ""
1279
 
1280
- #: modules/mycred-module-settings.php:594
1281
- msgid "Set decimals to zero if you prefer to use whole numbers."
1282
  msgstr ""
1283
 
1284
- #: modules/mycred-module-settings.php:596
1285
- msgid "Tip"
1286
  msgstr ""
1287
 
1288
- #: modules/mycred-module-settings.php:596
1289
- msgid ""
1290
- "As this is your main point type, the value you select here will be the "
1291
- "largest number of decimals your installation will support."
1292
  msgstr ""
1293
 
1294
- #: modules/mycred-module-settings.php:648
1295
- msgid "Other Settings"
1296
  msgstr ""
1297
 
1298
- #: modules/mycred-module-settings.php:650
1299
- msgid "Delete log entries when user is deleted."
1300
  msgstr ""
1301
 
1302
- #: modules/mycred-module-settings.php:669
1303
- msgid "Management"
1304
  msgstr ""
1305
 
1306
- #: modules/mycred-module-settings.php:681 modules/mycred-module-log.php:515
1307
- msgid "Entries"
1308
  msgstr ""
1309
 
1310
- #: modules/mycred-module-settings.php:687
1311
- #: modules/mycred-module-settings.php:712
1312
- #: addons/ranks/myCRED-addon-ranks.php:1841
1313
- #: addons/buy-creds/includes/buycred-shortcodes.php:348
1314
- #: addons/buy-creds/modules/buycred-module-pending.php:513
1315
- msgid "Actions"
1316
  msgstr ""
1317
 
1318
- #: modules/mycred-module-settings.php:690
1319
- msgid "Empty Log"
1320
  msgstr ""
1321
 
1322
- #: modules/mycred-module-settings.php:700
1323
- msgid "Balance Meta Key"
1324
  msgstr ""
1325
 
1326
- #: modules/mycred-module-settings.php:706
1327
- #: addons/badges/myCRED-addon-badges.php:455
1328
- #: addons/ranks/myCRED-addon-ranks.php:1242
1329
- msgid "Users"
1330
  msgstr ""
1331
 
1332
- #: modules/mycred-module-settings.php:714
1333
- msgid "Set all to zero"
 
 
 
 
 
1334
  msgstr ""
1335
 
1336
- #: modules/mycred-module-settings.php:715
1337
- msgid "Export Balances"
 
 
 
 
 
 
 
 
 
 
 
1338
  msgstr ""
1339
 
1340
- #: modules/mycred-module-settings.php:732
1341
- #: addons/transfer/myCRED-addon-transfer.php:292
1342
- #: addons/email-notices/myCRED-addon-email-notices.php:657
1343
- #: addons/sell-content/myCRED-addon-sell-content.php:581
1344
- #: includes/widgets/mycred-widget-wallet.php:123
1345
- #: addons/transfer/includes/mycred-transfer-widgets.php:121
1346
- msgid "Point Types"
1347
  msgstr ""
1348
 
1349
- #: modules/mycred-module-settings.php:746
1350
- #: modules/mycred-module-settings.php:772
1351
- #: modules/mycred-module-settings.php:802
1352
- msgid "Meta Key"
 
 
 
 
1353
  msgstr ""
1354
 
1355
- #: modules/mycred-module-settings.php:752
1356
- #: modules/mycred-module-settings.php:778
1357
- #: modules/mycred-module-settings.php:808
1358
- #: addons/gateway/carts/mycred-woocommerce.php:155
1359
- msgid "Label"
 
 
1360
  msgstr ""
1361
 
1362
- #: modules/mycred-module-settings.php:798
1363
- msgid "Add New Type"
1364
  msgstr ""
1365
 
1366
- #: modules/mycred-module-settings.php:814
1367
- msgid ""
1368
- "The meta key must be lowercase and only contain letters or underscores. All "
1369
- "other characters will be deleted!"
 
 
1370
  msgstr ""
1371
 
1372
- #: modules/mycred-module-settings.php:826
1373
- #: addons/gateway/event-booking/mycred-eventespresso3.php:551
1374
- #: addons/buy-creds/modules/buycred-module-core.php:798
1375
- msgid "Update Settings"
1376
  msgstr ""
1377
 
1378
- #: modules/mycred-module-settings.php:839
1379
- msgid "Identify users by"
1380
  msgstr ""
1381
 
1382
- #: modules/mycred-module-settings.php:845
1383
- msgid "User ID"
1384
  msgstr ""
1385
 
1386
- #: modules/mycred-module-settings.php:846
1387
- msgid "User Email"
 
 
 
 
1388
  msgstr ""
1389
 
1390
- #: modules/mycred-module-settings.php:847
1391
- msgid "User Login"
1392
  msgstr ""
1393
 
1394
- #: modules/mycred-module-settings.php:855
1395
- msgid ""
1396
- "Use ID if you intend to use this export as a backup of your current site "
1397
- "while Email is recommended if you want to export to a different site."
1398
  msgstr ""
1399
 
1400
- #: modules/mycred-module-settings.php:860
1401
- msgid "Import Log Entry"
1402
  msgstr ""
1403
 
1404
- #: modules/mycred-module-settings.php:862
1405
- #, php-format
1406
- msgid ""
1407
- "Optional log entry to use if you intend to import this file in a different "
1408
- "%s installation."
1409
  msgstr ""
1410
 
1411
- #: modules/mycred-module-management.php:101
1412
- msgid "Update Balance"
1413
  msgstr ""
1414
 
1415
- #: modules/mycred-module-management.php:114
1416
- msgid "User is excluded"
 
 
 
1417
  msgstr ""
1418
 
1419
- #: modules/mycred-module-management.php:122
1420
- msgid "Log Entry can not be empty"
 
 
 
1421
  msgstr ""
1422
 
1423
- #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:311
1424
- msgid "Amount can not be zero"
1425
  msgstr ""
1426
 
1427
- #: modules/mycred-module-management.php:184
1428
- msgid "Balance successfully updated"
 
 
 
1429
  msgstr ""
1430
 
1431
- #: modules/mycred-module-management.php:189
1432
- msgid "Request declined"
 
 
 
1433
  msgstr ""
1434
 
1435
- #: modules/mycred-module-management.php:224
1436
- msgid "No recent activity found."
1437
  msgstr ""
1438
 
1439
- #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:151
1440
- #: modules/mycred-module-log.php:982 includes/classes/class.query-log.php:1009
1441
- #: includes/classes/class.query-log.php:1022
1442
- #: includes/classes/class.query-export.php:263
1443
- #: includes/classes/class.query-export.php:399
1444
- #: addons/banking/services/mycred-service-payouts.php:740
1445
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
1446
- #: addons/buy-creds/modules/buycred-module-core.php:916
1447
- msgid "Date"
1448
  msgstr ""
1449
 
1450
- #: modules/mycred-module-management.php:236
1451
- #: addons/banking/services/mycred-service-payouts.php:746
1452
- #: addons/banking/services/mycred-service-interest.php:435
1453
- #: addons/banking/services/mycred-service-interest.php:460
1454
- msgid "Time"
1455
  msgstr ""
1456
 
1457
- #: modules/mycred-module-management.php:237
1458
- #: modules/mycred-module-management.php:775 modules/mycred-module-log.php:150
1459
- #: modules/mycred-module-log.php:990
1460
- #: addons/email-notices/myCRED-addon-email-notices.php:628
1461
- #: includes/classes/class.query-log.php:1021
1462
- #: includes/classes/class.query-export.php:263
1463
- #: includes/classes/class.query-export.php:360
1464
- #: addons/transfer/includes/mycred-transfer-widgets.php:109
1465
- msgid "Reference"
1466
  msgstr ""
1467
 
1468
- #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:153
1469
- #: includes/classes/class.query-log.php:1011
1470
- #: includes/classes/class.query-log.php:1024
1471
- #: includes/classes/class.query-export.php:263
1472
- #: includes/classes/class.query-export.php:406
1473
- msgid "Entry"
1474
  msgstr ""
1475
 
1476
- #: modules/mycred-module-management.php:280
1477
- msgid "View complete history"
 
 
 
1478
  msgstr ""
1479
 
1480
- #: modules/mycred-module-management.php:314
1481
- msgid "Edit Users Balance"
 
 
1482
  msgstr ""
1483
 
1484
- #: modules/mycred-module-management.php:453
1485
- #: modules/mycred-module-management.php:571
1486
- #: addons/sell-content/myCRED-addon-sell-content.php:411
1487
- #: addons/buy-creds/modules/buycred-module-core.php:1289
1488
- msgid "Excluded"
1489
  msgstr ""
1490
 
1491
- #: modules/mycred-module-management.php:463
1492
- #: addons/coupons/myCRED-addon-coupons.php:310
1493
- #: includes/hooks/mycred-hook-referrals.php:50
1494
- msgid "Total"
1495
  msgstr ""
1496
 
1497
- #: modules/mycred-module-management.php:474
1498
- msgid "Adjust"
 
 
1499
  msgstr ""
1500
 
1501
- #: modules/mycred-module-management.php:555
1502
- msgid "Balances"
 
1503
  msgstr ""
1504
 
1505
- #: modules/mycred-module-management.php:583
1506
- #: modules/mycred-module-management.php:583
1507
- #: includes/classes/class.query-log.php:1735
1508
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
1509
- msgid "Edit"
1510
  msgstr ""
1511
 
1512
- #: modules/mycred-module-management.php:741
1513
- #: addons/banking/services/mycred-service-payouts.php:553
1514
- msgid "ID"
1515
  msgstr ""
1516
 
1517
- #: modules/mycred-module-management.php:753
1518
- #: addons/gateway/event-booking/mycred-eventespresso3.php:307
1519
- #: addons/gateway/event-booking/mycred-eventespresso3.php:332
1520
- #: addons/gateway/event-booking/mycred-eventsmanager.php:464
1521
- msgid "Current Balance"
1522
  msgstr ""
1523
 
1524
- #: modules/mycred-module-management.php:759
1525
- msgid "Total Balance"
 
1526
  msgstr ""
1527
 
1528
- #: modules/mycred-module-management.php:768
1529
- #: includes/classes/class.query-log.php:1034
1530
- #: includes/classes/class.query-export.php:263
1531
- #: includes/classes/class.query-export.php:383
1532
- #: includes/shortcodes/mycred_exchange.php:69
1533
- #: includes/shortcodes/mycred_hook_table.php:78
1534
- #: addons/transfer/includes/mycred-transfer-object.php:823
1535
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:30
1536
- #: addons/transfer/includes/mycred-transfer-widgets.php:105
1537
- #: addons/stats/includes/mycred-stats-object.php:373
1538
- #: addons/buy-creds/includes/buycred-shortcodes.php:345
1539
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:487
1540
- #: addons/buy-creds/modules/buycred-module-pending.php:316
1541
- #: addons/buy-creds/modules/buycred-module-pending.php:683
1542
- #: includes/hooks/external/mycred-hook-affiliatewp.php:291
1543
- #: includes/hooks/external/mycred-hook-affiliatewp.php:310
1544
- #: includes/hooks/external/mycred-hook-affiliatewp.php:340
1545
- msgid "Amount"
1546
  msgstr ""
1547
 
1548
- #: modules/mycred-module-management.php:770
1549
- msgid "A positive or negative value"
 
 
1550
  msgstr ""
1551
 
1552
- #: modules/mycred-module-management.php:785
1553
- msgid "Log under a custom reference"
 
1554
  msgstr ""
1555
 
1556
- #: modules/mycred-module-management.php:791
1557
- msgid "lowercase without empty spaces"
 
1558
  msgstr ""
1559
 
1560
- #: modules/mycred-module-management.php:796 modules/mycred-module-log.php:1001
1561
- #: addons/gateway/event-booking/mycred-eventespresso3.php:518
1562
- msgid "Log Entry"
1563
  msgstr ""
1564
 
1565
- #: modules/mycred-module-management.php:797
1566
- #: addons/transfer/includes/mycred-transfer-widgets.php:92
1567
- #: addons/transfer/includes/mycred-transfer-widgets.php:114
1568
- #: addons/transfer/includes/mycred-transfer-widgets.php:118
1569
- #: addons/transfer/includes/mycred-transfer-widgets.php:126
1570
- msgid "optional"
1571
  msgstr ""
1572
 
1573
- #: modules/mycred-module-management.php:804
1574
- msgid "Update"
1575
  msgstr ""
1576
 
1577
- #: modules/mycred-module-management.php:807
1578
- msgid "Recent Activity"
1579
  msgstr ""
1580
 
1581
- #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
1582
- #: modules/mycred-module-log.php:634
1583
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
1584
- msgid "Log"
1585
  msgstr ""
1586
 
1587
- #: modules/mycred-module-log.php:149 modules/mycred-module-log.php:978
1588
- #: addons/email-notices/myCRED-addon-email-notices.php:423
1589
- #: addons/email-notices/myCRED-addon-email-notices.php:684
1590
- #: includes/classes/class.query-log.php:1008
1591
- #: includes/classes/class.query-log.php:1020
1592
- #: includes/classes/class.query-export.php:263
1593
- #: includes/classes/class.query-export.php:371
1594
- msgid "User"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1595
  msgstr ""
1596
 
1597
- #: modules/mycred-module-log.php:256
1598
- msgid "Row Deleted"
1599
  msgstr ""
1600
 
1601
- #: modules/mycred-module-log.php:301
1602
- msgid "Invalid or empty reference"
 
1603
  msgstr ""
1604
 
1605
- #: modules/mycred-module-log.php:306
1606
- msgid "Log Entry cannot be empty"
 
1607
  msgstr ""
1608
 
1609
- #: modules/mycred-module-log.php:318
1610
- msgid "Log entry not found"
1611
  msgstr ""
1612
 
1613
- #: modules/mycred-module-log.php:327
1614
- msgid "Could not save the new log entry"
1615
  msgstr ""
1616
 
1617
- #: modules/mycred-module-log.php:350
1618
- msgid "Log entry successfully updated"
1619
  msgstr ""
1620
 
1621
- #: modules/mycred-module-log.php:395
1622
- #, php-format
1623
- msgid "1 Entry Deleted"
1624
- msgid_plural "%d Entries Deleted"
1625
- msgstr[0] ""
1626
- msgstr[1] ""
1627
 
1628
- #: modules/mycred-module-log.php:549
1629
- msgid "Edit Log Entry"
1630
  msgstr ""
1631
 
1632
- #: modules/mycred-module-log.php:553
1633
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
1634
  msgstr ""
1635
 
1636
- #: modules/mycred-module-log.php:554
1637
- msgid "The log entry was successfully updated."
1638
  msgstr ""
1639
 
1640
- #: modules/mycred-module-log.php:555
1641
- msgid "The selected log entry could not be deleted."
1642
  msgstr ""
1643
 
1644
- #: modules/mycred-module-log.php:584
1645
- msgid "Search results for"
1646
  msgstr ""
1647
 
1648
- #: modules/mycred-module-log.php:589
1649
- #, php-format
1650
- msgctxt "e.g. Log entries from April 12th 2016"
1651
- msgid "Log entries from %s"
1652
  msgstr ""
1653
 
1654
- #: modules/mycred-module-log.php:644
1655
- msgid ""
1656
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
1657
- "Certain hooks and shortcodes will not work correctly!"
1658
  msgstr ""
1659
 
1660
- #: modules/mycred-module-log.php:743
1661
- #, php-format
1662
- msgid "My %s History"
1663
  msgstr ""
1664
 
1665
- #: modules/mycred-module-log.php:997
1666
- msgid "Original Entry"
1667
  msgstr ""
1668
 
1669
- #: modules/mycred-module-log.php:1009
1670
- msgid "Delete Entry"
 
1671
  msgstr ""
1672
 
1673
- #: modules/mycred-module-log.php:1014
1674
- msgid "Update Entry"
1675
  msgstr ""
1676
 
1677
- #: addons/coupons/myCRED-addon-coupons.php:105
1678
- #: addons/coupons/myCRED-addon-coupons.php:111
1679
- #: addons/coupons/myCRED-addon-coupons.php:177
1680
- #: addons/coupons/myCRED-addon-coupons.php:178
1681
- #: addons/coupons/myCRED-addon-coupons.php:689
1682
- msgid "Coupons"
1683
  msgstr ""
1684
 
1685
- #: addons/coupons/myCRED-addon-coupons.php:106
1686
- msgid "Coupon"
1687
  msgstr ""
1688
 
1689
- #: addons/coupons/myCRED-addon-coupons.php:107
1690
- #: addons/coupons/myCRED-addon-coupons.php:108
1691
- msgid "Create New"
1692
  msgstr ""
1693
 
1694
- #: addons/coupons/myCRED-addon-coupons.php:109
1695
- msgid "Edit Coupon"
1696
  msgstr ""
1697
 
1698
- #: addons/coupons/myCRED-addon-coupons.php:110
1699
- msgid "New Coupon"
1700
  msgstr ""
1701
 
1702
- #: addons/coupons/myCRED-addon-coupons.php:113
1703
- msgid "Search coupons"
1704
  msgstr ""
1705
 
1706
- #: addons/coupons/myCRED-addon-coupons.php:114
1707
- msgid "No coupons found"
 
1708
  msgstr ""
1709
 
1710
- #: addons/coupons/myCRED-addon-coupons.php:115
1711
- msgid "No coupons found in Trash"
1712
  msgstr ""
1713
 
1714
- #: addons/coupons/myCRED-addon-coupons.php:117
1715
- #: addons/email-notices/myCRED-addon-email-notices.php:1150
1716
- msgid "Email Notices"
1717
  msgstr ""
1718
 
1719
- #: addons/coupons/myCRED-addon-coupons.php:148
1720
- #: addons/coupons/myCRED-addon-coupons.php:149
1721
- #: addons/coupons/myCRED-addon-coupons.php:150
1722
- #: addons/coupons/myCRED-addon-coupons.php:151
1723
- #: addons/coupons/myCRED-addon-coupons.php:154
1724
- #: addons/coupons/myCRED-addon-coupons.php:155
1725
- #: addons/coupons/myCRED-addon-coupons.php:156
1726
- #: addons/coupons/myCRED-addon-coupons.php:157
1727
- msgid "Coupon updated."
1728
  msgstr ""
1729
 
1730
- #: addons/coupons/myCRED-addon-coupons.php:153
1731
- msgid "Coupon published."
1732
  msgstr ""
1733
 
1734
- #: addons/coupons/myCRED-addon-coupons.php:239
1735
- #: addons/coupons/myCRED-addon-coupons.php:256
1736
- msgid "Coupon Code"
1737
  msgstr ""
1738
 
1739
- #: addons/coupons/myCRED-addon-coupons.php:257
1740
- #: addons/coupons/myCRED-addon-coupons.php:500
1741
- msgid "Value"
1742
  msgstr ""
1743
 
1744
- #: addons/coupons/myCRED-addon-coupons.php:258
1745
- msgid "Used"
1746
  msgstr ""
1747
 
1748
- #: addons/coupons/myCRED-addon-coupons.php:259
1749
- #: addons/transfer/myCRED-addon-transfer.php:352
1750
- #: includes/hooks/mycred-hook-link-clicks.php:291
1751
- #: addons/banking/services/mycred-service-payouts.php:599
1752
- #: addons/banking/services/mycred-service-payouts.php:760
1753
- msgid "Limits"
1754
  msgstr ""
1755
 
1756
- #: addons/coupons/myCRED-addon-coupons.php:260
1757
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:205
1758
- msgid "Expires"
 
1759
  msgstr ""
1760
 
1761
- #: addons/coupons/myCRED-addon-coupons.php:302
1762
- #: addons/coupons/myCRED-addon-coupons.php:636
1763
- #, php-format
1764
- msgid "1 time"
1765
- msgid_plural "%d times"
1766
- msgstr[0] ""
1767
- msgstr[1] ""
1768
 
1769
- #: addons/coupons/myCRED-addon-coupons.php:310
1770
- msgid "Per User"
1771
  msgstr ""
1772
 
1773
- #: addons/coupons/myCRED-addon-coupons.php:325
1774
- msgid "Expired"
1775
  msgstr ""
1776
 
1777
- #: addons/coupons/myCRED-addon-coupons.php:331
1778
- #, php-format
1779
- msgid "In %s time"
1780
  msgstr ""
1781
 
1782
- #: addons/coupons/myCRED-addon-coupons.php:419
1783
- msgid "Coupon Setup"
1784
  msgstr ""
1785
 
1786
- #: addons/coupons/myCRED-addon-coupons.php:428
1787
- msgid "Coupon Limits"
1788
  msgstr ""
1789
 
1790
- #: addons/coupons/myCRED-addon-coupons.php:437
1791
- msgid "Coupon Requirements"
1792
  msgstr ""
1793
 
1794
- #: addons/coupons/myCRED-addon-coupons.php:447
1795
- #: includes/classes/class.query-log.php:2423
1796
- msgid "Coupon Usage"
1797
  msgstr ""
1798
 
1799
- #: addons/coupons/myCRED-addon-coupons.php:473
1800
- msgid ""
1801
- "Warning. The previous expiration date set for this coupon was formatted "
1802
- "incorrectly and was deleted. If you still want the coupon to expire, please "
1803
- "enter a new date or leave empty to disable."
1804
  msgstr ""
1805
 
1806
- #: addons/coupons/myCRED-addon-coupons.php:502
1807
- msgid "The amount of %plural% a user receives when redeeming this coupon."
1808
  msgstr ""
1809
 
1810
- #: addons/coupons/myCRED-addon-coupons.php:511
1811
- msgid "Select the point type that this coupon is applied."
1812
  msgstr ""
1813
 
1814
- #: addons/coupons/myCRED-addon-coupons.php:523
1815
- msgid "Expire"
1816
  msgstr ""
1817
 
1818
- #: addons/coupons/myCRED-addon-coupons.php:525
1819
- msgid ""
1820
- "Optional date when this coupon expires. Expired coupons will be trashed."
1821
  msgstr ""
1822
 
1823
- #: addons/coupons/myCRED-addon-coupons.php:553
1824
- msgid "Global Maximum"
1825
  msgstr ""
1826
 
1827
- #: addons/coupons/myCRED-addon-coupons.php:555
1828
- msgid ""
1829
- "The maximum number of times this coupon can be used in total. Once this is "
1830
- "reached, the coupon is automatically trashed."
1831
  msgstr ""
1832
 
1833
- #: addons/coupons/myCRED-addon-coupons.php:560
1834
- msgid "User Maximum"
 
 
 
 
 
1835
  msgstr ""
1836
 
1837
- #: addons/coupons/myCRED-addon-coupons.php:562
1838
- msgid "The maximum number of times this coupon can be used by a user."
 
 
 
 
1839
  msgstr ""
1840
 
1841
- #: addons/coupons/myCRED-addon-coupons.php:590
1842
- #: addons/banking/services/mycred-service-interest.php:499
1843
- msgid "Minimum Balance"
 
1844
  msgstr ""
1845
 
1846
- #: addons/coupons/myCRED-addon-coupons.php:595
1847
- msgid ""
1848
- "Optional minimum balance a user must have in order to use this coupon. Use "
1849
- "zero to disable."
1850
  msgstr ""
1851
 
1852
- #: addons/coupons/myCRED-addon-coupons.php:602
1853
- msgid "Maximum Balance"
1854
  msgstr ""
1855
 
1856
- #: addons/coupons/myCRED-addon-coupons.php:607
 
1857
  msgid ""
1858
- "Optional maximum balance a user can have in order to use this coupon. Use "
1859
- "zero to disable."
1860
  msgstr ""
1861
 
1862
- #: addons/coupons/myCRED-addon-coupons.php:692
1863
- msgid "Message Templates"
1864
  msgstr ""
1865
 
1866
- #: addons/coupons/myCRED-addon-coupons.php:696
1867
- msgid "Invalid Coupon Message"
 
1868
  msgstr ""
1869
 
1870
- #: addons/coupons/myCRED-addon-coupons.php:698
1871
- msgid "Message to show when users try to use a coupon that does not exists."
1872
  msgstr ""
1873
 
1874
- #: addons/coupons/myCRED-addon-coupons.php:703
1875
- msgid "Expired Coupon Message"
 
1876
  msgstr ""
1877
 
1878
- #: addons/coupons/myCRED-addon-coupons.php:705
1879
- msgid "Message to show when users try to use that has expired."
1880
  msgstr ""
1881
 
1882
- #: addons/coupons/myCRED-addon-coupons.php:712
1883
- msgid "Minimum Balance Message"
1884
  msgstr ""
1885
 
1886
- #: addons/coupons/myCRED-addon-coupons.php:714
1887
  msgid ""
1888
- "Message to show when a user does not meet the minimum balance requirement. "
1889
- "(if used)"
1890
  msgstr ""
1891
 
1892
- #: addons/coupons/myCRED-addon-coupons.php:719
1893
- msgid "Maximum Balance Message"
 
 
1894
  msgstr ""
1895
 
1896
- #: addons/coupons/myCRED-addon-coupons.php:721
1897
  msgid ""
1898
- "Message to show when a user does not meet the maximum balance requirement. "
1899
- "(if used)"
1900
  msgstr ""
1901
 
1902
- #: addons/coupons/myCRED-addon-coupons.php:728
1903
- msgid "User Limit Message"
 
 
 
 
1904
  msgstr ""
1905
 
1906
- #: addons/coupons/myCRED-addon-coupons.php:730
1907
- msgid "Message to show when the user limit has been reached for the coupon."
1908
  msgstr ""
1909
 
1910
- #: addons/coupons/myCRED-addon-coupons.php:735
1911
- msgid "Excluded Message"
 
 
1912
  msgstr ""
1913
 
1914
- #: addons/coupons/myCRED-addon-coupons.php:737
1915
- msgid ""
1916
- "Message to show when a user is excluded from the point type the coupon gives."
1917
  msgstr ""
1918
 
1919
- #: addons/coupons/myCRED-addon-coupons.php:744
1920
- msgid "Success Message"
 
1921
  msgstr ""
1922
 
1923
- #: addons/coupons/myCRED-addon-coupons.php:746
1924
- msgid ""
1925
- "Message to show when a coupon was successfully deposited to a users account."
 
 
 
 
 
 
 
 
 
 
 
1926
  msgstr ""
1927
 
1928
- #: addons/coupons/myCRED-addon-coupons.php:751
1929
- #: includes/hooks/mycred-hook-registrations.php:86
1930
- #: includes/hooks/mycred-hook-link-clicks.php:282
1931
- #: includes/hooks/mycred-hook-watching-video.php:311
1932
- #: includes/hooks/mycred-hook-logins.php:141
1933
- #: includes/hooks/mycred-hook-anniversary.php:113
1934
- #: includes/hooks/mycred-hook-site-visits.php:101
1935
- #: addons/gateway/carts/mycred-wpecommerce.php:400
1936
- #: addons/gateway/carts/mycred-woocommerce.php:108
1937
- #: addons/gateway/carts/mycred-woocommerce.php:189
1938
- #: addons/banking/services/mycred-service-payouts.php:710
1939
- #: addons/banking/services/mycred-service-interest.php:510
1940
- #: addons/buy-creds/modules/buycred-module-core.php:530
1941
- #: addons/buy-creds/modules/buycred-module-core.php:555
1942
- #: includes/hooks/external/mycred-hook-woocommerce.php:520
1943
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:273
1944
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:288
1945
- #: includes/hooks/external/mycred-hook-wp-polls.php:177
1946
- #: includes/hooks/external/mycred-hook-badgeOS.php:144
1947
- #: includes/hooks/external/mycred-hook-badgeOS.php:146
1948
- #: includes/hooks/external/mycred-hook-badgeOS.php:157
1949
- #: includes/hooks/external/mycred-hook-badgeOS.php:327
1950
- #: includes/hooks/external/mycred-hook-badgeOS.php:345
1951
- msgid "Log Template"
1952
  msgstr ""
1953
 
1954
- #: addons/coupons/myCRED-addon-coupons.php:753
1955
- msgid ""
1956
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1957
- "code."
1958
  msgstr ""
1959
 
1960
- #: addons/badges/myCRED-addon-badges.php:154
1961
- #: addons/badges/myCRED-addon-badges.php:160
1962
- #: addons/badges/myCRED-addon-badges.php:166
1963
- #: addons/badges/myCRED-addon-badges.php:346
1964
- #: addons/badges/myCRED-addon-badges.php:347
1965
- #: addons/badges/myCRED-addon-badges.php:1175
1966
- #: addons/badges/myCRED-addon-badges.php:1304
1967
- #: addons/badges/myCRED-addon-badges.php:1307
1968
- msgid "Badges"
1969
  msgstr ""
1970
 
1971
- #: addons/badges/myCRED-addon-badges.php:155
1972
- msgid "Badge"
 
 
 
1973
  msgstr ""
1974
 
1975
- #: addons/badges/myCRED-addon-badges.php:156
1976
- #: addons/badges/myCRED-addon-badges.php:157
1977
- #: addons/email-notices/myCRED-addon-email-notices.php:146
1978
- #: addons/email-notices/myCRED-addon-email-notices.php:147
1979
- #: addons/ranks/myCRED-addon-ranks.php:248
1980
- #: addons/ranks/myCRED-addon-ranks.php:249
1981
- #: addons/banking/services/mycred-service-payouts.php:896
1982
- msgid "Add New"
1983
  msgstr ""
1984
 
1985
- #: addons/badges/myCRED-addon-badges.php:158
1986
- msgid "Edit Badge"
1987
  msgstr ""
1988
 
1989
- #: addons/badges/myCRED-addon-badges.php:159
1990
- msgid "New Badge"
 
 
1991
  msgstr ""
1992
 
1993
- #: addons/badges/myCRED-addon-badges.php:161
1994
- msgid "View Badge"
1995
  msgstr ""
1996
 
1997
- #: addons/badges/myCRED-addon-badges.php:162
1998
- msgid "Search Badge"
1999
  msgstr ""
2000
 
2001
- #: addons/badges/myCRED-addon-badges.php:163
2002
- msgid "No badges found"
2003
  msgstr ""
2004
 
2005
- #: addons/badges/myCRED-addon-badges.php:164
2006
- msgid "No badges found in Trash"
2007
  msgstr ""
2008
 
2009
- #: addons/badges/myCRED-addon-badges.php:317
2010
- #: addons/badges/myCRED-addon-badges.php:318
2011
- #: addons/badges/myCRED-addon-badges.php:319
2012
- #: addons/badges/myCRED-addon-badges.php:320
2013
- #: addons/badges/myCRED-addon-badges.php:324
2014
- #: addons/badges/myCRED-addon-badges.php:325
2015
- #: addons/badges/myCRED-addon-badges.php:326
2016
- msgid "Badge Updated."
2017
  msgstr ""
2018
 
2019
- #: addons/badges/myCRED-addon-badges.php:322
2020
- msgid "Badge Enabled."
2021
  msgstr ""
2022
 
2023
- #: addons/badges/myCRED-addon-badges.php:323
2024
- msgid "Badge Saved."
 
 
 
 
 
2025
  msgstr ""
2026
 
2027
- #: addons/badges/myCRED-addon-badges.php:451
2028
- #: addons/badges/myCRED-addon-badges.php:540
2029
- msgid "Badge Name"
2030
  msgstr ""
2031
 
2032
- #: addons/badges/myCRED-addon-badges.php:452
2033
- msgid "Default Image"
2034
  msgstr ""
2035
 
2036
- #: addons/badges/myCRED-addon-badges.php:453
2037
- msgid "First Level"
 
2038
  msgstr ""
2039
 
2040
- #: addons/badges/myCRED-addon-badges.php:454
2041
- msgid "Requirements"
 
 
2042
  msgstr ""
2043
 
2044
- #: addons/badges/myCRED-addon-badges.php:570
2045
- #: addons/badges/myCRED-addon-badges.php:849
2046
- msgid "Add Level"
2047
  msgstr ""
2048
 
2049
- #: addons/badges/myCRED-addon-badges.php:571
2050
- #: addons/badges/myCRED-addon-badges.php:850
2051
- msgid "Remove Level"
2052
  msgstr ""
2053
 
2054
- #: addons/badges/myCRED-addon-badges.php:572
2055
- #: addons/badges/myCRED-addon-badges.php:805
2056
- #: addons/badges/myCRED-addon-badges.php:866
2057
- #: addons/badges/myCRED-addon-badges.php:871
2058
- msgid "Set Image"
2059
  msgstr ""
2060
 
2061
- #: addons/badges/myCRED-addon-badges.php:573
2062
- #: addons/badges/myCRED-addon-badges.php:805
2063
- #: addons/badges/myCRED-addon-badges.php:871
2064
- msgid "Change Image"
2065
  msgstr ""
2066
 
2067
- #: addons/badges/myCRED-addon-badges.php:574
2068
- msgid "Are you sure you want to remove this level?"
2069
  msgstr ""
2070
 
2071
- #: addons/badges/myCRED-addon-badges.php:575
2072
- #: addons/badges/myCRED-addon-badges.php:867
2073
- #: addons/badges/myCRED-addon-badges.php:1336
2074
- msgid "Level"
2075
  msgstr ""
2076
 
2077
- #: addons/badges/myCRED-addon-badges.php:576
2078
- msgid "Badge Image"
2079
  msgstr ""
2080
 
2081
- #: addons/badges/myCRED-addon-badges.php:577
2082
- msgid "Use as Badge"
2083
  msgstr ""
2084
 
2085
- #: addons/badges/myCRED-addon-badges.php:578
2086
- #: addons/badges/myCRED-addon-badges.php:969
2087
- #: addons/badges/includes/mycred-badge-functions.php:287
2088
- msgctxt "Comparison of badge requirements. A AND B"
2089
- msgid "AND"
2090
  msgstr ""
2091
 
2092
- #: addons/badges/myCRED-addon-badges.php:579
2093
- #: addons/badges/myCRED-addon-badges.php:969
2094
- #: addons/badges/includes/mycred-badge-functions.php:285
2095
- msgctxt "Comparison of badge requirements. A OR B"
2096
- msgid "OR"
2097
  msgstr ""
2098
 
2099
- #: addons/badges/myCRED-addon-badges.php:627
2100
- msgid "Badge Setup"
 
 
 
2101
  msgstr ""
2102
 
2103
- #: addons/badges/myCRED-addon-badges.php:636
2104
- msgid "Default Badge Image"
2105
  msgstr ""
2106
 
2107
- #: addons/badges/myCRED-addon-badges.php:732
2108
- msgid "Assign Badge"
2109
  msgstr ""
2110
 
2111
- #: addons/badges/myCRED-addon-badges.php:733
2112
- msgid "Remove Connections"
 
 
2113
  msgstr ""
2114
 
2115
- #: addons/badges/myCRED-addon-badges.php:772
2116
- #: addons/badges/includes/mycred-badge-functions.php:303
2117
- msgid "This badge is manually awarded."
2118
  msgstr ""
2119
 
2120
- #: addons/badges/myCRED-addon-badges.php:808
2121
- msgid "Optional image to show when a user has not earned this badge."
2122
  msgstr ""
2123
 
2124
- #: addons/badges/myCRED-addon-badges.php:827
2125
- msgid "Time(s)"
 
2126
  msgstr ""
2127
 
2128
- #: addons/badges/myCRED-addon-badges.php:828
2129
- msgid "In total"
 
 
 
 
2130
  msgstr ""
2131
 
2132
- #: addons/badges/myCRED-addon-badges.php:873
2133
  #, php-format
2134
- msgid "Level %d"
 
2135
  msgstr ""
2136
 
2137
- #: addons/badges/myCRED-addon-badges.php:876
2138
- #: addons/badges/myCRED-addon-badges.php:877
2139
- #: addons/ranks/myCRED-addon-ranks.php:1241
2140
- msgid "Requirement"
2141
  msgstr ""
2142
 
2143
- #: addons/badges/myCRED-addon-badges.php:897
2144
- msgid "Select Point Type"
2145
  msgstr ""
2146
 
2147
- #: addons/badges/myCRED-addon-badges.php:911
2148
- msgid "Select Reference"
2149
  msgstr ""
2150
 
2151
- #: addons/badges/myCRED-addon-badges.php:987
2152
- msgid "Reward"
2153
  msgstr ""
2154
 
2155
- #: addons/badges/myCRED-addon-badges.php:997
2156
- #: includes/hooks/mycred-hook-publishing-content.php:125
2157
- #: includes/hooks/mycred-hook-publishing-content.php:149
2158
- #: includes/hooks/mycred-hook-publishing-content.php:205
2159
- #: includes/hooks/mycred-hook-referrals.php:570
2160
- #: includes/hooks/mycred-hook-referrals.php:597
2161
- #: includes/hooks/mycred-hook-delete-content.php:123
2162
- #: includes/hooks/mycred-hook-delete-content.php:147
2163
- #: includes/hooks/mycred-hook-delete-content.php:203
2164
- #: includes/hooks/mycred-hook-comments.php:385
2165
- #: includes/hooks/mycred-hook-comments.php:436
2166
- #: includes/hooks/mycred-hook-comments.php:462
2167
- #: includes/hooks/external/mycred-hook-bbPress.php:449
2168
- #: includes/hooks/external/mycred-hook-bbPress.php:467
2169
- #: includes/hooks/external/mycred-hook-bbPress.php:491
2170
- #: includes/hooks/external/mycred-hook-bbPress.php:518
2171
- #: includes/hooks/external/mycred-hook-bbPress.php:542
2172
- #: includes/hooks/external/mycred-hook-bbPress.php:566
2173
- #: includes/hooks/external/mycred-hook-bbPress.php:593
2174
- #: includes/hooks/external/mycred-hook-contact-form7.php:179
2175
- #: includes/hooks/external/mycred-hook-simplepress.php:307
2176
- #: includes/hooks/external/mycred-hook-simplepress.php:325
2177
- #: includes/hooks/external/mycred-hook-simplepress.php:349
2178
- #: includes/hooks/external/mycred-hook-simplepress.php:376
2179
- #: includes/hooks/external/mycred-hook-jetpack.php:549
2180
- #: includes/hooks/external/mycred-hook-jetpack.php:567
2181
- #: includes/hooks/external/mycred-hook-buddypress.php:629
2182
- #: includes/hooks/external/mycred-hook-buddypress.php:653
2183
- #: includes/hooks/external/mycred-hook-buddypress.php:677
2184
- #: includes/hooks/external/mycred-hook-buddypress.php:701
2185
- #: includes/hooks/external/mycred-hook-buddypress.php:725
2186
- #: includes/hooks/external/mycred-hook-buddypress.php:752
2187
- #: includes/hooks/external/mycred-hook-buddypress.php:776
2188
- #: includes/hooks/external/mycred-hook-buddypress.php:794
2189
- #: includes/hooks/external/mycred-hook-buddypress.php:818
2190
- #: includes/hooks/external/mycred-hook-buddypress.php:836
2191
- #: includes/hooks/external/mycred-hook-buddypress.php:860
2192
- #: includes/hooks/external/mycred-hook-buddypress.php:884
2193
- #: includes/hooks/external/mycred-hook-buddypress.php:1520
2194
- #: includes/hooks/external/mycred-hook-buddypress.php:1538
2195
- #: includes/hooks/external/mycred-hook-buddypress.php:1562
2196
- #: includes/hooks/external/mycred-hook-buddypress.php:1586
2197
- #: includes/hooks/external/mycred-hook-buddypress.php:1610
2198
- #: includes/hooks/external/mycred-hook-buddypress.php:1634
2199
- #: includes/hooks/external/mycred-hook-buddypress.php:1658
2200
- #: includes/hooks/external/mycred-hook-buddypress.php:1682
2201
- #: includes/hooks/external/mycred-hook-buddypress.php:1706
2202
- #: includes/hooks/external/mycred-hook-buddypress.php:1724
2203
- #: includes/hooks/external/mycred-hook-buddypress.php:1748
2204
- #: includes/hooks/external/mycred-hook-events-manager-light.php:217
2205
- #: includes/hooks/external/mycred-hook-events-manager-light.php:235
2206
- #: includes/hooks/external/mycred-hook-invite-anyone.php:221
2207
- #: includes/hooks/external/mycred-hook-invite-anyone.php:245
2208
- #: includes/hooks/external/mycred-hook-sharethis.php:273
2209
- #: includes/hooks/external/mycred-hook-affiliatewp.php:298
2210
- #: includes/hooks/external/mycred-hook-affiliatewp.php:325
2211
- #: includes/hooks/external/mycred-hook-gravityforms.php:172
2212
- #: includes/hooks/external/mycred-hook-buddypress-media.php:306
2213
- #: includes/hooks/external/mycred-hook-buddypress-media.php:330
2214
- #: includes/hooks/external/mycred-hook-buddypress-media.php:354
2215
- #: includes/hooks/external/mycred-hook-buddypress-media.php:372
2216
- #: includes/hooks/external/mycred-hook-buddypress-media.php:390
2217
- #: includes/hooks/external/mycred-hook-buddypress-media.php:408
2218
- msgid "Log template"
2219
  msgstr ""
2220
 
2221
- #: addons/badges/myCRED-addon-badges.php:1178
2222
- #: addons/ranks/myCRED-addon-ranks.php:1637
2223
- msgid "Third-party Integrations"
2224
  msgstr ""
2225
 
2226
- #: addons/badges/myCRED-addon-badges.php:1206
2227
- #: addons/badges/myCRED-addon-badges.php:1240
2228
- msgid "Show all badges, including badges users have not yet earned."
2229
  msgstr ""
2230
 
2231
- #: addons/badges/myCRED-addon-badges.php:1210
2232
- #: addons/badges/myCRED-addon-badges.php:1244
2233
- #: addons/ranks/myCRED-addon-ranks.php:1676
2234
- #: addons/ranks/myCRED-addon-ranks.php:1717
2235
- msgid "Not installed"
2236
  msgstr ""
2237
 
2238
- #: addons/badges/myCRED-addon-badges.php:1223
2239
- #: addons/ranks/myCRED-addon-ranks.php:1696
2240
- msgid "Include in Profile"
2241
  msgstr ""
2242
 
2243
- #: addons/badges/myCRED-addon-badges.php:1224
2244
- msgid "Include in Forum Replies"
 
 
 
2245
  msgstr ""
2246
 
2247
- #: addons/badges/myCRED-addon-badges.php:1225
2248
- msgid "Include in Profile and Forum Replies"
2249
  msgstr ""
2250
 
2251
- #: addons/badges/myCRED-addon-badges.php:1250
2252
- #: addons/email-notices/myCRED-addon-email-notices.php:1206
2253
- #: addons/ranks/myCRED-addon-ranks.php:1723
2254
- #: includes/hooks/mycred-hook-referrals.php:644
2255
- #: addons/buy-creds/modules/buycred-module-core.php:563
2256
- msgid "Available Shortcodes"
2257
  msgstr ""
2258
 
2259
- #: addons/badges/myCRED-addon-badges.php:1299
2260
- msgid "No image set"
2261
  msgstr ""
2262
 
2263
- #: addons/badges/myCRED-addon-badges.php:1331
2264
- msgid "Select a level"
 
 
2265
  msgstr ""
2266
 
2267
- #: addons/badges/myCRED-addon-badges.php:1345
2268
- msgid "Earned"
2269
  msgstr ""
2270
 
2271
- #: addons/badges/myCRED-addon-badges.php:1476
2272
  #, php-format
2273
- msgid "A total of %d users have received this badge."
2274
  msgstr ""
2275
 
2276
- #: addons/badges/myCRED-addon-badges.php:1478
2277
- msgid "No users has yet earned this badge."
 
2278
  msgstr ""
2279
 
2280
- #: addons/badges/myCRED-addon-badges.php:1503
2281
- msgid "No connections where removed."
2282
  msgstr ""
2283
 
2284
- #: addons/badges/myCRED-addon-badges.php:1505
 
 
2285
  #, php-format
2286
- msgid "%s connections where removed."
2287
  msgstr ""
2288
 
2289
- #: addons/notifications/myCRED-addon-notifications.php:191
2290
- msgid "Notifications"
 
 
 
2291
  msgstr ""
2292
 
2293
- #: addons/notifications/myCRED-addon-notifications.php:200
2294
- msgid ""
2295
- "Use %entry% to show the log entry in the notice and %amount% for the amount."
2296
  msgstr ""
2297
 
2298
- #: addons/notifications/myCRED-addon-notifications.php:200
2299
- msgid "Restore to default"
2300
  msgstr ""
2301
 
2302
- #: addons/notifications/myCRED-addon-notifications.php:207
2303
- msgid "Transient Lifespan"
2304
  msgstr ""
2305
 
2306
- #: addons/notifications/myCRED-addon-notifications.php:209
2307
- msgid ""
2308
- "The number of days a users notification is saved before being automatically "
2309
- "deleted."
2310
  msgstr ""
2311
 
2312
- #: addons/notifications/myCRED-addon-notifications.php:214
2313
- msgid "Duration"
 
 
 
 
 
2314
  msgstr ""
2315
 
2316
- #: addons/notifications/myCRED-addon-notifications.php:216
2317
- msgid ""
2318
- "Number of seconds before a notice is automatically removed after being shown "
2319
- "to user. Use zero to disable."
2320
  msgstr ""
2321
 
2322
- #: addons/notifications/myCRED-addon-notifications.php:224
2323
- msgid "Use the included CSS Styling for notifications."
 
 
 
 
 
2324
  msgstr ""
2325
 
2326
- #: addons/transfer/myCRED-addon-transfer.php:168
2327
- msgid "Transaction completed."
2328
  msgstr ""
2329
 
2330
- #: addons/transfer/myCRED-addon-transfer.php:169
2331
  msgid ""
2332
- "Security token could not be verified. Please contact your site administrator!"
 
2333
  msgstr ""
2334
 
2335
- #: addons/transfer/myCRED-addon-transfer.php:170
2336
- #: addons/transfer/myCRED-addon-transfer.php:177
2337
- msgid "Communications error. Please try again later."
2338
  msgstr ""
2339
 
2340
- #: addons/transfer/myCRED-addon-transfer.php:171
2341
- msgid "Recipient not found. Please try again."
 
 
2342
  msgstr ""
2343
 
2344
- #: addons/transfer/myCRED-addon-transfer.php:172
2345
- msgid "Transaction declined by recipient."
 
 
 
 
 
2346
  msgstr ""
2347
 
2348
- #: addons/transfer/myCRED-addon-transfer.php:173
2349
- msgid "Incorrect amount. Please try again."
2350
  msgstr ""
2351
 
2352
- #: addons/transfer/myCRED-addon-transfer.php:174
2353
  msgid ""
2354
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
2355
- "this has been done!"
2356
- msgstr ""
2357
-
2358
- #: addons/transfer/myCRED-addon-transfer.php:175
2359
- #: includes/shortcodes/mycred_exchange.php:178
2360
- msgid "Insufficient Funds. Please try a lower amount."
2361
  msgstr ""
2362
 
2363
- #: addons/transfer/myCRED-addon-transfer.php:176
2364
- msgid "Transfer Limit exceeded."
2365
  msgstr ""
2366
 
2367
- #: addons/transfer/myCRED-addon-transfer.php:178
2368
- msgid "The selected point type can not be transferred."
2369
  msgstr ""
2370
 
2371
- #: addons/transfer/myCRED-addon-transfer.php:277
2372
- #: addons/buy-creds/gateways/zombaio.php:360
2373
- #: addons/buy-creds/gateways/bitpay.php:517
2374
- msgid "Yes"
2375
  msgstr ""
2376
 
2377
- #: addons/transfer/myCRED-addon-transfer.php:278
2378
- #: addons/buy-creds/gateways/zombaio.php:359
2379
- #: addons/buy-creds/gateways/bitpay.php:516
2380
- msgid "No"
2381
  msgstr ""
2382
 
2383
- #: addons/transfer/myCRED-addon-transfer.php:285
2384
- msgid "Transfers"
 
2385
  msgstr ""
2386
 
2387
- #: addons/transfer/myCRED-addon-transfer.php:288
2388
- msgid "Features"
 
2389
  msgstr ""
2390
 
2391
- #: addons/transfer/myCRED-addon-transfer.php:309
2392
- msgid "Reload"
 
2393
  msgstr ""
2394
 
2395
- #: addons/transfer/myCRED-addon-transfer.php:321
2396
- msgid "Should the page reload once a transfer has been completed?"
 
2397
  msgstr ""
2398
 
2399
- #: addons/transfer/myCRED-addon-transfer.php:326
2400
- msgid "Message Length"
 
2401
  msgstr ""
2402
 
2403
- #: addons/transfer/myCRED-addon-transfer.php:328
2404
- msgid ""
2405
- "The maximum length of messages users can attach to a transfer. Use zero to "
2406
- "disable."
2407
  msgstr ""
2408
 
2409
- #: addons/transfer/myCRED-addon-transfer.php:333
2410
- msgid "Autofill Recipient"
 
2411
  msgstr ""
2412
 
2413
- #: addons/transfer/myCRED-addon-transfer.php:345
2414
- msgid "Select what user details recipients should be autofilled by."
2415
  msgstr ""
2416
 
2417
- #: addons/transfer/myCRED-addon-transfer.php:371
2418
- msgid "Limit Amount"
2419
  msgstr ""
2420
 
2421
- #: addons/transfer/myCRED-addon-transfer.php:377
2422
- msgid "Default Button Label"
2423
  msgstr ""
2424
 
2425
- #: addons/transfer/myCRED-addon-transfer.php:379
2426
- msgid ""
2427
- "The default transfer button label. You can override this in the shortcode or "
2428
- "widget if needed."
2429
  msgstr ""
2430
 
2431
- #: addons/transfer/myCRED-addon-transfer.php:384
2432
- #: addons/sell-content/myCRED-addon-sell-content.php:685
2433
- #: addons/gateway/event-booking/mycred-eventsmanager.php:641
2434
- msgid "Log Templates"
2435
  msgstr ""
2436
 
2437
- #: addons/transfer/myCRED-addon-transfer.php:388
2438
- msgid "Log template for sending"
 
2439
  msgstr ""
2440
 
2441
- #: addons/transfer/myCRED-addon-transfer.php:395
2442
- msgid "Log template for receiving"
 
 
 
2443
  msgstr ""
2444
 
2445
- #: addons/transfer/myCRED-addon-transfer.php:402
2446
- msgid "Warning Messages"
 
 
2447
  msgstr ""
2448
 
2449
- #: addons/transfer/myCRED-addon-transfer.php:406
2450
- msgid "Insufficient Funds Warning"
 
 
 
2451
  msgstr ""
2452
 
2453
- #: addons/transfer/myCRED-addon-transfer.php:408
2454
- msgid "Message to show the user if they try to send more then they can afford."
 
2455
  msgstr ""
2456
 
2457
- #: addons/transfer/myCRED-addon-transfer.php:413
2458
- msgid "Limit Reached Warning"
 
2459
  msgstr ""
2460
 
2461
- #: addons/transfer/myCRED-addon-transfer.php:415
 
2462
  msgid ""
2463
- "Message to show the user once they reach their transfer limit. Ignored if no "
2464
- "limits are enforced."
2465
  msgstr ""
2466
 
2467
- #: addons/transfer/myCRED-addon-transfer.php:421
2468
- #: addons/sell-content/myCRED-addon-sell-content.php:762
2469
- msgid "Visitors Template"
2470
  msgstr ""
2471
 
2472
- #: addons/transfer/myCRED-addon-transfer.php:422
2473
- msgid ""
2474
- "The template to use when the transfer shortcode or widget is viewed by "
2475
- "someone who is not logged in."
2476
  msgstr ""
2477
 
2478
- #: addons/transfer/myCRED-addon-transfer.php:435
2479
- msgid "Limit Template"
 
2480
  msgstr ""
2481
 
2482
- #: addons/transfer/myCRED-addon-transfer.php:436
2483
- msgid ""
2484
- "The template to use if you select to show the transfer limit in the transfer "
2485
- "shortcode or widget. Ignored if there is no limit enforced."
2486
  msgstr ""
2487
 
2488
- #: addons/transfer/myCRED-addon-transfer.php:451
2489
- msgid "Balance Template"
 
 
 
2490
  msgstr ""
2491
 
2492
- #: addons/transfer/myCRED-addon-transfer.php:452
2493
- msgid ""
2494
- "The template to use if you select to show the users balance in the transfer "
2495
- "shortcode or widget. Ignored if balances are not shown."
2496
  msgstr ""
2497
 
2498
- #: addons/stats/myCRED-addon-stats.php:360
2499
- msgid "Statistics"
2500
  msgstr ""
2501
 
2502
- #: addons/stats/myCRED-addon-stats.php:366
2503
- msgid "Statistics Color"
 
2504
  msgstr ""
2505
 
2506
- #: addons/stats/myCRED-addon-stats.php:371
2507
- msgid "Positive Values"
 
 
2508
  msgstr ""
2509
 
2510
- #: addons/stats/myCRED-addon-stats.php:379
2511
- msgid "Negative Values"
 
 
 
 
 
 
 
 
2512
  msgstr ""
2513
 
2514
- #: addons/stats/myCRED-addon-stats.php:398
2515
  msgid ""
2516
- "Disabling these features can improve render time of your charts, especially "
2517
- "if you are showing a large number of charts on a single page. You can also "
2518
- "select to disable these features when using the chart shortcodes."
2519
  msgstr ""
2520
 
2521
- #: addons/stats/myCRED-addon-stats.php:404
2522
- msgid "Animate Charts"
 
2523
  msgstr ""
2524
 
2525
- #: addons/stats/myCRED-addon-stats.php:413
2526
- msgid "Use Bezier Curves"
2527
  msgstr ""
2528
 
2529
- #: addons/stats/myCRED-addon-stats.php:421
2530
- msgid "Caching"
2531
  msgstr ""
2532
 
2533
- #: addons/email-notices/myCRED-addon-email-notices.php:144
2534
- #: addons/email-notices/myCRED-addon-email-notices.php:150
2535
- #: addons/email-notices/myCRED-addon-email-notices.php:156
2536
- #: addons/email-notices/myCRED-addon-email-notices.php:279
2537
- #: addons/email-notices/myCRED-addon-email-notices.php:280
2538
- msgid "Email Notifications"
2539
  msgstr ""
2540
 
2541
- #: addons/email-notices/myCRED-addon-email-notices.php:145
2542
- msgid "Email Notification"
 
2543
  msgstr ""
2544
 
2545
- #: addons/email-notices/myCRED-addon-email-notices.php:148
2546
- msgid "Edit Email Notification"
2547
  msgstr ""
2548
 
2549
- #: addons/email-notices/myCRED-addon-email-notices.php:149
2550
- msgid "New Email Notification"
2551
  msgstr ""
2552
 
2553
- #: addons/email-notices/myCRED-addon-email-notices.php:152
2554
- msgid "Search Email Notifications"
2555
  msgstr ""
2556
 
2557
- #: addons/email-notices/myCRED-addon-email-notices.php:153
2558
- msgid "No email notifications found"
 
 
 
2559
  msgstr ""
2560
 
2561
- #: addons/email-notices/myCRED-addon-email-notices.php:154
2562
- msgid "No email notifications found in Trash"
 
 
2563
  msgstr ""
2564
 
2565
- #: addons/email-notices/myCRED-addon-email-notices.php:250
2566
- #: addons/email-notices/myCRED-addon-email-notices.php:251
2567
- #: addons/email-notices/myCRED-addon-email-notices.php:252
2568
- #: addons/email-notices/myCRED-addon-email-notices.php:253
2569
- #: addons/email-notices/myCRED-addon-email-notices.php:256
2570
- #: addons/email-notices/myCRED-addon-email-notices.php:257
2571
- #: addons/email-notices/myCRED-addon-email-notices.php:258
2572
- #: addons/email-notices/myCRED-addon-email-notices.php:259
2573
- msgid "Email Notice Updated."
2574
  msgstr ""
2575
 
2576
- #: addons/email-notices/myCRED-addon-email-notices.php:255
2577
- msgid "Email Notice Activated."
 
2578
  msgstr ""
2579
 
2580
- #: addons/email-notices/myCRED-addon-email-notices.php:341
2581
- #: addons/email-notices/myCRED-addon-email-notices.php:358
2582
- msgid "Email Subject"
 
 
2583
  msgstr ""
2584
 
2585
- #: addons/email-notices/myCRED-addon-email-notices.php:359
2586
- #: addons/banking/services/mycred-service-payouts.php:565
2587
- #: addons/banking/services/mycred-service-payouts.php:880
2588
- msgid "Status"
2589
  msgstr ""
2590
 
2591
- #: addons/email-notices/myCRED-addon-email-notices.php:385
2592
- msgid "Not Active"
2593
  msgstr ""
2594
 
2595
- #: addons/email-notices/myCRED-addon-email-notices.php:388
2596
- msgid "Scheduled"
 
2597
  msgstr ""
2598
 
2599
- #: addons/email-notices/myCRED-addon-email-notices.php:393
2600
- #: addons/banking/services/mycred-service-payouts.php:31
2601
- msgid "Active"
2602
  msgstr ""
2603
 
2604
- #: addons/email-notices/myCRED-addon-email-notices.php:395
2605
- msgid "Active - Last run"
 
2606
  msgstr ""
2607
 
2608
- #: addons/email-notices/myCRED-addon-email-notices.php:411
2609
- #: addons/email-notices/myCRED-addon-email-notices.php:414
2610
- #: addons/email-notices/myCRED-addon-email-notices.php:417
2611
- msgid "Sent when"
2612
  msgstr ""
2613
 
2614
- #: addons/email-notices/myCRED-addon-email-notices.php:411
2615
- msgid "Not set"
2616
  msgstr ""
2617
 
2618
- #: addons/email-notices/myCRED-addon-email-notices.php:420
2619
- msgid "Sent at custom events"
2620
  msgstr ""
2621
 
2622
- #: addons/email-notices/myCRED-addon-email-notices.php:423
2623
- #: addons/email-notices/myCRED-addon-email-notices.php:426
2624
- #: addons/email-notices/myCRED-addon-email-notices.php:429
2625
- #: addons/transfer/includes/mycred-transfer-object.php:822
2626
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:29
2627
- #: addons/transfer/includes/mycred-transfer-widgets.php:113
2628
- #: addons/buy-creds/includes/buycred-shortcodes.php:249
2629
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:475
2630
- #: addons/buy-creds/gateways/skrill.php:193
2631
- #: addons/buy-creds/modules/buycred-module-pending.php:617
2632
- msgid "Recipient"
2633
  msgstr ""
2634
 
2635
- #: addons/email-notices/myCRED-addon-email-notices.php:426
2636
- #: addons/email-notices/myCRED-addon-email-notices.php:687
2637
- msgid "Administrator"
 
2638
  msgstr ""
2639
 
2640
- #: addons/email-notices/myCRED-addon-email-notices.php:429
2641
- #: addons/email-notices/myCRED-addon-email-notices.php:690
2642
- msgid "Both"
2643
  msgstr ""
2644
 
2645
- #: addons/email-notices/myCRED-addon-email-notices.php:440
2646
- msgid "No point types selected"
2647
  msgstr ""
2648
 
2649
- #: addons/email-notices/myCRED-addon-email-notices.php:480
2650
- msgid "Email Trigger"
2651
  msgstr ""
2652
 
2653
- #: addons/email-notices/myCRED-addon-email-notices.php:489
2654
- msgid "Available Template Tags"
 
 
2655
  msgstr ""
2656
 
2657
- #: addons/email-notices/myCRED-addon-email-notices.php:498
2658
- msgid "Email Details"
2659
  msgstr ""
2660
 
2661
- #: addons/email-notices/myCRED-addon-email-notices.php:610
2662
- msgid "Send this email notice when..."
 
 
2663
  msgstr ""
2664
 
2665
- #: addons/email-notices/myCRED-addon-email-notices.php:632
2666
- #: addons/email-notices/myCRED-addon-email-notices.php:648
2667
- msgid "Custom Reference"
 
2668
  msgstr ""
2669
 
2670
- #: addons/email-notices/myCRED-addon-email-notices.php:649
2671
- #: includes/hooks/mycred-hook-registrations.php:87
2672
- #: includes/hooks/mycred-hook-link-clicks.php:283
2673
- #: includes/hooks/mycred-hook-view-content.php:175
2674
- #: includes/hooks/mycred-hook-view-content.php:182
2675
- #: includes/hooks/mycred-hook-view-content.php:220
2676
- #: includes/hooks/mycred-hook-view-content.php:227
2677
- #: includes/hooks/mycred-hook-view-content.php:311
2678
- #: includes/hooks/mycred-hook-view-content.php:318
2679
- #: includes/hooks/mycred-hook-publishing-content.php:126
2680
- #: includes/hooks/mycred-hook-publishing-content.php:150
2681
- #: includes/hooks/mycred-hook-publishing-content.php:206
2682
- #: includes/hooks/mycred-hook-watching-video.php:312
2683
- #: includes/hooks/mycred-hook-watching-video.php:335
2684
- #: includes/hooks/mycred-hook-watching-video.php:342
2685
- #: includes/hooks/mycred-hook-logins.php:142
2686
- #: includes/hooks/mycred-hook-delete-content.php:124
2687
- #: includes/hooks/mycred-hook-delete-content.php:148
2688
- #: includes/hooks/mycred-hook-delete-content.php:204
2689
- #: includes/hooks/mycred-hook-anniversary.php:114
2690
- #: includes/hooks/mycred-hook-site-visits.php:102
2691
- #: includes/hooks/mycred-hook-comments.php:386
2692
- #: includes/hooks/mycred-hook-comments.php:437
2693
- #: includes/hooks/mycred-hook-comments.php:463
2694
- #: addons/transfer/includes/mycred-transfer-widgets.php:102
2695
- #: addons/transfer/includes/mycred-transfer-widgets.php:106
2696
- #: addons/transfer/includes/mycred-transfer-widgets.php:110
2697
- #: addons/transfer/includes/mycred-transfer-widgets.php:122
2698
- #: includes/hooks/external/mycred-hook-woocommerce.php:521
2699
- #: includes/hooks/external/mycred-hook-bbPress.php:450
2700
- #: includes/hooks/external/mycred-hook-bbPress.php:468
2701
- #: includes/hooks/external/mycred-hook-bbPress.php:492
2702
- #: includes/hooks/external/mycred-hook-bbPress.php:519
2703
- #: includes/hooks/external/mycred-hook-bbPress.php:543
2704
- #: includes/hooks/external/mycred-hook-bbPress.php:567
2705
- #: includes/hooks/external/mycred-hook-bbPress.php:594
2706
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:249
2707
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:256
2708
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:274
2709
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:289
2710
- #: includes/hooks/external/mycred-hook-contact-form7.php:180
2711
- #: includes/hooks/external/mycred-hook-wp-postratings.php:208
2712
- #: includes/hooks/external/mycred-hook-wp-postratings.php:215
2713
- #: includes/hooks/external/mycred-hook-simplepress.php:308
2714
- #: includes/hooks/external/mycred-hook-simplepress.php:326
2715
- #: includes/hooks/external/mycred-hook-simplepress.php:350
2716
- #: includes/hooks/external/mycred-hook-simplepress.php:377
2717
- #: includes/hooks/external/mycred-hook-jetpack.php:550
2718
- #: includes/hooks/external/mycred-hook-jetpack.php:568
2719
- #: includes/hooks/external/mycred-hook-buddypress.php:630
2720
- #: includes/hooks/external/mycred-hook-buddypress.php:654
2721
- #: includes/hooks/external/mycred-hook-buddypress.php:678
2722
- #: includes/hooks/external/mycred-hook-buddypress.php:702
2723
- #: includes/hooks/external/mycred-hook-buddypress.php:726
2724
- #: includes/hooks/external/mycred-hook-buddypress.php:753
2725
- #: includes/hooks/external/mycred-hook-buddypress.php:777
2726
- #: includes/hooks/external/mycred-hook-buddypress.php:795
2727
- #: includes/hooks/external/mycred-hook-buddypress.php:819
2728
- #: includes/hooks/external/mycred-hook-buddypress.php:837
2729
- #: includes/hooks/external/mycred-hook-buddypress.php:861
2730
- #: includes/hooks/external/mycred-hook-buddypress.php:885
2731
- #: includes/hooks/external/mycred-hook-buddypress.php:1521
2732
- #: includes/hooks/external/mycred-hook-buddypress.php:1539
2733
- #: includes/hooks/external/mycred-hook-buddypress.php:1563
2734
- #: includes/hooks/external/mycred-hook-buddypress.php:1587
2735
- #: includes/hooks/external/mycred-hook-buddypress.php:1611
2736
- #: includes/hooks/external/mycred-hook-buddypress.php:1635
2737
- #: includes/hooks/external/mycred-hook-buddypress.php:1659
2738
- #: includes/hooks/external/mycred-hook-buddypress.php:1683
2739
- #: includes/hooks/external/mycred-hook-buddypress.php:1707
2740
- #: includes/hooks/external/mycred-hook-buddypress.php:1725
2741
- #: includes/hooks/external/mycred-hook-buddypress.php:1749
2742
- #: includes/hooks/external/mycred-hook-events-manager-light.php:218
2743
- #: includes/hooks/external/mycred-hook-events-manager-light.php:236
2744
- #: includes/hooks/external/mycred-hook-invite-anyone.php:222
2745
- #: includes/hooks/external/mycred-hook-invite-anyone.php:246
2746
- #: includes/hooks/external/mycred-hook-wp-polls.php:178
2747
- #: includes/hooks/external/mycred-hook-sharethis.php:274
2748
- #: includes/hooks/external/mycred-hook-affiliatewp.php:299
2749
- #: includes/hooks/external/mycred-hook-affiliatewp.php:326
2750
- #: includes/hooks/external/mycred-hook-affiliatewp.php:370
2751
- #: includes/hooks/external/mycred-hook-affiliatewp.php:377
2752
- #: includes/hooks/external/mycred-hook-gravityforms.php:173
2753
- #: includes/hooks/external/mycred-hook-buddypress-media.php:307
2754
- #: includes/hooks/external/mycred-hook-buddypress-media.php:331
2755
- #: includes/hooks/external/mycred-hook-buddypress-media.php:355
2756
- #: includes/hooks/external/mycred-hook-buddypress-media.php:373
2757
- #: includes/hooks/external/mycred-hook-buddypress-media.php:391
2758
- #: includes/hooks/external/mycred-hook-buddypress-media.php:409
2759
- #: includes/hooks/external/mycred-hook-badgeOS.php:328
2760
- #: includes/hooks/external/mycred-hook-badgeOS.php:346
2761
- msgid "required"
2762
  msgstr ""
2763
 
2764
- #: addons/email-notices/myCRED-addon-email-notices.php:651
 
 
2765
  msgid ""
2766
- "This can be either a single reference or a comma separated list of "
2767
- "references."
2768
  msgstr ""
2769
 
2770
- #: addons/email-notices/myCRED-addon-email-notices.php:682
2771
- msgid "Recipient:"
 
 
2772
  msgstr ""
2773
 
2774
- #: addons/email-notices/myCRED-addon-email-notices.php:717
2775
- #: addons/email-notices/myCRED-addon-email-notices.php:1217
2776
- msgid "Senders Name:"
 
2777
  msgstr ""
2778
 
2779
- #: addons/email-notices/myCRED-addon-email-notices.php:723
2780
- #: addons/email-notices/myCRED-addon-email-notices.php:1223
2781
- msgid "Senders Email:"
2782
  msgstr ""
2783
 
2784
- #: addons/email-notices/myCRED-addon-email-notices.php:729
2785
- msgid "Reply-To Email:"
 
 
 
 
2786
  msgstr ""
2787
 
2788
- #: addons/email-notices/myCRED-addon-email-notices.php:744
2789
- msgid "CSS Styling"
 
2790
  msgstr ""
2791
 
2792
- #: addons/email-notices/myCRED-addon-email-notices.php:768
2793
- msgid "Site Related"
 
2794
  msgstr ""
2795
 
2796
- #: addons/email-notices/myCRED-addon-email-notices.php:774
2797
- msgid "Your websites title"
2798
  msgstr ""
2799
 
2800
- #: addons/email-notices/myCRED-addon-email-notices.php:782
2801
- msgid "Your websites address"
2802
  msgstr ""
2803
 
2804
- #: addons/email-notices/myCRED-addon-email-notices.php:790
2805
- msgid "Your websites tagline (description)"
 
 
 
 
2806
  msgstr ""
2807
 
2808
- #: addons/email-notices/myCRED-addon-email-notices.php:798
2809
- msgid "Your websites admin email"
 
 
 
2810
  msgstr ""
2811
 
2812
- #: addons/email-notices/myCRED-addon-email-notices.php:806
2813
- msgid "Total number of blog members"
2814
  msgstr ""
2815
 
2816
- #: addons/email-notices/myCRED-addon-email-notices.php:811
2817
- msgid "Instance Related"
 
2818
  msgstr ""
2819
 
2820
- #: addons/email-notices/myCRED-addon-email-notices.php:817
2821
- msgid "The users new balance"
 
 
 
2822
  msgstr ""
2823
 
2824
- #: addons/email-notices/myCRED-addon-email-notices.php:825
2825
- msgid "The users old balance"
 
 
2826
  msgstr ""
2827
 
2828
- #: addons/email-notices/myCRED-addon-email-notices.php:833
2829
- msgid "The amount of points gained or lost in this instance"
 
 
2830
  msgstr ""
2831
 
2832
- #: addons/email-notices/myCRED-addon-email-notices.php:841
2833
- msgid "The log entry"
2834
  msgstr ""
2835
 
2836
- #: addons/email-notices/myCRED-addon-email-notices.php:846
2837
- #, php-format
2838
- msgid "You can also use %s."
2839
  msgstr ""
2840
 
2841
- #: addons/email-notices/myCRED-addon-email-notices.php:846
2842
- msgid "user related template tags"
 
 
 
 
2843
  msgstr ""
2844
 
2845
- #: addons/email-notices/myCRED-addon-email-notices.php:1158
2846
- msgid "Plain Text"
 
 
 
2847
  msgstr ""
2848
 
2849
- #: addons/email-notices/myCRED-addon-email-notices.php:1166
2850
- #: addons/banking/services/mycred-service-payouts.php:825
2851
- msgid "Schedule"
 
 
2852
  msgstr ""
2853
 
2854
- #: addons/email-notices/myCRED-addon-email-notices.php:1170
2855
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
 
 
2856
  msgstr ""
2857
 
2858
- #: addons/email-notices/myCRED-addon-email-notices.php:1173
2859
- msgid "Send emails immediately"
2860
  msgstr ""
2861
 
2862
- #: addons/email-notices/myCRED-addon-email-notices.php:1176
2863
- msgid "Send emails once an hour"
 
 
2864
  msgstr ""
2865
 
2866
- #: addons/email-notices/myCRED-addon-email-notices.php:1179
2867
- msgid "Send emails once a day"
 
 
2868
  msgstr ""
2869
 
2870
- #: addons/email-notices/myCRED-addon-email-notices.php:1188
2871
- msgid "Filter Email Subjects"
2872
  msgstr ""
2873
 
2874
- #: addons/email-notices/myCRED-addon-email-notices.php:1191
2875
- msgid "Filter Email Body"
 
 
 
2876
  msgstr ""
2877
 
2878
- #: addons/email-notices/myCRED-addon-email-notices.php:1200
2879
  msgid ""
2880
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2881
- "use a SMTP plugin for emails."
2882
  msgstr ""
2883
 
2884
- #: addons/email-notices/myCRED-addon-email-notices.php:1213
2885
- msgid "Defaults"
2886
  msgstr ""
2887
 
2888
- #: addons/email-notices/myCRED-addon-email-notices.php:1229
2889
- msgid "Reply-To:"
2890
  msgstr ""
2891
 
2892
- #: addons/email-notices/myCRED-addon-email-notices.php:1237
2893
- msgid "Default Email Content"
 
 
2894
  msgstr ""
2895
 
2896
- #: addons/email-notices/myCRED-addon-email-notices.php:1239
2897
- msgid "Default email content."
2898
  msgstr ""
2899
 
2900
- #: addons/email-notices/myCRED-addon-email-notices.php:1246
2901
- msgid "Default CSS Styling"
 
 
2902
  msgstr ""
2903
 
2904
- #: addons/email-notices/myCRED-addon-email-notices.php:1248
2905
- msgid ""
2906
- "Default email CSS styling. Note that if you intend to send HTML emails, you "
2907
- "should use inline CSS styling for best results."
2908
  msgstr ""
2909
 
2910
  #: addons/ranks/myCRED-addon-ranks.php:241
@@ -2917,17 +3942,17 @@ msgstr ""
2917
  #: addons/ranks/myCRED-addon-ranks.php:262
2918
  #: addons/ranks/myCRED-addon-ranks.php:430
2919
  #: addons/ranks/myCRED-addon-ranks.php:431
2920
- #: addons/ranks/myCRED-addon-ranks.php:818
2921
- #: addons/ranks/myCRED-addon-ranks.php:1528
2922
- #: addons/ranks/myCRED-addon-ranks.php:1830
2923
  msgid "Ranks"
2924
  msgstr ""
2925
 
2926
  #: addons/ranks/myCRED-addon-ranks.php:247
2927
- #: addons/ranks/myCRED-addon-ranks.php:818
2928
- #: addons/ranks/myCRED-addon-ranks.php:967
2929
- #: addons/ranks/myCRED-addon-ranks.php:970
2930
- #: addons/ranks/myCRED-addon-ranks.php:1020
2931
  msgid "Rank"
2932
  msgstr ""
2933
 
@@ -2948,7 +3973,7 @@ msgid "Search Ranks"
2948
  msgstr ""
2949
 
2950
  #: addons/ranks/myCRED-addon-ranks.php:255
2951
- #: addons/ranks/myCRED-addon-ranks.php:1544
2952
  msgid "Rank Logo"
2953
  msgstr ""
2954
 
@@ -2965,7 +3990,7 @@ msgid "Use as Logo"
2965
  msgstr ""
2966
 
2967
  #: addons/ranks/myCRED-addon-ranks.php:259
2968
- #: addons/ranks/myCRED-addon-ranks.php:1452
2969
  msgid "No ranks found"
2970
  msgstr ""
2971
 
@@ -2996,3747 +4021,4144 @@ msgstr ""
2996
  msgid "Completed - Total of %d users effected"
2997
  msgstr ""
2998
 
2999
- #: addons/ranks/myCRED-addon-ranks.php:989
3000
  msgid "No ranks exists."
3001
  msgstr ""
3002
 
3003
- #: addons/ranks/myCRED-addon-ranks.php:1007
3004
  msgid "No rank"
3005
  msgstr ""
3006
 
3007
- #: addons/ranks/myCRED-addon-ranks.php:1149
3008
  msgid "Warning! All ranks will be deleted! This can not be undone!"
3009
  msgstr ""
3010
 
3011
- #: addons/ranks/myCRED-addon-ranks.php:1150
3012
  msgid "Are you sure you want to re-assign user ranks?"
3013
  msgstr ""
3014
 
3015
- #: addons/ranks/myCRED-addon-ranks.php:1239
3016
- #: addons/ranks/myCRED-addon-ranks.php:1340
3017
  msgid "Rank Title"
3018
  msgstr ""
3019
 
3020
- #: addons/ranks/myCRED-addon-ranks.php:1240
3021
  msgid "Logo"
3022
  msgstr ""
3023
 
3024
- #: addons/ranks/myCRED-addon-ranks.php:1267
3025
  msgid "No Logo Set"
3026
  msgstr ""
3027
 
3028
- #: addons/ranks/myCRED-addon-ranks.php:1282
3029
- #: addons/ranks/myCRED-addon-ranks.php:1287
3030
  msgid "Any Value"
3031
  msgstr ""
3032
 
3033
- #: addons/ranks/myCRED-addon-ranks.php:1284
3034
  msgid "Minimum %plural%"
3035
  msgstr ""
3036
 
3037
- #: addons/ranks/myCRED-addon-ranks.php:1289
3038
  msgid "Maximum %plural%"
3039
  msgstr ""
3040
 
3041
- #: addons/ranks/myCRED-addon-ranks.php:1355
3042
  msgid "Rank Setup"
3043
  msgstr ""
3044
 
3045
- #: addons/ranks/myCRED-addon-ranks.php:1396
3046
  msgid "Minimum Balance Requirement"
3047
  msgstr ""
3048
 
3049
- #: addons/ranks/myCRED-addon-ranks.php:1402
3050
  msgid "Maximum Balance Requirement"
3051
  msgstr ""
3052
 
3053
- #: addons/ranks/myCRED-addon-ranks.php:1441
3054
- #: addons/ranks/myCRED-addon-ranks.php:1442
3055
  msgid "Not Set"
3056
  msgstr ""
3057
 
3058
- #: addons/ranks/myCRED-addon-ranks.php:1535
3059
  msgid "Rank Features"
3060
  msgstr ""
3061
 
3062
- #: addons/ranks/myCRED-addon-ranks.php:1538
3063
- #: includes/widgets/mycred-widget-leaderboard.php:96
3064
- #: includes/widgets/mycred-widget-wallet.php:117
3065
- #: includes/widgets/mycred-widget-balance.php:176
3066
- #: includes/hooks/mycred-hook-referrals.php:665
3067
- #: addons/gateway/carts/mycred-woocommerce.php:96
3068
- #: addons/transfer/includes/mycred-transfer-widgets.php:91
3069
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
3070
- #: addons/buy-creds/gateways/skrill.php:293
3071
- #: addons/buy-creds/gateways/bank-transfer.php:166
3072
- msgid "Title"
3073
  msgstr ""
3074
 
3075
- #: addons/ranks/myCRED-addon-ranks.php:1541
3076
- msgid "%plural% requirement"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3077
  msgstr ""
3078
 
3079
- #: addons/ranks/myCRED-addon-ranks.php:1547
3080
- msgid "Content"
3081
  msgstr ""
3082
 
3083
- #: addons/ranks/myCRED-addon-ranks.php:1550
3084
- msgid "Excerpt"
3085
  msgstr ""
3086
 
3087
- #: addons/ranks/myCRED-addon-ranks.php:1553
3088
- msgid "Comments"
3089
  msgstr ""
3090
 
3091
- #: addons/ranks/myCRED-addon-ranks.php:1556
3092
- msgid "Page Attributes"
 
 
3093
  msgstr ""
3094
 
3095
- #: addons/ranks/myCRED-addon-ranks.php:1559
3096
- msgid "Custom Fields"
 
 
3097
  msgstr ""
3098
 
3099
- #: addons/ranks/myCRED-addon-ranks.php:1564
3100
- msgid "Rank Post Type"
3101
  msgstr ""
3102
 
3103
- #: addons/ranks/myCRED-addon-ranks.php:1567
3104
- msgid "Make Ranks Public"
3105
  msgstr ""
3106
 
3107
- #: addons/ranks/myCRED-addon-ranks.php:1571
3108
- msgid "Rank SLUG"
 
3109
  msgstr ""
3110
 
3111
- #: addons/ranks/myCRED-addon-ranks.php:1573
 
3112
  msgid ""
3113
- "If you have selected to make Ranks public, you can select what rank archive "
3114
- "URL slug you want to use. Ignored if Ranks are not set to be public."
3115
  msgstr ""
3116
 
3117
- #: addons/ranks/myCRED-addon-ranks.php:1576
3118
- msgid "Display Order"
3119
  msgstr ""
3120
 
3121
- #: addons/ranks/myCRED-addon-ranks.php:1582
3122
- msgid "Ascending - Lowest rank to highest"
3123
  msgstr ""
3124
 
3125
- #: addons/ranks/myCRED-addon-ranks.php:1583
3126
- msgid "Descending - Highest rank to lowest"
3127
  msgstr ""
3128
 
3129
- #: addons/ranks/myCRED-addon-ranks.php:1594
3130
- msgid "Option to set in which order Ranks should be shown on the archive page."
3131
  msgstr ""
3132
 
3133
- #: addons/ranks/myCRED-addon-ranks.php:1601
3134
- msgid "Rank Behaviour"
3135
  msgstr ""
3136
 
3137
- #: addons/ranks/myCRED-addon-ranks.php:1606
3138
- msgid "Manual Mode"
3139
  msgstr ""
3140
 
3141
- #: addons/ranks/myCRED-addon-ranks.php:1608
3142
- msgid "Ranks are assigned manually for each user."
 
 
3143
  msgstr ""
3144
 
3145
- #: addons/ranks/myCRED-addon-ranks.php:1614
3146
- msgid "Based on Current Balances"
3147
  msgstr ""
3148
 
3149
- #: addons/ranks/myCRED-addon-ranks.php:1616
3150
  msgid ""
3151
- "Users can be promoted or demoted depending on where their balance fits in "
3152
- "amongst your ranks."
3153
  msgstr ""
3154
 
3155
- #: addons/ranks/myCRED-addon-ranks.php:1622
3156
- msgid "Based on Total Balances"
3157
  msgstr ""
3158
 
3159
- #: addons/ranks/myCRED-addon-ranks.php:1624
3160
  msgid ""
3161
- "Users can only be promoted and gain higher ranks even if their balance "
3162
- "decreases."
3163
  msgstr ""
3164
 
3165
- #: addons/ranks/myCRED-addon-ranks.php:1631
3166
- msgid "Tools"
 
3167
  msgstr ""
3168
 
3169
- #: addons/ranks/myCRED-addon-ranks.php:1632
3170
  msgid ""
3171
- "Use this button to calculate or recalculate each individual users total "
3172
- "balance if you think your users total balances are incorrect, or if you "
3173
- "switch from Ranks being based on users current balance to total balance."
3174
  msgstr ""
3175
 
3176
- #: addons/ranks/myCRED-addon-ranks.php:1633
3177
- msgid "Calculate Totals"
3178
  msgstr ""
3179
 
3180
- #: addons/ranks/myCRED-addon-ranks.php:1653
3181
- #: addons/ranks/myCRED-addon-ranks.php:1694
3182
- msgid "Do not show."
3183
  msgstr ""
3184
 
3185
- #: addons/ranks/myCRED-addon-ranks.php:1654
3186
- msgid "Include in Profile Header."
 
 
3187
  msgstr ""
3188
 
3189
- #: addons/ranks/myCRED-addon-ranks.php:1656
3190
- msgid "Include under the \"Profile\" tab and Profile Header."
 
 
3191
  msgstr ""
3192
 
3193
- #: addons/ranks/myCRED-addon-ranks.php:1672
3194
- #: addons/ranks/myCRED-addon-ranks.php:1713
3195
- msgid ""
3196
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3197
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3198
  msgstr ""
3199
 
3200
- #: addons/ranks/myCRED-addon-ranks.php:1695
3201
- msgid "Include in Topic Replies"
 
 
3202
  msgstr ""
3203
 
3204
- #: addons/ranks/myCRED-addon-ranks.php:1697
3205
- msgid "Include in Topic Replies and Profile"
 
 
3206
  msgstr ""
3207
 
3208
- #: addons/ranks/myCRED-addon-ranks.php:1833
3209
- msgid "User Meta Key"
 
 
3210
  msgstr ""
3211
 
3212
- #: addons/ranks/myCRED-addon-ranks.php:1837
3213
- msgid "No. of ranks"
 
 
3214
  msgstr ""
3215
 
3216
- #: addons/ranks/myCRED-addon-ranks.php:1842
3217
- msgid "Remove All Ranks"
 
 
3218
  msgstr ""
3219
 
3220
- #: addons/ranks/myCRED-addon-ranks.php:1842
3221
- msgid "Assign Ranks to Users"
 
 
 
 
 
3222
  msgstr ""
3223
 
3224
- #: addons/banking/myCRED-addon-banking.php:45
3225
- #: addons/banking/myCRED-addon-banking.php:46
3226
- #: addons/banking/myCRED-addon-banking.php:47
3227
- msgid "Banking"
3228
  msgstr ""
3229
 
3230
- #: addons/banking/myCRED-addon-banking.php:141
3231
- msgid "Central Banking"
 
 
3232
  msgstr ""
3233
 
3234
- #: addons/banking/myCRED-addon-banking.php:142
3235
- msgid ""
3236
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3237
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
3238
- "deposited back into this account. If the central bank runs out of %_plural%, "
3239
- "no %_plural% will be paid out."
3240
  msgstr ""
3241
 
3242
- #: addons/banking/myCRED-addon-banking.php:150
3243
- #: includes/classes/class.query-log.php:2405
3244
- msgid "Compound Interest"
3245
  msgstr ""
3246
 
3247
- #: addons/banking/myCRED-addon-banking.php:151
3248
- msgid ""
3249
- "Offer your users interest on the %_plural% they earn on your website. The "
3250
- "interest is compounded daily."
3251
  msgstr ""
3252
 
3253
- #: addons/banking/myCRED-addon-banking.php:159
3254
- msgid "Recurring Payouts"
 
3255
  msgstr ""
3256
 
3257
- #: addons/banking/myCRED-addon-banking.php:160
3258
- msgid "Setup mass %_singular% payouts for your users."
3259
  msgstr ""
3260
 
3261
- #: addons/banking/myCRED-addon-banking.php:202
3262
- msgid "New Recurring Payout"
 
 
3263
  msgstr ""
3264
 
3265
- #: addons/banking/myCRED-addon-banking.php:203
3266
- msgid "Edit Recurring Payout"
3267
  msgstr ""
3268
 
3269
- #: addons/banking/myCRED-addon-banking.php:205
3270
- msgid "Please fill out all required fields that are highlighted in red."
3271
  msgstr ""
3272
 
3273
- #: addons/banking/myCRED-addon-banking.php:206
3274
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
3275
  msgstr ""
3276
 
3277
- #: addons/banking/myCRED-addon-banking.php:253
3278
- msgid "Banking Services"
3279
  msgstr ""
3280
 
3281
- #: addons/banking/myCRED-addon-banking.php:271
3282
- msgid "Warning"
 
3283
  msgstr ""
3284
 
3285
- #: addons/banking/myCRED-addon-banking.php:271
3286
  msgid ""
3287
- "This banking service uses the WordPress CRON to schedule events. If the "
3288
- "WordPress CRON is disabled, this service will not work correctly."
 
3289
  msgstr ""
3290
 
3291
- #: addons/banking/myCRED-addon-banking.php:273
3292
- #: addons/buy-creds/modules/buycred-module-core.php:386
3293
- #: addons/buy-creds/modules/buycred-module-core.php:762
3294
- msgid "Enable"
3295
  msgstr ""
3296
 
3297
- #: addons/banking/myCRED-addon-banking.php:292
3298
- msgid "Update Changes"
3299
  msgstr ""
3300
 
3301
- #: addons/sell-content/myCRED-addon-sell-content.php:153
3302
- msgid "Error"
3303
  msgstr ""
3304
 
3305
- #: addons/sell-content/myCRED-addon-sell-content.php:378
3306
- msgid "Users profit share when their content is purchased."
 
3307
  msgstr ""
3308
 
3309
- #: addons/sell-content/myCRED-addon-sell-content.php:381
3310
- #: addons/sell-content/myCRED-addon-sell-content.php:384
3311
- #: addons/sell-content/myCRED-addon-sell-content.php:664
3312
- msgid "Profit Share"
3313
  msgstr ""
3314
 
3315
- #: addons/sell-content/myCRED-addon-sell-content.php:394
3316
- #: addons/sell-content/myCRED-addon-sell-content.php:409
3317
  #, php-format
3318
- msgctxt "Points Name"
3319
- msgid "%s Profit Share"
3320
  msgstr ""
3321
 
3322
- #: addons/sell-content/myCRED-addon-sell-content.php:397
3323
- msgid "Not accepted as payment."
3324
  msgstr ""
3325
 
3326
- #: addons/sell-content/myCRED-addon-sell-content.php:412
3327
- #, php-format
3328
- msgctxt "Points Name"
3329
- msgid "User can not pay using %s"
3330
  msgstr ""
3331
 
3332
- #: addons/sell-content/myCRED-addon-sell-content.php:424
3333
- #, php-format
3334
- msgctxt "Buying Points"
3335
- msgid "%s Profit Share"
3336
  msgstr ""
3337
 
3338
- #: addons/sell-content/myCRED-addon-sell-content.php:427
3339
- msgid "Leave empty to use the default."
3340
  msgstr ""
3341
 
3342
- #: addons/sell-content/myCRED-addon-sell-content.php:508
3343
- #: addons/sell-content/myCRED-addon-sell-content.php:1000
3344
- msgid "Sell Content"
3345
  msgstr ""
3346
 
3347
- #: addons/sell-content/myCRED-addon-sell-content.php:511
3348
- msgid "Post Types"
3349
  msgstr ""
3350
 
3351
- #: addons/sell-content/myCRED-addon-sell-content.php:512
3352
- msgid "Which post type(s) content field do you want to sell access to?"
 
3353
  msgstr ""
3354
 
3355
- #: addons/sell-content/myCRED-addon-sell-content.php:582
3356
- msgid "Which point type(s) can be used as payment for accessing content?"
 
 
3357
  msgstr ""
3358
 
3359
- #: addons/sell-content/myCRED-addon-sell-content.php:635
3360
- #: addons/sell-content/myCRED-addon-sell-content.php:1019
3361
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:198
3362
- msgid "Hour(s)"
3363
  msgstr ""
3364
 
3365
- #: addons/sell-content/myCRED-addon-sell-content.php:643
3366
- msgid "Default Status"
 
3367
  msgstr ""
3368
 
3369
- #: addons/sell-content/myCRED-addon-sell-content.php:651
3370
- msgid "Default Price"
 
3371
  msgstr ""
3372
 
3373
- #: addons/sell-content/myCRED-addon-sell-content.php:657
3374
- #: addons/sell-content/myCRED-addon-sell-content.php:1079
3375
- msgid "Expiration"
 
3376
  msgstr ""
3377
 
3378
- #: addons/sell-content/myCRED-addon-sell-content.php:659
 
3379
  #, php-format
3380
- msgid ""
3381
- "Option to automatically expire purchases after certain number of %s. Use "
3382
- "zero to disable."
3383
  msgstr ""
3384
 
3385
- #: addons/sell-content/myCRED-addon-sell-content.php:666
3386
- msgid "Option to pay a percentage of each sale with the content author."
 
 
 
3387
  msgstr ""
3388
 
3389
- #: addons/sell-content/myCRED-addon-sell-content.php:673
3390
- #: addons/sell-content/myCRED-addon-sell-content.php:719
3391
- #: addons/gateway/event-booking/mycred-eventespresso3.php:473
3392
- #: addons/gateway/event-booking/mycred-eventsmanager.php:675
3393
- #: addons/transfer/includes/mycred-transfer-widgets.php:101
3394
- msgid "Button Label"
3395
  msgstr ""
3396
 
3397
- #: addons/sell-content/myCRED-addon-sell-content.php:680
3398
- msgid "Button CSS Classes"
 
 
 
3399
  msgstr ""
3400
 
3401
- #: addons/sell-content/myCRED-addon-sell-content.php:689
3402
- msgid "Payment log entry template"
 
3403
  msgstr ""
3404
 
3405
- #: addons/sell-content/myCRED-addon-sell-content.php:696
3406
- msgid "Profit Share payout log entry template"
3407
  msgstr ""
3408
 
3409
- #: addons/sell-content/myCRED-addon-sell-content.php:710
3410
- msgid "Transactions"
3411
  msgstr ""
3412
 
3413
- #: addons/sell-content/myCRED-addon-sell-content.php:714
3414
- msgid "Reload page after successful payments."
3415
  msgstr ""
3416
 
3417
- #: addons/sell-content/myCRED-addon-sell-content.php:721
3418
- msgid ""
3419
- "Option to show a custom button label while the payment is being processed. "
3420
- "HTML is allowed."
3421
  msgstr ""
3422
 
3423
- #: addons/sell-content/myCRED-addon-sell-content.php:728
3424
- msgid "Purchase Template"
 
3425
  msgstr ""
3426
 
3427
- #: addons/sell-content/myCRED-addon-sell-content.php:729
3428
  msgid ""
3429
- "The content will be replaced with this template when viewed by a user that "
3430
- "has not paid for the content but can afford to pay."
3431
  msgstr ""
3432
 
3433
- #: addons/sell-content/myCRED-addon-sell-content.php:745
3434
- msgid "Insufficient Funds Template"
3435
  msgstr ""
3436
 
3437
- #: addons/sell-content/myCRED-addon-sell-content.php:746
3438
- msgid ""
3439
- "The content will be replaced with this template when viewed by a user that "
3440
- "has not paid for the content and can not afford to pay."
3441
  msgstr ""
3442
 
3443
- #: addons/sell-content/myCRED-addon-sell-content.php:763
3444
  msgid ""
3445
- "The content will be replaced with this template when viewed by someone who "
3446
- "is not logged in on your website."
3447
  msgstr ""
3448
 
3449
- #: addons/sell-content/myCRED-addon-sell-content.php:1056
3450
- msgid "Never expires"
 
3451
  msgstr ""
3452
 
3453
- #: addons/sell-content/myCRED-addon-sell-content.php:1073
3454
- #: addons/gateway/event-booking/mycred-eventespresso3.php:495
3455
- #: addons/gateway/event-booking/mycred-eventsmanager.php:369
3456
- #: addons/gateway/event-booking/mycred-eventsmanager.php:373
3457
- msgid "Price"
3458
  msgstr ""
3459
 
3460
- #: includes/classes/class.query-log.php:1071
3461
- msgid "No log entries found"
3462
  msgstr ""
3463
 
3464
- #: includes/classes/class.query-log.php:1133
3465
- msgid "Bulk Actions"
3466
  msgstr ""
3467
 
3468
- #: includes/classes/class.query-log.php:1134
3469
- msgid "Export Raw"
 
 
3470
  msgstr ""
3471
 
3472
- #: includes/classes/class.query-log.php:1135
3473
- msgid "Export Formatted"
 
 
3474
  msgstr ""
3475
 
3476
- #: includes/classes/class.query-log.php:1151
3477
- msgid "Apply"
3478
  msgstr ""
3479
 
3480
- #: includes/classes/class.query-log.php:1172
3481
- msgid "Show all references"
3482
  msgstr ""
3483
 
3484
- #: includes/classes/class.query-log.php:1188
3485
- msgid "User ID, Username, Email or Nicename"
3486
  msgstr ""
3487
 
3488
- #: includes/classes/class.query-log.php:1196
3489
- msgid "Show in order"
3490
  msgstr ""
3491
 
3492
- #: includes/classes/class.query-log.php:1197
3493
- #: includes/widgets/mycred-widget-leaderboard.php:143
3494
- msgid "Ascending"
3495
  msgstr ""
3496
 
3497
- #: includes/classes/class.query-log.php:1197
3498
- #: includes/widgets/mycred-widget-leaderboard.php:144
3499
- msgid "Descending"
3500
  msgstr ""
3501
 
3502
- #: includes/classes/class.query-log.php:1217
3503
- msgid "Filter"
3504
  msgstr ""
3505
 
3506
- #: includes/classes/class.query-log.php:1255
3507
- msgid "Log entries navigation"
 
 
3508
  msgstr ""
3509
 
3510
- #: includes/classes/class.query-log.php:1386
3511
- #, php-format
3512
- msgid "1 entry"
3513
- msgid_plural "%d entries"
3514
- msgstr[0] ""
3515
- msgstr[1] ""
3516
 
3517
- #: includes/classes/class.query-log.php:1522
3518
- #: includes/classes/class.query-log.php:1572
3519
- msgid "Select all"
3520
  msgstr ""
3521
 
3522
- #: includes/classes/class.query-log.php:1632
3523
- msgid "Select entry"
3524
  msgstr ""
3525
 
3526
- #: includes/classes/class.query-log.php:1640
3527
- #: includes/classes/class.query-export.php:374
3528
- msgid "User Missing"
3529
  msgstr ""
3530
 
3531
- #: includes/classes/class.query-log.php:1653
3532
- msgid "Show more details"
 
 
3533
  msgstr ""
3534
 
3535
- #: includes/classes/class.query-log.php:1677
3536
- msgid "Filter by Date"
3537
  msgstr ""
3538
 
3539
- #: includes/classes/class.query-log.php:1726
3540
- msgid "Filter by User"
3541
  msgstr ""
3542
 
3543
- #: includes/classes/class.query-log.php:1728
3544
- msgid "Filter by ID"
3545
  msgstr ""
3546
 
3547
- #: includes/classes/class.query-log.php:1808
3548
- msgid "No export options available."
3549
  msgstr ""
3550
 
3551
- #: includes/classes/class.query-log.php:1841
3552
- #: includes/classes/class.query-log.php:1843
3553
- msgid "Search Log"
3554
  msgstr ""
3555
 
3556
- #: includes/classes/class.query-log.php:1842
3557
- msgid "search log entries"
3558
  msgstr ""
3559
 
3560
- #: includes/classes/class.query-log.php:2305
3561
- msgid "Website Registration"
 
 
3562
  msgstr ""
3563
 
3564
- #: includes/classes/class.query-log.php:2306
3565
- msgid "Website Visit"
 
 
3566
  msgstr ""
3567
 
3568
- #: includes/classes/class.query-log.php:2307
3569
- msgid "Viewing Content (Member)"
3570
  msgstr ""
3571
 
3572
- #: includes/classes/class.query-log.php:2308
3573
- msgid "Viewing Content (Author)"
 
 
3574
  msgstr ""
3575
 
3576
- #: includes/classes/class.query-log.php:2309
3577
- msgid "Logging in"
3578
  msgstr ""
3579
 
3580
- #: includes/classes/class.query-log.php:2310
3581
- msgid "Publishing Content"
 
 
3582
  msgstr ""
3583
 
3584
- #: includes/classes/class.query-log.php:2311
3585
- msgid "Approved Comment"
3586
  msgstr ""
3587
 
3588
- #: includes/classes/class.query-log.php:2312
3589
- msgid "Unapproved Comment"
3590
  msgstr ""
3591
 
3592
- #: includes/classes/class.query-log.php:2313
3593
- msgid "SPAM Comment"
3594
  msgstr ""
3595
 
3596
- #: includes/classes/class.query-log.php:2314
3597
- #: includes/hooks/external/mycred-hook-buddypress.php:784
3598
- msgid "Deleted Comment"
3599
  msgstr ""
3600
 
3601
- #: includes/classes/class.query-log.php:2315
3602
- msgid "Link Click"
3603
  msgstr ""
3604
 
3605
- #: includes/classes/class.query-log.php:2316
3606
- msgid "Watching Video"
3607
  msgstr ""
3608
 
3609
- #: includes/classes/class.query-log.php:2317
3610
- msgid "Visitor Referral"
 
 
 
 
 
 
 
 
 
3611
  msgstr ""
3612
 
3613
- #: includes/classes/class.query-log.php:2318
3614
- msgid "Signup Referral"
3615
  msgstr ""
3616
 
3617
- #: includes/classes/class.query-log.php:2322
3618
- msgid "New Profile Update"
3619
  msgstr ""
3620
 
3621
- #: includes/classes/class.query-log.php:2323
3622
- msgid "Profile Update Removal"
3623
  msgstr ""
3624
 
3625
- #: includes/classes/class.query-log.php:2324
3626
- msgid "Avatar Upload"
 
 
 
 
3627
  msgstr ""
3628
 
3629
- #: includes/classes/class.query-log.php:2325
3630
- msgid "Profile Cover Upload"
3631
  msgstr ""
3632
 
3633
- #: includes/classes/class.query-log.php:2326
3634
- msgid "New Friendship"
3635
  msgstr ""
3636
 
3637
- #: includes/classes/class.query-log.php:2327
3638
- msgid "Ended Friendship"
 
3639
  msgstr ""
3640
 
3641
- #: includes/classes/class.query-log.php:2328
3642
- msgid "New Profile Comment"
 
3643
  msgstr ""
3644
 
3645
- #: includes/classes/class.query-log.php:2329
3646
- msgid "Profile Comment Deletion"
3647
  msgstr ""
3648
 
3649
- #: includes/classes/class.query-log.php:2330
3650
- msgid "Add Activity to Favorites"
 
 
 
 
 
3651
  msgstr ""
3652
 
3653
- #: includes/classes/class.query-log.php:2331
3654
- msgid "Remove Activity from Favorites"
3655
  msgstr ""
3656
 
3657
- #: includes/classes/class.query-log.php:2332
3658
- msgid "New Message"
3659
  msgstr ""
3660
 
3661
- #: includes/classes/class.query-log.php:2333
3662
- #: includes/hooks/external/mycred-hook-buddypress.php:868
3663
- msgid "Sending Gift"
3664
  msgstr ""
3665
 
3666
- #: includes/classes/class.query-log.php:2334
3667
- msgid "New Group"
3668
  msgstr ""
3669
 
3670
- #: includes/classes/class.query-log.php:2335
3671
- msgid "Deleted Group"
 
3672
  msgstr ""
3673
 
3674
- #: includes/classes/class.query-log.php:2336
3675
- msgid "New Group Forum Topic"
 
3676
  msgstr ""
3677
 
3678
- #: includes/classes/class.query-log.php:2337
3679
- msgid "Edit Group Forum Topic"
3680
  msgstr ""
3681
 
3682
- #: includes/classes/class.query-log.php:2338
3683
- msgid "New Group Forum Post"
3684
  msgstr ""
3685
 
3686
- #: includes/classes/class.query-log.php:2339
3687
- msgid "Edit Group Forum Post"
3688
  msgstr ""
3689
 
3690
- #: includes/classes/class.query-log.php:2340
3691
- msgid "Joining Group"
3692
  msgstr ""
3693
 
3694
- #: includes/classes/class.query-log.php:2341
3695
- msgid "Leaving Group"
 
 
3696
  msgstr ""
3697
 
3698
- #: includes/classes/class.query-log.php:2342
3699
- msgid "New Group Avatar"
3700
  msgstr ""
3701
 
3702
- #: includes/classes/class.query-log.php:2343
3703
- msgid "New Group Cover"
3704
  msgstr ""
3705
 
3706
- #: includes/classes/class.query-log.php:2344
3707
- msgid "New Group Comment"
 
3708
  msgstr ""
3709
 
3710
- #: includes/classes/class.query-log.php:2348
3711
- #: includes/hooks/external/mycred-hook-buddypress-media.php:290
3712
- msgid "Photo Upload"
3713
  msgstr ""
3714
 
3715
- #: includes/classes/class.query-log.php:2349
3716
- #: includes/hooks/external/mycred-hook-buddypress-media.php:314
3717
- msgid "Video Upload"
3718
  msgstr ""
3719
 
3720
- #: includes/classes/class.query-log.php:2350
3721
- #: includes/hooks/external/mycred-hook-buddypress-media.php:338
3722
- msgid "Music Upload"
3723
  msgstr ""
3724
 
3725
- #: includes/classes/class.query-log.php:2354
3726
- msgid "New Link"
3727
  msgstr ""
3728
 
3729
- #: includes/classes/class.query-log.php:2355
3730
- msgid "Link Voting"
3731
  msgstr ""
3732
 
3733
- #: includes/classes/class.query-log.php:2356
3734
- msgid "Link Update"
3735
  msgstr ""
3736
 
3737
- #: includes/classes/class.query-log.php:2360
3738
- msgid "New Forum (bbPress)"
 
3739
  msgstr ""
3740
 
3741
- #: includes/classes/class.query-log.php:2361
3742
- msgid "New Forum Topic (bbPress)"
3743
  msgstr ""
3744
 
3745
- #: includes/classes/class.query-log.php:2362
3746
- msgid "Favorited Topic (bbPress)"
 
3747
  msgstr ""
3748
 
3749
- #: includes/classes/class.query-log.php:2363
3750
- msgid "New Topic Reply (bbPress)"
 
3751
  msgstr ""
3752
 
3753
- #: includes/classes/class.query-log.php:2367
3754
- msgid "Form Submission (Contact Form 7)"
 
3755
  msgstr ""
3756
 
3757
- #: includes/classes/class.query-log.php:2370
3758
- msgid "Form Submission (Gravity Form)"
 
3759
  msgstr ""
3760
 
3761
- #: includes/classes/class.query-log.php:2373
3762
- msgid "New Forum Topic (SimplePress)"
3763
  msgstr ""
3764
 
3765
- #: includes/classes/class.query-log.php:2374
3766
- msgid "New Forum Post (SimplePress)"
3767
  msgstr ""
3768
 
3769
- #: includes/classes/class.query-log.php:2383
3770
- msgid "Affiliate Signup (AffiliateWP)"
3771
  msgstr ""
3772
 
3773
- #: includes/classes/class.query-log.php:2384
3774
- msgid "Referred Visit (AffiliateWP)"
 
 
3775
  msgstr ""
3776
 
3777
- #: includes/classes/class.query-log.php:2385
3778
- msgid "Affiliate Referral (AffiliateWP)"
 
3779
  msgstr ""
3780
 
3781
- #: includes/classes/class.query-log.php:2386
3782
- msgid "Referral Refund (AffiliateWP)"
 
3783
  msgstr ""
3784
 
3785
- #: includes/classes/class.query-log.php:2390
3786
- msgid "Adding a Rating"
3787
  msgstr ""
3788
 
3789
- #: includes/classes/class.query-log.php:2391
3790
- msgid "Receiving a Rating"
3791
  msgstr ""
3792
 
3793
- #: includes/classes/class.query-log.php:2395
3794
- msgid "Poll Voting"
3795
  msgstr ""
3796
 
3797
- #: includes/classes/class.query-log.php:2398
3798
- msgid "Sending an Invite"
3799
  msgstr ""
3800
 
3801
- #: includes/classes/class.query-log.php:2399
3802
- msgid "Accepting an Invite"
3803
  msgstr ""
3804
 
3805
- #: includes/classes/class.query-log.php:2406
3806
- msgid "Recurring Payout"
3807
  msgstr ""
3808
 
3809
- #: includes/classes/class.query-log.php:2410
3810
- msgid "Badge Reward"
3811
  msgstr ""
3812
 
3813
- #: includes/classes/class.query-log.php:2413
3814
- msgid "buyCRED Purchase (PayPal Standard)"
3815
  msgstr ""
3816
 
3817
- #: includes/classes/class.query-log.php:2414
3818
- msgid "buyCRED Purchase (Skrill)"
3819
  msgstr ""
3820
 
3821
- #: includes/classes/class.query-log.php:2415
3822
- msgid "buyCRED Purchase (Zombaio)"
3823
  msgstr ""
3824
 
3825
- #: includes/classes/class.query-log.php:2416
3826
- msgid "buyCRED Purchase (NETBilling)"
3827
  msgstr ""
3828
 
3829
- #: includes/classes/class.query-log.php:2417
3830
- msgid "buyCRED Purchase (BitPay)"
3831
  msgstr ""
3832
 
3833
- #: includes/classes/class.query-log.php:2418
3834
- msgid "buyCRED Purchase (Bank Transfer)"
3835
  msgstr ""
3836
 
3837
- #: includes/classes/class.query-log.php:2427
3838
- msgid "Store Purchase (WooCommerce)"
3839
  msgstr ""
3840
 
3841
- #: includes/classes/class.query-log.php:2428
3842
- msgid "Store Reward (WooCommerce)"
3843
  msgstr ""
3844
 
3845
- #: includes/classes/class.query-log.php:2429
3846
- msgid "Product Review (WooCommerce)"
3847
  msgstr ""
3848
 
3849
- #: includes/classes/class.query-log.php:2432
3850
- msgid "Store Purchase (MarketPress)"
3851
  msgstr ""
3852
 
3853
- #: includes/classes/class.query-log.php:2433
3854
- msgid "Store Reward (MarketPress)"
 
 
 
 
 
 
 
 
 
3855
  msgstr ""
3856
 
3857
- #: includes/classes/class.query-log.php:2436
3858
- msgid "Store Purchase (WP E-Commerce)"
 
 
3859
  msgstr ""
3860
 
3861
- #: includes/classes/class.query-log.php:2442
3862
- msgid "Event Payment (Event Espresso)"
 
 
3863
  msgstr ""
3864
 
3865
- #: includes/classes/class.query-log.php:2443
3866
- msgid "Event Sale (Event Espresso)"
 
 
3867
  msgstr ""
3868
 
3869
- #: includes/classes/class.query-log.php:2447
3870
- msgid "Event Payment (Events Manager)"
3871
  msgstr ""
3872
 
3873
- #: includes/classes/class.query-log.php:2448
3874
- msgid "Event Sale (Events Manager)"
3875
  msgstr ""
3876
 
3877
- #: includes/classes/class.query-log.php:2452
3878
- msgid "Content Purchase"
3879
  msgstr ""
3880
 
3881
- #: includes/classes/class.query-log.php:2453
3882
- msgid "Content Sale"
3883
  msgstr ""
3884
 
3885
- #: includes/classes/class.query-log.php:2457
3886
- #: addons/transfer/includes/mycred-transfer-object.php:162
3887
- msgid "Transfer"
3888
  msgstr ""
3889
 
3890
- #: includes/classes/class.query-log.php:2461
3891
- msgid "Manual Adjustment by Admin"
 
 
3892
  msgstr ""
3893
 
3894
- #: includes/classes/class.query-export.php:263
3895
- msgid "Reference ID"
 
3896
  msgstr ""
3897
 
3898
- #: includes/classes/class.query-export.php:263
3899
- msgid "Data"
 
 
 
 
 
 
3900
  msgstr ""
3901
 
3902
- #: includes/classes/class.query-export.php:464
3903
- msgid "Export log entries raw"
3904
  msgstr ""
3905
 
3906
- #: includes/classes/class.query-export.php:465
3907
- msgid "Export log entries formatted"
3908
  msgstr ""
3909
 
3910
- #: includes/classes/class.query-export.php:482
3911
- msgid "All Log Entries"
 
 
3912
  msgstr ""
3913
 
3914
- #: includes/classes/class.query-export.php:487
3915
- msgid "Search Results"
3916
  msgstr ""
3917
 
3918
- #: includes/classes/class.query-export.php:492
3919
- msgid "Users Log Entries"
3920
  msgstr ""
3921
 
3922
- #: includes/classes/class.query-export.php:493
3923
- msgid "Export History"
3924
  msgstr ""
3925
 
3926
- #: includes/shortcodes/mycred_exchange.php:27
3927
- #: includes/shortcodes/mycred_hook_table.php:24
3928
- msgid "Point type not found."
3929
  msgstr ""
3930
 
3931
- #: includes/shortcodes/mycred_exchange.php:33
3932
- #: includes/shortcodes/mycred_exchange.php:41
3933
- #: includes/shortcodes/mycred_exchange.php:136
3934
- #: includes/shortcodes/mycred_exchange.php:156
3935
- #, php-format
3936
- msgid "You are excluded from using %s."
3937
  msgstr ""
3938
 
3939
- #: includes/shortcodes/mycred_exchange.php:37
3940
- #: includes/shortcodes/mycred_exchange.php:146
3941
- msgid "Your balance is too low to use this feature."
 
3942
  msgstr ""
3943
 
3944
- #: includes/shortcodes/mycred_exchange.php:63
3945
- #, php-format
3946
- msgid "Your current %s balance"
 
3947
  msgstr ""
3948
 
3949
- #: includes/shortcodes/mycred_exchange.php:70
3950
- #, php-format
3951
- msgid "Minimum %s"
3952
  msgstr ""
3953
 
3954
- #: includes/shortcodes/mycred_exchange.php:75
3955
- #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3956
- #: addons/gateway/event-booking/mycred-eventsmanager.php:634
3957
- #: addons/gateway/carts/mycred-wpecommerce.php:389
3958
- #: addons/gateway/carts/mycred-woocommerce.php:136
3959
- #: includes/hooks/external/mycred-hook-affiliatewp.php:360
3960
- msgid "Exchange Rate"
3961
  msgstr ""
3962
 
3963
- #: includes/shortcodes/mycred_exchange.php:76
3964
- #, php-format
3965
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
3966
  msgstr ""
3967
 
3968
- #: includes/shortcodes/mycred_exchange.php:124
3969
- msgid "Point types not found."
 
 
 
 
3970
  msgstr ""
3971
 
3972
- #: includes/shortcodes/mycred_exchange.php:169
3973
- #, php-format
3974
- msgid "You must exchange at least %s!"
3975
  msgstr ""
3976
 
3977
- #: includes/shortcodes/mycred_exchange.php:191
3978
- #, php-format
3979
- msgid "Exchange from %s"
3980
  msgstr ""
3981
 
3982
- #: includes/shortcodes/mycred_exchange.php:203
3983
- #, php-format
3984
- msgid "Exchange to %s"
 
3985
  msgstr ""
3986
 
3987
- #: includes/shortcodes/mycred_exchange.php:211
3988
- #, php-format
3989
- msgid "You have successfully exchanged %s into %s."
3990
  msgstr ""
3991
 
3992
- #: includes/shortcodes/mycred_video.php:44
3993
- msgid "A video ID is required for this shortcode"
 
 
3994
  msgstr ""
3995
 
3996
- #: includes/shortcodes/mycred_hook_table.php:21
3997
- msgid "No instances found for this point type"
 
3998
  msgstr ""
3999
 
4000
- #: includes/shortcodes/mycred_hook_table.php:77
4001
- msgid "Instance"
 
4002
  msgstr ""
4003
 
4004
- #: includes/shortcodes/mycred_hook_table.php:79
4005
- #: includes/hooks/mycred-hook-view-content.php:154
4006
- #: includes/hooks/mycred-hook-view-content.php:166
4007
- #: includes/hooks/mycred-hook-view-content.php:199
4008
- #: includes/hooks/mycred-hook-view-content.php:211
4009
- #: includes/hooks/mycred-hook-view-content.php:290
4010
- #: includes/hooks/mycred-hook-view-content.php:302
4011
- #: includes/hooks/mycred-hook-publishing-content.php:119
4012
- #: includes/hooks/mycred-hook-publishing-content.php:143
4013
- #: includes/hooks/mycred-hook-publishing-content.php:199
4014
- #: includes/hooks/mycred-hook-referrals.php:564
4015
- #: includes/hooks/mycred-hook-referrals.php:591
4016
- #: includes/hooks/mycred-hook-logins.php:135
4017
- #: includes/hooks/mycred-hook-delete-content.php:117
4018
- #: includes/hooks/mycred-hook-delete-content.php:141
4019
- #: includes/hooks/mycred-hook-delete-content.php:197
4020
- #: includes/hooks/external/mycred-hook-woocommerce.php:514
4021
- #: includes/hooks/external/mycred-hook-bbPress.php:443
4022
- #: includes/hooks/external/mycred-hook-bbPress.php:485
4023
- #: includes/hooks/external/mycred-hook-bbPress.php:536
4024
- #: includes/hooks/external/mycred-hook-bbPress.php:560
4025
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:228
4026
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:240
4027
- #: includes/hooks/external/mycred-hook-contact-form7.php:173
4028
- #: includes/hooks/external/mycred-hook-wp-postratings.php:171
4029
- #: includes/hooks/external/mycred-hook-wp-postratings.php:183
4030
- #: includes/hooks/external/mycred-hook-simplepress.php:301
4031
- #: includes/hooks/external/mycred-hook-simplepress.php:343
4032
- #: includes/hooks/external/mycred-hook-buddypress.php:623
4033
- #: includes/hooks/external/mycred-hook-buddypress.php:647
4034
- #: includes/hooks/external/mycred-hook-buddypress.php:671
4035
- #: includes/hooks/external/mycred-hook-buddypress.php:695
4036
- #: includes/hooks/external/mycred-hook-buddypress.php:719
4037
- #: includes/hooks/external/mycred-hook-buddypress.php:770
4038
- #: includes/hooks/external/mycred-hook-buddypress.php:812
4039
- #: includes/hooks/external/mycred-hook-buddypress.php:854
4040
- #: includes/hooks/external/mycred-hook-buddypress.php:878
4041
- #: includes/hooks/external/mycred-hook-buddypress.php:1556
4042
- #: includes/hooks/external/mycred-hook-buddypress.php:1580
4043
- #: includes/hooks/external/mycred-hook-buddypress.php:1604
4044
- #: includes/hooks/external/mycred-hook-buddypress.php:1628
4045
- #: includes/hooks/external/mycred-hook-buddypress.php:1652
4046
- #: includes/hooks/external/mycred-hook-buddypress.php:1676
4047
- #: includes/hooks/external/mycred-hook-buddypress.php:1700
4048
- #: includes/hooks/external/mycred-hook-buddypress.php:1742
4049
- #: includes/hooks/external/mycred-hook-events-manager-light.php:211
4050
- #: includes/hooks/external/mycred-hook-invite-anyone.php:215
4051
- #: includes/hooks/external/mycred-hook-invite-anyone.php:239
4052
- #: includes/hooks/external/mycred-hook-sharethis.php:267
4053
- #: includes/hooks/external/mycred-hook-affiliatewp.php:317
4054
- #: includes/hooks/external/mycred-hook-gravityforms.php:166
4055
- #: includes/hooks/external/mycred-hook-buddypress-media.php:300
4056
- #: includes/hooks/external/mycred-hook-buddypress-media.php:324
4057
- #: includes/hooks/external/mycred-hook-buddypress-media.php:348
4058
- msgid "Limit"
4059
  msgstr ""
4060
 
4061
- #: includes/widgets/mycred-widget-leaderboard.php:19
4062
  #, php-format
4063
- msgid "(%s) Leaderboard"
4064
  msgstr ""
4065
 
4066
- #: includes/widgets/mycred-widget-leaderboard.php:22
4067
- msgid "Leaderboard based on instances or balances."
4068
  msgstr ""
4069
 
4070
- #: includes/widgets/mycred-widget-leaderboard.php:110
4071
- msgid "Based On"
 
4072
  msgstr ""
4073
 
4074
- #: includes/widgets/mycred-widget-leaderboard.php:113
 
 
 
 
 
 
4075
  msgid ""
4076
- "Use \"balance\" to base the leaderboard on your users current balances or "
4077
- "use a specific reference."
4078
  msgstr ""
4079
 
4080
- #: includes/widgets/mycred-widget-leaderboard.php:113
4081
- msgid "Reference Guide"
4082
  msgstr ""
4083
 
4084
- #: includes/widgets/mycred-widget-leaderboard.php:121
4085
- msgid "Visible to non-members"
 
4086
  msgstr ""
4087
 
4088
- #: includes/widgets/mycred-widget-leaderboard.php:124
4089
- msgid "Number of users"
4090
  msgstr ""
4091
 
4092
- #: includes/widgets/mycred-widget-leaderboard.php:128
4093
- #: includes/widgets/mycred-widget-balance.php:211
4094
- msgid "Row layout"
4095
  msgstr ""
4096
 
4097
- #: includes/widgets/mycred-widget-leaderboard.php:133
4098
- msgid "Offset"
4099
  msgstr ""
4100
 
4101
- #: includes/widgets/mycred-widget-leaderboard.php:135
4102
- msgid "Optional offset of order. Use zero to return the first in the list."
 
4103
  msgstr ""
4104
 
4105
- #: includes/widgets/mycred-widget-leaderboard.php:138
4106
- msgid "Order"
4107
  msgstr ""
4108
 
4109
- #: includes/widgets/mycred-widget-leaderboard.php:157
4110
- msgid "Append current users position"
4111
  msgstr ""
4112
 
4113
- #: includes/widgets/mycred-widget-leaderboard.php:158
4114
- msgid ""
4115
- "If the current user is not in this leaderboard, you can select to append "
4116
- "them at the end with their current position."
4117
  msgstr ""
4118
 
4119
- #: includes/widgets/mycred-widget-leaderboard.php:162
4120
- msgid "Timeframe"
4121
  msgstr ""
4122
 
4123
- #: includes/widgets/mycred-widget-leaderboard.php:164
4124
- msgid ""
4125
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
4126
- "if not used."
4127
  msgstr ""
4128
 
4129
- #: includes/widgets/mycred-widget-wallet.php:19
4130
- #, php-format
4131
- msgid "(%s) Wallet"
4132
  msgstr ""
4133
 
4134
- #: includes/widgets/mycred-widget-wallet.php:22
4135
- msgid "Shows multiple balances."
4136
  msgstr ""
4137
 
4138
- #: includes/widgets/mycred-widget-wallet.php:129
4139
- msgid "Row Layout"
4140
  msgstr ""
4141
 
4142
- #: includes/widgets/mycred-widget-wallet.php:136
4143
- #: includes/widgets/mycred-widget-balance.php:224
4144
- msgid "Show message when not logged in"
4145
  msgstr ""
4146
 
4147
- #: includes/widgets/mycred-widget-wallet.php:140
4148
- #: includes/widgets/mycred-widget-balance.php:228
4149
- #: addons/transfer/includes/mycred-transfer-object.php:825
4150
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
4151
- msgid "Message"
4152
  msgstr ""
4153
 
4154
- #: includes/widgets/mycred-widget-balance.php:19
4155
- #, php-format
4156
- msgid "(%s) My Balance"
4157
  msgstr ""
4158
 
4159
- #: includes/widgets/mycred-widget-balance.php:22
4160
- msgid "Show the current users balance and history."
4161
  msgstr ""
4162
 
4163
- #: includes/widgets/mycred-widget-balance.php:192
4164
- msgid "Balance Layout"
4165
  msgstr ""
4166
 
4167
- #: includes/widgets/mycred-widget-balance.php:199
4168
- msgid "Include history"
 
 
4169
  msgstr ""
4170
 
4171
- #: includes/widgets/mycred-widget-balance.php:203
4172
- msgid "History Title"
4173
  msgstr ""
4174
 
4175
- #: includes/widgets/mycred-widget-balance.php:207
4176
- msgid "Number of entires"
 
 
4177
  msgstr ""
4178
 
4179
- #: includes/hooks/mycred-hook-link-clicks.php:55
4180
- msgid "Once for each unique URL"
4181
  msgstr ""
4182
 
4183
- #: includes/hooks/mycred-hook-link-clicks.php:56
4184
- msgid "Once for each unique link id"
 
 
4185
  msgstr ""
4186
 
4187
- #: includes/hooks/mycred-hook-link-clicks.php:302
4188
- #: includes/hooks/mycred-hook-watching-video.php:351
4189
- msgid "Available Shortcode"
4190
  msgstr ""
4191
 
4192
- #: includes/hooks/mycred-hook-view-content.php:144
4193
- msgid "Viewing Posts"
4194
  msgstr ""
4195
 
4196
- #: includes/hooks/mycred-hook-view-content.php:148
4197
- #: includes/hooks/mycred-hook-view-content.php:193
4198
- #: includes/hooks/mycred-hook-view-content.php:284
4199
- #: includes/hooks/mycred-hook-view-content.php:310
4200
- #: includes/hooks/mycred-hook-comments.php:371
4201
- #: includes/hooks/mycred-hook-comments.php:422
4202
- #: includes/hooks/mycred-hook-comments.php:448
4203
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:222
4204
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:267
4205
- #: includes/hooks/external/mycred-hook-wp-postratings.php:165
4206
- msgid "Member"
4207
  msgstr ""
4208
 
4209
- #: includes/hooks/mycred-hook-view-content.php:160
4210
- #: includes/hooks/mycred-hook-view-content.php:205
4211
- #: includes/hooks/mycred-hook-view-content.php:296
4212
- #: includes/hooks/mycred-hook-view-content.php:317
4213
- #: includes/hooks/mycred-hook-comments.php:378
4214
- #: includes/hooks/mycred-hook-comments.php:429
4215
- #: includes/hooks/mycred-hook-comments.php:455
4216
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:234
4217
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:282
4218
- #: includes/hooks/external/mycred-hook-wp-postratings.php:177
4219
- msgid "Content Author"
4220
  msgstr ""
4221
 
4222
- #: includes/hooks/mycred-hook-view-content.php:174
4223
- #: includes/hooks/mycred-hook-view-content.php:219
4224
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:248
4225
- #: includes/hooks/external/mycred-hook-wp-postratings.php:207
4226
- msgid "Member Log Template"
4227
  msgstr ""
4228
 
4229
- #: includes/hooks/mycred-hook-view-content.php:181
4230
- #: includes/hooks/mycred-hook-view-content.php:226
4231
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:255
4232
- #: includes/hooks/external/mycred-hook-wp-postratings.php:214
4233
- msgid "Content Author Log Template"
4234
  msgstr ""
4235
 
4236
- #: includes/hooks/mycred-hook-view-content.php:189
4237
- msgid "Viewing Pages"
4238
  msgstr ""
4239
 
4240
- #: includes/hooks/mycred-hook-view-content.php:280
4241
- #, php-format
4242
- msgid "Viewing %s"
 
 
4243
  msgstr ""
4244
 
4245
- #: includes/hooks/mycred-hook-publishing-content.php:109
4246
- #: includes/hooks/external/mycred-hook-sharethis.php:257
4247
- msgid "Publishing Posts"
 
4248
  msgstr ""
4249
 
4250
- #: includes/hooks/mycred-hook-publishing-content.php:133
4251
- msgid "Publishing Pages"
4252
  msgstr ""
4253
 
4254
- #: includes/hooks/mycred-hook-publishing-content.php:189
4255
- #, php-format
4256
- msgid "Publishing %s"
 
4257
  msgstr ""
4258
 
4259
- #: includes/hooks/mycred-hook-referrals.php:42
4260
- msgid "Affiliate Program"
4261
  msgstr ""
4262
 
4263
- #: includes/hooks/mycred-hook-referrals.php:51
4264
- msgid "Per Day"
4265
  msgstr ""
4266
 
4267
- #: includes/hooks/mycred-hook-referrals.php:210
4268
- msgid "Link"
4269
  msgstr ""
4270
 
4271
- #: includes/hooks/mycred-hook-referrals.php:214
4272
- msgid "Visitors Referred"
4273
  msgstr ""
4274
 
4275
- #: includes/hooks/mycred-hook-referrals.php:218
4276
- msgid "Signups Referred"
4277
  msgstr ""
4278
 
4279
- #: includes/hooks/mycred-hook-referrals.php:554
4280
- #: includes/hooks/external/mycred-hook-affiliatewp.php:306
4281
- msgid "Referring Visitors"
4282
  msgstr ""
4283
 
4284
- #: includes/hooks/mycred-hook-referrals.php:578
4285
- msgid "Referring Signups"
 
 
 
4286
  msgstr ""
4287
 
4288
- #: includes/hooks/mycred-hook-referrals.php:619
4289
- msgid "Referral Links"
4290
  msgstr ""
4291
 
4292
- #: includes/hooks/mycred-hook-referrals.php:623
4293
- msgid "Assign numeric referral IDs to each user."
 
4294
  msgstr ""
4295
 
4296
- #: includes/hooks/mycred-hook-referrals.php:624
4297
- #: includes/hooks/mycred-hook-referrals.php:630
4298
- msgid "Example"
 
4299
  msgstr ""
4300
 
4301
- #: includes/hooks/mycred-hook-referrals.php:629
4302
- msgid "Assign usernames as IDs for each user."
4303
  msgstr ""
4304
 
4305
- #: includes/hooks/mycred-hook-referrals.php:637
4306
- msgid "IP Limit"
4307
  msgstr ""
4308
 
4309
- #: includes/hooks/mycred-hook-referrals.php:639
4310
  msgid ""
4311
- "The number of times each IP address grants %_plural%. Use zero for unlimited."
4312
- msgstr ""
4313
-
4314
- #: includes/hooks/mycred-hook-referrals.php:652
4315
- msgid "BuddyPress Profile"
4316
  msgstr ""
4317
 
4318
- #: includes/hooks/mycred-hook-referrals.php:657
4319
- msgid "Insert referral link in users profiles"
4320
  msgstr ""
4321
 
4322
- #: includes/hooks/mycred-hook-referrals.php:667
4323
- msgid "Leave empty to hide."
4324
  msgstr ""
4325
 
4326
- #: includes/hooks/mycred-hook-referrals.php:672
4327
- msgid "Profile Positioning"
4328
  msgstr ""
4329
 
4330
- #: includes/hooks/mycred-hook-referrals.php:674
4331
  msgid ""
4332
- "You can move around the referral link on your users profile by changing the "
4333
- "position. Increase to move up, decrease to move down."
4334
  msgstr ""
4335
 
4336
- #: includes/hooks/mycred-hook-referrals.php:681
4337
- msgid "Description"
4338
  msgstr ""
4339
 
4340
- #: includes/hooks/mycred-hook-referrals.php:682
4341
- msgid "Optional description to insert under the link."
4342
  msgstr ""
4343
 
4344
- #: includes/hooks/mycred-hook-watching-video.php:319
4345
- msgid "Award Logic"
4346
  msgstr ""
4347
 
4348
- #: includes/hooks/mycred-hook-watching-video.php:321
4349
- msgid "Play - As soon as video starts playing."
4350
  msgstr ""
4351
 
4352
- #: includes/hooks/mycred-hook-watching-video.php:324
4353
- msgid "Full - First when the entire video has played."
4354
  msgstr ""
4355
 
4356
- #: includes/hooks/mycred-hook-watching-video.php:327
4357
- msgid "Interval - For each x number of seconds watched."
4358
  msgstr ""
4359
 
4360
- #: includes/hooks/mycred-hook-watching-video.php:334
4361
- msgid "Intervals"
4362
  msgstr ""
4363
 
4364
- #: includes/hooks/mycred-hook-watching-video.php:336
4365
- #, php-format
4366
- msgid "The number of seconds a user must watch in order to get %s."
4367
  msgstr ""
4368
 
4369
- #: includes/hooks/mycred-hook-watching-video.php:341
4370
- msgid "Leniency"
4371
  msgstr ""
4372
 
4373
- #: includes/hooks/mycred-hook-watching-video.php:343
4374
- msgid ""
4375
- "Do not set this value to zero! A lot of thing can happen while a user "
4376
- "watches a movie and sometimes a few seconds can drop of the counter due to "
4377
- "buffering or play back errors."
4378
  msgstr ""
4379
 
4380
- #: includes/hooks/mycred-hook-delete-content.php:107
4381
- msgid "Trashing Posts"
4382
  msgstr ""
4383
 
4384
- #: includes/hooks/mycred-hook-delete-content.php:131
4385
- msgid "Trashing Pages"
4386
  msgstr ""
4387
 
4388
- #: includes/hooks/mycred-hook-delete-content.php:187
4389
- #, php-format
4390
- msgid "Trashing %s"
4391
  msgstr ""
4392
 
4393
- #: includes/hooks/mycred-hook-comments.php:363
4394
- msgid ""
4395
- "%plural% are only awarded when your website has been synced with the Disqus "
4396
- "server!"
4397
  msgstr ""
4398
 
4399
- #: includes/hooks/mycred-hook-comments.php:367
4400
- msgid "Approved Comments"
4401
  msgstr ""
4402
 
4403
- #: includes/hooks/mycred-hook-comments.php:373
4404
- #: includes/hooks/mycred-hook-comments.php:380
4405
- #: includes/hooks/mycred-hook-comments.php:424
4406
- #: includes/hooks/mycred-hook-comments.php:431
4407
- #: includes/hooks/mycred-hook-comments.php:450
4408
- #: includes/hooks/mycred-hook-comments.php:457
4409
- #: addons/banking/services/mycred-service-payouts.php:768
4410
- #: addons/banking/services/mycred-service-payouts.php:775
4411
- #: includes/hooks/external/mycred-hook-affiliatewp.php:293
4412
- #: includes/hooks/external/mycred-hook-affiliatewp.php:312
4413
- msgid "Use zero to disable."
4414
  msgstr ""
4415
 
4416
- #: includes/hooks/mycred-hook-comments.php:395
4417
- msgid ""
4418
- "%plural% is to be awarded even when comment authors reply to their own "
4419
- "comment."
4420
  msgstr ""
4421
 
4422
- #: includes/hooks/mycred-hook-comments.php:403
4423
- msgid "Limit per post"
4424
  msgstr ""
4425
 
4426
- #: includes/hooks/mycred-hook-comments.php:405
4427
- msgid ""
4428
- "The number of comments per post that grants %_plural% to the comment author. "
4429
- "Use zero for unlimited."
4430
  msgstr ""
4431
 
4432
- #: includes/hooks/mycred-hook-comments.php:410
4433
- msgid "Limit per day"
 
 
4434
  msgstr ""
4435
 
4436
- #: includes/hooks/mycred-hook-comments.php:412
4437
- msgid ""
4438
- "Number of comments per day that grants %_plural%. Use zero for unlimited."
4439
  msgstr ""
4440
 
4441
- #: includes/hooks/mycred-hook-comments.php:418
4442
- msgid "SPAM Comments"
4443
  msgstr ""
4444
 
4445
- #: includes/hooks/mycred-hook-comments.php:444
4446
- msgid "Trashed Comments"
4447
  msgstr ""
4448
 
4449
- #: includes/importers/mycred-log-entries.php:117
4450
- #: includes/importers/mycred-log-entries.php:142
4451
- #: includes/importers/mycred-balances.php:117
4452
- #: includes/importers/mycred-balances.php:144
4453
- msgid "The file does not exist or could not be read."
4454
  msgstr ""
4455
 
4456
- #: includes/importers/mycred-log-entries.php:204
4457
- #: includes/importers/mycred-balances.php:220
4458
- msgid ""
4459
- "Invalid CSV file. Please consult the documentation for further assistance."
4460
  msgstr ""
4461
 
4462
- #: includes/importers/mycred-log-entries.php:213
4463
- #, php-format
4464
- msgid ""
4465
- "Import complete - A total of <strong>%d</strong> log entries were "
4466
- "successfully imported. <strong>%d</strong> was skipped."
4467
  msgstr ""
4468
 
4469
- #: includes/importers/mycred-log-entries.php:214
4470
- msgid "View Log"
 
 
 
 
 
 
4471
  msgstr ""
4472
 
4473
- #: includes/importers/mycred-log-entries.php:239
4474
- msgid "Import Log Entries"
 
 
4475
  msgstr ""
4476
 
4477
- #: includes/importers/mycred-log-entries.php:284
4478
- #: includes/importers/mycred-balances.php:288
4479
- msgid "Choose a file from your computer:"
4480
  msgstr ""
4481
 
4482
- #: includes/importers/mycred-log-entries.php:290
4483
- #: includes/importers/mycred-balances.php:294
4484
  #, php-format
4485
- msgid "Maximum size: %s"
4486
  msgstr ""
4487
 
4488
- #: includes/importers/mycred-log-entries.php:295
4489
- #: includes/importers/mycred-balances.php:299
4490
- msgid "OR enter path to file:"
 
4491
  msgstr ""
4492
 
4493
- #: includes/importers/mycred-log-entries.php:303
4494
- #: includes/importers/mycred-balances.php:307
4495
- msgid "Delimiter"
 
4496
  msgstr ""
4497
 
4498
- #: includes/importers/mycred-log-entries.php:312
4499
- #: includes/importers/mycred-cubepoints.php:344
4500
- #: includes/importers/mycred-cubepoints.php:368
4501
- #: includes/importers/mycred-balances.php:327
4502
- msgid "Import"
4503
  msgstr ""
4504
 
4505
- #: includes/importers/mycred-cubepoints.php:85
4506
- msgid "Could not find a CubePoints installation."
 
 
4507
  msgstr ""
4508
 
4509
- #: includes/importers/mycred-cubepoints.php:282
4510
- msgid "No balances were imported."
 
 
4511
  msgstr ""
4512
 
4513
- #: includes/importers/mycred-cubepoints.php:282
4514
- msgid "No log entries were imported!"
 
 
4515
  msgstr ""
4516
 
4517
- #: includes/importers/mycred-cubepoints.php:288
4518
- #: includes/importers/mycred-balances.php:229
4519
  #, php-format
4520
- msgid ""
4521
- "Import complete - A total of <strong>%d</strong> balances were successfully "
4522
- "imported. <strong>%d</strong> was skipped."
4523
  msgstr ""
4524
 
4525
- #: includes/importers/mycred-cubepoints.php:289
4526
- #: includes/importers/mycred-balances.php:230
4527
- msgid "View Users"
 
4528
  msgstr ""
4529
 
4530
- #: includes/importers/mycred-cubepoints.php:305
4531
- msgid "Import CubePoints"
 
4532
  msgstr ""
4533
 
4534
- #: includes/importers/mycred-cubepoints.php:348
4535
- msgid "Select what to import"
 
4536
  msgstr ""
4537
 
4538
- #: includes/importers/mycred-cubepoints.php:349
4539
- msgid "Log Entries Only"
 
4540
  msgstr ""
4541
 
4542
- #: includes/importers/mycred-cubepoints.php:350
4543
- msgid "CubePoints Balances Only"
 
4544
  msgstr ""
4545
 
4546
- #: includes/importers/mycred-cubepoints.php:351
4547
- msgid "Log Entries and Balances"
 
4548
  msgstr ""
4549
 
4550
- #: includes/importers/mycred-balances.php:245
4551
- msgid "Import Balances"
 
 
4552
  msgstr ""
4553
 
4554
- #: includes/importers/mycred-balances.php:315
4555
- msgid "Method"
 
 
4556
  msgstr ""
4557
 
4558
- #: includes/importers/mycred-balances.php:319
4559
- msgid "Replace current balances with the amount in this CSV file"
 
 
4560
  msgstr ""
4561
 
4562
- #: includes/importers/mycred-balances.php:320
4563
- msgid "Adjust current balances according to the amount in this CSV file"
 
4564
  msgstr ""
4565
 
4566
- #: addons/coupons/includes/mycred-coupon-functions.php:256
4567
- msgid "An unknown error occurred. Coupon not used."
 
4568
  msgstr ""
4569
 
4570
- #: addons/badges/includes/mycred-badge-functions.php:264
4571
- #, php-format
4572
- msgid "Level %s"
 
 
4573
  msgstr ""
4574
 
4575
- #: addons/badges/includes/mycred-badge-functions.php:281
4576
- #, php-format
4577
- msgctxt "\"Points\" for \"reference\" x times"
4578
- msgid "%s for \"%s\" x %d"
4579
  msgstr ""
4580
 
4581
- #: addons/badges/includes/mycred-badge-functions.php:283
4582
- #, php-format
4583
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
4584
- msgid "%s %s for \"%s\""
4585
  msgstr ""
4586
 
4587
- #: addons/badges/includes/mycred-badge-functions.php:283
4588
- msgid "Lost"
 
4589
  msgstr ""
4590
 
4591
- #: addons/badges/includes/mycred-badge-functions.php:283
4592
- msgid "Gained"
 
4593
  msgstr ""
4594
 
4595
- #: addons/gateway/event-booking/mycred-eventespresso3.php:26
4596
- #: addons/gateway/event-booking/mycred-eventsmanager.php:594
4597
- #: addons/buy-creds/modules/buycred-module-core.php:866
4598
- msgid "Payments"
4599
  msgstr ""
4600
 
4601
- #: addons/gateway/event-booking/mycred-eventespresso3.php:27
4602
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
4603
- #: addons/buy-creds/includes/buycred-shortcodes.php:325
4604
- msgid "Pay Now"
4605
  msgstr ""
4606
 
4607
- #: addons/gateway/event-booking/mycred-eventespresso3.php:32
4608
- msgid "Payment for Event Registration"
 
4609
  msgstr ""
4610
 
4611
- #: addons/gateway/event-booking/mycred-eventespresso3.php:311
4612
- #: addons/gateway/event-booking/mycred-eventespresso3.php:336
4613
- #: addons/gateway/event-booking/mycred-eventsmanager.php:468
4614
- #: addons/gateway/carts/mycred-wpecommerce.php:120
4615
- msgid "Total Cost"
4616
  msgstr ""
4617
 
4618
- #: addons/gateway/event-booking/mycred-eventespresso3.php:315
4619
- #: addons/gateway/event-booking/mycred-eventespresso3.php:340
4620
- msgid "Balance After Purchase"
4621
  msgstr ""
4622
 
4623
- #: addons/gateway/event-booking/mycred-eventespresso3.php:380
4624
- #, php-format
4625
- msgid "Activate %s"
 
 
4626
  msgstr ""
4627
 
4628
- #: addons/gateway/event-booking/mycred-eventespresso3.php:389
 
4629
  #, php-format
4630
- msgid "Deactivate %s"
4631
  msgstr ""
4632
 
4633
- #: addons/gateway/event-booking/mycred-eventespresso3.php:402
4634
- msgid "Gateway Settings"
 
4635
  msgstr ""
4636
 
4637
- #: addons/gateway/event-booking/mycred-eventespresso3.php:442
4638
- #: addons/gateway/event-booking/mycred-eventsmanager.php:580
4639
- #, php-format
4640
- msgid "How many %s is 1 %s worth?"
4641
  msgstr ""
4642
 
4643
- #: addons/gateway/event-booking/mycred-eventespresso3.php:463
4644
- msgid "Gateway Title"
4645
  msgstr ""
4646
 
4647
- #: addons/gateway/event-booking/mycred-eventespresso3.php:465
4648
- msgid "Title to show on Payment page"
4649
  msgstr ""
4650
 
4651
- #: addons/gateway/event-booking/mycred-eventespresso3.php:468
4652
- msgid "Payment Type"
4653
  msgstr ""
4654
 
4655
- #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4656
- msgid "Title to show on receipts and logs"
4657
  msgstr ""
4658
 
4659
- #: addons/gateway/event-booking/mycred-eventespresso3.php:475
4660
- msgid "Pay Button"
4661
  msgstr ""
4662
 
4663
- #: addons/gateway/event-booking/mycred-eventespresso3.php:503
4664
- msgid "Important!"
4665
  msgstr ""
4666
 
4667
- #: addons/gateway/event-booking/mycred-eventespresso3.php:505
4668
- msgid ""
4669
- "You can disable purchases using this gateway by adding a custom Event Meta: "
4670
- "<code>mycred_no_sale</code>"
4671
  msgstr ""
4672
 
4673
- #: addons/gateway/event-booking/mycred-eventespresso3.php:506
4674
- msgid "Users must be logged in to use this gateway!"
4675
  msgstr ""
4676
 
4677
- #: addons/gateway/event-booking/mycred-eventespresso3.php:510
4678
- #: addons/gateway/event-booking/mycred-eventsmanager.php:625
4679
- #: addons/gateway/carts/mycred-wpecommerce.php:393
4680
- #: addons/gateway/carts/mycred-woocommerce.php:182
4681
- msgid "Profit Sharing"
4682
  msgstr ""
4683
 
4684
- #: addons/gateway/event-booking/mycred-eventespresso3.php:512
4685
- #: addons/gateway/event-booking/mycred-eventsmanager.php:628
4686
- #: addons/gateway/carts/mycred-wpecommerce.php:397
4687
- #: addons/gateway/carts/mycred-woocommerce.php:184
4688
- msgid "Option to share sales with the product owner. Use zero to disable."
4689
  msgstr ""
4690
 
4691
- #: addons/gateway/event-booking/mycred-eventespresso3.php:525
4692
- #: addons/buy-creds/modules/buycred-module-core.php:516
4693
- msgid "Templates"
4694
  msgstr ""
4695
 
4696
- #: addons/gateway/event-booking/mycred-eventespresso3.php:528
4697
- msgid "Solvent users"
4698
  msgstr ""
4699
 
4700
- #: addons/gateway/event-booking/mycred-eventespresso3.php:530
4701
- msgid ""
4702
- "Message to show users on the payment page before they are charged. Leave "
4703
- "empty to hide."
4704
  msgstr ""
4705
 
4706
- #: addons/gateway/event-booking/mycred-eventespresso3.php:533
4707
- msgid "Insolvent users"
4708
  msgstr ""
4709
 
4710
- #: addons/gateway/event-booking/mycred-eventespresso3.php:535
4711
- msgid "Message to show users who do not have enough points to pay."
 
 
 
 
 
 
 
4712
  msgstr ""
4713
 
4714
- #: addons/gateway/event-booking/mycred-eventespresso3.php:538
4715
- #: addons/gateway/carts/mycred-wpecommerce.php:411
4716
- msgid "Visitors"
4717
  msgstr ""
4718
 
4719
- #: addons/gateway/event-booking/mycred-eventespresso3.php:540
4720
- msgid "Message to show visitors (users not logged in) on the payment page."
 
4721
  msgstr ""
4722
 
4723
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
4724
- msgid "Payment for tickets to %link_with_title%"
4725
  msgstr ""
4726
 
4727
- #: addons/gateway/event-booking/mycred-eventsmanager.php:31
4728
- msgid "Ticket refund for %link_with_title%"
4729
  msgstr ""
4730
 
4731
- #: addons/gateway/event-booking/mycred-eventsmanager.php:35
4732
- msgid "Pay using your %_plural% balance"
 
4733
  msgstr ""
4734
 
4735
- #: addons/gateway/event-booking/mycred-eventsmanager.php:37
4736
- msgid "Pay"
4737
  msgstr ""
4738
 
4739
- #: addons/gateway/event-booking/mycred-eventsmanager.php:40
4740
- msgid "Thank you for your payment!"
4741
  msgstr ""
4742
 
4743
- #: addons/gateway/event-booking/mycred-eventsmanager.php:41
4744
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
4745
  msgstr ""
4746
 
4747
- #: addons/gateway/event-booking/mycred-eventsmanager.php:366
4748
- msgid "Ticket Type"
4749
  msgstr ""
4750
 
4751
- #: addons/gateway/event-booking/mycred-eventsmanager.php:377
4752
- msgid "Spaces"
4753
  msgstr ""
4754
 
4755
- #: addons/gateway/event-booking/mycred-eventsmanager.php:472
4756
- msgid "Balance After Payment"
4757
  msgstr ""
4758
 
4759
- #: addons/gateway/event-booking/mycred-eventsmanager.php:585
4760
- msgid "Click to toggle"
4761
  msgstr ""
4762
 
4763
- #: addons/gateway/event-booking/mycred-eventsmanager.php:586
4764
- #, php-format
4765
- msgid "%s Payments"
4766
  msgstr ""
4767
 
4768
- #: addons/gateway/event-booking/mycred-eventsmanager.php:596
4769
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
4770
  msgstr ""
4771
 
4772
- #: addons/gateway/event-booking/mycred-eventsmanager.php:597
4773
- msgid "Single - Users can ONLY pay for tickets using %plural%."
4774
  msgstr ""
4775
 
4776
- #: addons/gateway/event-booking/mycred-eventsmanager.php:598
4777
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
4778
  msgstr ""
4779
 
4780
- #: addons/gateway/event-booking/mycred-eventsmanager.php:618
4781
- #: addons/gateway/event-booking/mycred-eventsmanager.php:651
4782
- msgid "Refunds"
4783
  msgstr ""
4784
 
4785
- #: addons/gateway/event-booking/mycred-eventsmanager.php:621
4786
- msgid ""
4787
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
4788
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
4789
  msgstr ""
4790
 
4791
- #: addons/gateway/event-booking/mycred-eventsmanager.php:644
4792
- msgid "Purchases"
4793
  msgstr ""
4794
 
4795
- #: addons/gateway/event-booking/mycred-eventsmanager.php:661
4796
- msgid "Payment Link Label"
 
 
4797
  msgstr ""
4798
 
4799
- #: addons/gateway/event-booking/mycred-eventsmanager.php:664
4800
- msgid ""
4801
- "The payment link shows / hides the payment form under \"My Bookings\". No "
4802
- "HTML allowed."
4803
  msgstr ""
4804
 
4805
- #: addons/gateway/event-booking/mycred-eventsmanager.php:668
4806
- msgid "Payment Header"
4807
  msgstr ""
4808
 
4809
- #: addons/gateway/event-booking/mycred-eventsmanager.php:671
4810
- msgid "Shown on top of the payment form. No HTML allowed."
4811
  msgstr ""
4812
 
4813
- #: addons/gateway/event-booking/mycred-eventsmanager.php:678
4814
- msgid "The button label for payments. No HTML allowed!"
4815
  msgstr ""
4816
 
4817
- #: addons/gateway/event-booking/mycred-eventsmanager.php:682
4818
- #: addons/gateway/carts/mycred-wpecommerce.php:404
4819
- msgid "Messages"
4820
  msgstr ""
4821
 
4822
- #: addons/gateway/event-booking/mycred-eventsmanager.php:685
4823
- msgid "Successful Payments"
4824
  msgstr ""
4825
 
4826
- #: addons/gateway/event-booking/mycred-eventsmanager.php:688
4827
- #: addons/gateway/event-booking/mycred-eventsmanager.php:695
4828
- msgid "No HTML allowed!"
 
 
 
4829
  msgstr ""
4830
 
4831
- #: addons/gateway/event-booking/mycred-eventsmanager.php:692
4832
- #: addons/gateway/carts/mycred-wpecommerce.php:415
4833
- #: includes/hooks/external/mycred-hook-buddypress.php:310
4834
- msgid "Insufficient Funds"
4835
  msgstr ""
4836
 
4837
- #: addons/gateway/carts/mycred-wpecommerce.php:20
4838
- msgid "Payment for Order: #%order_id%"
4839
  msgstr ""
4840
 
4841
- #: addons/gateway/carts/mycred-wpecommerce.php:23
4842
- msgid "Store sale"
4843
  msgstr ""
4844
 
4845
- #: addons/gateway/carts/mycred-wpecommerce.php:25
4846
- msgid "You must be logged in to use this gateway"
4847
  msgstr ""
4848
 
4849
- #: addons/gateway/carts/mycred-wpecommerce.php:26
4850
- msgid "Insufficient Funds."
4851
  msgstr ""
4852
 
4853
- #: addons/gateway/carts/mycred-wpecommerce.php:27
4854
- msgid "Deduct the amount from your balance."
4855
  msgstr ""
4856
 
4857
- #: addons/gateway/carts/mycred-wpecommerce.php:107
4858
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:486
4859
- msgid "Item"
4860
  msgstr ""
4861
 
4862
- #: addons/gateway/carts/mycred-wpecommerce.php:128
4863
- msgid "Your current balance"
 
 
4864
  msgstr ""
4865
 
4866
- #: addons/gateway/carts/mycred-wpecommerce.php:202
4867
- msgid "You can not use this gateway."
4868
  msgstr ""
4869
 
4870
- #: addons/gateway/carts/mycred-wpecommerce.php:373
4871
- msgid "Log Template for Payments"
4872
  msgstr ""
4873
 
4874
- #: addons/gateway/carts/mycred-wpecommerce.php:390
4875
- #: includes/hooks/external/mycred-hook-affiliatewp.php:362
4876
- #, php-format
4877
- msgid "How much is 1 %s worth in %s"
4878
  msgstr ""
4879
 
4880
- #: addons/gateway/carts/mycred-wpecommerce.php:396
4881
- #: addons/banking/services/mycred-service-payouts.php:591
4882
- msgid "Payout"
4883
  msgstr ""
4884
 
4885
- #: addons/gateway/carts/mycred-wpecommerce.php:407
4886
- msgid "Instructions"
4887
  msgstr ""
4888
 
4889
- #: addons/gateway/carts/mycred-wpecommerce.php:408
4890
- msgid ""
4891
- "Optional instructions to show users when selecting this gateway. Leave empty "
4892
- "to hide."
4893
  msgstr ""
4894
 
4895
- #: addons/gateway/carts/mycred-wpecommerce.php:412
4896
- msgid "Message to show visitors who are not logged in."
4897
  msgstr ""
4898
 
4899
- #: addons/gateway/carts/mycred-wpecommerce.php:416
4900
- msgid ""
4901
- "Message to show when users does not have enough %plural% to pay using this "
4902
- "gateway."
4903
  msgstr ""
4904
 
4905
- #: addons/gateway/carts/mycred-woocommerce.php:29
4906
- msgid "Let users pay using points."
4907
  msgstr ""
4908
 
4909
- #: addons/gateway/carts/mycred-woocommerce.php:89
4910
- msgid "Enable/Disable"
4911
  msgstr ""
4912
 
4913
- #: addons/gateway/carts/mycred-woocommerce.php:91
4914
- #, php-format
4915
- msgid "Enable %s Payment"
4916
  msgstr ""
4917
 
4918
- #: addons/gateway/carts/mycred-woocommerce.php:93
4919
- msgid ""
4920
- "Users who are not logged in or excluded from using myCRED will not have "
4921
- "access to this gateway!"
4922
  msgstr ""
4923
 
4924
- #: addons/gateway/carts/mycred-woocommerce.php:98
4925
- msgid "Title to show for this payment option."
 
 
4926
  msgstr ""
4927
 
4928
- #: addons/gateway/carts/mycred-woocommerce.php:99
4929
- msgid "Pay with myCRED"
 
 
4930
  msgstr ""
4931
 
4932
- #: addons/gateway/carts/mycred-woocommerce.php:103
4933
- msgid "Customer Message"
4934
  msgstr ""
4935
 
4936
- #: addons/gateway/carts/mycred-woocommerce.php:114
4937
- #: addons/gateway/carts/mycred-woocommerce.php:195
4938
- msgid "Refund Log Template"
4939
  msgstr ""
4940
 
4941
- #: addons/gateway/carts/mycred-woocommerce.php:127
4942
- msgid "Select the point type users can use to pay."
4943
  msgstr ""
4944
 
4945
- #: addons/gateway/carts/mycred-woocommerce.php:132
4946
- msgid "How much is 1 %_singular% worth in %currency%?"
4947
  msgstr ""
4948
 
4949
- #: addons/gateway/carts/mycred-woocommerce.php:143
4950
- msgid "Show Total"
4951
  msgstr ""
4952
 
4953
- #: addons/gateway/carts/mycred-woocommerce.php:145
4954
- msgid "Show the final price in %_plural% ."
4955
  msgstr ""
4956
 
4957
- #: addons/gateway/carts/mycred-woocommerce.php:148
4958
- msgid "Show in Cart"
4959
  msgstr ""
4960
 
4961
- #: addons/gateway/carts/mycred-woocommerce.php:149
4962
- msgid "Show on Checkout Page"
4963
  msgstr ""
4964
 
4965
- #: addons/gateway/carts/mycred-woocommerce.php:150
4966
- msgid "Show in Cart and on Checkout Page"
4967
  msgstr ""
4968
 
4969
- #: addons/gateway/carts/mycred-woocommerce.php:157
4970
- msgid "Order Total in %_plural%"
4971
  msgstr ""
4972
 
4973
- #: addons/gateway/carts/mycred-woocommerce.php:175
4974
- msgid "Balance Label"
4975
  msgstr ""
4976
 
4977
- #: addons/gateway/carts/mycred-woocommerce.php:177
4978
- msgid ""
4979
- "The label to use when presenting a user their balance on the checkout / cart "
4980
- "pages. Leave empty to hide."
4981
  msgstr ""
4982
 
4983
- #: addons/gateway/carts/mycred-woocommerce.php:191
4984
- msgid "Log entry template for profit sharing."
4985
  msgstr ""
4986
 
4987
- #: addons/gateway/carts/mycred-woocommerce.php:197
4988
- msgid "Log entry template for refunds of profit shares."
4989
  msgstr ""
4990
 
4991
- #: addons/gateway/carts/mycred-woocommerce.php:276
4992
- #, php-format
4993
- msgid "%s Payment"
4994
  msgstr ""
4995
 
4996
- #: addons/gateway/carts/mycred-woocommerce.php:300
4997
- msgid "You must be logged in to pay with %_plural%"
4998
  msgstr ""
4999
 
5000
- #: addons/gateway/carts/mycred-woocommerce.php:308
5001
- msgid "You can not use this gateway. Please try a different payment option."
5002
  msgstr ""
5003
 
5004
- #: addons/gateway/carts/mycred-woocommerce.php:326
5005
- #: addons/sell-content/includes/mycred-sell-functions.php:568
5006
- msgid "Insufficient funds."
5007
  msgstr ""
5008
 
5009
- #: addons/gateway/carts/mycred-woocommerce.php:427
5010
- #, php-format
5011
- msgctxt "%s = Point amount formatted"
5012
- msgid "Refunded %s"
5013
  msgstr ""
5014
 
5015
- #: addons/gateway/carts/mycred-woocommerce.php:479
5016
- msgid "Your account has successfully been charged."
5017
  msgstr ""
5018
 
5019
- #: addons/transfer/includes/mycred-transfer-object.php:155
5020
- msgid "You do not have enough %plural% to send."
5021
  msgstr ""
5022
 
5023
- #: addons/transfer/includes/mycred-transfer-object.php:156
5024
- msgid "You have exceeded your %limit% transfer limit."
5025
  msgstr ""
5026
 
5027
- #: addons/transfer/includes/mycred-transfer-object.php:463
5028
- #: addons/banking/includes/mycred-banking-functions.php:85
5029
- #: addons/banking/services/mycred-service-interest.php:434
5030
- #: addons/banking/services/mycred-service-interest.php:459
5031
- msgid "Day"
5032
  msgstr ""
5033
 
5034
- #: addons/transfer/includes/mycred-transfer-object.php:471
5035
- #: addons/banking/includes/mycred-banking-functions.php:90
5036
- msgid "Week"
5037
  msgstr ""
5038
 
5039
- #: addons/transfer/includes/mycred-transfer-object.php:477
5040
- #: addons/banking/includes/mycred-banking-functions.php:95
5041
- #: addons/banking/services/mycred-service-payouts.php:734
5042
- #: addons/banking/services/mycred-service-interest.php:433
5043
- #: addons/banking/services/mycred-service-interest.php:458
5044
- msgid "Month"
5045
  msgstr ""
5046
 
5047
- #: addons/transfer/includes/mycred-transfer-object.php:915
5048
- msgid "username"
5049
  msgstr ""
5050
 
5051
- #: addons/transfer/includes/mycred-transfer-object.php:918
5052
- msgid "email"
5053
  msgstr ""
5054
 
5055
- #: addons/transfer/includes/mycred-transfer-object.php:920
5056
- #, php-format
5057
- msgid "recipients %s"
5058
  msgstr ""
5059
 
5060
- #: addons/transfer/includes/mycred-transfer-functions.php:128
5061
- msgid "No limits."
5062
  msgstr ""
5063
 
5064
- #: addons/transfer/includes/mycred-transfer-functions.php:129
5065
- msgid "Impose daily limit."
5066
  msgstr ""
5067
 
5068
- #: addons/transfer/includes/mycred-transfer-functions.php:130
5069
- msgid "Impose weekly limit."
5070
  msgstr ""
5071
 
5072
- #: addons/transfer/includes/mycred-transfer-functions.php:131
5073
- msgid "Impose monthly limit."
5074
  msgstr ""
5075
 
5076
- #: addons/transfer/includes/mycred-transfer-functions.php:154
5077
- msgid "User Login (user_login)"
5078
  msgstr ""
5079
 
5080
- #: addons/transfer/includes/mycred-transfer-functions.php:155
5081
- msgid "User Email (user_email)"
5082
  msgstr ""
5083
 
5084
- #: addons/transfer/includes/mycred-transfer-widgets.php:19
5085
- #, php-format
5086
- msgid "(%s) Transfer"
5087
  msgstr ""
5088
 
5089
- #: addons/transfer/includes/mycred-transfer-widgets.php:22
5090
- msgid "Allow transfers between users."
5091
  msgstr ""
5092
 
5093
- #: addons/transfer/includes/mycred-transfer-widgets.php:95
5094
- msgid "Show users balance"
5095
  msgstr ""
5096
 
5097
- #: addons/transfer/includes/mycred-transfer-widgets.php:98
5098
- msgid "Show users limit"
5099
  msgstr ""
5100
 
5101
- #: addons/transfer/includes/mycred-transfer-widgets.php:117
5102
- msgid "Recipient Placeholder"
5103
  msgstr ""
5104
 
5105
- #: addons/transfer/includes/mycred-transfer-widgets.php:125
5106
- msgid "Message for Excluded Users"
5107
  msgstr ""
5108
 
5109
- #: addons/stats/includes/mycred-stats-functions.php:192
5110
- #, php-format
5111
- msgid "Week %d"
5112
  msgstr ""
5113
 
5114
- #: addons/stats/includes/mycred-stats-functions.php:404
5115
- msgid "Clear data once an hour"
 
 
5116
  msgstr ""
5117
 
5118
- #: addons/stats/includes/mycred-stats-functions.php:405
5119
- msgid "Clear data every six hours"
5120
  msgstr ""
5121
 
5122
- #: addons/stats/includes/mycred-stats-functions.php:406
5123
- msgid "Clear data twice a day"
 
 
 
 
 
 
 
 
 
 
 
 
5124
  msgstr ""
5125
 
5126
- #: addons/stats/includes/mycred-stats-functions.php:407
5127
- msgid "Clear data once a day"
 
 
 
 
 
 
 
 
 
 
 
 
5128
  msgstr ""
5129
 
5130
- #: addons/stats/includes/mycred-stats-functions.php:635
5131
- msgid "Gains"
 
 
5132
  msgstr ""
5133
 
5134
- #: addons/stats/includes/mycred-stats-functions.php:643
5135
- msgid "Losses"
5136
  msgstr ""
5137
 
5138
- #: addons/email-notices/includes/mycred-email-functions.php:97
5139
- msgid "users balance changes"
 
 
5140
  msgstr ""
5141
 
5142
- #: addons/email-notices/includes/mycred-email-functions.php:98
5143
- msgid "users balance increases"
5144
  msgstr ""
5145
 
5146
- #: addons/email-notices/includes/mycred-email-functions.php:99
5147
- msgid "users balance decreases"
 
5148
  msgstr ""
5149
 
5150
- #: addons/email-notices/includes/mycred-email-functions.php:100
5151
- msgid "users balance reaches zero"
5152
  msgstr ""
5153
 
5154
- #: addons/email-notices/includes/mycred-email-functions.php:101
5155
- msgid "users balance goes negative"
5156
  msgstr ""
5157
 
5158
- #: addons/email-notices/includes/mycred-email-functions.php:104
5159
- msgid "user gains a badge"
5160
  msgstr ""
5161
 
5162
- #: addons/email-notices/includes/mycred-email-functions.php:105
5163
- msgid "user gains a new badge level"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5164
  msgstr ""
5165
 
5166
- #: addons/email-notices/includes/mycred-email-functions.php:109
5167
- msgid "user is promoted to a higher rank"
5168
  msgstr ""
5169
 
5170
- #: addons/email-notices/includes/mycred-email-functions.php:110
5171
- msgid "user is demoted to a lower rank"
 
5172
  msgstr ""
5173
 
5174
- #: addons/email-notices/includes/mycred-email-functions.php:114
5175
- msgid "user sends a transfer"
5176
  msgstr ""
5177
 
5178
- #: addons/email-notices/includes/mycred-email-functions.php:115
5179
- msgid "user receives a transfer"
5180
  msgstr ""
5181
 
5182
- #: addons/email-notices/includes/mycred-email-functions.php:118
5183
- msgid "a custom event occurs"
 
5184
  msgstr ""
5185
 
5186
- #: addons/email-notices/includes/mycred-email-shortcodes.php:65
5187
- msgid "Unsubscribe"
 
5188
  msgstr ""
5189
 
5190
- #: addons/email-notices/includes/mycred-email-shortcodes.php:66
5191
- msgid "Email Notice"
5192
  msgstr ""
5193
 
5194
- #: addons/email-notices/includes/mycred-email-shortcodes.php:87
5195
- msgid "There are no email notifications yet."
 
5196
  msgstr ""
5197
 
5198
- #: addons/email-notices/includes/mycred-email-shortcodes.php:94
5199
- #: addons/buy-creds/modules/buycred-module-pending.php:558
5200
- msgid "Save Changes"
5201
  msgstr ""
5202
 
5203
- #: addons/banking/includes/mycred-banking-functions.php:79
5204
- msgid "Hourly"
5205
  msgstr ""
5206
 
5207
- #: addons/banking/includes/mycred-banking-functions.php:80
5208
- msgid "Hour"
5209
  msgstr ""
5210
 
5211
- #: addons/banking/includes/mycred-banking-functions.php:84
5212
- msgid "Daily"
5213
  msgstr ""
5214
 
5215
- #: addons/banking/includes/mycred-banking-functions.php:89
5216
- msgid "Weekly"
5217
  msgstr ""
5218
 
5219
- #: addons/banking/includes/mycred-banking-functions.php:94
5220
- msgid "Monthly"
 
 
5221
  msgstr ""
5222
 
5223
- #: addons/banking/includes/mycred-banking-functions.php:99
5224
- msgid "Quarterly"
5225
  msgstr ""
5226
 
5227
- #: addons/banking/includes/mycred-banking-functions.php:100
5228
- msgid "Quarter"
5229
  msgstr ""
5230
 
5231
- #: addons/banking/includes/mycred-banking-functions.php:104
5232
- msgid "Semiannually"
5233
  msgstr ""
5234
 
5235
- #: addons/banking/includes/mycred-banking-functions.php:105
5236
- msgid "Semiannual"
 
5237
  msgstr ""
5238
 
5239
- #: addons/banking/includes/mycred-banking-functions.php:109
5240
- msgid "Annually"
5241
  msgstr ""
5242
 
5243
- #: addons/banking/includes/mycred-banking-functions.php:110
5244
- msgid "Annual"
5245
  msgstr ""
5246
 
5247
- #: addons/banking/includes/mycred-banking-functions.php:283
5248
- msgid "A title must be set."
 
5249
  msgstr ""
5250
 
5251
- #: addons/banking/includes/mycred-banking-functions.php:290
5252
- msgid "The amount to payout can not be zero."
5253
  msgstr ""
5254
 
5255
- #: addons/banking/includes/mycred-banking-functions.php:296
5256
- msgid "Start date can not be in the past."
5257
  msgstr ""
5258
 
5259
- #: addons/banking/includes/mycred-banking-functions.php:303
5260
- msgid "Repeat can not be zero."
5261
  msgstr ""
5262
 
5263
- #: addons/banking/includes/mycred-banking-functions.php:309
5264
- msgid "Duplicate schedule."
5265
  msgstr ""
5266
 
5267
- #: addons/banking/services/mycred-service-central.php:110
5268
- msgid "Central Bank Account"
 
 
5269
  msgstr ""
5270
 
5271
- #: addons/banking/services/mycred-service-central.php:113
5272
- msgid "The ID of the user representing the central bank."
5273
  msgstr ""
5274
 
5275
- #: addons/banking/services/mycred-service-central.php:117
5276
- msgid "Ignore Manual Adjustments"
5277
  msgstr ""
5278
 
5279
- #: addons/banking/services/mycred-service-payouts.php:30
5280
- msgid "Waiting to Start"
5281
  msgstr ""
5282
 
5283
- #: addons/banking/services/mycred-service-payouts.php:32
5284
- msgid "Running"
 
 
 
 
 
5285
  msgstr ""
5286
 
5287
- #: addons/banking/services/mycred-service-payouts.php:33
5288
- msgid "Finished"
 
 
 
 
 
5289
  msgstr ""
5290
 
5291
- #: addons/banking/services/mycred-service-payouts.php:34
5292
- msgid "Stopped"
5293
  msgstr ""
5294
 
5295
- #: addons/banking/services/mycred-service-payouts.php:446
5296
- msgid "Not yet started"
 
5297
  msgstr ""
5298
 
5299
- #: addons/banking/services/mycred-service-payouts.php:457
5300
- msgid "Currently Running"
5301
  msgstr ""
5302
 
5303
- #: addons/banking/services/mycred-service-payouts.php:472
5304
- msgid "View Schedule"
5305
  msgstr ""
5306
 
5307
- #: addons/banking/services/mycred-service-payouts.php:472
5308
- msgid "View"
5309
  msgstr ""
5310
 
5311
- #: addons/banking/services/mycred-service-payouts.php:472
5312
- msgid "Delete Schedule"
5313
  msgstr ""
5314
 
5315
- #: addons/banking/services/mycred-service-payouts.php:523
5316
- #: addons/banking/services/mycred-service-payouts.php:766
5317
- msgid "Min. Balance"
5318
  msgstr ""
5319
 
5320
- #: addons/banking/services/mycred-service-payouts.php:526
5321
- #: addons/banking/services/mycred-service-payouts.php:773
5322
- msgid "Max. Balance"
5323
  msgstr ""
5324
 
5325
- #: addons/banking/services/mycred-service-payouts.php:531
5326
- msgid "Exclude Users"
5327
  msgstr ""
5328
 
5329
- #: addons/banking/services/mycred-service-payouts.php:533
5330
- msgid "Include Users"
 
 
 
5331
  msgstr ""
5332
 
5333
- #: addons/banking/services/mycred-service-payouts.php:540
5334
- msgid "Exclude Roles"
 
5335
  msgstr ""
5336
 
5337
- #: addons/banking/services/mycred-service-payouts.php:542
5338
- msgid "Include Roles"
 
 
 
5339
  msgstr ""
5340
 
5341
- #: addons/banking/services/mycred-service-payouts.php:559
5342
- #: addons/banking/services/mycred-service-payouts.php:879
5343
- msgid "Job Title"
5344
  msgstr ""
5345
 
5346
- #: addons/banking/services/mycred-service-payouts.php:573
5347
- msgid "Start Date"
 
5348
  msgstr ""
5349
 
5350
- #: addons/banking/services/mycred-service-payouts.php:573
5351
- msgid "Last Run"
 
5352
  msgstr ""
5353
 
5354
- #: addons/banking/services/mycred-service-payouts.php:579
5355
- msgid "Eligible"
 
5356
  msgstr ""
5357
 
5358
- #: addons/banking/services/mycred-service-payouts.php:580
5359
- #, php-format
5360
- msgid "1 User"
5361
- msgid_plural "%d Users"
5362
- msgstr[0] ""
5363
- msgstr[1] ""
5364
 
5365
- #: addons/banking/services/mycred-service-payouts.php:585
5366
- msgid "Runs"
 
5367
  msgstr ""
5368
 
5369
- #: addons/banking/services/mycred-service-payouts.php:586
5370
- msgid "Infinite"
 
5371
  msgstr ""
5372
 
5373
- #: addons/banking/services/mycred-service-payouts.php:609
5374
- msgid "Will payout even if the central bank account has run out of funds."
 
5375
  msgstr ""
5376
 
5377
- #: addons/banking/services/mycred-service-payouts.php:614
5378
- msgid "Paid Out"
 
5379
  msgstr ""
5380
 
5381
- #: addons/banking/services/mycred-service-payouts.php:615
5382
- msgid "Completed"
 
5383
  msgstr ""
5384
 
5385
- #: addons/banking/services/mycred-service-payouts.php:616
5386
- msgid "Misses"
 
5387
  msgstr ""
5388
 
5389
- #: addons/banking/services/mycred-service-payouts.php:617
5390
- msgid "Runs Left"
 
 
 
5391
  msgstr ""
5392
 
5393
- #: addons/banking/services/mycred-service-payouts.php:637
 
 
5394
  msgid ""
5395
- "A miss is when a payout was declined by the plugin. This can be due to "
5396
- "custom code declining the payout or if the user is excluded."
5397
  msgstr ""
5398
 
5399
- #: addons/banking/services/mycred-service-payouts.php:682
5400
- msgid "Schedule Title"
 
 
5401
  msgstr ""
5402
 
5403
- #: addons/banking/services/mycred-service-payouts.php:694
5404
- #: addons/banking/services/mycred-service-payouts.php:881
5405
- msgid "Frequency"
5406
  msgstr ""
5407
 
5408
- #: addons/banking/services/mycred-service-payouts.php:715
5409
- msgid "Payout even if the central bank account runs out of funds."
 
5410
  msgstr ""
5411
 
5412
- #: addons/banking/services/mycred-service-payouts.php:722
5413
- msgid "First Payout"
 
 
5414
  msgstr ""
5415
 
5416
- #: addons/banking/services/mycred-service-payouts.php:728
5417
- #: addons/banking/services/mycred-service-interest.php:432
5418
- #: addons/banking/services/mycred-service-interest.php:457
5419
- msgid "Year"
5420
  msgstr ""
5421
 
5422
- #: addons/banking/services/mycred-service-payouts.php:754
5423
- msgid "Repeat"
 
5424
  msgstr ""
5425
 
5426
- #: addons/banking/services/mycred-service-payouts.php:756
5427
- msgid "Use -1 for infinite runs."
 
5428
  msgstr ""
5429
 
5430
- #: addons/banking/services/mycred-service-payouts.php:784
5431
- msgid "Limit by ID"
 
5432
  msgstr ""
5433
 
5434
- #: addons/banking/services/mycred-service-payouts.php:791
5435
- #: addons/banking/services/mycred-service-interest.php:528
5436
- #: addons/banking/services/mycred-service-interest.php:529
5437
- msgid "Comma separated list of user IDs"
 
5438
  msgstr ""
5439
 
5440
- #: addons/banking/services/mycred-service-payouts.php:798
5441
- msgid "Limit by Role(s)"
 
5442
  msgstr ""
5443
 
5444
- #: addons/banking/services/mycred-service-payouts.php:846
5445
- msgid "Include:"
 
 
5446
  msgstr ""
5447
 
5448
- #: addons/banking/services/mycred-service-payouts.php:847
5449
- msgid "Exclude:"
 
5450
  msgstr ""
5451
 
5452
- #: addons/banking/services/mycred-service-payouts.php:872
5453
- msgid ""
5454
- "As long as this service remains disabled, none of your scheduled payouts "
5455
- "will run!"
5456
  msgstr ""
5457
 
5458
- #: addons/banking/services/mycred-service-payouts.php:875
5459
- msgid "Schedules"
 
5460
  msgstr ""
5461
 
5462
- #: addons/banking/services/mycred-service-payouts.php:882
5463
- msgid "Last Ran"
 
5464
  msgstr ""
5465
 
5466
- #: addons/banking/services/mycred-service-payouts.php:883
5467
- msgid "Next Run"
 
5468
  msgstr ""
5469
 
5470
- #: addons/banking/services/mycred-service-payouts.php:891
5471
- msgid "No schedules found."
 
5472
  msgstr ""
5473
 
5474
- #: addons/banking/services/mycred-service-payouts.php:955
5475
- msgid "Schedule Added"
 
5476
  msgstr ""
5477
 
5478
- #: addons/banking/services/mycred-service-payouts.php:962
 
5479
  msgid ""
5480
- "While the recurring payout has been successfully saved, based on the limits "
5481
- "you set, right now there are no users that are eligible for a payout!"
5482
  msgstr ""
5483
 
5484
- #: addons/banking/services/mycred-service-payouts.php:974
5485
- #: addons/banking/services/mycred-service-payouts.php:988
5486
- msgid "Schedule not found. Please refresh this page and try again."
5487
  msgstr ""
5488
 
5489
- #: addons/banking/services/mycred-service-payouts.php:993
5490
- msgid "Schedule Deleted"
 
5491
  msgstr ""
5492
 
5493
- #: addons/banking/services/mycred-service-interest.php:28
5494
- msgid "%plural% interest rate payment"
 
5495
  msgstr ""
5496
 
5497
- #: addons/banking/services/mycred-service-interest.php:429
5498
- msgid "Daily Compound Schedule"
 
5499
  msgstr ""
5500
 
5501
- #: addons/banking/services/mycred-service-interest.php:454
5502
- msgid "Payout Schedule"
 
5503
  msgstr ""
5504
 
5505
- #: addons/banking/services/mycred-service-interest.php:481
5506
- #: addons/banking/services/mycred-service-interest.php:652
5507
- msgid "Interest Rate"
5508
  msgstr ""
5509
 
5510
- #: addons/banking/services/mycred-service-interest.php:493
5511
- msgid "Payout Frequency"
 
 
 
5512
  msgstr ""
5513
 
5514
- #: addons/banking/services/mycred-service-interest.php:506
5515
- msgid "Payout Log Table"
 
5516
  msgstr ""
5517
 
5518
- #: addons/banking/services/mycred-service-interest.php:519
5519
- msgid ""
5520
- "Changing the payout period once the service is enabled, will only take "
5521
- "effect once the currently scheduled payout runs. To change this, you will "
5522
- "also need to adjust the payout schedule above."
5523
  msgstr ""
5524
 
5525
- #: addons/banking/services/mycred-service-interest.php:524
5526
- msgid "Exclude by ID"
 
5527
  msgstr ""
5528
 
5529
- #: addons/banking/services/mycred-service-interest.php:535
5530
- msgid "Exclude by Role"
 
5531
  msgstr ""
5532
 
5533
- #: addons/banking/services/mycred-service-interest.php:539
5534
- msgid "Roles to exclude"
 
5535
  msgstr ""
5536
 
5537
- #: addons/banking/services/mycred-service-interest.php:655
5538
- msgid "Leave empty to pay the default rate."
 
 
 
5539
  msgstr ""
5540
 
5541
- #: addons/sell-content/includes/mycred-sell-functions.php:559
5542
- #, php-format
5543
- msgctxt "Point type name"
5544
- msgid "You can not pay using %s"
5545
  msgstr ""
5546
 
5547
- #: addons/sell-content/includes/mycred-sell-functions.php:820
5548
- #, php-format
5549
- msgctxt "all post type name"
5550
- msgid "All %s"
5551
  msgstr ""
5552
 
5553
- #: addons/sell-content/includes/mycred-sell-functions.php:824
5554
- #, php-format
5555
- msgctxt "all post type name"
5556
- msgid "%s I manually select"
5557
  msgstr ""
5558
 
5559
- #: addons/sell-content/includes/mycred-sell-functions.php:828
5560
- #, php-format
5561
- msgctxt "%s = post type name"
5562
- msgid "All %s except"
5563
  msgstr ""
5564
 
5565
- #: addons/sell-content/includes/mycred-sell-functions.php:829
5566
- #, php-format
5567
- msgctxt "%s = post type name"
5568
- msgid "Comma separated list of %s IDs to exclude"
5569
  msgstr ""
5570
 
5571
- #: addons/sell-content/includes/mycred-sell-functions.php:832
5572
- #, php-format
5573
- msgctxt "%s = post type name"
5574
- msgid "Only %s"
5575
  msgstr ""
5576
 
5577
- #: addons/sell-content/includes/mycred-sell-functions.php:833
5578
- #, php-format
5579
- msgctxt "%s = post type name"
5580
- msgid "Comma separated list of %s IDs"
 
5581
  msgstr ""
5582
 
5583
- #: addons/sell-content/includes/mycred-sell-functions.php:845
5584
- #, php-format
5585
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
5586
- msgid "Only %s in %s"
5587
  msgstr ""
5588
 
5589
- #: addons/sell-content/includes/mycred-sell-functions.php:846
5590
- #: addons/sell-content/includes/mycred-sell-functions.php:850
5591
- #: addons/sell-content/includes/mycred-sell-functions.php:856
5592
- #: addons/sell-content/includes/mycred-sell-functions.php:860
5593
- #, php-format
5594
- msgctxt "%s = taxonomy name"
5595
- msgid "Comma separated list of %s slugs"
5596
  msgstr ""
5597
 
5598
- #: addons/sell-content/includes/mycred-sell-functions.php:849
5599
- #, php-format
5600
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
5601
- msgid "Only %s not in %s"
5602
  msgstr ""
5603
 
5604
- #: addons/sell-content/includes/mycred-sell-functions.php:855
5605
- #, php-format
5606
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
5607
- msgid "Only %s with %s"
 
 
 
 
 
 
 
 
 
5608
  msgstr ""
5609
 
5610
- #: addons/sell-content/includes/mycred-sell-functions.php:859
5611
- #, php-format
5612
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
5613
- msgid "Only %s without %s"
5614
  msgstr ""
5615
 
5616
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
5617
- msgid ""
5618
- "This shortcode can not be used in content that has not been set for sale!"
5619
  msgstr ""
5620
 
5621
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:70
5622
- msgid ""
5623
- "This content is currently unattainable. Apologies for the inconvenience."
5624
  msgstr ""
5625
 
5626
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
5627
- #: addons/buy-creds/includes/buycred-shortcodes.php:346
5628
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:477
5629
- #: addons/buy-creds/modules/buycred-module-pending.php:317
5630
- #: addons/buy-creds/modules/buycred-module-pending.php:689
5631
- msgid "Cost"
5632
  msgstr ""
5633
 
5634
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
5635
- msgid "Never"
 
5636
  msgstr ""
5637
 
5638
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
5639
- #, php-format
5640
- msgctxt "e.g. 10 hours"
5641
- msgid "Purchase expires in %s"
5642
  msgstr ""
5643
 
5644
- #: addons/buy-creds/includes/buycred-shortcodes.php:101
5645
- msgid "Buy Now"
 
5646
  msgstr ""
5647
 
5648
- #: addons/buy-creds/includes/buycred-shortcodes.php:262
5649
- msgid "Pay Using"
 
5650
  msgstr ""
5651
 
5652
- #: addons/buy-creds/includes/buycred-shortcodes.php:343
5653
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:506
5654
- #: addons/buy-creds/modules/buycred-module-core.php:919
5655
- #: addons/buy-creds/modules/buycred-module-pending.php:313
5656
- msgid "Transaction ID"
5657
  msgstr ""
5658
 
5659
- #: addons/buy-creds/includes/buycred-shortcodes.php:344
5660
- #: addons/buy-creds/includes/buycred-functions.php:482
5661
- #: addons/buy-creds/modules/buycred-module-core.php:914
5662
- #: addons/buy-creds/modules/buycred-module-pending.php:318
5663
- #: addons/buy-creds/modules/buycred-module-pending.php:664
5664
- msgid "Gateway"
5665
  msgstr ""
5666
 
5667
- #: addons/buy-creds/includes/buycred-shortcodes.php:410
5668
- msgid "No pending payments found"
 
5669
  msgstr ""
5670
 
5671
- #: addons/buy-creds/includes/buycred-functions.php:16
5672
- msgid "Please login to purchase %_plural%"
 
5673
  msgstr ""
5674
 
5675
- #: addons/buy-creds/includes/buycred-functions.php:31
5676
- msgid "Gift purchase from %display_name%."
 
5677
  msgstr ""
5678
 
5679
- #: addons/buy-creds/includes/buycred-functions.php:110
5680
- msgid "Bank Transfer"
 
5681
  msgstr ""
5682
 
5683
- #: addons/buy-creds/includes/buycred-functions.php:478
5684
- msgid "Unknown Gateway"
 
5685
  msgstr ""
5686
 
5687
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:385
5688
- msgid "Test Mode"
 
5689
  msgstr ""
5690
 
5691
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:401
5692
- msgid "Continue"
 
5693
  msgstr ""
5694
 
5695
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:519
5696
- msgid "cancel purchase"
 
 
 
5697
  msgstr ""
5698
 
5699
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:577
5700
- msgid "Select currency"
 
5701
  msgstr ""
5702
 
5703
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:646
5704
- #, php-format
5705
- msgctxt "%s is replaced with the point amount and name."
5706
- msgid "Received new request to purchase %s."
5707
  msgstr ""
5708
 
5709
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1157
5710
- msgid "Test Payment"
 
5711
  msgstr ""
5712
 
5713
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1163
5714
- msgid "Payment"
 
 
 
5715
  msgstr ""
5716
 
5717
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
5718
- msgid "First Name"
 
5719
  msgstr ""
5720
 
5721
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1294
5722
- msgid "Last Name"
 
5723
  msgstr ""
5724
 
5725
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1302
5726
- msgid "Address Line 1"
 
5727
  msgstr ""
5728
 
5729
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1310
5730
- msgid "Address Line 2"
 
5731
  msgstr ""
5732
 
5733
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1318
5734
- msgid "City"
 
5735
  msgstr ""
5736
 
5737
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1324
5738
- msgid "Zip"
 
5739
  msgstr ""
5740
 
5741
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1332
5742
- msgid "State"
 
 
 
5743
  msgstr ""
5744
 
5745
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1340
5746
- msgid "Country"
 
5747
  msgstr ""
5748
 
5749
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1345
5750
- msgid "Choose Country"
 
5751
  msgstr ""
5752
 
5753
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1468
5754
- #, php-format
5755
- msgid "Continue to %s"
 
5756
  msgstr ""
5757
 
5758
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1469
5759
- msgid "Click here if you are not automatically redirected"
 
5760
  msgstr ""
5761
 
5762
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2034
5763
- msgid "January"
 
5764
  msgstr ""
5765
 
5766
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2035
5767
- msgid "February"
 
5768
  msgstr ""
5769
 
5770
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2036
5771
- msgid "March"
 
5772
  msgstr ""
5773
 
5774
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2037
5775
- msgid "April"
 
5776
  msgstr ""
5777
 
5778
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2038
5779
- msgid "May"
 
5780
  msgstr ""
5781
 
5782
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2039
5783
- msgid "June"
 
5784
  msgstr ""
5785
 
5786
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2040
5787
- msgid "July"
 
 
 
5788
  msgstr ""
5789
 
5790
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2041
5791
- msgid "August"
 
5792
  msgstr ""
5793
 
5794
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2042
5795
- msgid "September"
 
5796
  msgstr ""
5797
 
5798
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2043
5799
- msgid "October"
 
 
 
5800
  msgstr ""
5801
 
5802
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2044
5803
- msgid "November"
 
 
 
5804
  msgstr ""
5805
 
5806
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2045
5807
- msgid "December"
 
 
5808
  msgstr ""
5809
 
5810
- #: addons/buy-creds/gateways/zombaio.php:198
 
5811
  #, php-format
5812
- msgid "Duplicate transaction. Received: %s"
 
 
5813
  msgstr ""
5814
 
5815
- #: addons/buy-creds/gateways/zombaio.php:204
5816
- #, php-format
5817
- msgid "Live transaction while debug mode is enabled! Received: %s"
5818
  msgstr ""
5819
 
5820
- #: addons/buy-creds/gateways/zombaio.php:236
5821
- #: addons/buy-creds/gateways/skrill.php:111
5822
- #: addons/buy-creds/gateways/paypal-standard.php:168
5823
- #: addons/buy-creds/gateways/netbilling.php:110
5824
- #: addons/buy-creds/gateways/bitpay.php:131
5825
- msgid "Failed to credit users account."
5826
  msgstr ""
5827
 
5828
- #: addons/buy-creds/gateways/zombaio.php:338
5829
- #: addons/buy-creds/gateways/skrill.php:252
5830
- #: addons/buy-creds/gateways/paypal-standard.php:286
5831
- #: addons/buy-creds/gateways/netbilling.php:220
5832
- #: addons/buy-creds/gateways/bank-transfer.php:164
5833
- #: addons/buy-creds/gateways/bitpay.php:365
5834
- msgid "Details"
5835
  msgstr ""
5836
 
5837
- #: addons/buy-creds/gateways/zombaio.php:340
5838
- msgid "Site ID"
 
 
5839
  msgstr ""
5840
 
5841
- #: addons/buy-creds/gateways/zombaio.php:344
5842
- msgid "GW Password"
 
5843
  msgstr ""
5844
 
5845
- #: addons/buy-creds/gateways/zombaio.php:348
5846
- #: addons/buy-creds/gateways/skrill.php:266
5847
- #: addons/buy-creds/gateways/paypal-standard.php:296
5848
- #: addons/buy-creds/gateways/netbilling.php:239
5849
- #: addons/buy-creds/gateways/bank-transfer.php:170
5850
- #: addons/buy-creds/gateways/bitpay.php:483
5851
- msgid "Logo URL"
5852
  msgstr ""
5853
 
5854
- #: addons/buy-creds/gateways/zombaio.php:354
5855
- msgid "IP Verification"
5856
  msgstr ""
5857
 
5858
- #: addons/buy-creds/gateways/zombaio.php:374
5859
- msgid "Language"
5860
  msgstr ""
5861
 
5862
- #: addons/buy-creds/gateways/zombaio.php:385
5863
- msgid "Pricing ID"
5864
  msgstr ""
5865
 
5866
- #: addons/buy-creds/gateways/zombaio.php:390
5867
- msgid "This pricing ID is a \"Dynamic Credits Purchase\" in Zombaio."
5868
  msgstr ""
5869
 
5870
- #: addons/buy-creds/gateways/zombaio.php:395
5871
- #: addons/buy-creds/gateways/skrill.php:276
5872
- #: addons/buy-creds/gateways/paypal-standard.php:303
5873
- #: addons/buy-creds/gateways/netbilling.php:246
5874
- #: addons/buy-creds/gateways/bank-transfer.php:177
5875
- #: addons/buy-creds/gateways/bitpay.php:535
5876
- #: addons/buy-creds/modules/buycred-module-pending.php:695
5877
- msgid "Currency"
 
 
5878
  msgstr ""
5879
 
5880
- #: addons/buy-creds/gateways/zombaio.php:401
5881
- #: addons/buy-creds/gateways/skrill.php:282
5882
- #: addons/buy-creds/gateways/paypal-standard.php:309
5883
- #: addons/buy-creds/gateways/netbilling.php:250
5884
- #: addons/buy-creds/gateways/bank-transfer.php:181
5885
- #: addons/buy-creds/gateways/bitpay.php:540
5886
- msgid "Exchange Rates"
5887
  msgstr ""
5888
 
5889
- #: addons/buy-creds/gateways/zombaio.php:411
5890
- msgid "Postback URL (ZScript)"
5891
  msgstr ""
5892
 
5893
- #: addons/buy-creds/gateways/zombaio.php:413
5894
- msgid ""
5895
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
5896
- "address and click validate."
5897
  msgstr ""
5898
 
5899
- #: addons/buy-creds/gateways/skrill.php:88
5900
- #: addons/buy-creds/gateways/paypal-standard.php:145
5901
- #: addons/buy-creds/gateways/netbilling.php:93
5902
  #, php-format
5903
- msgid "Price mismatch. Expected: %s Received: %s"
 
 
5904
  msgstr ""
5905
 
5906
- #: addons/buy-creds/gateways/skrill.php:94
5907
- #: addons/buy-creds/gateways/paypal-standard.php:151
5908
- #, php-format
5909
- msgid "Currency mismatch. Expected: %s Received: %s"
5910
  msgstr ""
5911
 
5912
- #: addons/buy-creds/gateways/skrill.php:100
5913
- #: addons/buy-creds/gateways/paypal-standard.php:157
5914
- #: addons/buy-creds/gateways/netbilling.php:99
5915
- #, php-format
5916
- msgid "Payment not completed. Received: %s"
5917
  msgstr ""
5918
 
5919
- #: addons/buy-creds/gateways/skrill.php:135
5920
- #: addons/buy-creds/gateways/paypal-standard.php:192
5921
- msgid "Success"
5922
  msgstr ""
5923
 
5924
- #: addons/buy-creds/gateways/skrill.php:136
5925
- #: addons/buy-creds/gateways/paypal-standard.php:193
5926
- msgid "Thank you for your purchase"
5927
  msgstr ""
5928
 
5929
- #: addons/buy-creds/gateways/skrill.php:171
5930
- #: addons/buy-creds/gateways/skrill.php:262
5931
- #: addons/buy-creds/gateways/paypal-standard.php:292
5932
- #: addons/buy-creds/gateways/netbilling.php:235
5933
- #: addons/buy-creds/gateways/bitpay.php:479
5934
- msgid "Item Name"
5935
  msgstr ""
5936
 
5937
- #: addons/buy-creds/gateways/skrill.php:254
5938
- #: addons/buy-creds/gateways/paypal-standard.php:288
5939
- msgid "Account Email"
5940
  msgstr ""
5941
 
5942
- #: addons/buy-creds/gateways/skrill.php:258
5943
- msgid "Secret Word"
 
5944
  msgstr ""
5945
 
5946
- #: addons/buy-creds/gateways/skrill.php:270
5947
  msgid ""
5948
- "Ask Skrill to send me a confirmation email for each successful purchase."
 
5949
  msgstr ""
5950
 
5951
- #: addons/buy-creds/gateways/skrill.php:289
5952
- msgid "Checkout Page"
5953
  msgstr ""
5954
 
5955
- #: addons/buy-creds/gateways/skrill.php:294
5956
  msgid ""
5957
- "If left empty, your account email is used as title on the Skill Payment Page."
 
5958
  msgstr ""
5959
 
5960
- #: addons/buy-creds/gateways/skrill.php:298
5961
- msgid "Confirmation Note"
5962
  msgstr ""
5963
 
5964
- #: addons/buy-creds/gateways/skrill.php:299
5965
- msgid ""
5966
- "Optional text to show user once a transaction has been successfully "
5967
- "completed. This text is shown by Skrill."
5968
  msgstr ""
5969
 
5970
- #: addons/buy-creds/gateways/paypal-standard.php:231
5971
- #, php-format
5972
- msgctxt "Return label. %s = Website name"
5973
- msgid "Return to %s"
5974
  msgstr ""
5975
 
5976
- #: addons/buy-creds/gateways/netbilling.php:222
5977
- msgid "Account ID"
 
 
5978
  msgstr ""
5979
 
5980
- #: addons/buy-creds/gateways/netbilling.php:226
5981
- msgid "Site Tag"
5982
  msgstr ""
5983
 
5984
- #: addons/buy-creds/gateways/netbilling.php:230
5985
- msgid "Order Integrity Key"
5986
  msgstr ""
5987
 
5988
- #: addons/buy-creds/gateways/netbilling.php:232
5989
- msgid "Found under Step 12 on the Fraud Defense page."
5990
  msgstr ""
5991
 
5992
- #: addons/buy-creds/gateways/netbilling.php:256
5993
- msgid "Postback CGI URL"
5994
  msgstr ""
5995
 
5996
- #: addons/buy-creds/gateways/netbilling.php:258
 
 
 
 
5997
  msgid ""
5998
- "For this gateway to work, you must login to your NETbilling account and edit "
5999
- "your site. Under \"Default payment form settings\" make sure the Postback "
6000
- "CGI URL is set to the above address and \"Return method\" is set to POST."
6001
  msgstr ""
6002
 
6003
- #: addons/buy-creds/gateways/bank-transfer.php:191
6004
- msgid "Bank Account Information"
 
 
 
6005
  msgstr ""
6006
 
6007
- #: addons/buy-creds/gateways/bitpay.php:370
6008
- #: addons/buy-creds/gateways/bitpay.php:448
6009
- msgid "API Token"
 
6010
  msgstr ""
6011
 
6012
- #: addons/buy-creds/gateways/bitpay.php:464
6013
- msgid "Are you sure you want to do this?"
6014
  msgstr ""
6015
 
6016
- #: addons/buy-creds/gateways/bitpay.php:467
6017
- msgid "Removed - Remember to save your changes."
 
 
 
6018
  msgstr ""
6019
 
6020
- #: addons/buy-creds/gateways/bitpay.php:489
6021
- msgid "Transaction Speed"
6022
  msgstr ""
6023
 
6024
- #: addons/buy-creds/gateways/bitpay.php:494
6025
- msgid "High"
 
 
6026
  msgstr ""
6027
 
6028
- #: addons/buy-creds/gateways/bitpay.php:495
6029
- msgid "Medium"
 
 
 
6030
  msgstr ""
6031
 
6032
- #: addons/buy-creds/gateways/bitpay.php:496
6033
- msgid "Low"
 
 
6034
  msgstr ""
6035
 
6036
- #: addons/buy-creds/gateways/bitpay.php:511
6037
- msgid "Full Notifications"
 
 
6038
  msgstr ""
6039
 
6040
- #: addons/buy-creds/gateways/bitpay.php:536
6041
- msgid "Currency Code"
6042
  msgstr ""
6043
 
6044
- #: addons/buy-creds/modules/buycred-module-core.php:28
6045
- #: addons/buy-creds/modules/buycred-module-core.php:29
6046
- #: addons/buy-creds/modules/buycred-module-core.php:30
6047
- #: addons/buy-creds/modules/buycred-module-core.php:721
6048
- msgid "Payment Gateways"
6049
  msgstr ""
6050
 
6051
- #: addons/buy-creds/modules/buycred-module-core.php:293
6052
- msgid "Redirecting"
6053
  msgstr ""
6054
 
6055
- #: addons/buy-creds/modules/buycred-module-core.php:371
6056
- msgid "Sale Setup"
6057
  msgstr ""
6058
 
6059
- #: addons/buy-creds/modules/buycred-module-core.php:394
6060
- msgid "Minimum Amount"
6061
  msgstr ""
6062
 
6063
- #: addons/buy-creds/modules/buycred-module-core.php:402
6064
- msgid "Maximum"
 
6065
  msgstr ""
6066
 
6067
- #: addons/buy-creds/modules/buycred-module-core.php:423
6068
- msgid "Create a dedicated log for purchases."
6069
  msgstr ""
6070
 
6071
- #: addons/buy-creds/modules/buycred-module-core.php:428
6072
- msgid "Checkout"
6073
  msgstr ""
6074
 
6075
- #: addons/buy-creds/modules/buycred-module-core.php:452
6076
- msgid "Redirects"
6077
  msgstr ""
6078
 
6079
- #: addons/buy-creds/modules/buycred-module-core.php:457
6080
- msgid ""
6081
- "Where should users be redirected to upon successfully completing a purchase. "
6082
- "You can nominate a specific URL or a page."
6083
  msgstr ""
6084
 
6085
- #: addons/buy-creds/modules/buycred-module-core.php:460
6086
- #: addons/buy-creds/modules/buycred-module-core.php:490
6087
- msgid "Redirect to Page"
6088
  msgstr ""
6089
 
6090
- #: addons/buy-creds/modules/buycred-module-core.php:476
6091
- #: addons/buy-creds/modules/buycred-module-core.php:506
6092
- msgid "Redirect to URL"
6093
  msgstr ""
6094
 
6095
- #: addons/buy-creds/modules/buycred-module-core.php:480
6096
- #: addons/buy-creds/modules/buycred-module-core.php:510
6097
- msgid "You can use %profile% for the base URL of the users profile."
6098
  msgstr ""
6099
 
6100
- #: addons/buy-creds/modules/buycred-module-core.php:487
6101
- msgid ""
6102
- "Where should users be redirected to if they cancel a transaction. You can "
6103
- "nominate a specific URL or a page."
6104
  msgstr ""
6105
 
6106
- #: addons/buy-creds/modules/buycred-module-core.php:521
6107
- msgid "Login Message"
6108
  msgstr ""
6109
 
6110
- #: addons/buy-creds/modules/buycred-module-core.php:523
6111
- msgid ""
6112
- "Message to show in shortcodes when viewed by someone who is not logged in."
6113
  msgstr ""
6114
 
6115
- #: addons/buy-creds/modules/buycred-module-core.php:538
6116
- msgid "Gifting"
 
6117
  msgstr ""
6118
 
6119
- #: addons/buy-creds/modules/buycred-module-core.php:544
6120
- msgid "Allow users to buy %_plural% for other users."
6121
  msgstr ""
6122
 
6123
- #: addons/buy-creds/modules/buycred-module-core.php:547
6124
- msgid "Allow users to buy %_plural% for content authors."
6125
  msgstr ""
6126
 
6127
- #: addons/buy-creds/modules/buycred-module-core.php:672
6128
- msgid "buyCRED Purchase Log"
6129
  msgstr ""
6130
 
6131
- #: addons/buy-creds/modules/buycred-module-core.php:673
6132
- #: addons/buy-creds/modules/buycred-module-core.php:924
6133
- msgid "Purchase Log"
6134
  msgstr ""
6135
 
6136
- #: addons/buy-creds/modules/buycred-module-core.php:769
6137
- msgid "Sandbox Mode"
6138
  msgstr ""
6139
 
6140
- #: addons/buy-creds/modules/buycred-module-core.php:915
6141
- #: addons/buy-creds/modules/buycred-module-pending.php:315
6142
- msgid "Buyer"
6143
  msgstr ""
6144
 
6145
- #: addons/buy-creds/modules/buycred-module-core.php:918
6146
- msgid "Payed"
6147
  msgstr ""
6148
 
6149
- #: addons/buy-creds/modules/buycred-module-core.php:1129
6150
- msgid "No purchases found"
6151
  msgstr ""
6152
 
6153
- #: addons/buy-creds/modules/buycred-module-core.php:1251
6154
- msgid "Users exchange rate when buying points."
6155
  msgstr ""
6156
 
6157
- #: addons/buy-creds/modules/buycred-module-core.php:1262
6158
- msgid "buyCRED Exchange Rates"
6159
  msgstr ""
6160
 
6161
- #: addons/buy-creds/modules/buycred-module-core.php:1272
6162
- #, php-format
6163
- msgctxt "Points Name"
6164
- msgid "Buying %s"
6165
  msgstr ""
6166
 
6167
- #: addons/buy-creds/modules/buycred-module-core.php:1275
6168
- msgid "This point type is not for sale."
6169
  msgstr ""
6170
 
6171
- #: addons/buy-creds/modules/buycred-module-core.php:1287
6172
- #: addons/buy-creds/modules/buycred-module-core.php:1302
6173
- #, php-format
6174
- msgctxt "Buying Points"
6175
- msgid "Buying %s"
6176
  msgstr ""
6177
 
6178
- #: addons/buy-creds/modules/buycred-module-core.php:1290
6179
  #, php-format
6180
- msgctxt "Points Name"
6181
- msgid "User can not buy %s"
 
 
 
6182
  msgstr ""
6183
 
6184
- #: addons/buy-creds/modules/buycred-module-core.php:1305
6185
- msgid "Leave empty to use the default rate."
6186
  msgstr ""
6187
 
6188
- #: addons/buy-creds/modules/buycred-module-pending.php:153
6189
- msgctxt "Post Type General Name"
6190
- msgid "Pending Payments"
6191
  msgstr ""
6192
 
6193
- #: addons/buy-creds/modules/buycred-module-pending.php:154
6194
- msgctxt "Post Type Singular Name"
6195
- msgid "Pending Payment"
6196
  msgstr ""
6197
 
6198
- #: addons/buy-creds/modules/buycred-module-pending.php:155
6199
- #: addons/buy-creds/modules/buycred-module-pending.php:157
6200
- #: addons/buy-creds/modules/buycred-module-pending.php:254
6201
- #: addons/buy-creds/modules/buycred-module-pending.php:255
6202
- msgid "Pending Payments"
6203
  msgstr ""
6204
 
6205
- #: addons/buy-creds/modules/buycred-module-pending.php:161
6206
- msgid "Edit Pending Payment"
6207
  msgstr ""
6208
 
6209
- #: addons/buy-creds/modules/buycred-module-pending.php:164
6210
- #: addons/buy-creds/modules/buycred-module-pending.php:165
6211
- msgid "Not found in Trash"
6212
  msgstr ""
6213
 
6214
- #: addons/buy-creds/modules/buycred-module-pending.php:195
6215
- #: addons/buy-creds/modules/buycred-module-pending.php:196
6216
- #: addons/buy-creds/modules/buycred-module-pending.php:197
6217
- #: addons/buy-creds/modules/buycred-module-pending.php:198
6218
- #: addons/buy-creds/modules/buycred-module-pending.php:199
6219
- #: addons/buy-creds/modules/buycred-module-pending.php:200
6220
- #: addons/buy-creds/modules/buycred-module-pending.php:201
6221
- #: addons/buy-creds/modules/buycred-module-pending.php:202
6222
- #: addons/buy-creds/modules/buycred-module-pending.php:203
6223
- msgid "Payment Updated."
6224
  msgstr ""
6225
 
6226
- #: addons/buy-creds/modules/buycred-module-pending.php:232
6227
- msgid "Pending payment successfully credited to account."
 
 
 
6228
  msgstr ""
6229
 
6230
- #: addons/buy-creds/modules/buycred-module-pending.php:235
6231
- msgid "Failed to credit the pending payment to account."
6232
  msgstr ""
6233
 
6234
- #: addons/buy-creds/modules/buycred-module-pending.php:319
6235
- msgid "Type"
 
 
 
6236
  msgstr ""
6237
 
6238
- #: addons/buy-creds/modules/buycred-module-pending.php:416
6239
- #: addons/buy-creds/modules/buycred-module-pending.php:546
6240
- msgid "Pay Out"
6241
  msgstr ""
6242
 
6243
- #: addons/buy-creds/modules/buycred-module-pending.php:490
6244
- msgid "Pending Payment"
6245
  msgstr ""
6246
 
6247
- #: addons/buy-creds/modules/buycred-module-pending.php:547
6248
- msgid "Trash"
6249
  msgstr ""
6250
 
6251
- #: addons/buy-creds/modules/buycred-module-pending.php:611
6252
- msgid "Payer"
6253
  msgstr ""
6254
 
6255
- #: addons/buy-creds/modules/buycred-module-pending.php:720
6256
- msgid "Pending request created."
6257
  msgstr ""
6258
 
6259
- #: addons/buy-creds/modules/buycred-module-pending.php:768
6260
- #, php-format
6261
- msgid "Pending payment updated by %s"
6262
  msgstr ""
6263
 
6264
- #: includes/hooks/external/mycred-hook-woocommerce.php:91
6265
- #: includes/hooks/external/mycred-hook-woocommerce.php:157
6266
- msgid "Reward with %plural%"
6267
  msgstr ""
6268
 
6269
- #: includes/hooks/external/mycred-hook-woocommerce.php:158
6270
- msgid "Leave empty for no rewards"
6271
  msgstr ""
6272
 
6273
- #: includes/hooks/external/mycred-hook-woocommerce.php:388
6274
- msgid "WooCommerce Product Reviews"
6275
  msgstr ""
6276
 
6277
- #: includes/hooks/external/mycred-hook-woocommerce.php:389
6278
- msgid ""
6279
- "Awards %_plural% for users leaving reviews on your WooCommerce products."
6280
  msgstr ""
6281
 
6282
- #: includes/hooks/external/mycred-hook-bbPress.php:16
6283
- msgid "Awards %_plural% for bbPress actions."
6284
  msgstr ""
6285
 
6286
- #: includes/hooks/external/mycred-hook-bbPress.php:433
6287
- msgid "New Forums"
6288
  msgstr ""
6289
 
6290
- #: includes/hooks/external/mycred-hook-bbPress.php:457
6291
- msgid "Deleting Forums"
6292
  msgstr ""
6293
 
6294
- #: includes/hooks/external/mycred-hook-bbPress.php:475
6295
- #: includes/hooks/external/mycred-hook-bbPress.php:550
6296
- #: includes/hooks/external/mycred-hook-simplepress.php:291
6297
- msgid "New Topic"
6298
  msgstr ""
6299
 
6300
- #: includes/hooks/external/mycred-hook-bbPress.php:501
6301
- msgid "Forum authors can receive %_plural% for creating new topics."
6302
  msgstr ""
6303
 
6304
- #: includes/hooks/external/mycred-hook-bbPress.php:508
6305
- #: includes/hooks/external/mycred-hook-simplepress.php:315
6306
- msgid "Deleted Topic"
6307
  msgstr ""
6308
 
6309
- #: includes/hooks/external/mycred-hook-bbPress.php:526
6310
- msgid "Adding Topic to Favorites"
6311
  msgstr ""
6312
 
6313
- #: includes/hooks/external/mycred-hook-bbPress.php:576
6314
- msgid "Topic authors can receive %_plural% for replying to their own Topic."
6315
  msgstr ""
6316
 
6317
- #: includes/hooks/external/mycred-hook-bbPress.php:583
6318
- msgid "Deleted Reply"
 
6319
  msgstr ""
6320
 
6321
- #: includes/hooks/external/mycred-hook-bbPress.php:605
6322
- msgid "Show users %_plural% balance in replies"
6323
  msgstr ""
6324
 
6325
- #: includes/hooks/external/mycred-hook-bbPress.php:608
6326
- msgid "Show users %_plural% balance in their bbPress profiles"
 
6327
  msgstr ""
6328
 
6329
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:15
6330
- msgid "WP Favorite Posts"
6331
  msgstr ""
6332
 
6333
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:16
6334
- msgid "Awards %_plural% for users adding posts to their favorites."
6335
  msgstr ""
6336
 
6337
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:218
6338
- msgid "Adding Content to Favorites"
6339
  msgstr ""
6340
 
6341
- #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:263
6342
- msgid "Removing Content from Favorites"
 
6343
  msgstr ""
6344
 
6345
- #: includes/hooks/external/mycred-hook-contact-form7.php:15
6346
- msgid "Contact Form 7 Form Submissions"
 
 
6347
  msgstr ""
6348
 
6349
- #: includes/hooks/external/mycred-hook-contact-form7.php:16
6350
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
6351
  msgstr ""
6352
 
6353
- #: includes/hooks/external/mycred-hook-contact-form7.php:135
6354
- #: includes/hooks/external/mycred-hook-gravityforms.php:130
6355
- msgid "No forms found."
6356
  msgstr ""
6357
 
6358
- #: includes/hooks/external/mycred-hook-contact-form7.php:163
6359
- #: includes/hooks/external/mycred-hook-gravityforms.php:156
6360
- #, php-format
6361
- msgid "Form: %s"
6362
  msgstr ""
6363
 
6364
- #: includes/hooks/external/mycred-hook-wp-postratings.php:15
6365
- msgid "Post Ratings"
6366
  msgstr ""
6367
 
6368
- #: includes/hooks/external/mycred-hook-wp-postratings.php:16
6369
- msgid ""
6370
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6371
- "author and the user rating."
6372
  msgstr ""
6373
 
6374
- #: includes/hooks/external/mycred-hook-wp-postratings.php:85
6375
- msgid "Based on rating"
6376
  msgstr ""
6377
 
6378
- #: includes/hooks/external/mycred-hook-wp-postratings.php:161
6379
- msgid "Content Rating"
6380
  msgstr ""
6381
 
6382
- #: includes/hooks/external/mycred-hook-wp-postratings.php:192
6383
- #: includes/hooks/external/mycred-hook-wp-postratings.php:199
6384
- msgid "Use the Rating Value instead of the amount set here."
6385
  msgstr ""
6386
 
6387
- #: includes/hooks/external/mycred-hook-simplepress.php:16
6388
- msgid "Awards %_plural% for Simple:Press actions."
6389
  msgstr ""
6390
 
6391
- #: includes/hooks/external/mycred-hook-simplepress.php:333
6392
- msgid "New Topic Post"
6393
- msgstr ""
 
 
 
6394
 
6395
- #: includes/hooks/external/mycred-hook-simplepress.php:359
6396
- msgid "Topic authors can receive %_plural% for posting on their own Topic."
6397
  msgstr ""
6398
 
6399
- #: includes/hooks/external/mycred-hook-simplepress.php:366
6400
- msgid "Deleted Topic Post"
6401
  msgstr ""
6402
 
6403
- #: includes/hooks/external/mycred-hook-jetpack.php:15
6404
- msgid "Jetpack Subscriptions"
6405
  msgstr ""
6406
 
6407
- #: includes/hooks/external/mycred-hook-jetpack.php:16
6408
- msgid ""
6409
- "Awards %_plural% for users signing up for site or comment updates using "
6410
- "Jetpack."
6411
  msgstr ""
6412
 
6413
- #: includes/hooks/external/mycred-hook-jetpack.php:539
6414
- msgid "Site Subscriptions"
6415
  msgstr ""
6416
 
6417
- #: includes/hooks/external/mycred-hook-jetpack.php:557
6418
- msgid "Comment Subscriptions"
6419
  msgstr ""
6420
 
6421
- #: includes/hooks/external/mycred-hook-buddypress.php:16
6422
- msgid "BuddyPress: Members"
 
 
6423
  msgstr ""
6424
 
6425
- #: includes/hooks/external/mycred-hook-buddypress.php:17
6426
- msgid "Awards %_plural% for profile related actions."
 
 
 
 
 
 
 
6427
  msgstr ""
6428
 
6429
- #: includes/hooks/external/mycred-hook-buddypress.php:25
6430
- msgid "BuddyPress: Groups"
6431
  msgstr ""
6432
 
6433
- #: includes/hooks/external/mycred-hook-buddypress.php:26
6434
- msgid ""
6435
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6436
- "zero to disable a specific hook."
6437
  msgstr ""
6438
 
6439
- #: includes/hooks/external/mycred-hook-buddypress.php:613
6440
- msgid "New Profile Activity"
6441
  msgstr ""
6442
 
6443
- #: includes/hooks/external/mycred-hook-buddypress.php:637
6444
- msgid "Deleted Profile Activity"
6445
  msgstr ""
6446
 
6447
- #: includes/hooks/external/mycred-hook-buddypress.php:661
6448
- msgid "New Profile Avatar Upload"
6449
  msgstr ""
6450
 
6451
- #: includes/hooks/external/mycred-hook-buddypress.php:685
6452
- msgid "New Profile Cover Upload"
6453
  msgstr ""
6454
 
6455
- #: includes/hooks/external/mycred-hook-buddypress.php:709
6456
- msgid "New Friendships"
6457
  msgstr ""
6458
 
6459
- #: includes/hooks/external/mycred-hook-buddypress.php:735
6460
- msgid ""
6461
- "Users with zero balance can not add friends. Requires that you deduct "
6462
- "%_plural% for adding a new friend."
6463
  msgstr ""
6464
 
6465
- #: includes/hooks/external/mycred-hook-buddypress.php:742
6466
- msgid "Ending Friendships"
6467
  msgstr ""
6468
 
6469
- #: includes/hooks/external/mycred-hook-buddypress.php:760
6470
- msgid "New Comment"
6471
  msgstr ""
6472
 
6473
- #: includes/hooks/external/mycred-hook-buddypress.php:802
6474
- msgid "Favorite Activity"
6475
  msgstr ""
6476
 
6477
- #: includes/hooks/external/mycred-hook-buddypress.php:826
6478
- msgid "Removing Favorit Activity"
6479
  msgstr ""
6480
 
6481
- #: includes/hooks/external/mycred-hook-buddypress.php:844
6482
- msgid "New Private Message"
6483
  msgstr ""
6484
 
6485
- #: includes/hooks/external/mycred-hook-buddypress.php:1502
6486
- msgid "Group Creation"
6487
  msgstr ""
6488
 
6489
- #: includes/hooks/external/mycred-hook-buddypress.php:1508
6490
- msgid ""
6491
- "If you use a negative value and the user does not have enough %_plural%, the "
6492
- "\"Create Group\" button will be disabled."
6493
  msgstr ""
6494
 
6495
- #: includes/hooks/external/mycred-hook-buddypress.php:1513
6496
- msgid "No. of Members"
6497
  msgstr ""
6498
 
6499
- #: includes/hooks/external/mycred-hook-buddypress.php:1515
6500
- msgid ""
6501
- "The number of members a group must gain before awarding %_plural%. Use zero "
6502
- "to award as soon as the group is created."
6503
  msgstr ""
6504
 
6505
- #: includes/hooks/external/mycred-hook-buddypress.php:1528
6506
- msgid "Group Deletions"
6507
  msgstr ""
6508
 
6509
- #: includes/hooks/external/mycred-hook-buddypress.php:1546
6510
- msgid "New Group Avatar Upload"
6511
  msgstr ""
6512
 
6513
- #: includes/hooks/external/mycred-hook-buddypress.php:1570
6514
- msgid "New Group Cover Upload"
6515
  msgstr ""
6516
 
6517
- #: includes/hooks/external/mycred-hook-buddypress.php:1594
6518
- msgid "New Forum Topics"
6519
  msgstr ""
6520
 
6521
- #: includes/hooks/external/mycred-hook-buddypress.php:1618
6522
- msgid "Editing Forum Topics"
6523
  msgstr ""
6524
 
6525
- #: includes/hooks/external/mycred-hook-buddypress.php:1642
6526
- msgid "New Forum Posts"
6527
  msgstr ""
6528
 
6529
- #: includes/hooks/external/mycred-hook-buddypress.php:1666
6530
- msgid "Editing Forum Posts"
 
 
6531
  msgstr ""
6532
 
6533
- #: includes/hooks/external/mycred-hook-buddypress.php:1690
6534
- msgid "Joining Groups"
 
 
6535
  msgstr ""
6536
 
6537
- #: includes/hooks/external/mycred-hook-buddypress.php:1714
6538
- msgid "Leaving Groups"
6539
  msgstr ""
6540
 
6541
- #: includes/hooks/external/mycred-hook-buddypress.php:1732
6542
- msgid "New Group Comments"
6543
  msgstr ""
6544
 
6545
- #: includes/hooks/external/mycred-hook-events-manager-light.php:15
6546
- msgid "Events Manager"
6547
  msgstr ""
6548
 
6549
- #: includes/hooks/external/mycred-hook-events-manager-light.php:16
6550
- msgid "Awards %_plural% for users attending events."
 
 
 
6551
  msgstr ""
6552
 
6553
- #: includes/hooks/external/mycred-hook-events-manager-light.php:201
6554
- msgid "Attending Event"
6555
  msgstr ""
6556
 
6557
- #: includes/hooks/external/mycred-hook-events-manager-light.php:225
6558
- msgid "Cancelling Attendance"
 
6559
  msgstr ""
6560
 
6561
- #: includes/hooks/external/mycred-hook-invite-anyone.php:15
6562
- msgid "Invite Anyone Plugin"
 
6563
  msgstr ""
6564
 
6565
- #: includes/hooks/external/mycred-hook-invite-anyone.php:16
6566
- msgid ""
6567
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6568
- "accepted."
6569
  msgstr ""
6570
 
6571
- #: includes/hooks/external/mycred-hook-invite-anyone.php:205
6572
- msgid "Sending Invites"
6573
  msgstr ""
6574
 
6575
- #: includes/hooks/external/mycred-hook-invite-anyone.php:229
6576
- msgid "Accepted Invites"
6577
  msgstr ""
6578
 
6579
- #: includes/hooks/external/mycred-hook-wp-polls.php:15
6580
- msgid "WP-Polls"
 
 
6581
  msgstr ""
6582
 
6583
- #: includes/hooks/external/mycred-hook-wp-polls.php:16
6584
- msgid "Awards %_plural% for users voting in polls."
6585
  msgstr ""
6586
 
6587
- #: includes/hooks/external/mycred-hook-sharethis.php:15
6588
- msgid "%plural% for Sharing"
6589
  msgstr ""
6590
 
6591
- #: includes/hooks/external/mycred-hook-sharethis.php:16
6592
- msgid ""
6593
- "Awards %_plural% for users sharing / liking your website content to popular "
6594
- "social media sites."
6595
  msgstr ""
6596
 
6597
- #: includes/hooks/external/mycred-hook-sharethis.php:216
6598
- msgid "Your ShareThis public key is not set."
6599
  msgstr ""
6600
 
6601
- #: includes/hooks/external/mycred-hook-sharethis.php:221
6602
- msgid "No ShareThis services detected. Please check your installation."
6603
  msgstr ""
6604
 
6605
- #: includes/hooks/external/mycred-hook-affiliatewp.php:15
6606
- msgid "AffiliateWP"
6607
  msgstr ""
6608
 
6609
- #: includes/hooks/external/mycred-hook-affiliatewp.php:16
6610
- msgid ""
6611
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
6612
- "referrals."
6613
  msgstr ""
6614
 
6615
- #: includes/hooks/external/mycred-hook-affiliatewp.php:287
6616
- msgid "Affiliate Signup"
6617
  msgstr ""
6618
 
6619
- #: includes/hooks/external/mycred-hook-affiliatewp.php:333
6620
- msgid "Referring Sales"
 
 
 
6621
  msgstr ""
6622
 
6623
- #: includes/hooks/external/mycred-hook-affiliatewp.php:338
6624
- msgid "Pay a set amount"
6625
  msgstr ""
6626
 
6627
- #: includes/hooks/external/mycred-hook-affiliatewp.php:342
6628
- msgid "All referrals will pay the same amount."
6629
  msgstr ""
6630
 
6631
- #: includes/hooks/external/mycred-hook-affiliatewp.php:348
6632
- msgid "Pay the referral amount"
6633
  msgstr ""
6634
 
6635
- #: includes/hooks/external/mycred-hook-affiliatewp.php:350
6636
- msgid "Points Currency Code"
6637
  msgstr ""
6638
 
6639
- #: includes/hooks/external/mycred-hook-affiliatewp.php:352
6640
- msgid "Requires AffiliateWP and your store to use points as currency."
 
 
6641
  msgstr ""
6642
 
6643
- #: includes/hooks/external/mycred-hook-affiliatewp.php:358
6644
- msgid "Apply an exchange rate"
6645
  msgstr ""
6646
 
6647
- #: includes/hooks/external/mycred-hook-affiliatewp.php:369
6648
- msgid "Log template - Payout"
 
 
 
6649
  msgstr ""
6650
 
6651
- #: includes/hooks/external/mycred-hook-affiliatewp.php:376
6652
- msgid "Log template - Refund"
6653
  msgstr ""
6654
 
6655
- #: includes/hooks/external/mycred-hook-gravityforms.php:15
6656
- msgid "Gravityform Submissions"
 
 
6657
  msgstr ""
6658
 
6659
- #: includes/hooks/external/mycred-hook-gravityforms.php:16
6660
- msgid "Awards %_plural% for successful form submissions."
6661
  msgstr ""
6662
 
6663
- #: includes/hooks/external/mycred-hook-buddypress-media.php:15
6664
- msgid "rtMedia Galleries"
6665
  msgstr ""
6666
 
6667
- #: includes/hooks/external/mycred-hook-buddypress-media.php:16
6668
- msgid ""
6669
- "Award / Deduct %_plural% for users creating albums or uploading new photos."
6670
  msgstr ""
6671
 
6672
- #: includes/hooks/external/mycred-hook-buddypress-media.php:362
6673
- msgid "Photo Deletion"
6674
  msgstr ""
6675
 
6676
- #: includes/hooks/external/mycred-hook-buddypress-media.php:380
6677
- msgid "Video Deletion"
6678
  msgstr ""
6679
 
6680
- #: includes/hooks/external/mycred-hook-buddypress-media.php:398
6681
- msgid "Music Deletion"
6682
  msgstr ""
6683
 
6684
- #: includes/hooks/external/mycred-hook-badgeOS.php:15
6685
- msgid "BadgeOS"
6686
  msgstr ""
6687
 
6688
- #: includes/hooks/external/mycred-hook-badgeOS.php:16
6689
- msgid ""
6690
- "Default settings for each BadgeOS Achievement type. These settings may be "
6691
- "overridden for individual achievement type."
6692
  msgstr ""
6693
 
6694
- #: includes/hooks/external/mycred-hook-badgeOS.php:124
6695
- #, php-format
6696
- msgid ""
6697
- "Please setup your <a href=\"%s\">default settings</a> before using this "
6698
- "feature."
6699
  msgstr ""
6700
 
6701
- #: includes/hooks/external/mycred-hook-badgeOS.php:138
6702
- #: includes/hooks/external/mycred-hook-badgeOS.php:140
6703
- msgid "%plural% to Award"
6704
  msgstr ""
6705
 
6706
- #: includes/hooks/external/mycred-hook-badgeOS.php:142
6707
- msgid "Use zero to disable"
6708
  msgstr ""
6709
 
6710
- #: includes/hooks/external/mycred-hook-badgeOS.php:155
6711
- msgid "Deduction Log Template"
6712
  msgstr ""
6713
 
6714
- #: includes/hooks/external/mycred-hook-badgeOS.php:317
6715
- #, php-format
6716
- msgid "Earning: %s"
6717
  msgstr ""
6718
 
6719
- #: includes/hooks/external/mycred-hook-badgeOS.php:335
6720
- #, php-format
6721
- msgid "Revoked: %s"
6722
  msgstr ""
6723
 
6724
- #. Name of the plugin
6725
- msgid "myCRED"
6726
  msgstr ""
6727
 
6728
- #. Description of the plugin
6729
- msgid "An adaptive points management system for WordPress powered websites."
6730
  msgstr ""
6731
 
6732
- #. URI of the plugin
6733
- msgid "https://mycred.me"
 
 
6734
  msgstr ""
6735
 
6736
- #. Author of the plugin
6737
- msgid "Gabriel S Merovingi"
6738
  msgstr ""
6739
 
6740
- #. Author URI of the plugin
6741
- msgid "https://www.mycred.me"
6742
  msgstr ""
4
  "Project-Id-Version: myCRED\n"
5
  "Report-Msgid-Bugs-To: http://mycred.me\n"
6
  "POT-Creation-Date: 2017-10-23 16:15+0000\n"
7
+ "POT-Revision-Date: Thu Apr 30 2020 16:22:02 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
+ "Last-Translator: myCred <support@mycred.me>\n"
10
+ "Language-Team: myCred & All the awesome users helping out <support@mycred.me>"
 
11
  "Language: \n"
 
12
  "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=CHARSET\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
16
+
17
+ #: mycred.php:624 includes/mycred-importer.php:11
 
 
 
 
 
 
 
 
18
  #, php-format
19
  msgid "%s Log Import"
20
  msgstr ""
21
 
22
+ #: mycred.php:625 includes/mycred-importer.php:12
23
  msgid "Import log entries via a CSV file."
24
  msgstr ""
25
 
26
+ #: mycred.php:636 includes/mycred-importer.php:43
27
  #, php-format
28
  msgid "%s Balance Import"
29
  msgstr ""
30
 
31
+ #: mycred.php:637
32
  msgid "Import balances via a CSV file."
33
  msgstr ""
34
 
35
+ #: mycred.php:648 includes/mycred-importer.php:75
36
  #, php-format
37
  msgid "%s CubePoints Import"
38
  msgstr ""
39
 
40
+ #: mycred.php:649 includes/mycred-importer.php:76
41
  msgid "Import CubePoints log entries and / or balances."
42
  msgstr ""
43
 
44
+ #: mycred.php:691 addons/badges/myCRED-addon-badges.php:757
 
 
 
 
 
45
  #: addons/gateway/event-booking/mycred-eventsmanager.php:537
46
+ #: addons/ranks/myCRED-addon-ranks.php:1160
47
+ #: addons/ranks/myCRED-addon-ranks.php:1757
48
+ #: addons/transfer/myCRED-addon-transfer.php:160
49
+ #: includes/mycred-shortcodes.php:605 modules/mycred-module-log.php:551
50
+ #: modules/mycred-module-management.php:316
51
+ #: modules/mycred-module-settings.php:430
52
  msgid "Processing..."
53
  msgstr ""
54
 
55
+ #: mycred.php:692 includes/mycred-shortcodes.php:606
56
  msgid "Sent"
57
  msgstr ""
58
 
59
+ #: mycred.php:693 includes/mycred-shortcodes.php:607
60
  msgid "Error - Try Again"
61
  msgstr ""
62
 
63
+ #: mycred.php:876 mycred.php:877
64
+ #, php-format
65
+ msgid "About %s"
66
+ msgstr ""
67
+
68
+ #: mycred.php:914 addons/transfer/includes/mycred-transfer-object.php:824
69
  #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
70
+ #: modules/mycred-module-management.php:558
71
  msgid "Balance"
72
  msgstr ""
73
 
74
+ #: mycred.php:981 addons/buy-creds/modules/buycred-module-pending.php:500
75
+ #: includes/mycred-admin.php:422 modules/mycred-module-caching.php:258
76
+ #: modules/mycred-module-log.php:370 modules/mycred-module-log.php:371
77
+ #: modules/mycred-module-management.php:473
78
  msgid "History"
79
  msgstr ""
80
 
81
+ #: mycred.php:1046 mycred.php:1067
 
 
 
82
  #: addons/banking/services/mycred-service-interest.php:477
 
 
 
 
83
  #: addons/buy-creds/gateways/bank-transfer.php:175
84
  #: addons/buy-creds/gateways/bitpay.php:533
85
+ #: addons/buy-creds/gateways/netbilling.php:244
86
+ #: addons/buy-creds/gateways/paypal-standard.php:301
87
+ #: addons/buy-creds/gateways/skrill.php:274
88
+ #: addons/buy-creds/gateways/zombaio.php:383
89
+ #: addons/email-notices/myCRED-addon-email-notices.php:360
90
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:458
91
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:591
92
+ #: addons/notifications/myCRED-addon-notifications.php:198
93
  msgid "Setup"
94
  msgstr ""
95
 
96
+ #: mycred.php:1048 addons/gateway/carts/mycred-marketpress.php:367
97
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
98
+ #: includes/mycred-network.php:174 modules/mycred-module-network.php:270
99
  #: modules/mycred-module-settings.php:21 modules/mycred-module-settings.php:22
100
+ #: modules/mycred-module-settings.php:23
101
+ #: modules/mycred-module-settings.php:529
102
  msgid "Settings"
103
  msgstr ""
104
 
105
+ #: abstracts/mycred-abstract-hook.php:104
106
+ msgid "This Hook has no settings"
 
 
 
 
107
  msgstr ""
108
 
109
+ #: abstracts/mycred-abstract-hook.php:319
110
+ #: abstracts/mycred-abstract-hook.php:391
111
+ #: addons/buy-creds/includes/buycred-functions.php:186
112
+ #: addons/buy-creds/modules/buycred-module-core.php:411
113
+ #: addons/transfer/includes/mycred-transfer-object.php:494
114
+ #: includes/mycred-functions.php:3472
115
+ #: includes/hooks/mycred-hook-link-clicks.php:54
116
+ #: includes/shortcodes/mycred_hook_table.php:122
117
+ msgid "No limit"
118
  msgstr ""
119
 
120
+ #: abstracts/mycred-abstract-hook.php:320
121
+ #: addons/buy-creds/includes/buycred-functions.php:187
122
+ msgid "/ Day"
123
  msgstr ""
124
 
125
+ #: abstracts/mycred-abstract-hook.php:321
126
+ #: addons/buy-creds/includes/buycred-functions.php:188
127
+ msgid "/ Week"
128
  msgstr ""
129
 
130
+ #: abstracts/mycred-abstract-hook.php:322
131
+ #: addons/buy-creds/includes/buycred-functions.php:189
132
+ msgid "/ Month"
133
  msgstr ""
134
 
135
+ #: abstracts/mycred-abstract-hook.php:323
136
+ msgid "in Total"
137
  msgstr ""
138
 
139
+ #: abstracts/mycred-abstract-hook.php:392
140
+ msgid "Once every 24 hours"
141
  msgstr ""
142
 
143
+ #: abstracts/mycred-abstract-hook.php:393
144
+ msgid "Once every 7 days"
145
  msgstr ""
146
 
147
+ #: abstracts/mycred-abstract-hook.php:394
148
+ msgid "Once per day (reset at midnight)"
149
  msgstr ""
150
 
151
+ #: abstracts/mycred-abstract-hook.php:401
152
+ #: addons/badges/myCRED-addon-badges.php:935
153
+ #: addons/banking/abstracts/mycred-abstract-service.php:351
154
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1673
155
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1698
156
+ #: addons/buy-creds/gateways/zombaio.php:482
157
+ #: addons/buy-creds/gateways/zombaio.php:514
158
+ #: addons/buy-creds/modules/buycred-module-core.php:474
159
+ #: addons/buy-creds/modules/buycred-module-core.php:504
160
+ #: addons/email-notices/includes/mycred-email-functions.php:74
161
+ msgid "Select"
162
  msgstr ""
163
 
164
+ #: abstracts/mycred-abstract-module.php:516 includes/mycred-network.php:106
165
+ #: modules/mycred-module-network.php:218
166
+ msgid "click to close"
167
  msgstr ""
168
 
169
+ #: abstracts/mycred-abstract-module.php:517 includes/mycred-network.php:107
170
+ #: modules/mycred-module-network.php:219
171
+ msgid "click to open"
172
  msgstr ""
173
 
174
+ #: abstracts/mycred-abstract-module.php:550
175
+ #: addons/buy-creds/modules/buycred-module-core.php:732
176
+ #: addons/email-notices/includes/mycred-email-shortcodes.php:15
177
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:451
178
+ #: modules/mycred-module-network.php:261
179
+ msgid "Settings Updated"
 
180
  msgstr ""
181
 
182
+ #: addons/badges/myCRED-addon-badges.php:155
183
+ #: addons/badges/myCRED-addon-badges.php:161
184
+ #: addons/badges/myCRED-addon-badges.php:167
185
+ #: addons/badges/myCRED-addon-badges.php:347
186
+ #: addons/badges/myCRED-addon-badges.php:348
187
+ #: addons/badges/myCRED-addon-badges.php:1188
188
+ #: addons/badges/myCRED-addon-badges.php:1317
189
+ #: addons/badges/myCRED-addon-badges.php:1320
190
+ msgid "Badges"
191
  msgstr ""
192
 
193
+ #: addons/badges/myCRED-addon-badges.php:156
194
+ msgid "Badge"
195
  msgstr ""
196
 
197
+ #: addons/badges/myCRED-addon-badges.php:157
198
+ #: addons/badges/myCRED-addon-badges.php:158
199
+ #: addons/banking/services/mycred-service-payouts.php:896
200
+ #: addons/email-notices/myCRED-addon-email-notices.php:146
201
+ #: addons/email-notices/myCRED-addon-email-notices.php:147
202
+ #: addons/ranks/myCRED-addon-ranks.php:248
203
+ #: addons/ranks/myCRED-addon-ranks.php:249
204
+ msgid "Add New"
205
  msgstr ""
206
 
207
+ #: addons/badges/myCRED-addon-badges.php:159
208
+ msgid "Edit Badge"
209
  msgstr ""
210
 
211
+ #: addons/badges/myCRED-addon-badges.php:160
212
+ msgid "New Badge"
 
 
 
 
 
 
 
 
 
213
  msgstr ""
214
 
215
+ #: addons/badges/myCRED-addon-badges.php:162
216
+ msgid "View Badge"
 
 
217
  msgstr ""
218
 
219
+ #: addons/badges/myCRED-addon-badges.php:163
220
+ msgid "Search Badge"
 
 
221
  msgstr ""
222
 
223
+ #: addons/badges/myCRED-addon-badges.php:164
224
+ msgid "No badges found"
 
 
225
  msgstr ""
226
 
227
+ #: addons/badges/myCRED-addon-badges.php:165
228
+ msgid "No badges found in Trash"
229
  msgstr ""
230
 
231
+ #: addons/badges/myCRED-addon-badges.php:318
232
+ #: addons/badges/myCRED-addon-badges.php:319
233
+ #: addons/badges/myCRED-addon-badges.php:320
234
+ #: addons/badges/myCRED-addon-badges.php:321
235
+ #: addons/badges/myCRED-addon-badges.php:325
236
+ #: addons/badges/myCRED-addon-badges.php:326
237
+ #: addons/badges/myCRED-addon-badges.php:327
238
+ msgid "Badge Updated."
239
  msgstr ""
240
 
241
+ #: addons/badges/myCRED-addon-badges.php:323
242
+ msgid "Badge Enabled."
243
  msgstr ""
244
 
245
+ #: addons/badges/myCRED-addon-badges.php:324
246
+ msgid "Badge Saved."
 
 
 
247
  msgstr ""
248
 
249
+ #: addons/badges/myCRED-addon-badges.php:454
250
+ #: addons/badges/myCRED-addon-badges.php:543
251
+ msgid "Badge Name"
 
252
  msgstr ""
253
 
254
+ #: addons/badges/myCRED-addon-badges.php:455
255
+ msgid "Default Image"
 
256
  msgstr ""
257
 
258
+ #: addons/badges/myCRED-addon-badges.php:456
259
+ msgid "First Level"
260
  msgstr ""
261
 
262
+ #: addons/badges/myCRED-addon-badges.php:457
263
+ msgid "Requirements"
264
  msgstr ""
265
 
266
+ #: addons/badges/myCRED-addon-badges.php:458
267
+ #: addons/ranks/myCRED-addon-ranks.php:1254
268
+ #: modules/mycred-module-settings.php:706
269
+ msgid "Users"
270
  msgstr ""
271
 
272
+ #: addons/badges/myCRED-addon-badges.php:573
273
+ #: addons/badges/myCRED-addon-badges.php:852
274
+ msgid "Add Level"
 
 
 
275
  msgstr ""
276
 
277
+ #: addons/badges/myCRED-addon-badges.php:574
278
+ #: addons/badges/myCRED-addon-badges.php:853
279
+ msgid "Remove Level"
280
  msgstr ""
281
 
282
+ #: addons/badges/myCRED-addon-badges.php:575
283
+ #: addons/badges/myCRED-addon-badges.php:808
284
+ #: addons/badges/myCRED-addon-badges.php:869
285
+ #: addons/badges/myCRED-addon-badges.php:874
286
+ msgid "Set Image"
287
  msgstr ""
288
 
289
+ #: addons/badges/myCRED-addon-badges.php:576
290
+ #: addons/badges/myCRED-addon-badges.php:808
291
+ #: addons/badges/myCRED-addon-badges.php:874
292
+ msgid "Change Image"
293
  msgstr ""
294
 
295
+ #: addons/badges/myCRED-addon-badges.php:577
296
+ msgid "Are you sure you want to remove this level?"
 
 
 
297
  msgstr ""
298
 
299
+ #: addons/badges/myCRED-addon-badges.php:578
300
+ #: addons/badges/myCRED-addon-badges.php:870
301
+ #: addons/badges/myCRED-addon-badges.php:1349
302
+ msgid "Level"
303
  msgstr ""
304
 
305
+ #: addons/badges/myCRED-addon-badges.php:579
306
+ msgid "Badge Image"
307
  msgstr ""
308
 
309
+ #: addons/badges/myCRED-addon-badges.php:580
310
+ msgid "Use as Badge"
 
 
311
  msgstr ""
312
 
313
+ #: addons/badges/myCRED-addon-badges.php:581
314
+ #: addons/badges/myCRED-addon-badges.php:978
315
+ #: addons/badges/includes/mycred-badge-functions.php:287
316
+ msgctxt "Comparison of badge requirements. A AND B"
317
+ msgid "AND"
318
  msgstr ""
319
 
320
+ #: addons/badges/myCRED-addon-badges.php:582
321
+ #: addons/badges/myCRED-addon-badges.php:978
322
+ #: addons/badges/includes/mycred-badge-functions.php:285
323
+ msgctxt "Comparison of badge requirements. A OR B"
324
+ msgid "OR"
325
  msgstr ""
326
 
327
+ #: addons/badges/myCRED-addon-badges.php:630
328
+ msgid "Badge Setup"
 
329
  msgstr ""
330
 
331
+ #: addons/badges/myCRED-addon-badges.php:639
332
+ msgid "Default Badge Image"
333
  msgstr ""
334
 
335
+ #: addons/badges/myCRED-addon-badges.php:735
336
+ msgid "Assign Badge"
337
  msgstr ""
338
 
339
+ #: addons/badges/myCRED-addon-badges.php:736
340
+ msgid "Remove Connections"
341
  msgstr ""
342
 
343
+ #: addons/badges/myCRED-addon-badges.php:775
344
+ #: addons/badges/includes/mycred-badge-functions.php:303
345
+ msgid "This badge is manually awarded."
346
  msgstr ""
347
 
348
+ #: addons/badges/myCRED-addon-badges.php:811
349
+ msgid "Optional image to show when a user has not earned this badge."
 
 
 
350
  msgstr ""
351
 
352
+ #: addons/badges/myCRED-addon-badges.php:830
353
+ msgid "Time(s)"
354
  msgstr ""
355
 
356
+ #: addons/badges/myCRED-addon-badges.php:831
357
+ msgid "In total"
 
358
  msgstr ""
359
 
360
+ #: addons/badges/myCRED-addon-badges.php:876
361
+ #, php-format
362
+ msgid "Level %d"
 
363
  msgstr ""
364
 
365
+ #: addons/badges/myCRED-addon-badges.php:879
366
+ #: addons/badges/myCRED-addon-badges.php:880
367
+ #: addons/ranks/myCRED-addon-ranks.php:1253
368
+ msgid "Requirement"
369
  msgstr ""
370
 
371
+ #: addons/badges/myCRED-addon-badges.php:900
372
+ msgid "Select Point Type"
373
  msgstr ""
374
 
375
+ #: addons/badges/myCRED-addon-badges.php:914
376
+ msgid "Select Reference"
 
 
377
  msgstr ""
378
 
379
+ #: addons/badges/myCRED-addon-badges.php:996
380
+ msgid "Reward"
381
  msgstr ""
382
 
383
+ #: addons/badges/myCRED-addon-badges.php:1006
384
+ #: includes/hooks/mycred-hook-comments.php:385
385
+ #: includes/hooks/mycred-hook-comments.php:436
386
+ #: includes/hooks/mycred-hook-comments.php:462
387
+ #: includes/hooks/mycred-hook-delete-content.php:123
388
+ #: includes/hooks/mycred-hook-delete-content.php:147
389
+ #: includes/hooks/mycred-hook-delete-content.php:203
390
+ #: includes/hooks/mycred-hook-publishing-content.php:125
391
+ #: includes/hooks/mycred-hook-publishing-content.php:149
392
+ #: includes/hooks/mycred-hook-publishing-content.php:205
393
+ #: includes/hooks/mycred-hook-referrals.php:571
394
+ #: includes/hooks/mycred-hook-referrals.php:598
395
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:298
396
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:325
397
+ #: includes/hooks/external/mycred-hook-bbPress.php:449
398
+ #: includes/hooks/external/mycred-hook-bbPress.php:467
399
+ #: includes/hooks/external/mycred-hook-bbPress.php:491
400
+ #: includes/hooks/external/mycred-hook-bbPress.php:518
401
+ #: includes/hooks/external/mycred-hook-bbPress.php:542
402
+ #: includes/hooks/external/mycred-hook-bbPress.php:566
403
+ #: includes/hooks/external/mycred-hook-bbPress.php:593
404
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:306
405
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:330
406
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:354
407
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:372
408
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:390
409
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:408
410
+ #: includes/hooks/external/mycred-hook-buddypress.php:638
411
+ #: includes/hooks/external/mycred-hook-buddypress.php:662
412
+ #: includes/hooks/external/mycred-hook-buddypress.php:686
413
+ #: includes/hooks/external/mycred-hook-buddypress.php:710
414
+ #: includes/hooks/external/mycred-hook-buddypress.php:734
415
+ #: includes/hooks/external/mycred-hook-buddypress.php:761
416
+ #: includes/hooks/external/mycred-hook-buddypress.php:785
417
+ #: includes/hooks/external/mycred-hook-buddypress.php:803
418
+ #: includes/hooks/external/mycred-hook-buddypress.php:827
419
+ #: includes/hooks/external/mycred-hook-buddypress.php:845
420
+ #: includes/hooks/external/mycred-hook-buddypress.php:869
421
+ #: includes/hooks/external/mycred-hook-buddypress.php:893
422
+ #: includes/hooks/external/mycred-hook-buddypress.php:1529
423
+ #: includes/hooks/external/mycred-hook-buddypress.php:1547
424
+ #: includes/hooks/external/mycred-hook-buddypress.php:1571
425
+ #: includes/hooks/external/mycred-hook-buddypress.php:1595
426
+ #: includes/hooks/external/mycred-hook-buddypress.php:1619
427
+ #: includes/hooks/external/mycred-hook-buddypress.php:1643
428
+ #: includes/hooks/external/mycred-hook-buddypress.php:1667
429
+ #: includes/hooks/external/mycred-hook-buddypress.php:1691
430
+ #: includes/hooks/external/mycred-hook-buddypress.php:1715
431
+ #: includes/hooks/external/mycred-hook-buddypress.php:1733
432
+ #: includes/hooks/external/mycred-hook-buddypress.php:1757
433
+ #: includes/hooks/external/mycred-hook-contact-form7.php:179
434
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:217
435
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:235
436
+ #: includes/hooks/external/mycred-hook-gravityforms.php:172
437
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:221
438
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:245
439
+ #: includes/hooks/external/mycred-hook-jetpack.php:549
440
+ #: includes/hooks/external/mycred-hook-jetpack.php:567
441
+ #: includes/hooks/external/mycred-hook-simplepress.php:307
442
+ #: includes/hooks/external/mycred-hook-simplepress.php:325
443
+ #: includes/hooks/external/mycred-hook-simplepress.php:349
444
+ #: includes/hooks/external/mycred-hook-simplepress.php:376
445
+ #: plugins/mycred-hook-affiliatewp.php:298
446
+ #: plugins/mycred-hook-affiliatewp.php:325 plugins/mycred-hook-bbPress.php:449
447
+ #: plugins/mycred-hook-bbPress.php:467 plugins/mycred-hook-bbPress.php:491
448
+ #: plugins/mycred-hook-bbPress.php:518 plugins/mycred-hook-bbPress.php:542
449
+ #: plugins/mycred-hook-bbPress.php:566 plugins/mycred-hook-bbPress.php:593
450
+ #: plugins/mycred-hook-buddypress-gallery.php:104
451
+ #: plugins/mycred-hook-buddypress-links.php:254
452
+ #: plugins/mycred-hook-buddypress-links.php:267
453
+ #: plugins/mycred-hook-buddypress-links.php:280
454
+ #: plugins/mycred-hook-buddypress-links.php:291
455
+ #: plugins/mycred-hook-buddypress-links.php:304
456
+ #: plugins/mycred-hook-buddypress-links.php:317
457
+ #: plugins/mycred-hook-buddypress-media.php:306
458
+ #: plugins/mycred-hook-buddypress-media.php:330
459
+ #: plugins/mycred-hook-buddypress-media.php:354
460
+ #: plugins/mycred-hook-buddypress-media.php:372
461
+ #: plugins/mycred-hook-buddypress-media.php:390
462
+ #: plugins/mycred-hook-buddypress-media.php:408
463
+ #: plugins/mycred-hook-buddypress.php:629
464
+ #: plugins/mycred-hook-buddypress.php:653
465
+ #: plugins/mycred-hook-buddypress.php:677
466
+ #: plugins/mycred-hook-buddypress.php:701
467
+ #: plugins/mycred-hook-buddypress.php:725
468
+ #: plugins/mycred-hook-buddypress.php:752
469
+ #: plugins/mycred-hook-buddypress.php:776
470
+ #: plugins/mycred-hook-buddypress.php:794
471
+ #: plugins/mycred-hook-buddypress.php:818
472
+ #: plugins/mycred-hook-buddypress.php:836
473
+ #: plugins/mycred-hook-buddypress.php:860
474
+ #: plugins/mycred-hook-buddypress.php:884
475
+ #: plugins/mycred-hook-buddypress.php:1520
476
+ #: plugins/mycred-hook-buddypress.php:1538
477
+ #: plugins/mycred-hook-buddypress.php:1562
478
+ #: plugins/mycred-hook-buddypress.php:1586
479
+ #: plugins/mycred-hook-buddypress.php:1610
480
+ #: plugins/mycred-hook-buddypress.php:1634
481
+ #: plugins/mycred-hook-buddypress.php:1658
482
+ #: plugins/mycred-hook-buddypress.php:1682
483
+ #: plugins/mycred-hook-buddypress.php:1706
484
+ #: plugins/mycred-hook-buddypress.php:1724
485
+ #: plugins/mycred-hook-buddypress.php:1748
486
+ #: plugins/mycred-hook-contact-form7.php:178
487
+ #: plugins/mycred-hook-events-manager-light.php:217
488
+ #: plugins/mycred-hook-events-manager-light.php:235
489
+ #: plugins/mycred-hook-gravityforms.php:172
490
+ #: plugins/mycred-hook-invite-anyone.php:221
491
+ #: plugins/mycred-hook-invite-anyone.php:245
492
+ #: plugins/mycred-hook-jetpack.php:164 plugins/mycred-hook-jetpack.php:182
493
+ #: plugins/mycred-hook-sharethis.php:273
494
+ #: plugins/mycred-hook-simplepress.php:307
495
+ #: plugins/mycred-hook-simplepress.php:325
496
+ #: plugins/mycred-hook-simplepress.php:349
497
+ #: plugins/mycred-hook-simplepress.php:376
498
+ msgid "Log template"
499
  msgstr ""
500
 
501
+ #: addons/badges/myCRED-addon-badges.php:1191
502
+ #: addons/ranks/myCRED-addon-ranks.php:1649
503
+ msgid "Third-party Integrations"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504
  msgstr ""
505
 
506
+ #: addons/badges/myCRED-addon-badges.php:1201
507
+ #: addons/badges/myCRED-addon-badges.php:1235
508
+ #: addons/gateway/carts/mycred-woocommerce.php:147
509
+ #: modules/mycred-module-buddypress.php:404
510
+ #: modules/mycred-module-buddypress.php:411
511
+ msgid "Do not show"
512
  msgstr ""
513
 
514
+ #: addons/badges/myCRED-addon-badges.php:1202
515
+ #: modules/mycred-module-buddypress.php:405
516
+ msgid "Include in Profile Header"
 
517
  msgstr ""
518
 
519
+ #: addons/badges/myCRED-addon-badges.php:1203
520
+ #: addons/ranks/myCRED-addon-ranks.php:1667
521
+ #: modules/mycred-module-buddypress.php:406
522
+ msgid "Include under the \"Profile\" tab"
523
  msgstr ""
524
 
525
+ #: addons/badges/myCRED-addon-badges.php:1204
526
+ #: modules/mycred-module-buddypress.php:407
527
+ msgid "Include under the \"Profile\" tab and Profile Header"
528
  msgstr ""
529
 
530
+ #: addons/badges/myCRED-addon-badges.php:1219
531
+ #: addons/badges/myCRED-addon-badges.php:1253
532
+ msgid "Show all badges, including badges users have not yet earned."
533
  msgstr ""
534
 
535
+ #: addons/badges/myCRED-addon-badges.php:1223
536
+ #: addons/badges/myCRED-addon-badges.php:1257
537
+ #: addons/ranks/myCRED-addon-ranks.php:1688
538
+ #: addons/ranks/myCRED-addon-ranks.php:1729
539
+ msgid "Not installed"
540
  msgstr ""
541
 
542
+ #: addons/badges/myCRED-addon-badges.php:1236
543
+ #: addons/ranks/myCRED-addon-ranks.php:1708
544
+ msgid "Include in Profile"
545
  msgstr ""
546
 
547
+ #: addons/badges/myCRED-addon-badges.php:1237
548
+ msgid "Include in Forum Replies"
549
  msgstr ""
550
 
551
+ #: addons/badges/myCRED-addon-badges.php:1238
552
+ msgid "Include in Profile and Forum Replies"
553
  msgstr ""
554
 
555
+ #: addons/badges/myCRED-addon-badges.php:1263
556
+ #: addons/buy-creds/modules/buycred-module-core.php:569
557
+ #: addons/email-notices/myCRED-addon-email-notices.php:1206
558
+ #: addons/ranks/myCRED-addon-ranks.php:1735
559
+ #: includes/hooks/mycred-hook-referrals.php:645
560
+ msgid "Available Shortcodes"
561
  msgstr ""
562
 
563
+ #: addons/badges/myCRED-addon-badges.php:1312
564
+ msgid "No image set"
565
  msgstr ""
566
 
567
+ #: addons/badges/myCRED-addon-badges.php:1344
568
+ msgid "Select a level"
569
  msgstr ""
570
 
571
+ #: addons/badges/myCRED-addon-badges.php:1358
572
+ msgid "Earned"
573
  msgstr ""
574
 
575
+ #: addons/badges/myCRED-addon-badges.php:1489
576
+ #, php-format
577
+ msgid "A total of %d users have received this badge."
578
  msgstr ""
579
 
580
+ #: addons/badges/myCRED-addon-badges.php:1491
581
+ msgid "No users has yet earned this badge."
582
  msgstr ""
583
 
584
+ #: addons/badges/myCRED-addon-badges.php:1516
585
+ msgid "No connections where removed."
586
  msgstr ""
587
 
588
+ #: addons/badges/myCRED-addon-badges.php:1518
589
+ #, php-format
590
+ msgid "%s connections where removed."
591
  msgstr ""
592
 
593
+ #: addons/badges/includes/mycred-badge-functions.php:264
594
+ #, php-format
595
+ msgid "Level %s"
596
  msgstr ""
597
 
598
+ #: addons/badges/includes/mycred-badge-functions.php:281
599
+ #, php-format
600
+ msgctxt "\"Points\" for \"reference\" x times"
601
+ msgid "%s for \"%s\" x %d"
602
  msgstr ""
603
 
604
+ #: addons/badges/includes/mycred-badge-functions.php:283
605
+ #, php-format
606
+ msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
607
+ msgid "%s %s for \"%s\""
608
  msgstr ""
609
 
610
+ #: addons/badges/includes/mycred-badge-functions.php:283
611
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
612
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
613
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
614
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
615
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
616
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
617
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
618
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
619
+ msgid "Lost"
620
  msgstr ""
621
 
622
+ #: addons/badges/includes/mycred-badge-functions.php:283
623
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:196
624
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
625
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
626
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
627
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:326
628
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
629
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
630
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
631
+ msgid "Gained"
632
  msgstr ""
633
 
634
+ #: addons/banking/myCRED-addon-banking.php:45
635
+ #: addons/banking/myCRED-addon-banking.php:46
636
+ #: addons/banking/myCRED-addon-banking.php:47
637
+ msgid "Banking"
638
  msgstr ""
639
 
640
+ #: addons/banking/myCRED-addon-banking.php:141
641
+ msgid "Central Banking"
642
  msgstr ""
643
 
644
+ #: addons/banking/myCRED-addon-banking.php:142
645
+ msgid ""
646
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
647
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
648
+ "deposited back into this account. If the central bank runs out of %_plural%, "
649
+ "no %_plural% will be paid out."
650
  msgstr ""
651
 
652
+ #: addons/banking/myCRED-addon-banking.php:150
653
+ #: includes/classes/class.query-log.php:2403
654
+ msgid "Compound Interest"
655
  msgstr ""
656
 
657
+ #: addons/banking/myCRED-addon-banking.php:151
658
+ msgid ""
659
+ "Offer your users interest on the %_plural% they earn on your website. The "
660
+ "interest is compounded daily."
661
  msgstr ""
662
 
663
+ #: addons/banking/myCRED-addon-banking.php:159
664
+ msgid "Recurring Payouts"
665
  msgstr ""
666
 
667
+ #: addons/banking/myCRED-addon-banking.php:160
668
+ msgid "Setup mass %_singular% payouts for your users."
669
  msgstr ""
670
 
671
+ #: addons/banking/myCRED-addon-banking.php:202
672
+ msgid "New Recurring Payout"
673
  msgstr ""
674
 
675
+ #: addons/banking/myCRED-addon-banking.php:203
676
+ msgid "Edit Recurring Payout"
677
  msgstr ""
678
 
679
+ #: addons/banking/myCRED-addon-banking.php:204
680
+ #: modules/mycred-module-hooks.php:341 modules/mycred-module-hooks.php:459
681
+ #: modules/mycred-module-log.php:550 modules/mycred-module-management.php:315
682
+ #: modules/mycred-module-settings.php:435
683
+ msgid "Close"
684
  msgstr ""
685
 
686
+ #: addons/banking/myCRED-addon-banking.php:205
687
+ msgid "Please fill out all required fields that are highlighted in red."
 
 
688
  msgstr ""
689
 
690
+ #: addons/banking/myCRED-addon-banking.php:206
691
+ msgid "Are you sure you want to remove this schedule? This can not be undone!"
692
  msgstr ""
693
 
694
+ #: addons/banking/myCRED-addon-banking.php:253
695
+ msgid "Banking Services"
 
 
696
  msgstr ""
697
 
698
+ #: addons/banking/myCRED-addon-banking.php:271
699
+ msgid "Warning"
700
  msgstr ""
701
 
702
+ #: addons/banking/myCRED-addon-banking.php:271
703
  msgid ""
704
+ "This banking service uses the WordPress CRON to schedule events. If the "
705
+ "WordPress CRON is disabled, this service will not work correctly."
706
  msgstr ""
707
 
708
+ #: addons/banking/myCRED-addon-banking.php:273
709
+ #: addons/buy-creds/modules/buycred-module-core.php:392
710
+ #: addons/buy-creds/modules/buycred-module-core.php:768
711
+ msgid "Enable"
712
  msgstr ""
713
 
714
+ #: addons/banking/myCRED-addon-banking.php:292
715
+ msgid "Update Changes"
716
  msgstr ""
717
 
718
+ #: addons/banking/includes/mycred-banking-functions.php:79
719
+ msgid "Hourly"
720
  msgstr ""
721
 
722
+ #: addons/banking/includes/mycred-banking-functions.php:80
723
+ msgid "Hour"
724
  msgstr ""
725
 
726
+ #: addons/banking/includes/mycred-banking-functions.php:84
727
+ msgid "Daily"
 
728
  msgstr ""
729
 
730
+ #: addons/banking/includes/mycred-banking-functions.php:85
731
+ #: addons/banking/services/mycred-service-interest.php:434
732
+ #: addons/banking/services/mycred-service-interest.php:459
733
+ #: addons/transfer/includes/mycred-transfer-object.php:463
734
+ msgid "Day"
735
  msgstr ""
736
 
737
+ #: addons/banking/includes/mycred-banking-functions.php:89
738
+ msgid "Weekly"
 
 
 
 
739
  msgstr ""
740
 
741
+ #: addons/banking/includes/mycred-banking-functions.php:90
742
+ #: addons/transfer/includes/mycred-transfer-object.php:471
743
+ msgid "Week"
744
  msgstr ""
745
 
746
+ #: addons/banking/includes/mycred-banking-functions.php:94
747
+ msgid "Monthly"
 
748
  msgstr ""
749
 
750
+ #: addons/banking/includes/mycred-banking-functions.php:95
751
+ #: addons/banking/services/mycred-service-interest.php:433
752
+ #: addons/banking/services/mycred-service-interest.php:458
753
+ #: addons/banking/services/mycred-service-payouts.php:734
754
+ #: addons/transfer/includes/mycred-transfer-object.php:477
755
+ msgid "Month"
756
  msgstr ""
757
 
758
+ #: addons/banking/includes/mycred-banking-functions.php:99
759
+ msgid "Quarterly"
 
760
  msgstr ""
761
 
762
+ #: addons/banking/includes/mycred-banking-functions.php:100
763
+ msgid "Quarter"
764
  msgstr ""
765
 
766
+ #: addons/banking/includes/mycred-banking-functions.php:104
767
+ msgid "Semiannually"
768
  msgstr ""
769
 
770
+ #: addons/banking/includes/mycred-banking-functions.php:105
771
+ msgid "Semiannual"
772
  msgstr ""
773
 
774
+ #: addons/banking/includes/mycred-banking-functions.php:109
775
+ msgid "Annually"
776
  msgstr ""
777
 
778
+ #: addons/banking/includes/mycred-banking-functions.php:110
779
+ msgid "Annual"
 
 
 
 
 
 
 
 
 
780
  msgstr ""
781
 
782
+ #: addons/banking/includes/mycred-banking-functions.php:283
783
+ msgid "A title must be set."
784
  msgstr ""
785
 
786
+ #: addons/banking/includes/mycred-banking-functions.php:290
787
+ msgid "The amount to payout can not be zero."
788
  msgstr ""
789
 
790
+ #: addons/banking/includes/mycred-banking-functions.php:296
791
+ msgid "Start date can not be in the past."
792
  msgstr ""
793
 
794
+ #: addons/banking/includes/mycred-banking-functions.php:303
795
+ msgid "Repeat can not be zero."
796
  msgstr ""
797
 
798
+ #: addons/banking/includes/mycred-banking-functions.php:309
799
+ msgid "Duplicate schedule."
 
 
800
  msgstr ""
801
 
802
+ #: addons/banking/services/mycred-bank-service-interest.php:25
803
+ #: addons/banking/services/mycred-service-interest.php:28
804
+ msgid "%plural% interest rate payment"
805
  msgstr ""
806
 
807
+ #: addons/banking/services/mycred-bank-service-interest.php:275
808
+ #: addons/banking/services/mycred-service-interest.php:481
809
+ #: addons/banking/services/mycred-service-interest.php:652
810
+ msgid "Interest Rate"
811
  msgstr ""
812
 
813
+ #: addons/banking/services/mycred-bank-service-interest.php:282
814
+ msgid "Payed / Charged"
 
 
 
 
 
 
 
815
  msgstr ""
816
 
817
+ #: addons/banking/services/mycred-bank-service-interest.php:288
818
+ msgid ""
819
+ "The interest rate can be either positive or negative and is compounded daily."
820
  msgstr ""
821
 
822
+ #: addons/banking/services/mycred-bank-service-interest.php:291
823
+ #: addons/banking/services/mycred-service-interest.php:499
824
+ #: addons/coupons/myCRED-addon-coupons.php:590
825
+ msgid "Minimum Balance"
826
  msgstr ""
827
 
828
+ #: addons/banking/services/mycred-bank-service-interest.php:295
829
+ msgid "The minimum requires balance for interest to apply."
 
 
 
 
 
 
830
  msgstr ""
831
 
832
+ #: addons/banking/services/mycred-bank-service-interest.php:298
833
+ #: addons/banking/services/mycred-bank-service-payouts.php:252
834
+ #: addons/banking/services/mycred-service-interest.php:510
835
+ #: addons/banking/services/mycred-service-payouts.php:710
836
+ #: addons/buy-creds/modules/buycred-module-core.php:536
837
+ #: addons/buy-creds/modules/buycred-module-core.php:561
838
+ #: addons/coupons/myCRED-addon-coupons.php:751
839
+ #: addons/gateway/carts/mycred-marketpress.php:391
840
+ #: addons/gateway/carts/mycred-marketpress.php:424
841
+ #: addons/gateway/carts/mycred-woocommerce.php:108
842
+ #: addons/gateway/carts/mycred-woocommerce.php:189
843
+ #: addons/gateway/carts/mycred-wpecommerce.php:400
844
+ #: includes/hooks/mycred-hook-anniversary.php:113
845
+ #: includes/hooks/mycred-hook-link-clicks.php:282
846
+ #: includes/hooks/mycred-hook-logins.php:141
847
+ #: includes/hooks/mycred-hook-registrations.php:86
848
+ #: includes/hooks/mycred-hook-site-visits.php:101
849
+ #: includes/hooks/mycred-hook-watching-video.php:315
850
+ #: includes/hooks/external/mycred-hook-badgeOS.php:144
851
+ #: includes/hooks/external/mycred-hook-badgeOS.php:146
852
+ #: includes/hooks/external/mycred-hook-badgeOS.php:157
853
+ #: includes/hooks/external/mycred-hook-badgeOS.php:327
854
+ #: includes/hooks/external/mycred-hook-badgeOS.php:345
855
+ #: includes/hooks/external/mycred-hook-woocommerce.php:537
856
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:273
857
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:288
858
+ #: includes/hooks/external/mycred-hook-wp-polls.php:177
859
+ #: plugins/mycred-hook-badgeOS.php:144 plugins/mycred-hook-badgeOS.php:146
860
+ #: plugins/mycred-hook-badgeOS.php:157 plugins/mycred-hook-badgeOS.php:327
861
+ #: plugins/mycred-hook-badgeOS.php:345
862
+ #: plugins/mycred-hook-gd-star-rating.php:109
863
+ #: plugins/mycred-hook-gd-star-rating.php:122
864
+ #: plugins/mycred-hook-woocommerce.php:538
865
+ #: plugins/mycred-hook-wp-favorite-posts.php:273
866
+ #: plugins/mycred-hook-wp-favorite-posts.php:288
867
+ #: plugins/mycred-hook-wp-polls.php:177
868
+ msgid "Log Template"
869
  msgstr ""
870
 
871
+ #: addons/banking/services/mycred-bank-service-interest.php:305
872
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
873
+ msgid "Run Time"
874
  msgstr ""
875
 
876
+ #: addons/banking/services/mycred-bank-service-interest.php:309
877
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
878
+ msgid ""
879
+ "For large websites, if you are running into time out issues during payouts, "
880
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
881
+ "but be careful especially if you are on a shared server."
882
  msgstr ""
883
 
884
+ #: addons/banking/services/mycred-bank-service-payouts.php:21
885
+ msgid "Daily %_plural%"
 
886
  msgstr ""
887
 
888
+ #: addons/banking/services/mycred-bank-service-payouts.php:214
889
+ msgid "Not yet run"
890
  msgstr ""
891
 
892
+ #: addons/banking/services/mycred-bank-service-payouts.php:219
893
+ msgid "Pay Users"
 
894
  msgstr ""
895
 
896
+ #: addons/banking/services/mycred-bank-service-payouts.php:222
897
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
898
+ #: addons/buy-creds/includes/buycred-shortcodes.php:345
899
+ #: addons/buy-creds/modules/buycred-module-pending.php:316
900
+ #: addons/buy-creds/modules/buycred-module-pending.php:683
901
+ #: addons/stats/includes/mycred-stats-object.php:373
902
+ #: addons/transfer/includes/mycred-transfer-object.php:823
903
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:30
904
+ #: addons/transfer/includes/mycred-transfer-widgets.php:105
905
+ #: includes/mycred-admin.php:726 includes/mycred-admin.php:771
906
+ #: includes/mycred-shortcodes.php:907
907
+ #: includes/classes/class.query-export.php:263
908
+ #: includes/classes/class.query-export.php:383
909
+ #: includes/classes/class.query-log.php:1037
910
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:291
911
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:310
912
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:340
913
+ #: includes/shortcodes/mycred_exchange.php:69
914
+ #: includes/shortcodes/mycred_hook_table.php:84
915
+ #: modules/mycred-module-management.php:768
916
+ #: plugins/mycred-hook-affiliatewp.php:291
917
+ #: plugins/mycred-hook-affiliatewp.php:310
918
+ #: plugins/mycred-hook-affiliatewp.php:340
919
+ msgid "Amount"
920
  msgstr ""
921
 
922
+ #: addons/banking/services/mycred-bank-service-payouts.php:224
923
+ msgid "Can not be zero."
924
  msgstr ""
925
 
926
+ #: addons/banking/services/mycred-bank-service-payouts.php:228
927
+ #: addons/banking/services/mycred-bank-service-payouts.php:241
928
+ msgid "Interval"
929
  msgstr ""
930
 
931
+ #: addons/banking/services/mycred-bank-service-payouts.php:233
932
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
933
+ msgid "Cycles"
934
  msgstr ""
935
 
936
+ #: addons/banking/services/mycred-bank-service-payouts.php:235
937
+ msgid "Set to -1 for unlimited"
938
  msgstr ""
939
 
940
+ #: addons/banking/services/mycred-bank-service-payouts.php:238
941
+ msgid "Last Run / Activated"
942
  msgstr ""
943
 
944
+ #: addons/banking/services/mycred-bank-service-payouts.php:241
945
+ msgid ""
946
+ "Select how often you want to award %_plural%. Note that when this service is "
947
+ "enabled, the first payout will be in the beginning of the next period. So "
948
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
949
+ "morning."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
950
  msgstr ""
951
 
952
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
953
+ msgid ""
954
+ "Cycles let you choose how many intervals this service should run. Each time "
955
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
956
+ "service will deactivate itself. Use -1 to run unlimited times."
957
  msgstr ""
958
 
959
+ #: addons/banking/services/mycred-bank-service-payouts.php:243
960
+ msgid "Important"
961
+ msgstr ""
962
+
963
+ #: addons/banking/services/mycred-bank-service-payouts.php:243
964
  msgid ""
965
+ "You can always stop payouts by deactivating this service. Just remember that "
966
+ "if you deactivate while there are cycles left, this service will continue on "
967
+ "when it gets re-activated. Set cycles to zero to reset."
968
  msgstr ""
969
 
970
+ #: addons/banking/services/mycred-bank-service-payouts.php:245
971
+ msgid "Excludes"
972
  msgstr ""
973
 
974
+ #: addons/banking/services/mycred-bank-service-payouts.php:249
975
  msgid ""
976
+ "Comma separated list of user IDs to exclude from this service. No spaces "
977
+ "allowed!"
 
978
  msgstr ""
979
 
980
+ #: addons/banking/services/mycred-service-central.php:110
981
+ msgid "Central Bank Account"
 
982
  msgstr ""
983
 
984
+ #: addons/banking/services/mycred-service-central.php:111
985
+ #: addons/banking/services/mycred-service-interest.php:482
986
+ #: addons/banking/services/mycred-service-interest.php:500
987
+ #: addons/buy-creds/modules/buycred-module-core.php:537
988
+ #: addons/buy-creds/modules/buycred-module-core.php:562
989
+ #: addons/coupons/myCRED-addon-coupons.php:697
990
+ #: addons/coupons/myCRED-addon-coupons.php:704
991
+ #: addons/coupons/myCRED-addon-coupons.php:713
992
+ #: addons/coupons/myCRED-addon-coupons.php:720
993
+ #: addons/coupons/myCRED-addon-coupons.php:729
994
+ #: addons/coupons/myCRED-addon-coupons.php:736
995
+ #: addons/coupons/myCRED-addon-coupons.php:745
996
+ #: addons/coupons/myCRED-addon-coupons.php:752
997
+ #: addons/sell-content/myCRED-addon-sell-content.php:674
998
+ #: addons/sell-content/myCRED-addon-sell-content.php:690
999
+ #: addons/sell-content/myCRED-addon-sell-content.php:697
1000
+ #: addons/sell-content/myCRED-addon-sell-content.php:720
1001
+ #: includes/mycred-setup.php:280 includes/mycred-setup.php:286
1002
+ #: includes/mycred-setup.php:333 includes/mycred-setup.php:340
1003
+ #: modules/mycred-module-settings.php:552
1004
+ #: modules/mycred-module-settings.php:558
1005
+ #: modules/mycred-module-settings.php:608
1006
+ #: modules/mycred-module-settings.php:615
1007
+ #: modules/mycred-module-settings.php:803
1008
+ #: modules/mycred-module-settings.php:809
1009
+ msgid "Required"
1010
  msgstr ""
1011
 
1012
+ #: addons/banking/services/mycred-service-central.php:113
1013
+ msgid "The ID of the user representing the central bank."
1014
  msgstr ""
1015
 
1016
+ #: addons/banking/services/mycred-service-central.php:117
1017
+ msgid "Ignore Manual Adjustments"
1018
  msgstr ""
1019
 
1020
+ #: addons/banking/services/mycred-service-interest.php:429
1021
+ msgid "Daily Compound Schedule"
1022
  msgstr ""
1023
 
1024
+ #: addons/banking/services/mycred-service-interest.php:432
1025
+ #: addons/banking/services/mycred-service-interest.php:457
1026
+ #: addons/banking/services/mycred-service-payouts.php:728
1027
+ msgid "Year"
1028
  msgstr ""
1029
 
1030
+ #: addons/banking/services/mycred-service-interest.php:435
1031
+ #: addons/banking/services/mycred-service-interest.php:460
1032
+ #: addons/banking/services/mycred-service-payouts.php:746
1033
+ #: modules/mycred-module-management.php:236
1034
+ msgid "Time"
1035
  msgstr ""
1036
 
1037
+ #: addons/banking/services/mycred-service-interest.php:454
1038
+ msgid "Payout Schedule"
1039
  msgstr ""
1040
 
1041
+ #: addons/banking/services/mycred-service-interest.php:493
1042
+ msgid "Payout Frequency"
1043
  msgstr ""
1044
 
1045
+ #: addons/banking/services/mycred-service-interest.php:506
1046
+ msgid "Payout Log Table"
 
 
 
 
 
1047
  msgstr ""
1048
 
1049
+ #: addons/banking/services/mycred-service-interest.php:519
1050
+ msgid ""
1051
+ "Changing the payout period once the service is enabled, will only take "
1052
+ "effect once the currently scheduled payout runs. To change this, you will "
1053
+ "also need to adjust the payout schedule above."
1054
  msgstr ""
1055
 
1056
+ #: addons/banking/services/mycred-service-interest.php:524
1057
+ msgid "Exclude by ID"
 
1058
  msgstr ""
1059
 
1060
+ #: addons/banking/services/mycred-service-interest.php:528
1061
+ #: addons/banking/services/mycred-service-interest.php:529
1062
+ #: addons/banking/services/mycred-service-payouts.php:791
1063
+ msgid "Comma separated list of user IDs"
1064
  msgstr ""
1065
 
1066
+ #: addons/banking/services/mycred-service-interest.php:535
1067
+ msgid "Exclude by Role"
1068
  msgstr ""
1069
 
1070
+ #: addons/banking/services/mycred-service-interest.php:539
1071
+ msgid "Roles to exclude"
1072
  msgstr ""
1073
 
1074
+ #: addons/banking/services/mycred-service-interest.php:655
1075
+ msgid "Leave empty to pay the default rate."
1076
  msgstr ""
1077
 
1078
+ #: addons/banking/services/mycred-service-payouts.php:30
1079
+ msgid "Waiting to Start"
1080
  msgstr ""
1081
 
1082
+ #: addons/banking/services/mycred-service-payouts.php:31
1083
+ #: addons/email-notices/myCRED-addon-email-notices.php:393
1084
+ msgid "Active"
1085
  msgstr ""
1086
 
1087
+ #: addons/banking/services/mycred-service-payouts.php:32
1088
+ msgid "Running"
1089
  msgstr ""
1090
 
1091
+ #: addons/banking/services/mycred-service-payouts.php:33
1092
+ msgid "Finished"
1093
  msgstr ""
1094
 
1095
+ #: addons/banking/services/mycred-service-payouts.php:34
1096
+ msgid "Stopped"
1097
  msgstr ""
1098
 
1099
+ #: addons/banking/services/mycred-service-payouts.php:446
1100
+ msgid "Not yet started"
1101
  msgstr ""
1102
 
1103
+ #: addons/banking/services/mycred-service-payouts.php:457
1104
+ msgid "Currently Running"
1105
  msgstr ""
1106
 
1107
+ #: addons/banking/services/mycred-service-payouts.php:472
1108
+ msgid "View Schedule"
1109
  msgstr ""
1110
 
1111
+ #: addons/banking/services/mycred-service-payouts.php:472
1112
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1113
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1114
+ msgid "View"
1115
  msgstr ""
1116
 
1117
+ #: addons/banking/services/mycred-service-payouts.php:472
1118
+ msgid "Delete Schedule"
1119
  msgstr ""
1120
 
1121
+ #: addons/banking/services/mycred-service-payouts.php:472
1122
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
1123
+ #: includes/classes/class.query-log.php:1139
1124
+ #: includes/classes/class.query-log.php:1739
1125
+ #: modules/mycred-module-hooks.php:341 modules/mycred-module-hooks.php:459
1126
+ #: modules/mycred-module-settings.php:759
1127
+ #: modules/mycred-module-settings.php:785
1128
+ msgid "Delete"
1129
  msgstr ""
1130
 
1131
+ #: addons/banking/services/mycred-service-payouts.php:523
1132
+ #: addons/banking/services/mycred-service-payouts.php:766
1133
+ msgid "Min. Balance"
1134
  msgstr ""
1135
 
1136
+ #: addons/banking/services/mycred-service-payouts.php:526
1137
+ #: addons/banking/services/mycred-service-payouts.php:773
1138
+ msgid "Max. Balance"
1139
  msgstr ""
1140
 
1141
+ #: addons/banking/services/mycred-service-payouts.php:531
1142
+ msgid "Exclude Users"
1143
  msgstr ""
1144
 
1145
+ #: addons/banking/services/mycred-service-payouts.php:533
1146
+ msgid "Include Users"
 
1147
  msgstr ""
1148
 
1149
+ #: addons/banking/services/mycred-service-payouts.php:540
1150
+ msgid "Exclude Roles"
1151
  msgstr ""
1152
 
1153
+ #: addons/banking/services/mycred-service-payouts.php:542
1154
+ msgid "Include Roles"
 
1155
  msgstr ""
1156
 
1157
+ #: addons/banking/services/mycred-service-payouts.php:553
1158
+ #: addons/import/myCRED-addon-import.php:520 includes/mycred-admin.php:765
1159
+ #: modules/mycred-module-management.php:741
1160
+ msgid "ID"
1161
  msgstr ""
1162
 
1163
+ #: addons/banking/services/mycred-service-payouts.php:559
1164
+ #: addons/banking/services/mycred-service-payouts.php:879
1165
+ msgid "Job Title"
1166
  msgstr ""
1167
 
1168
+ #: addons/banking/services/mycred-service-payouts.php:565
1169
+ #: addons/banking/services/mycred-service-payouts.php:880
1170
+ #: addons/email-notices/myCRED-addon-email-notices.php:359
1171
+ msgid "Status"
 
 
 
1172
  msgstr ""
1173
 
1174
+ #: addons/banking/services/mycred-service-payouts.php:573
1175
+ msgid "Start Date"
 
 
 
1176
  msgstr ""
1177
 
1178
+ #: addons/banking/services/mycred-service-payouts.php:573
1179
+ msgid "Last Run"
 
1180
  msgstr ""
1181
 
1182
+ #: addons/banking/services/mycred-service-payouts.php:579
1183
+ msgid "Eligible"
 
 
1184
  msgstr ""
1185
 
1186
+ #: addons/banking/services/mycred-service-payouts.php:580
1187
+ #, php-format
1188
+ msgid "1 User"
1189
+ msgid_plural "%d Users"
1190
+ msgstr[0] ""
1191
+ msgstr[1] ""
1192
 
1193
+ #: addons/banking/services/mycred-service-payouts.php:585
1194
+ msgid "Runs"
1195
  msgstr ""
1196
 
1197
+ #: addons/banking/services/mycred-service-payouts.php:586
1198
+ msgid "Infinite"
1199
  msgstr ""
1200
 
1201
+ #: addons/banking/services/mycred-service-payouts.php:591
1202
+ #: addons/gateway/carts/mycred-wpecommerce.php:396
1203
+ msgid "Payout"
1204
  msgstr ""
1205
 
1206
+ #: addons/banking/services/mycred-service-payouts.php:599
1207
+ #: addons/banking/services/mycred-service-payouts.php:760
1208
+ #: addons/coupons/myCRED-addon-coupons.php:259
1209
+ #: addons/transfer/myCRED-addon-transfer.php:352
1210
+ #: includes/hooks/mycred-hook-link-clicks.php:291
1211
+ msgid "Limits"
1212
  msgstr ""
1213
 
1214
+ #: addons/banking/services/mycred-service-payouts.php:609
1215
+ msgid "Will payout even if the central bank account has run out of funds."
1216
  msgstr ""
1217
 
1218
+ #: addons/banking/services/mycred-service-payouts.php:614
1219
+ msgid "Paid Out"
 
 
1220
  msgstr ""
1221
 
1222
+ #: addons/banking/services/mycred-service-payouts.php:615
1223
+ #: addons/transfer/includes/mycred-transfer-object.php:258
1224
+ msgid "Completed"
1225
  msgstr ""
1226
 
1227
+ #: addons/banking/services/mycred-service-payouts.php:616
1228
+ msgid "Misses"
 
1229
  msgstr ""
1230
 
1231
+ #: addons/banking/services/mycred-service-payouts.php:617
1232
+ msgid "Runs Left"
 
1233
  msgstr ""
1234
 
1235
+ #: addons/banking/services/mycred-service-payouts.php:637
1236
+ msgid ""
1237
+ "A miss is when a payout was declined by the plugin. This can be due to "
1238
+ "custom code declining the payout or if the user is excluded."
1239
  msgstr ""
1240
 
1241
+ #: addons/banking/services/mycred-service-payouts.php:682
1242
+ msgid "Schedule Title"
1243
  msgstr ""
1244
 
1245
+ #: addons/banking/services/mycred-service-payouts.php:694
1246
+ #: addons/banking/services/mycred-service-payouts.php:881
1247
+ msgid "Frequency"
1248
  msgstr ""
1249
 
1250
+ #: addons/banking/services/mycred-service-payouts.php:715
1251
+ msgid "Payout even if the central bank account runs out of funds."
 
 
 
 
1252
  msgstr ""
1253
 
1254
+ #: addons/banking/services/mycred-service-payouts.php:722
1255
+ msgid "First Payout"
 
1256
  msgstr ""
1257
 
1258
+ #: addons/banking/services/mycred-service-payouts.php:740
1259
+ #: addons/buy-creds/modules/buycred-module-core.php:922
1260
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:202
1261
+ #: includes/mycred-log.php:634 includes/classes/class.query-export.php:263
1262
+ #: includes/classes/class.query-export.php:399
1263
+ #: includes/classes/class.query-log.php:1012
1264
+ #: includes/classes/class.query-log.php:1025 modules/mycred-module-log.php:151
1265
+ #: modules/mycred-module-log.php:982 modules/mycred-module-management.php:235
1266
+ msgid "Date"
1267
  msgstr ""
1268
 
1269
+ #: addons/banking/services/mycred-service-payouts.php:754
1270
+ msgid "Repeat"
 
1271
  msgstr ""
1272
 
1273
+ #: addons/banking/services/mycred-service-payouts.php:756
1274
+ msgid "Use -1 for infinite runs."
1275
  msgstr ""
1276
 
1277
+ #: addons/banking/services/mycred-service-payouts.php:768
1278
+ #: addons/banking/services/mycred-service-payouts.php:775
1279
+ #: includes/hooks/mycred-hook-comments.php:373
1280
+ #: includes/hooks/mycred-hook-comments.php:380
1281
+ #: includes/hooks/mycred-hook-comments.php:424
1282
+ #: includes/hooks/mycred-hook-comments.php:431
1283
+ #: includes/hooks/mycred-hook-comments.php:450
1284
+ #: includes/hooks/mycred-hook-comments.php:457
1285
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:293
1286
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:312
1287
+ #: plugins/mycred-hook-affiliatewp.php:293
1288
+ #: plugins/mycred-hook-affiliatewp.php:312
1289
+ msgid "Use zero to disable."
1290
  msgstr ""
1291
 
1292
+ #: addons/banking/services/mycred-service-payouts.php:784
1293
+ msgid "Limit by ID"
1294
  msgstr ""
1295
 
1296
+ #: addons/banking/services/mycred-service-payouts.php:798
1297
+ msgid "Limit by Role(s)"
 
 
 
1298
  msgstr ""
1299
 
1300
+ #: addons/banking/services/mycred-service-payouts.php:825
1301
+ #: addons/email-notices/myCRED-addon-email-notices.php:1166
1302
+ msgid "Schedule"
1303
  msgstr ""
1304
 
1305
+ #: addons/banking/services/mycred-service-payouts.php:846
1306
+ msgid "Include:"
1307
  msgstr ""
1308
 
1309
+ #: addons/banking/services/mycred-service-payouts.php:847
1310
+ msgid "Exclude:"
1311
  msgstr ""
1312
 
1313
+ #: addons/banking/services/mycred-service-payouts.php:872
1314
+ msgid ""
1315
+ "As long as this service remains disabled, none of your scheduled payouts "
1316
+ "will run!"
1317
  msgstr ""
1318
 
1319
+ #: addons/banking/services/mycred-service-payouts.php:875
1320
+ msgid "Schedules"
 
1321
  msgstr ""
1322
 
1323
+ #: addons/banking/services/mycred-service-payouts.php:882
1324
+ msgid "Last Ran"
1325
  msgstr ""
1326
 
1327
+ #: addons/banking/services/mycred-service-payouts.php:883
1328
+ msgid "Next Run"
1329
  msgstr ""
1330
 
1331
+ #: addons/banking/services/mycred-service-payouts.php:891
1332
+ msgid "No schedules found."
1333
  msgstr ""
1334
 
1335
+ #: addons/banking/services/mycred-service-payouts.php:955
1336
+ msgid "Schedule Added"
1337
  msgstr ""
1338
 
1339
+ #: addons/banking/services/mycred-service-payouts.php:962
1340
+ msgid ""
1341
+ "While the recurring payout has been successfully saved, based on the limits "
1342
+ "you set, right now there are no users that are eligible for a payout!"
1343
  msgstr ""
1344
 
1345
+ #: addons/banking/services/mycred-service-payouts.php:974
1346
+ #: addons/banking/services/mycred-service-payouts.php:988
1347
+ msgid "Schedule not found. Please refresh this page and try again."
1348
  msgstr ""
1349
 
1350
+ #: addons/banking/services/mycred-service-payouts.php:993
1351
+ msgid "Schedule Deleted"
 
1352
  msgstr ""
1353
 
1354
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:182
1355
+ msgid "Buyer is excluded from this point type."
 
 
 
1356
  msgstr ""
1357
 
1358
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:186
1359
+ msgid "Recipient is excluded from this point type. "
 
 
1360
  msgstr ""
1361
 
1362
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:191
1363
+ msgid "An amount value is required."
1364
  msgstr ""
1365
 
1366
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:196
1367
+ #, php-format
1368
+ msgid "The amount must be less than %d."
 
 
1369
  msgstr ""
1370
 
1371
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:201
1372
+ msgid "You have exceeded the limit."
1373
  msgstr ""
1374
 
1375
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:401
1376
+ msgid "Test Mode"
 
 
1377
  msgstr ""
1378
 
1379
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:417
1380
+ msgid "Continue"
 
 
 
1381
  msgstr ""
1382
 
1383
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:491
1384
+ #: addons/buy-creds/gateways/skrill.php:193
1385
+ #: addons/buy-creds/includes/buycred-shortcodes.php:250
1386
+ #: addons/buy-creds/modules/buycred-module-pending.php:617
1387
+ #: addons/email-notices/myCRED-addon-email-notices.php:423
1388
+ #: addons/email-notices/myCRED-addon-email-notices.php:426
1389
+ #: addons/email-notices/myCRED-addon-email-notices.php:429
1390
+ #: addons/transfer/includes/mycred-transfer-object.php:822
1391
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:29
1392
+ #: addons/transfer/includes/mycred-transfer-widgets.php:113
1393
+ msgid "Recipient"
1394
  msgstr ""
1395
 
1396
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:493
1397
+ #: addons/buy-creds/includes/buycred-shortcodes.php:346
1398
+ #: addons/buy-creds/modules/buycred-module-pending.php:317
1399
+ #: addons/buy-creds/modules/buycred-module-pending.php:689
1400
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:204
1401
+ msgid "Cost"
1402
  msgstr ""
1403
 
1404
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:502
1405
+ #: addons/gateway/carts/mycred-wpecommerce.php:107
1406
+ msgid "Item"
1407
  msgstr ""
1408
 
1409
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:522
1410
+ #: addons/buy-creds/includes/buycred-shortcodes.php:343
1411
+ #: addons/buy-creds/modules/buycred-module-core.php:925
1412
+ #: addons/buy-creds/modules/buycred-module-pending.php:313
1413
+ msgid "Transaction ID"
1414
  msgstr ""
1415
 
1416
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:535
1417
+ msgid "cancel purchase"
1418
  msgstr ""
1419
 
1420
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593
1421
+ msgid "Select currency"
1422
  msgstr ""
1423
 
1424
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:662
1425
+ #, php-format
1426
+ msgctxt "%s is replaced with the point amount and name."
1427
+ msgid "Received new request to purchase %s."
1428
  msgstr ""
1429
 
1430
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1171
1431
+ msgid "Test Payment"
1432
  msgstr ""
1433
 
1434
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1177
1435
+ #: addons/gateway/carts/mycred-marketpress.php:179
1436
+ msgid "Payment"
1437
  msgstr ""
1438
 
1439
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1205
1440
+ #: addons/buy-creds/includes/buycred-shortcodes.php:326
1441
+ #: modules/mycred-module-hooks.php:381
1442
+ #: modules/mycred-module-management.php:583
1443
+ msgid "Cancel"
1444
  msgstr ""
1445
 
1446
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1302
1447
+ msgid "First Name"
 
 
1448
  msgstr ""
1449
 
1450
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1308
1451
+ msgid "Last Name"
 
 
1452
  msgstr ""
1453
 
1454
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1316
1455
+ msgid "Address Line 1"
1456
  msgstr ""
1457
 
1458
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1324
1459
+ msgid "Address Line 2"
1460
  msgstr ""
1461
 
1462
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1332
1463
+ msgid "City"
1464
  msgstr ""
1465
 
1466
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1338
1467
+ msgid "Zip"
 
 
 
1468
  msgstr ""
1469
 
1470
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1346
1471
+ msgid "State"
1472
  msgstr ""
1473
 
1474
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1354
1475
+ msgid "Country"
 
1476
  msgstr ""
1477
 
1478
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1359
1479
+ msgid "Choose Country"
 
1480
  msgstr ""
1481
 
1482
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
1483
  #, php-format
1484
+ msgid "Continue to %s"
1485
  msgstr ""
1486
 
1487
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
1488
+ msgid "Click here if you are not automatically redirected"
1489
  msgstr ""
1490
 
1491
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2048
1492
+ msgid "January"
1493
  msgstr ""
1494
 
1495
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2049
1496
+ msgid "February"
1497
  msgstr ""
1498
 
1499
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2050
1500
+ msgid "March"
1501
  msgstr ""
1502
 
1503
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2051
1504
+ msgid "April"
 
 
1505
  msgstr ""
1506
 
1507
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2052
1508
+ msgid "May"
1509
  msgstr ""
1510
 
1511
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2053
1512
+ msgid "June"
1513
  msgstr ""
1514
 
1515
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2054
1516
+ msgid "July"
1517
  msgstr ""
1518
 
1519
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2055
1520
+ msgid "August"
1521
  msgstr ""
1522
 
1523
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2056
1524
+ msgid "September"
 
 
 
 
1525
  msgstr ""
1526
 
1527
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2057
1528
+ msgid "October"
1529
  msgstr ""
1530
 
1531
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2058
1532
+ msgid "November"
1533
  msgstr ""
1534
 
1535
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:2059
1536
+ msgid "December"
 
 
1537
  msgstr ""
1538
 
1539
+ #: addons/buy-creds/gateways/bank-transfer.php:164
1540
+ #: addons/buy-creds/gateways/bitpay.php:365
1541
+ #: addons/buy-creds/gateways/netbilling.php:220
1542
+ #: addons/buy-creds/gateways/paypal-standard.php:286
1543
+ #: addons/buy-creds/gateways/skrill.php:252
1544
+ #: addons/buy-creds/gateways/zombaio.php:338
1545
+ msgid "Details"
1546
  msgstr ""
1547
 
1548
+ #: addons/buy-creds/gateways/bank-transfer.php:166
1549
+ #: addons/buy-creds/gateways/skrill.php:293
1550
+ #: addons/gateway/carts/mycred-woocommerce.php:96
1551
+ #: addons/ranks/myCRED-addon-ranks.php:1550
1552
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:203
1553
+ #: addons/transfer/includes/mycred-transfer-widgets.php:91
1554
+ #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
1555
+ #: includes/mycred-widgets.php:567
1556
+ #: includes/hooks/mycred-hook-referrals.php:666
1557
+ #: includes/widgets/mycred-widget-balance.php:176
1558
+ #: includes/widgets/mycred-widget-leaderboard.php:105
1559
+ #: includes/widgets/mycred-widget-wallet.php:117
1560
+ msgid "Title"
1561
  msgstr ""
1562
 
1563
+ #: addons/buy-creds/gateways/bank-transfer.php:170
1564
+ #: addons/buy-creds/gateways/bitpay.php:483
1565
+ #: addons/buy-creds/gateways/netbilling.php:239
1566
+ #: addons/buy-creds/gateways/paypal-standard.php:296
1567
+ #: addons/buy-creds/gateways/skrill.php:266
1568
+ #: addons/buy-creds/gateways/zombaio.php:348
1569
+ msgid "Logo URL"
1570
  msgstr ""
1571
 
1572
+ #: addons/buy-creds/gateways/bank-transfer.php:177
1573
+ #: addons/buy-creds/gateways/bitpay.php:535
1574
+ #: addons/buy-creds/gateways/netbilling.php:246
1575
+ #: addons/buy-creds/gateways/paypal-standard.php:303
1576
+ #: addons/buy-creds/gateways/skrill.php:276
1577
+ #: addons/buy-creds/gateways/zombaio.php:395
1578
+ #: addons/buy-creds/modules/buycred-module-pending.php:695
1579
+ msgid "Currency"
1580
  msgstr ""
1581
 
1582
+ #: addons/buy-creds/gateways/bank-transfer.php:181
1583
+ #: addons/buy-creds/gateways/bitpay.php:540
1584
+ #: addons/buy-creds/gateways/netbilling.php:250
1585
+ #: addons/buy-creds/gateways/paypal-standard.php:309
1586
+ #: addons/buy-creds/gateways/skrill.php:282
1587
+ #: addons/buy-creds/gateways/zombaio.php:401
1588
+ msgid "Exchange Rates"
1589
  msgstr ""
1590
 
1591
+ #: addons/buy-creds/gateways/bank-transfer.php:191
1592
+ msgid "Bank Account Information"
1593
  msgstr ""
1594
 
1595
+ #: addons/buy-creds/gateways/bitpay.php:131
1596
+ #: addons/buy-creds/gateways/netbilling.php:110
1597
+ #: addons/buy-creds/gateways/paypal-standard.php:168
1598
+ #: addons/buy-creds/gateways/skrill.php:111
1599
+ #: addons/buy-creds/gateways/zombaio.php:236
1600
+ msgid "Failed to credit users account."
1601
  msgstr ""
1602
 
1603
+ #: addons/buy-creds/gateways/bitpay.php:370
1604
+ #: addons/buy-creds/gateways/bitpay.php:448
1605
+ msgid "API Token"
 
1606
  msgstr ""
1607
 
1608
+ #: addons/buy-creds/gateways/bitpay.php:464
1609
+ msgid "Are you sure you want to do this?"
1610
  msgstr ""
1611
 
1612
+ #: addons/buy-creds/gateways/bitpay.php:467
1613
+ msgid "Removed - Remember to save your changes."
1614
  msgstr ""
1615
 
1616
+ #: addons/buy-creds/gateways/bitpay.php:479
1617
+ #: addons/buy-creds/gateways/netbilling.php:235
1618
+ #: addons/buy-creds/gateways/paypal-standard.php:292
1619
+ #: addons/buy-creds/gateways/skrill.php:171
1620
+ #: addons/buy-creds/gateways/skrill.php:262
1621
+ msgid "Item Name"
1622
  msgstr ""
1623
 
1624
+ #: addons/buy-creds/gateways/bitpay.php:489
1625
+ msgid "Transaction Speed"
1626
  msgstr ""
1627
 
1628
+ #: addons/buy-creds/gateways/bitpay.php:494
1629
+ msgid "High"
 
 
1630
  msgstr ""
1631
 
1632
+ #: addons/buy-creds/gateways/bitpay.php:495
1633
+ msgid "Medium"
1634
  msgstr ""
1635
 
1636
+ #: addons/buy-creds/gateways/bitpay.php:496
1637
+ msgid "Low"
 
 
 
1638
  msgstr ""
1639
 
1640
+ #: addons/buy-creds/gateways/bitpay.php:511
1641
+ msgid "Full Notifications"
1642
  msgstr ""
1643
 
1644
+ #: addons/buy-creds/gateways/bitpay.php:516
1645
+ #: addons/buy-creds/gateways/zombaio.php:359
1646
+ #: addons/transfer/myCRED-addon-transfer.php:278
1647
+ #: includes/mycred-network.php:184 includes/mycred-network.php:198
1648
+ msgid "No"
1649
  msgstr ""
1650
 
1651
+ #: addons/buy-creds/gateways/bitpay.php:517
1652
+ #: addons/buy-creds/gateways/zombaio.php:360
1653
+ #: addons/transfer/myCRED-addon-transfer.php:277
1654
+ #: includes/mycred-network.php:180 includes/mycred-network.php:194
1655
+ msgid "Yes"
1656
  msgstr ""
1657
 
1658
+ #: addons/buy-creds/gateways/bitpay.php:536
1659
+ msgid "Currency Code"
1660
  msgstr ""
1661
 
1662
+ #: addons/buy-creds/gateways/netbilling.php:93
1663
+ #: addons/buy-creds/gateways/paypal-standard.php:145
1664
+ #: addons/buy-creds/gateways/skrill.php:88
1665
+ #, php-format
1666
+ msgid "Price mismatch. Expected: %s Received: %s"
1667
  msgstr ""
1668
 
1669
+ #: addons/buy-creds/gateways/netbilling.php:99
1670
+ #: addons/buy-creds/gateways/paypal-standard.php:157
1671
+ #: addons/buy-creds/gateways/skrill.php:100
1672
+ #, php-format
1673
+ msgid "Payment not completed. Received: %s"
1674
  msgstr ""
1675
 
1676
+ #: addons/buy-creds/gateways/netbilling.php:222
1677
+ msgid "Account ID"
1678
  msgstr ""
1679
 
1680
+ #: addons/buy-creds/gateways/netbilling.php:226
1681
+ msgid "Site Tag"
 
 
 
 
 
 
 
1682
  msgstr ""
1683
 
1684
+ #: addons/buy-creds/gateways/netbilling.php:230
1685
+ msgid "Order Integrity Key"
 
 
 
1686
  msgstr ""
1687
 
1688
+ #: addons/buy-creds/gateways/netbilling.php:232
1689
+ msgid "Found under Step 12 on the Fraud Defense page."
 
 
 
 
 
 
 
1690
  msgstr ""
1691
 
1692
+ #: addons/buy-creds/gateways/netbilling.php:256
1693
+ msgid "Postback CGI URL"
 
 
 
 
1694
  msgstr ""
1695
 
1696
+ #: addons/buy-creds/gateways/netbilling.php:258
1697
+ msgid ""
1698
+ "For this gateway to work, you must login to your NETbilling account and edit "
1699
+ "your site. Under \"Default payment form settings\" make sure the Postback "
1700
+ "CGI URL is set to the above address and \"Return method\" is set to POST."
1701
  msgstr ""
1702
 
1703
+ #: addons/buy-creds/gateways/paypal-standard.php:151
1704
+ #: addons/buy-creds/gateways/skrill.php:94
1705
+ #, php-format
1706
+ msgid "Currency mismatch. Expected: %s Received: %s"
1707
  msgstr ""
1708
 
1709
+ #: addons/buy-creds/gateways/paypal-standard.php:192
1710
+ #: addons/buy-creds/gateways/skrill.php:135
1711
+ msgid "Success"
 
 
1712
  msgstr ""
1713
 
1714
+ #: addons/buy-creds/gateways/paypal-standard.php:193
1715
+ #: addons/buy-creds/gateways/skrill.php:136
1716
+ msgid "Thank you for your purchase"
 
1717
  msgstr ""
1718
 
1719
+ #: addons/buy-creds/gateways/paypal-standard.php:231
1720
+ #, php-format
1721
+ msgctxt "Return label. %s = Website name"
1722
+ msgid "Return to %s"
1723
  msgstr ""
1724
 
1725
+ #: addons/buy-creds/gateways/paypal-standard.php:288
1726
+ #: addons/buy-creds/gateways/skrill.php:254
1727
+ msgid "Account Email"
1728
  msgstr ""
1729
 
1730
+ #: addons/buy-creds/gateways/skrill.php:258
1731
+ msgid "Secret Word"
 
 
 
1732
  msgstr ""
1733
 
1734
+ #: addons/buy-creds/gateways/skrill.php:270
1735
+ msgid ""
1736
+ "Ask Skrill to send me a confirmation email for each successful purchase."
1737
  msgstr ""
1738
 
1739
+ #: addons/buy-creds/gateways/skrill.php:289
1740
+ msgid "Checkout Page"
 
 
 
1741
  msgstr ""
1742
 
1743
+ #: addons/buy-creds/gateways/skrill.php:294
1744
+ msgid ""
1745
+ "If left empty, your account email is used as title on the Skill Payment Page."
1746
  msgstr ""
1747
 
1748
+ #: addons/buy-creds/gateways/skrill.php:298
1749
+ msgid "Confirmation Note"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1750
  msgstr ""
1751
 
1752
+ #: addons/buy-creds/gateways/skrill.php:299
1753
+ msgid ""
1754
+ "Optional text to show user once a transaction has been successfully "
1755
+ "completed. This text is shown by Skrill."
1756
  msgstr ""
1757
 
1758
+ #: addons/buy-creds/gateways/zombaio.php:198
1759
+ #, php-format
1760
+ msgid "Duplicate transaction. Received: %s"
1761
  msgstr ""
1762
 
1763
+ #: addons/buy-creds/gateways/zombaio.php:204
1764
+ #, php-format
1765
+ msgid "Live transaction while debug mode is enabled! Received: %s"
1766
  msgstr ""
1767
 
1768
+ #: addons/buy-creds/gateways/zombaio.php:340
1769
+ msgid "Site ID"
 
1770
  msgstr ""
1771
 
1772
+ #: addons/buy-creds/gateways/zombaio.php:344
1773
+ msgid "GW Password"
 
 
 
 
1774
  msgstr ""
1775
 
1776
+ #: addons/buy-creds/gateways/zombaio.php:354
1777
+ msgid "IP Verification"
1778
  msgstr ""
1779
 
1780
+ #: addons/buy-creds/gateways/zombaio.php:374
1781
+ msgid "Language"
1782
  msgstr ""
1783
 
1784
+ #: addons/buy-creds/gateways/zombaio.php:385
1785
+ msgid "Pricing ID"
 
 
1786
  msgstr ""
1787
 
1788
+ #: addons/buy-creds/gateways/zombaio.php:390
1789
+ msgid "This pricing ID is a \"Dynamic Credits Purchase\" in Zombaio."
1790
+ msgstr ""
1791
+
1792
+ #: addons/buy-creds/gateways/zombaio.php:411
1793
+ msgid "Postback URL (ZScript)"
1794
+ msgstr ""
1795
+
1796
+ #: addons/buy-creds/gateways/zombaio.php:413
1797
+ msgid ""
1798
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
1799
+ "address and click validate."
1800
+ msgstr ""
1801
+
1802
+ #: addons/buy-creds/includes/buycred-functions.php:16
1803
+ msgid "Please login to purchase %_plural%"
1804
+ msgstr ""
1805
+
1806
+ #: addons/buy-creds/includes/buycred-functions.php:31
1807
+ msgid "Gift purchase from %display_name%."
1808
+ msgstr ""
1809
+
1810
+ #: addons/buy-creds/includes/buycred-functions.php:99
1811
+ msgid "Bank Transfer"
1812
+ msgstr ""
1813
+
1814
+ #: addons/buy-creds/includes/buycred-functions.php:466
1815
+ msgid "Unknown Gateway"
1816
+ msgstr ""
1817
+
1818
+ #: addons/buy-creds/includes/buycred-functions.php:470
1819
+ #: addons/buy-creds/includes/buycred-shortcodes.php:344
1820
+ #: addons/buy-creds/modules/buycred-module-core.php:920
1821
+ #: addons/buy-creds/modules/buycred-module-pending.php:318
1822
+ #: addons/buy-creds/modules/buycred-module-pending.php:664
1823
+ msgid "Gateway"
1824
+ msgstr ""
1825
+
1826
+ #: addons/buy-creds/includes/buycred-shortcodes.php:102
1827
+ msgid "Buy Now"
1828
+ msgstr ""
1829
+
1830
+ #: addons/buy-creds/includes/buycred-shortcodes.php:109
1831
+ #: addons/import/myCRED-addon-import.php:521
1832
+ #: modules/mycred-module-export.php:424 modules/mycred-module-export.php:472
1833
+ #: modules/mycred-module-management.php:747
1834
+ msgid "Username"
1835
+ msgstr ""
1836
+
1837
+ #: addons/buy-creds/includes/buycred-shortcodes.php:263
1838
+ msgid "Pay Using"
1839
+ msgstr ""
1840
+
1841
+ #: addons/buy-creds/includes/buycred-shortcodes.php:325
1842
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:27
1843
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
1844
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
1845
+ msgid "Pay Now"
1846
+ msgstr ""
1847
+
1848
+ #: addons/buy-creds/includes/buycred-shortcodes.php:347
1849
+ #: addons/buy-creds/modules/buycred-module-pending.php:625
1850
+ #: addons/coupons/myCRED-addon-coupons.php:263
1851
+ #: addons/coupons/myCRED-addon-coupons.php:507
1852
+ #: addons/email-notices/myCRED-addon-email-notices.php:363
1853
+ #: addons/gateway/carts/mycred-marketpress.php:385
1854
+ #: addons/gateway/carts/mycred-woocommerce.php:125
1855
+ #: addons/gateway/carts/mycred-woocommerce.php:166
1856
+ #: addons/gateway/carts/mycred-wpecommerce.php:383
1857
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:483
1858
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:463
1859
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:604
1860
+ #: addons/ranks/myCRED-addon-ranks.php:1257
1861
+ #: addons/ranks/myCRED-addon-ranks.php:1425
1862
+ #: addons/ranks/myCRED-addon-ranks.php:1432 includes/mycred-widgets.php:183
1863
+ #: includes/mycred-widgets.php:365 includes/classes/class.query-export.php:263
1864
+ #: includes/classes/class.query-export.php:391
1865
+ #: includes/importers/mycred-cubepoints.php:357
1866
+ #: includes/widgets/mycred-widget-balance.php:183
1867
+ #: includes/widgets/mycred-widget-leaderboard.php:111
1868
+ #: modules/mycred-module-export.php:424 modules/mycred-module-export.php:472
1869
+ msgid "Point Type"
1870
+ msgstr ""
1871
+
1872
+ #: addons/buy-creds/includes/buycred-shortcodes.php:348
1873
+ #: addons/buy-creds/modules/buycred-module-pending.php:513
1874
+ #: addons/ranks/myCRED-addon-ranks.php:1853
1875
+ #: modules/mycred-module-settings.php:687
1876
+ #: modules/mycred-module-settings.php:712
1877
+ msgid "Actions"
1878
+ msgstr ""
1879
+
1880
+ #: addons/buy-creds/includes/buycred-shortcodes.php:410
1881
+ msgid "No pending payments found"
1882
+ msgstr ""
1883
+
1884
+ #: addons/buy-creds/modules/buycred-module-core.php:28
1885
+ #: addons/buy-creds/modules/buycred-module-core.php:29
1886
+ #: addons/buy-creds/modules/buycred-module-core.php:30
1887
+ #: addons/buy-creds/modules/buycred-module-core.php:727
1888
+ msgid "Payment Gateways"
1889
+ msgstr ""
1890
+
1891
+ #: addons/buy-creds/modules/buycred-module-core.php:299
1892
+ msgid "Redirecting"
1893
+ msgstr ""
1894
+
1895
+ #: addons/buy-creds/modules/buycred-module-core.php:377
1896
+ msgid "Sale Setup"
1897
+ msgstr ""
1898
+
1899
+ #: addons/buy-creds/modules/buycred-module-core.php:400
1900
+ msgid "Minimum Amount"
1901
+ msgstr ""
1902
+
1903
+ #: addons/buy-creds/modules/buycred-module-core.php:408
1904
+ msgid "Maximum"
1905
+ msgstr ""
1906
+
1907
+ #: addons/buy-creds/modules/buycred-module-core.php:429
1908
+ msgid "Create a dedicated log for purchases."
1909
+ msgstr ""
1910
+
1911
+ #: addons/buy-creds/modules/buycred-module-core.php:434
1912
+ msgid "Checkout"
1913
+ msgstr ""
1914
+
1915
+ #: addons/buy-creds/modules/buycred-module-core.php:458
1916
+ msgid "Redirects"
1917
+ msgstr ""
1918
+
1919
+ #: addons/buy-creds/modules/buycred-module-core.php:463
1920
+ msgid ""
1921
+ "Where should users be redirected to upon successfully completing a purchase. "
1922
+ "You can nominate a specific URL or a page."
1923
+ msgstr ""
1924
+
1925
+ #: addons/buy-creds/modules/buycred-module-core.php:466
1926
+ #: addons/buy-creds/modules/buycred-module-core.php:496
1927
+ msgid "Redirect to Page"
1928
+ msgstr ""
1929
+
1930
+ #: addons/buy-creds/modules/buycred-module-core.php:482
1931
+ #: addons/buy-creds/modules/buycred-module-core.php:512
1932
+ msgid "Redirect to URL"
1933
+ msgstr ""
1934
+
1935
+ #: addons/buy-creds/modules/buycred-module-core.php:486
1936
+ #: addons/buy-creds/modules/buycred-module-core.php:516
1937
+ msgid "You can use %profile% for the base URL of the users profile."
1938
+ msgstr ""
1939
+
1940
+ #: addons/buy-creds/modules/buycred-module-core.php:493
1941
+ msgid ""
1942
+ "Where should users be redirected to if they cancel a transaction. You can "
1943
+ "nominate a specific URL or a page."
1944
+ msgstr ""
1945
+
1946
+ #: addons/buy-creds/modules/buycred-module-core.php:522
1947
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:525
1948
+ msgid "Templates"
1949
+ msgstr ""
1950
+
1951
+ #: addons/buy-creds/modules/buycred-module-core.php:527
1952
+ msgid "Login Message"
1953
+ msgstr ""
1954
+
1955
+ #: addons/buy-creds/modules/buycred-module-core.php:529
1956
+ msgid ""
1957
+ "Message to show in shortcodes when viewed by someone who is not logged in."
1958
+ msgstr ""
1959
+
1960
+ #: addons/buy-creds/modules/buycred-module-core.php:544
1961
+ msgid "Gifting"
1962
+ msgstr ""
1963
+
1964
+ #: addons/buy-creds/modules/buycred-module-core.php:550
1965
+ msgid "Allow users to buy %_plural% for other users."
1966
+ msgstr ""
1967
+
1968
+ #: addons/buy-creds/modules/buycred-module-core.php:553
1969
+ msgid "Allow users to buy %_plural% for content authors."
1970
+ msgstr ""
1971
+
1972
+ #: addons/buy-creds/modules/buycred-module-core.php:678
1973
+ msgid "buyCRED Purchase Log"
1974
+ msgstr ""
1975
+
1976
+ #: addons/buy-creds/modules/buycred-module-core.php:679
1977
+ #: addons/buy-creds/modules/buycred-module-core.php:930
1978
+ msgid "Purchase Log"
1979
+ msgstr ""
1980
+
1981
+ #: addons/buy-creds/modules/buycred-module-core.php:775
1982
+ msgid "Sandbox Mode"
1983
+ msgstr ""
1984
+
1985
+ #: addons/buy-creds/modules/buycred-module-core.php:783
1986
+ #: includes/importers/mycred-balances.php:247
1987
+ #: includes/importers/mycred-cubepoints.php:307
1988
+ #: includes/importers/mycred-log-entries.php:241
1989
+ #: modules/mycred-module-addons.php:342 modules/mycred-module-addons.php:384
1990
+ #: modules/mycred-module-hooks.php:295 modules/mycred-module-log.php:634
1991
+ #: modules/mycred-module-network.php:241 modules/mycred-module-network.php:276
1992
+ #: modules/mycred-module-network.php:292
1993
+ #: modules/mycred-module-settings.php:529
1994
+ msgid "Documentation"
1995
+ msgstr ""
1996
+
1997
+ #: addons/buy-creds/modules/buycred-module-core.php:804
1998
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:551
1999
+ #: modules/mycred-module-settings.php:828
2000
+ msgid "Update Settings"
2001
+ msgstr ""
2002
+
2003
+ #: addons/buy-creds/modules/buycred-module-core.php:872
2004
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:26
2005
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:475
2006
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:594
2007
+ msgid "Payments"
2008
+ msgstr ""
2009
+
2010
+ #: addons/buy-creds/modules/buycred-module-core.php:921
2011
+ #: addons/buy-creds/modules/buycred-module-pending.php:315
2012
+ msgid "Buyer"
2013
+ msgstr ""
2014
+
2015
+ #: addons/buy-creds/modules/buycred-module-core.php:924
2016
+ msgid "Payed"
2017
+ msgstr ""
2018
+
2019
+ #: addons/buy-creds/modules/buycred-module-core.php:1135
2020
+ msgid "No purchases found"
2021
+ msgstr ""
2022
+
2023
+ #: addons/buy-creds/modules/buycred-module-core.php:1257
2024
+ msgid "Users exchange rate when buying points."
2025
+ msgstr ""
2026
+
2027
+ #: addons/buy-creds/modules/buycred-module-core.php:1268
2028
+ msgid "buyCRED Exchange Rates"
2029
+ msgstr ""
2030
+
2031
+ #: addons/buy-creds/modules/buycred-module-core.php:1278
2032
+ #, php-format
2033
+ msgctxt "Points Name"
2034
+ msgid "Buying %s"
2035
+ msgstr ""
2036
+
2037
+ #: addons/buy-creds/modules/buycred-module-core.php:1280
2038
+ #: addons/sell-content/myCRED-addon-sell-content.php:396
2039
+ #: addons/sell-content/myCRED-addon-sell-content.php:480
2040
+ #: addons/stats/includes/mycred-stats-functions.php:403
2041
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:362
2042
+ #: modules/mycred-module-export.php:377 modules/mycred-module-network.php:285
2043
+ #: modules/mycred-module-network.php:301
2044
+ #: plugins/mycred-hook-affiliatewp.php:362
2045
+ msgid "Disabled"
2046
+ msgstr ""
2047
+
2048
+ #: addons/buy-creds/modules/buycred-module-core.php:1281
2049
+ msgid "This point type is not for sale."
2050
+ msgstr ""
2051
+
2052
+ #: addons/buy-creds/modules/buycred-module-core.php:1293
2053
+ #: addons/buy-creds/modules/buycred-module-core.php:1308
2054
+ #, php-format
2055
+ msgctxt "Buying Points"
2056
+ msgid "Buying %s"
2057
+ msgstr ""
2058
+
2059
+ #: addons/buy-creds/modules/buycred-module-core.php:1295
2060
+ #: addons/sell-content/myCRED-addon-sell-content.php:411
2061
+ #: includes/mycred-admin.php:404 modules/mycred-module-management.php:453
2062
+ #: modules/mycred-module-management.php:571
2063
+ msgid "Excluded"
2064
+ msgstr ""
2065
+
2066
+ #: addons/buy-creds/modules/buycred-module-core.php:1296
2067
+ #, php-format
2068
+ msgctxt "Points Name"
2069
+ msgid "User can not buy %s"
2070
+ msgstr ""
2071
+
2072
+ #: addons/buy-creds/modules/buycred-module-core.php:1311
2073
+ msgid "Leave empty to use the default rate."
2074
+ msgstr ""
2075
+
2076
+ #: addons/buy-creds/modules/buycred-module-pending.php:153
2077
+ msgctxt "Post Type General Name"
2078
+ msgid "Pending Payments"
2079
+ msgstr ""
2080
+
2081
+ #: addons/buy-creds/modules/buycred-module-pending.php:154
2082
+ msgctxt "Post Type Singular Name"
2083
+ msgid "Pending Payment"
2084
+ msgstr ""
2085
+
2086
+ #: addons/buy-creds/modules/buycred-module-pending.php:155
2087
+ #: addons/buy-creds/modules/buycred-module-pending.php:157
2088
+ #: addons/buy-creds/modules/buycred-module-pending.php:254
2089
+ #: addons/buy-creds/modules/buycred-module-pending.php:255
2090
+ msgid "Pending Payments"
2091
+ msgstr ""
2092
+
2093
+ #: addons/buy-creds/modules/buycred-module-pending.php:161
2094
+ msgid "Edit Pending Payment"
2095
+ msgstr ""
2096
+
2097
+ #: addons/buy-creds/modules/buycred-module-pending.php:164
2098
+ #: addons/buy-creds/modules/buycred-module-pending.php:165
2099
+ msgid "Not found in Trash"
2100
+ msgstr ""
2101
+
2102
+ #: addons/buy-creds/modules/buycred-module-pending.php:195
2103
+ #: addons/buy-creds/modules/buycred-module-pending.php:196
2104
+ #: addons/buy-creds/modules/buycred-module-pending.php:197
2105
+ #: addons/buy-creds/modules/buycred-module-pending.php:198
2106
+ #: addons/buy-creds/modules/buycred-module-pending.php:199
2107
+ #: addons/buy-creds/modules/buycred-module-pending.php:200
2108
+ #: addons/buy-creds/modules/buycred-module-pending.php:201
2109
+ #: addons/buy-creds/modules/buycred-module-pending.php:202
2110
+ #: addons/buy-creds/modules/buycred-module-pending.php:203
2111
+ msgid "Payment Updated."
2112
+ msgstr ""
2113
+
2114
+ #: addons/buy-creds/modules/buycred-module-pending.php:232
2115
+ msgid "Pending payment successfully credited to account."
2116
+ msgstr ""
2117
+
2118
+ #: addons/buy-creds/modules/buycred-module-pending.php:235
2119
+ msgid "Failed to credit the pending payment to account."
2120
+ msgstr ""
2121
+
2122
+ #: addons/buy-creds/modules/buycred-module-pending.php:319
2123
+ msgid "Type"
2124
+ msgstr ""
2125
+
2126
+ #: addons/buy-creds/modules/buycred-module-pending.php:416
2127
+ #: addons/buy-creds/modules/buycred-module-pending.php:546
2128
+ msgid "Pay Out"
2129
+ msgstr ""
2130
+
2131
+ #: addons/buy-creds/modules/buycred-module-pending.php:490
2132
+ msgid "Pending Payment"
2133
+ msgstr ""
2134
+
2135
+ #: addons/buy-creds/modules/buycred-module-pending.php:541
2136
+ #: modules/mycred-module-hooks.php:344 modules/mycred-module-hooks.php:462
2137
+ msgid "Save"
2138
+ msgstr ""
2139
+
2140
+ #: addons/buy-creds/modules/buycred-module-pending.php:547
2141
+ msgid "Trash"
2142
+ msgstr ""
2143
+
2144
+ #: addons/buy-creds/modules/buycred-module-pending.php:558
2145
+ #: addons/email-notices/includes/mycred-email-shortcodes.php:94
2146
+ msgid "Save Changes"
2147
+ msgstr ""
2148
+
2149
+ #: addons/buy-creds/modules/buycred-module-pending.php:611
2150
+ msgid "Payer"
2151
+ msgstr ""
2152
+
2153
+ #: addons/buy-creds/modules/buycred-module-pending.php:720
2154
+ msgid "Pending request created."
2155
+ msgstr ""
2156
+
2157
+ #: addons/buy-creds/modules/buycred-module-pending.php:768
2158
+ #, php-format
2159
+ msgid "Pending payment updated by %s"
2160
+ msgstr ""
2161
+
2162
+ #: addons/coupons/myCRED-addon-coupons.php:105
2163
+ #: addons/coupons/myCRED-addon-coupons.php:111
2164
+ #: addons/coupons/myCRED-addon-coupons.php:177
2165
+ #: addons/coupons/myCRED-addon-coupons.php:178
2166
+ #: addons/coupons/myCRED-addon-coupons.php:689
2167
+ msgid "Coupons"
2168
+ msgstr ""
2169
+
2170
+ #: addons/coupons/myCRED-addon-coupons.php:106
2171
+ msgid "Coupon"
2172
+ msgstr ""
2173
+
2174
+ #: addons/coupons/myCRED-addon-coupons.php:107
2175
+ #: addons/coupons/myCRED-addon-coupons.php:108
2176
+ msgid "Create New"
2177
+ msgstr ""
2178
+
2179
+ #: addons/coupons/myCRED-addon-coupons.php:109
2180
+ msgid "Edit Coupon"
2181
+ msgstr ""
2182
+
2183
+ #: addons/coupons/myCRED-addon-coupons.php:110
2184
+ msgid "New Coupon"
2185
+ msgstr ""
2186
+
2187
+ #: addons/coupons/myCRED-addon-coupons.php:113
2188
+ msgid "Search coupons"
2189
+ msgstr ""
2190
+
2191
+ #: addons/coupons/myCRED-addon-coupons.php:114
2192
+ msgid "No coupons found"
2193
+ msgstr ""
2194
+
2195
+ #: addons/coupons/myCRED-addon-coupons.php:115
2196
+ msgid "No coupons found in Trash"
2197
+ msgstr ""
2198
+
2199
+ #: addons/coupons/myCRED-addon-coupons.php:117
2200
+ #: addons/email-notices/myCRED-addon-email-notices.php:1150
2201
+ msgid "Email Notices"
2202
+ msgstr ""
2203
+
2204
+ #: addons/coupons/myCRED-addon-coupons.php:148
2205
+ #: addons/coupons/myCRED-addon-coupons.php:149
2206
+ #: addons/coupons/myCRED-addon-coupons.php:150
2207
+ #: addons/coupons/myCRED-addon-coupons.php:151
2208
+ #: addons/coupons/myCRED-addon-coupons.php:154
2209
+ #: addons/coupons/myCRED-addon-coupons.php:155
2210
+ #: addons/coupons/myCRED-addon-coupons.php:156
2211
+ #: addons/coupons/myCRED-addon-coupons.php:157
2212
+ msgid "Coupon updated."
2213
+ msgstr ""
2214
+
2215
+ #: addons/coupons/myCRED-addon-coupons.php:153
2216
+ msgid "Coupon published."
2217
+ msgstr ""
2218
+
2219
+ #: addons/coupons/myCRED-addon-coupons.php:239
2220
+ #: addons/coupons/myCRED-addon-coupons.php:256
2221
+ msgid "Coupon Code"
2222
+ msgstr ""
2223
+
2224
+ #: addons/coupons/myCRED-addon-coupons.php:257
2225
+ #: addons/coupons/myCRED-addon-coupons.php:500
2226
+ msgid "Value"
2227
+ msgstr ""
2228
+
2229
+ #: addons/coupons/myCRED-addon-coupons.php:258
2230
+ msgid "Used"
2231
+ msgstr ""
2232
+
2233
+ #: addons/coupons/myCRED-addon-coupons.php:260
2234
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:205
2235
+ msgid "Expires"
2236
+ msgstr ""
2237
+
2238
+ #: addons/coupons/myCRED-addon-coupons.php:302
2239
+ #: addons/coupons/myCRED-addon-coupons.php:636
2240
+ #, php-format
2241
+ msgid "1 time"
2242
+ msgid_plural "%d times"
2243
+ msgstr[0] ""
2244
+ msgstr[1] ""
2245
+
2246
+ #: addons/coupons/myCRED-addon-coupons.php:310
2247
+ #: includes/hooks/mycred-hook-referrals.php:50
2248
+ #: includes/widgets/mycred-widget-leaderboard.php:125
2249
+ #: modules/mycred-module-management.php:463
2250
+ msgid "Total"
2251
+ msgstr ""
2252
+
2253
+ #: addons/coupons/myCRED-addon-coupons.php:310
2254
+ msgid "Per User"
2255
+ msgstr ""
2256
+
2257
+ #: addons/coupons/myCRED-addon-coupons.php:325
2258
+ msgid "Expired"
2259
+ msgstr ""
2260
+
2261
+ #: addons/coupons/myCRED-addon-coupons.php:331
2262
+ #, php-format
2263
+ msgid "In %s time"
2264
+ msgstr ""
2265
+
2266
+ #: addons/coupons/myCRED-addon-coupons.php:419
2267
+ msgid "Coupon Setup"
2268
+ msgstr ""
2269
+
2270
+ #: addons/coupons/myCRED-addon-coupons.php:428
2271
+ msgid "Coupon Limits"
2272
+ msgstr ""
2273
+
2274
+ #: addons/coupons/myCRED-addon-coupons.php:437
2275
+ msgid "Coupon Requirements"
2276
+ msgstr ""
2277
+
2278
+ #: addons/coupons/myCRED-addon-coupons.php:447
2279
+ #: includes/classes/class.query-log.php:2421
2280
+ msgid "Coupon Usage"
2281
+ msgstr ""
2282
+
2283
+ #: addons/coupons/myCRED-addon-coupons.php:473
2284
+ msgid ""
2285
+ "Warning. The previous expiration date set for this coupon was formatted "
2286
+ "incorrectly and was deleted. If you still want the coupon to expire, please "
2287
+ "enter a new date or leave empty to disable."
2288
+ msgstr ""
2289
+
2290
+ #: addons/coupons/myCRED-addon-coupons.php:502
2291
+ msgid "The amount of %plural% a user receives when redeeming this coupon."
2292
+ msgstr ""
2293
+
2294
+ #: addons/coupons/myCRED-addon-coupons.php:511
2295
+ msgid "Select the point type that this coupon is applied."
2296
+ msgstr ""
2297
+
2298
+ #: addons/coupons/myCRED-addon-coupons.php:523
2299
+ msgid "Expire"
2300
+ msgstr ""
2301
+
2302
+ #: addons/coupons/myCRED-addon-coupons.php:525
2303
+ msgid ""
2304
+ "Optional date when this coupon expires. Expired coupons will be trashed."
2305
+ msgstr ""
2306
+
2307
+ #: addons/coupons/myCRED-addon-coupons.php:553
2308
+ msgid "Global Maximum"
2309
+ msgstr ""
2310
+
2311
+ #: addons/coupons/myCRED-addon-coupons.php:555
2312
+ msgid ""
2313
+ "The maximum number of times this coupon can be used in total. Once this is "
2314
+ "reached, the coupon is automatically trashed."
2315
+ msgstr ""
2316
+
2317
+ #: addons/coupons/myCRED-addon-coupons.php:560
2318
+ msgid "User Maximum"
2319
+ msgstr ""
2320
+
2321
+ #: addons/coupons/myCRED-addon-coupons.php:562
2322
+ msgid "The maximum number of times this coupon can be used by a user."
2323
+ msgstr ""
2324
+
2325
+ #: addons/coupons/myCRED-addon-coupons.php:595
2326
+ msgid ""
2327
+ "Optional minimum balance a user must have in order to use this coupon. Use "
2328
+ "zero to disable."
2329
+ msgstr ""
2330
+
2331
+ #: addons/coupons/myCRED-addon-coupons.php:602
2332
+ msgid "Maximum Balance"
2333
+ msgstr ""
2334
+
2335
+ #: addons/coupons/myCRED-addon-coupons.php:607
2336
+ msgid ""
2337
+ "Optional maximum balance a user can have in order to use this coupon. Use "
2338
+ "zero to disable."
2339
+ msgstr ""
2340
+
2341
+ #: addons/coupons/myCRED-addon-coupons.php:692
2342
+ msgid "Message Templates"
2343
+ msgstr ""
2344
+
2345
+ #: addons/coupons/myCRED-addon-coupons.php:696
2346
+ msgid "Invalid Coupon Message"
2347
+ msgstr ""
2348
+
2349
+ #: addons/coupons/myCRED-addon-coupons.php:698
2350
+ msgid "Message to show when users try to use a coupon that does not exists."
2351
+ msgstr ""
2352
+
2353
+ #: addons/coupons/myCRED-addon-coupons.php:703
2354
+ msgid "Expired Coupon Message"
2355
+ msgstr ""
2356
+
2357
+ #: addons/coupons/myCRED-addon-coupons.php:705
2358
+ msgid "Message to show when users try to use that has expired."
2359
+ msgstr ""
2360
+
2361
+ #: addons/coupons/myCRED-addon-coupons.php:712
2362
+ msgid "Minimum Balance Message"
2363
+ msgstr ""
2364
+
2365
+ #: addons/coupons/myCRED-addon-coupons.php:714
2366
+ msgid ""
2367
+ "Message to show when a user does not meet the minimum balance requirement. "
2368
+ "(if used)"
2369
+ msgstr ""
2370
+
2371
+ #: addons/coupons/myCRED-addon-coupons.php:719
2372
+ msgid "Maximum Balance Message"
2373
+ msgstr ""
2374
+
2375
+ #: addons/coupons/myCRED-addon-coupons.php:721
2376
+ msgid ""
2377
+ "Message to show when a user does not meet the maximum balance requirement. "
2378
+ "(if used)"
2379
+ msgstr ""
2380
+
2381
+ #: addons/coupons/myCRED-addon-coupons.php:728
2382
+ msgid "User Limit Message"
2383
+ msgstr ""
2384
+
2385
+ #: addons/coupons/myCRED-addon-coupons.php:730
2386
+ msgid "Message to show when the user limit has been reached for the coupon."
2387
+ msgstr ""
2388
+
2389
+ #: addons/coupons/myCRED-addon-coupons.php:735
2390
+ msgid "Excluded Message"
2391
+ msgstr ""
2392
+
2393
+ #: addons/coupons/myCRED-addon-coupons.php:737
2394
+ msgid ""
2395
+ "Message to show when a user is excluded from the point type the coupon gives."
2396
+ msgstr ""
2397
+
2398
+ #: addons/coupons/myCRED-addon-coupons.php:744
2399
+ msgid "Success Message"
2400
+ msgstr ""
2401
+
2402
+ #: addons/coupons/myCRED-addon-coupons.php:746
2403
+ msgid ""
2404
+ "Message to show when a coupon was successfully deposited to a users account."
2405
+ msgstr ""
2406
+
2407
+ #: addons/coupons/myCRED-addon-coupons.php:753
2408
+ msgid ""
2409
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
2410
+ "code."
2411
+ msgstr ""
2412
+
2413
+ #: addons/coupons/includes/mycred-coupon-functions.php:256
2414
+ msgid "An unknown error occurred. Coupon not used."
2415
+ msgstr ""
2416
+
2417
+ #: addons/email-notices/myCRED-addon-email-notices.php:144
2418
+ #: addons/email-notices/myCRED-addon-email-notices.php:150
2419
+ #: addons/email-notices/myCRED-addon-email-notices.php:156
2420
+ #: addons/email-notices/myCRED-addon-email-notices.php:279
2421
+ #: addons/email-notices/myCRED-addon-email-notices.php:280
2422
+ msgid "Email Notifications"
2423
+ msgstr ""
2424
+
2425
+ #: addons/email-notices/myCRED-addon-email-notices.php:145
2426
+ msgid "Email Notification"
2427
+ msgstr ""
2428
+
2429
+ #: addons/email-notices/myCRED-addon-email-notices.php:148
2430
+ msgid "Edit Email Notification"
2431
+ msgstr ""
2432
+
2433
+ #: addons/email-notices/myCRED-addon-email-notices.php:149
2434
+ msgid "New Email Notification"
2435
+ msgstr ""
2436
+
2437
+ #: addons/email-notices/myCRED-addon-email-notices.php:152
2438
+ msgid "Search Email Notifications"
2439
+ msgstr ""
2440
+
2441
+ #: addons/email-notices/myCRED-addon-email-notices.php:153
2442
+ msgid "No email notifications found"
2443
+ msgstr ""
2444
+
2445
+ #: addons/email-notices/myCRED-addon-email-notices.php:154
2446
+ msgid "No email notifications found in Trash"
2447
+ msgstr ""
2448
+
2449
+ #: addons/email-notices/myCRED-addon-email-notices.php:250
2450
+ #: addons/email-notices/myCRED-addon-email-notices.php:251
2451
+ #: addons/email-notices/myCRED-addon-email-notices.php:252
2452
+ #: addons/email-notices/myCRED-addon-email-notices.php:253
2453
+ #: addons/email-notices/myCRED-addon-email-notices.php:256
2454
+ #: addons/email-notices/myCRED-addon-email-notices.php:257
2455
+ #: addons/email-notices/myCRED-addon-email-notices.php:258
2456
+ #: addons/email-notices/myCRED-addon-email-notices.php:259
2457
+ msgid "Email Notice Updated."
2458
+ msgstr ""
2459
+
2460
+ #: addons/email-notices/myCRED-addon-email-notices.php:255
2461
+ msgid "Email Notice Activated."
2462
+ msgstr ""
2463
+
2464
+ #: addons/email-notices/myCRED-addon-email-notices.php:341
2465
+ #: addons/email-notices/myCRED-addon-email-notices.php:358
2466
+ msgid "Email Subject"
2467
+ msgstr ""
2468
+
2469
+ #: addons/email-notices/myCRED-addon-email-notices.php:385
2470
+ msgid "Not Active"
2471
+ msgstr ""
2472
+
2473
+ #: addons/email-notices/myCRED-addon-email-notices.php:388
2474
+ msgid "Scheduled"
2475
+ msgstr ""
2476
+
2477
+ #: addons/email-notices/myCRED-addon-email-notices.php:395
2478
+ msgid "Active - Last run"
2479
+ msgstr ""
2480
+
2481
+ #: addons/email-notices/myCRED-addon-email-notices.php:411
2482
+ #: addons/email-notices/myCRED-addon-email-notices.php:414
2483
+ #: addons/email-notices/myCRED-addon-email-notices.php:417
2484
+ msgid "Sent when"
2485
+ msgstr ""
2486
+
2487
+ #: addons/email-notices/myCRED-addon-email-notices.php:411
2488
+ msgid "Not set"
2489
+ msgstr ""
2490
+
2491
+ #: addons/email-notices/myCRED-addon-email-notices.php:420
2492
+ msgid "Sent at custom events"
2493
+ msgstr ""
2494
+
2495
+ #: addons/email-notices/myCRED-addon-email-notices.php:423
2496
+ #: addons/email-notices/myCRED-addon-email-notices.php:684
2497
+ #: includes/mycred-admin.php:766 includes/mycred-log.php:633
2498
+ #: includes/classes/class.query-export.php:263
2499
+ #: includes/classes/class.query-export.php:371
2500
+ #: includes/classes/class.query-log.php:1011
2501
+ #: includes/classes/class.query-log.php:1023 modules/mycred-module-log.php:149
2502
+ #: modules/mycred-module-log.php:978
2503
+ msgid "User"
2504
+ msgstr ""
2505
+
2506
+ #: addons/email-notices/myCRED-addon-email-notices.php:426
2507
+ #: addons/email-notices/myCRED-addon-email-notices.php:687
2508
+ msgid "Administrator"
2509
+ msgstr ""
2510
+
2511
+ #: addons/email-notices/myCRED-addon-email-notices.php:429
2512
+ #: addons/email-notices/myCRED-addon-email-notices.php:690
2513
+ msgid "Both"
2514
+ msgstr ""
2515
+
2516
+ #: addons/email-notices/myCRED-addon-email-notices.php:440
2517
+ msgid "No point types selected"
2518
+ msgstr ""
2519
+
2520
+ #: addons/email-notices/myCRED-addon-email-notices.php:480
2521
+ msgid "Email Trigger"
2522
+ msgstr ""
2523
+
2524
+ #: addons/email-notices/myCRED-addon-email-notices.php:489
2525
+ msgid "Available Template Tags"
2526
+ msgstr ""
2527
+
2528
+ #: addons/email-notices/myCRED-addon-email-notices.php:498
2529
+ msgid "Email Details"
2530
+ msgstr ""
2531
+
2532
+ #: addons/email-notices/myCRED-addon-email-notices.php:610
2533
+ msgid "Send this email notice when..."
2534
+ msgstr ""
2535
+
2536
+ #: addons/email-notices/myCRED-addon-email-notices.php:628
2537
+ #: addons/transfer/includes/mycred-transfer-widgets.php:109
2538
+ #: includes/classes/class.query-export.php:263
2539
+ #: includes/classes/class.query-export.php:360
2540
+ #: includes/classes/class.query-log.php:1024 modules/mycred-module-log.php:150
2541
+ #: modules/mycred-module-log.php:990 modules/mycred-module-management.php:237
2542
+ #: modules/mycred-module-management.php:775
2543
+ msgid "Reference"
2544
+ msgstr ""
2545
+
2546
+ #: addons/email-notices/myCRED-addon-email-notices.php:632
2547
+ #: addons/email-notices/myCRED-addon-email-notices.php:648
2548
+ msgid "Custom Reference"
2549
+ msgstr ""
2550
+
2551
+ #: addons/email-notices/myCRED-addon-email-notices.php:649
2552
+ #: addons/transfer/includes/mycred-transfer-widgets.php:102
2553
+ #: addons/transfer/includes/mycred-transfer-widgets.php:106
2554
+ #: addons/transfer/includes/mycred-transfer-widgets.php:110
2555
+ #: addons/transfer/includes/mycred-transfer-widgets.php:122
2556
+ #: includes/mycred-admin.php:720 includes/mycred-admin.php:757
2557
+ #: includes/hooks/mycred-hook-anniversary.php:114
2558
+ #: includes/hooks/mycred-hook-comments.php:386
2559
+ #: includes/hooks/mycred-hook-comments.php:437
2560
+ #: includes/hooks/mycred-hook-comments.php:463
2561
+ #: includes/hooks/mycred-hook-delete-content.php:124
2562
+ #: includes/hooks/mycred-hook-delete-content.php:148
2563
+ #: includes/hooks/mycred-hook-delete-content.php:204
2564
+ #: includes/hooks/mycred-hook-link-clicks.php:283
2565
+ #: includes/hooks/mycred-hook-logins.php:142
2566
+ #: includes/hooks/mycred-hook-publishing-content.php:126
2567
+ #: includes/hooks/mycred-hook-publishing-content.php:150
2568
+ #: includes/hooks/mycred-hook-publishing-content.php:206
2569
+ #: includes/hooks/mycred-hook-registrations.php:87
2570
+ #: includes/hooks/mycred-hook-site-visits.php:102
2571
+ #: includes/hooks/mycred-hook-view-content.php:177
2572
+ #: includes/hooks/mycred-hook-view-content.php:184
2573
+ #: includes/hooks/mycred-hook-view-content.php:222
2574
+ #: includes/hooks/mycred-hook-view-content.php:229
2575
+ #: includes/hooks/mycred-hook-view-content.php:313
2576
+ #: includes/hooks/mycred-hook-view-content.php:320
2577
+ #: includes/hooks/mycred-hook-watching-video.php:316
2578
+ #: includes/hooks/mycred-hook-watching-video.php:339
2579
+ #: includes/hooks/mycred-hook-watching-video.php:346
2580
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:299
2581
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:326
2582
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:370
2583
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:377
2584
+ #: includes/hooks/external/mycred-hook-badgeOS.php:328
2585
+ #: includes/hooks/external/mycred-hook-badgeOS.php:346
2586
+ #: includes/hooks/external/mycred-hook-bbPress.php:450
2587
+ #: includes/hooks/external/mycred-hook-bbPress.php:468
2588
+ #: includes/hooks/external/mycred-hook-bbPress.php:492
2589
+ #: includes/hooks/external/mycred-hook-bbPress.php:519
2590
+ #: includes/hooks/external/mycred-hook-bbPress.php:543
2591
+ #: includes/hooks/external/mycred-hook-bbPress.php:567
2592
+ #: includes/hooks/external/mycred-hook-bbPress.php:594
2593
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:307
2594
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:331
2595
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:355
2596
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:373
2597
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:391
2598
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:409
2599
+ #: includes/hooks/external/mycred-hook-buddypress.php:639
2600
+ #: includes/hooks/external/mycred-hook-buddypress.php:663
2601
+ #: includes/hooks/external/mycred-hook-buddypress.php:687
2602
+ #: includes/hooks/external/mycred-hook-buddypress.php:711
2603
+ #: includes/hooks/external/mycred-hook-buddypress.php:735
2604
+ #: includes/hooks/external/mycred-hook-buddypress.php:762
2605
+ #: includes/hooks/external/mycred-hook-buddypress.php:786
2606
+ #: includes/hooks/external/mycred-hook-buddypress.php:804
2607
+ #: includes/hooks/external/mycred-hook-buddypress.php:828
2608
+ #: includes/hooks/external/mycred-hook-buddypress.php:846
2609
+ #: includes/hooks/external/mycred-hook-buddypress.php:870
2610
+ #: includes/hooks/external/mycred-hook-buddypress.php:894
2611
+ #: includes/hooks/external/mycred-hook-buddypress.php:1530
2612
+ #: includes/hooks/external/mycred-hook-buddypress.php:1548
2613
+ #: includes/hooks/external/mycred-hook-buddypress.php:1572
2614
+ #: includes/hooks/external/mycred-hook-buddypress.php:1596
2615
+ #: includes/hooks/external/mycred-hook-buddypress.php:1620
2616
+ #: includes/hooks/external/mycred-hook-buddypress.php:1644
2617
+ #: includes/hooks/external/mycred-hook-buddypress.php:1668
2618
+ #: includes/hooks/external/mycred-hook-buddypress.php:1692
2619
+ #: includes/hooks/external/mycred-hook-buddypress.php:1716
2620
+ #: includes/hooks/external/mycred-hook-buddypress.php:1734
2621
+ #: includes/hooks/external/mycred-hook-buddypress.php:1758
2622
+ #: includes/hooks/external/mycred-hook-contact-form7.php:180
2623
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:218
2624
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:236
2625
+ #: includes/hooks/external/mycred-hook-gravityforms.php:173
2626
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:222
2627
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:246
2628
+ #: includes/hooks/external/mycred-hook-jetpack.php:550
2629
+ #: includes/hooks/external/mycred-hook-jetpack.php:568
2630
+ #: includes/hooks/external/mycred-hook-simplepress.php:308
2631
+ #: includes/hooks/external/mycred-hook-simplepress.php:326
2632
+ #: includes/hooks/external/mycred-hook-simplepress.php:350
2633
+ #: includes/hooks/external/mycred-hook-simplepress.php:377
2634
+ #: includes/hooks/external/mycred-hook-woocommerce.php:538
2635
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:249
2636
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:256
2637
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:274
2638
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:289
2639
+ #: includes/hooks/external/mycred-hook-wp-polls.php:178
2640
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:208
2641
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:215
2642
+ #: plugins/mycred-hook-affiliatewp.php:299
2643
+ #: plugins/mycred-hook-affiliatewp.php:326
2644
+ #: plugins/mycred-hook-affiliatewp.php:370
2645
+ #: plugins/mycred-hook-affiliatewp.php:377 plugins/mycred-hook-badgeOS.php:328
2646
+ #: plugins/mycred-hook-badgeOS.php:346 plugins/mycred-hook-bbPress.php:450
2647
+ #: plugins/mycred-hook-bbPress.php:468 plugins/mycred-hook-bbPress.php:492
2648
+ #: plugins/mycred-hook-bbPress.php:519 plugins/mycred-hook-bbPress.php:543
2649
+ #: plugins/mycred-hook-bbPress.php:567 plugins/mycred-hook-bbPress.php:594
2650
+ #: plugins/mycred-hook-buddypress-media.php:307
2651
+ #: plugins/mycred-hook-buddypress-media.php:331
2652
+ #: plugins/mycred-hook-buddypress-media.php:355
2653
+ #: plugins/mycred-hook-buddypress-media.php:373
2654
+ #: plugins/mycred-hook-buddypress-media.php:391
2655
+ #: plugins/mycred-hook-buddypress-media.php:409
2656
+ #: plugins/mycred-hook-buddypress.php:630
2657
+ #: plugins/mycred-hook-buddypress.php:654
2658
+ #: plugins/mycred-hook-buddypress.php:678
2659
+ #: plugins/mycred-hook-buddypress.php:702
2660
+ #: plugins/mycred-hook-buddypress.php:726
2661
+ #: plugins/mycred-hook-buddypress.php:753
2662
+ #: plugins/mycred-hook-buddypress.php:777
2663
+ #: plugins/mycred-hook-buddypress.php:795
2664
+ #: plugins/mycred-hook-buddypress.php:819
2665
+ #: plugins/mycred-hook-buddypress.php:837
2666
+ #: plugins/mycred-hook-buddypress.php:861
2667
+ #: plugins/mycred-hook-buddypress.php:885
2668
+ #: plugins/mycred-hook-buddypress.php:1521
2669
+ #: plugins/mycred-hook-buddypress.php:1539
2670
+ #: plugins/mycred-hook-buddypress.php:1563
2671
+ #: plugins/mycred-hook-buddypress.php:1587
2672
+ #: plugins/mycred-hook-buddypress.php:1611
2673
+ #: plugins/mycred-hook-buddypress.php:1635
2674
+ #: plugins/mycred-hook-buddypress.php:1659
2675
+ #: plugins/mycred-hook-buddypress.php:1683
2676
+ #: plugins/mycred-hook-buddypress.php:1707
2677
+ #: plugins/mycred-hook-buddypress.php:1725
2678
+ #: plugins/mycred-hook-buddypress.php:1749
2679
+ #: plugins/mycred-hook-contact-form7.php:179
2680
+ #: plugins/mycred-hook-events-manager-light.php:218
2681
+ #: plugins/mycred-hook-events-manager-light.php:236
2682
+ #: plugins/mycred-hook-gravityforms.php:173
2683
+ #: plugins/mycred-hook-invite-anyone.php:222
2684
+ #: plugins/mycred-hook-invite-anyone.php:246
2685
+ #: plugins/mycred-hook-jetpack.php:165 plugins/mycred-hook-jetpack.php:183
2686
+ #: plugins/mycred-hook-sharethis.php:274
2687
+ #: plugins/mycred-hook-simplepress.php:308
2688
+ #: plugins/mycred-hook-simplepress.php:326
2689
+ #: plugins/mycred-hook-simplepress.php:350
2690
+ #: plugins/mycred-hook-simplepress.php:377
2691
+ #: plugins/mycred-hook-woocommerce.php:539
2692
+ #: plugins/mycred-hook-wp-favorite-posts.php:249
2693
+ #: plugins/mycred-hook-wp-favorite-posts.php:256
2694
+ #: plugins/mycred-hook-wp-favorite-posts.php:274
2695
+ #: plugins/mycred-hook-wp-favorite-posts.php:289
2696
+ #: plugins/mycred-hook-wp-polls.php:178
2697
+ #: plugins/mycred-hook-wp-postratings.php:208
2698
+ #: plugins/mycred-hook-wp-postratings.php:215
2699
+ msgid "required"
2700
+ msgstr ""
2701
+
2702
+ #: addons/email-notices/myCRED-addon-email-notices.php:651
2703
+ msgid ""
2704
+ "This can be either a single reference or a comma separated list of "
2705
+ "references."
2706
+ msgstr ""
2707
+
2708
+ #: addons/email-notices/myCRED-addon-email-notices.php:657
2709
+ #: addons/sell-content/myCRED-addon-sell-content.php:581
2710
+ #: addons/transfer/myCRED-addon-transfer.php:292
2711
+ #: addons/transfer/includes/mycred-transfer-widgets.php:121
2712
+ #: includes/mycred-widgets.php:573
2713
+ #: includes/widgets/mycred-widget-wallet.php:123
2714
+ #: modules/mycred-module-settings.php:732
2715
+ msgid "Point Types"
2716
  msgstr ""
2717
 
2718
+ #: addons/email-notices/myCRED-addon-email-notices.php:682
2719
+ msgid "Recipient:"
2720
  msgstr ""
2721
 
2722
+ #: addons/email-notices/myCRED-addon-email-notices.php:717
2723
+ #: addons/email-notices/myCRED-addon-email-notices.php:1217
2724
+ msgid "Senders Name:"
2725
  msgstr ""
2726
 
2727
+ #: addons/email-notices/myCRED-addon-email-notices.php:723
2728
+ #: addons/email-notices/myCRED-addon-email-notices.php:1223
2729
+ msgid "Senders Email:"
2730
  msgstr ""
2731
 
2732
+ #: addons/email-notices/myCRED-addon-email-notices.php:729
2733
+ msgid "Reply-To Email:"
2734
  msgstr ""
2735
 
2736
+ #: addons/email-notices/myCRED-addon-email-notices.php:744
2737
+ msgid "CSS Styling"
2738
  msgstr ""
2739
 
2740
+ #: addons/email-notices/myCRED-addon-email-notices.php:768
2741
+ msgid "Site Related"
2742
  msgstr ""
2743
 
2744
+ #: addons/email-notices/myCRED-addon-email-notices.php:774
2745
+ msgid "Your websites title"
2746
+ msgstr ""
 
 
 
2747
 
2748
+ #: addons/email-notices/myCRED-addon-email-notices.php:782
2749
+ msgid "Your websites address"
2750
  msgstr ""
2751
 
2752
+ #: addons/email-notices/myCRED-addon-email-notices.php:790
2753
+ msgid "Your websites tagline (description)"
2754
  msgstr ""
2755
 
2756
+ #: addons/email-notices/myCRED-addon-email-notices.php:798
2757
+ msgid "Your websites admin email"
2758
  msgstr ""
2759
 
2760
+ #: addons/email-notices/myCRED-addon-email-notices.php:806
2761
+ msgid "Total number of blog members"
2762
  msgstr ""
2763
 
2764
+ #: addons/email-notices/myCRED-addon-email-notices.php:811
2765
+ msgid "Instance Related"
2766
  msgstr ""
2767
 
2768
+ #: addons/email-notices/myCRED-addon-email-notices.php:817
2769
+ msgid "The users new balance"
 
 
2770
  msgstr ""
2771
 
2772
+ #: addons/email-notices/myCRED-addon-email-notices.php:825
2773
+ msgid "The users old balance"
 
 
2774
  msgstr ""
2775
 
2776
+ #: addons/email-notices/myCRED-addon-email-notices.php:833
2777
+ msgid "The amount of points gained or lost in this instance"
 
2778
  msgstr ""
2779
 
2780
+ #: addons/email-notices/myCRED-addon-email-notices.php:841
2781
+ msgid "The log entry"
2782
  msgstr ""
2783
 
2784
+ #: addons/email-notices/myCRED-addon-email-notices.php:846
2785
+ #, php-format
2786
+ msgid "You can also use %s."
2787
  msgstr ""
2788
 
2789
+ #: addons/email-notices/myCRED-addon-email-notices.php:846
2790
+ msgid "user related template tags"
2791
  msgstr ""
2792
 
2793
+ #: addons/email-notices/myCRED-addon-email-notices.php:1155
2794
+ #: includes/mycred-setup.php:293 modules/mycred-module-settings.php:565
2795
+ msgid "Format"
 
 
 
2796
  msgstr ""
2797
 
2798
+ #: addons/email-notices/myCRED-addon-email-notices.php:1158
2799
+ msgid "Plain Text"
2800
  msgstr ""
2801
 
2802
+ #: addons/email-notices/myCRED-addon-email-notices.php:1170
2803
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
 
2804
  msgstr ""
2805
 
2806
+ #: addons/email-notices/myCRED-addon-email-notices.php:1173
2807
+ msgid "Send emails immediately"
2808
  msgstr ""
2809
 
2810
+ #: addons/email-notices/myCRED-addon-email-notices.php:1176
2811
+ msgid "Send emails once an hour"
2812
  msgstr ""
2813
 
2814
+ #: addons/email-notices/myCRED-addon-email-notices.php:1179
2815
+ msgid "Send emails once a day"
2816
  msgstr ""
2817
 
2818
+ #: addons/email-notices/myCRED-addon-email-notices.php:1185
2819
+ #: includes/mycred-setup.php:149
2820
+ msgid "Advanced"
2821
  msgstr ""
2822
 
2823
+ #: addons/email-notices/myCRED-addon-email-notices.php:1188
2824
+ msgid "Filter Email Subjects"
2825
  msgstr ""
2826
 
2827
+ #: addons/email-notices/myCRED-addon-email-notices.php:1191
2828
+ msgid "Filter Email Body"
 
2829
  msgstr ""
2830
 
2831
+ #: addons/email-notices/myCRED-addon-email-notices.php:1200
2832
+ msgid ""
2833
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2834
+ "use a SMTP plugin for emails."
 
 
 
 
 
2835
  msgstr ""
2836
 
2837
+ #: addons/email-notices/myCRED-addon-email-notices.php:1213
2838
+ msgid "Defaults"
2839
  msgstr ""
2840
 
2841
+ #: addons/email-notices/myCRED-addon-email-notices.php:1229
2842
+ msgid "Reply-To:"
 
2843
  msgstr ""
2844
 
2845
+ #: addons/email-notices/myCRED-addon-email-notices.php:1237
2846
+ msgid "Default Email Content"
 
2847
  msgstr ""
2848
 
2849
+ #: addons/email-notices/myCRED-addon-email-notices.php:1239
2850
+ msgid "Default email content."
2851
  msgstr ""
2852
 
2853
+ #: addons/email-notices/myCRED-addon-email-notices.php:1246
2854
+ msgid "Default CSS Styling"
 
 
 
 
2855
  msgstr ""
2856
 
2857
+ #: addons/email-notices/myCRED-addon-email-notices.php:1248
2858
+ msgid ""
2859
+ "Default email CSS styling. Note that if you intend to send HTML emails, you "
2860
+ "should use inline CSS styling for best results."
2861
  msgstr ""
2862
 
2863
+ #: addons/email-notices/includes/mycred-email-functions.php:76
2864
+ msgid "users balance changes"
2865
+ msgstr ""
 
 
 
 
2866
 
2867
+ #: addons/email-notices/includes/mycred-email-functions.php:77
2868
+ msgid "users balance increases"
2869
  msgstr ""
2870
 
2871
+ #: addons/email-notices/includes/mycred-email-functions.php:78
2872
+ msgid "users balance decreases"
2873
  msgstr ""
2874
 
2875
+ #: addons/email-notices/includes/mycred-email-functions.php:79
2876
+ msgid "users balance reaches zero"
 
2877
  msgstr ""
2878
 
2879
+ #: addons/email-notices/includes/mycred-email-functions.php:80
2880
+ msgid "users balance goes negative"
2881
  msgstr ""
2882
 
2883
+ #: addons/email-notices/includes/mycred-email-functions.php:83
2884
+ msgid "user gains a badge"
2885
  msgstr ""
2886
 
2887
+ #: addons/email-notices/includes/mycred-email-functions.php:84
2888
+ msgid "user gains a new badge level"
2889
  msgstr ""
2890
 
2891
+ #: addons/email-notices/includes/mycred-email-functions.php:88
2892
+ msgid "user is promoted to a higher rank"
 
2893
  msgstr ""
2894
 
2895
+ #: addons/email-notices/includes/mycred-email-functions.php:89
2896
+ msgid "user is demoted to a lower rank"
 
 
 
2897
  msgstr ""
2898
 
2899
+ #: addons/email-notices/includes/mycred-email-functions.php:93
2900
+ msgid "user sends a transfer"
2901
  msgstr ""
2902
 
2903
+ #: addons/email-notices/includes/mycred-email-functions.php:94
2904
+ msgid "user receives a transfer"
2905
  msgstr ""
2906
 
2907
+ #: addons/email-notices/includes/mycred-email-functions.php:97
2908
+ msgid "a custom event occurs"
2909
  msgstr ""
2910
 
2911
+ #: addons/email-notices/includes/mycred-email-shortcodes.php:65
2912
+ msgid "Unsubscribe"
 
2913
  msgstr ""
2914
 
2915
+ #: addons/email-notices/includes/mycred-email-shortcodes.php:66
2916
+ msgid "Email Notice"
2917
  msgstr ""
2918
 
2919
+ #: addons/email-notices/includes/mycred-email-shortcodes.php:87
2920
+ msgid "There are no email notifications yet."
 
 
2921
  msgstr ""
2922
 
2923
+ #: addons/gateway/carts/mycred-marketpress.php:147
2924
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2925
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:332
2926
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:464
2927
+ #: includes/mycred-admin.php:614 includes/mycred-admin.php:767
2928
+ #: modules/mycred-module-management.php:753
2929
+ msgid "Current Balance"
2930
  msgstr ""
2931
 
2932
+ #: addons/gateway/carts/mycred-marketpress.php:151
2933
+ #: addons/gateway/carts/mycred-wpecommerce.php:120
2934
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:311
2935
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:336
2936
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:468
2937
+ msgid "Total Cost"
2938
  msgstr ""
2939
 
2940
+ #: addons/gateway/carts/mycred-marketpress.php:155
2941
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:315
2942
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:340
2943
+ msgid "Balance After Purchase"
2944
  msgstr ""
2945
 
2946
+ #: addons/gateway/carts/mycred-marketpress.php:182
2947
+ #: addons/gateway/carts/mycred-marketpress.php:231
2948
+ msgid "Go Back"
 
2949
  msgstr ""
2950
 
2951
+ #: addons/gateway/carts/mycred-marketpress.php:185
2952
+ msgid "will be deducted from your account."
2953
  msgstr ""
2954
 
2955
+ #: addons/gateway/carts/mycred-marketpress.php:221
2956
+ #, php-format
2957
  msgid ""
2958
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2959
+ "<a href=\"%s\">select a different payment method</a>."
2960
  msgstr ""
2961
 
2962
+ #: addons/gateway/carts/mycred-marketpress.php:247
2963
+ msgid "Paid"
2964
  msgstr ""
2965
 
2966
+ #: addons/gateway/carts/mycred-marketpress.php:250
2967
+ #: includes/mycred-network.php:52 includes/mycred-network.php:53
2968
+ msgid "myCRED"
2969
  msgstr ""
2970
 
2971
+ #: addons/gateway/carts/mycred-marketpress.php:352
2972
+ msgid "%_singular% Balance"
2973
  msgstr ""
2974
 
2975
+ #: addons/gateway/carts/mycred-marketpress.php:355
2976
+ #: addons/gateway/carts/mycred-wpecommerce.php:20
2977
+ msgid "Payment for Order: #%order_id%"
2978
  msgstr ""
2979
 
2980
+ #: addons/gateway/carts/mycred-marketpress.php:358
2981
+ msgid "Product Sale: %post_title%"
2982
  msgstr ""
2983
 
2984
+ #: addons/gateway/carts/mycred-marketpress.php:359
2985
+ msgid "Pay using your account balance."
2986
  msgstr ""
2987
 
2988
+ #: addons/gateway/carts/mycred-marketpress.php:360
2989
  msgid ""
2990
+ "TOTAL amount has been deducted from your account. Your current balance is: "
2991
+ "%balance_f%"
2992
  msgstr ""
2993
 
2994
+ #: addons/gateway/carts/mycred-marketpress.php:361
2995
+ #: addons/gateway/carts/mycred-woocommerce.php:326
2996
+ #: addons/sell-content/includes/mycred-sell-functions.php:568
2997
+ msgid "Insufficient funds."
2998
  msgstr ""
2999
 
3000
+ #: addons/gateway/carts/mycred-marketpress.php:362
3001
  msgid ""
3002
+ "You must be logged in to pay with %_plural%. Please <a href=\"%login_url_here"
3003
+ "%\">login</a>."
3004
  msgstr ""
3005
 
3006
+ #: addons/gateway/carts/mycred-marketpress.php:369
3007
+ #, php-format
3008
+ msgid ""
3009
+ "Let your users pay for items in their shopping cart using their %s Account. "
3010
+ "Note! This gateway requires your users to be logged in when making a "
3011
+ "purchase!"
3012
  msgstr ""
3013
 
3014
+ #: addons/gateway/carts/mycred-marketpress.php:372
3015
+ msgid "Method Name"
3016
  msgstr ""
3017
 
3018
+ #: addons/gateway/carts/mycred-marketpress.php:374
3019
+ msgid ""
3020
+ "Enter a public name for this payment method that is displayed to users - No "
3021
+ "HTML"
3022
  msgstr ""
3023
 
3024
+ #: addons/gateway/carts/mycred-marketpress.php:379
3025
+ msgid "Gateway Logo URL"
 
3026
  msgstr ""
3027
 
3028
+ #: addons/gateway/carts/mycred-marketpress.php:400
3029
+ #: addons/gateway/carts/mycred-woocommerce.php:132
3030
+ msgid "How much is 1 %_singular% worth in %currency%?"
3031
  msgstr ""
3032
 
3033
+ #: addons/gateway/carts/mycred-marketpress.php:405
3034
+ #: addons/gateway/carts/mycred-woocommerce.php:136
3035
+ #: addons/gateway/carts/mycred-wpecommerce.php:389
3036
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3037
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:499
3038
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:634
3039
+ #: addons/import/myCRED-addon-import.php:525
3040
+ #: addons/import/myCRED-addon-import.php:594
3041
+ #: addons/import/myCRED-addon-import.php:658
3042
+ #: includes/mycred-shortcodes.php:912
3043
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:360
3044
+ #: includes/shortcodes/mycred_exchange.php:75
3045
+ #: plugins/mycred-hook-affiliatewp.php:360
3046
+ msgid "Exchange Rate"
3047
  msgstr ""
3048
 
3049
+ #: addons/gateway/carts/mycred-marketpress.php:414
3050
+ #: addons/gateway/carts/mycred-woocommerce.php:182
3051
+ #: addons/gateway/carts/mycred-wpecommerce.php:393
3052
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:510
3053
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490
3054
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:625
3055
+ msgid "Profit Sharing"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3056
  msgstr ""
3057
 
3058
+ #: addons/gateway/carts/mycred-marketpress.php:417
3059
+ msgid "Percentage"
 
 
3060
  msgstr ""
3061
 
3062
+ #: addons/gateway/carts/mycred-marketpress.php:419
3063
+ #: addons/gateway/carts/mycred-woocommerce.php:184
3064
+ #: addons/gateway/carts/mycred-wpecommerce.php:397
3065
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:512
3066
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:493
3067
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:628
3068
+ msgid "Option to share sales with the product owner. Use zero to disable."
 
 
3069
  msgstr ""
3070
 
3071
+ #: addons/gateway/carts/mycred-marketpress.php:431
3072
+ #: addons/gateway/carts/mycred-wpecommerce.php:404
3073
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:559
3074
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:682
3075
+ msgid "Messages"
3076
  msgstr ""
3077
 
3078
+ #: addons/gateway/carts/mycred-marketpress.php:434
3079
+ #: addons/gateway/carts/mycred-wpecommerce.php:415
3080
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:569
3081
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:692
3082
+ #: includes/hooks/external/mycred-hook-buddypress.php:310
3083
+ #: plugins/mycred-hook-buddypress.php:310
3084
+ msgid "Insufficient Funds"
 
3085
  msgstr ""
3086
 
3087
+ #: addons/gateway/carts/mycred-marketpress.php:436
3088
+ msgid "Message to show when the user can not use this gateway."
3089
  msgstr ""
3090
 
3091
+ #: addons/gateway/carts/mycred-marketpress.php:442
3092
+ #: addons/gateway/carts/mycred-wpecommerce.php:411
3093
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:538
3094
+ msgid "Visitors"
3095
  msgstr ""
3096
 
3097
+ #: addons/gateway/carts/mycred-marketpress.php:444
3098
+ msgid "Message to show to buyers that are not logged in."
3099
  msgstr ""
3100
 
3101
+ #: addons/gateway/carts/mycred-marketpress.php:450
3102
+ msgid "User Instructions"
3103
  msgstr ""
3104
 
3105
+ #: addons/gateway/carts/mycred-marketpress.php:452
3106
+ msgid "Information to show users before payment."
3107
  msgstr ""
3108
 
3109
+ #: addons/gateway/carts/mycred-marketpress.php:458
3110
+ msgid "Confirmation Information"
3111
  msgstr ""
3112
 
3113
+ #: addons/gateway/carts/mycred-marketpress.php:460
3114
+ msgid "Information to display on the order confirmation page. - HTML allowed"
 
 
 
 
 
 
3115
  msgstr ""
3116
 
3117
+ #: addons/gateway/carts/mycred-marketpress.php:466
3118
+ msgid "Order Confirmation Email"
3119
  msgstr ""
3120
 
3121
+ #: addons/gateway/carts/mycred-marketpress.php:468
3122
+ #, php-format
3123
+ msgid ""
3124
+ "This is the email text to send to those who have made %s checkouts. It "
3125
+ "overrides the default order checkout email. These codes will be replaced "
3126
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
3127
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
3128
  msgstr ""
3129
 
3130
+ #: addons/gateway/carts/mycred-woocommerce.php:29
3131
+ msgid "Let users pay using points."
 
3132
  msgstr ""
3133
 
3134
+ #: addons/gateway/carts/mycred-woocommerce.php:89
3135
+ msgid "Enable/Disable"
3136
  msgstr ""
3137
 
3138
+ #: addons/gateway/carts/mycred-woocommerce.php:91
3139
+ #, php-format
3140
+ msgid "Enable %s Payment"
3141
  msgstr ""
3142
 
3143
+ #: addons/gateway/carts/mycred-woocommerce.php:93
3144
+ msgid ""
3145
+ "Users who are not logged in or excluded from using myCRED will not have "
3146
+ "access to this gateway!"
3147
  msgstr ""
3148
 
3149
+ #: addons/gateway/carts/mycred-woocommerce.php:98
3150
+ msgid "Title to show for this payment option."
 
3151
  msgstr ""
3152
 
3153
+ #: addons/gateway/carts/mycred-woocommerce.php:99
3154
+ msgid "Pay with myCRED"
 
3155
  msgstr ""
3156
 
3157
+ #: addons/gateway/carts/mycred-woocommerce.php:103
3158
+ msgid "Customer Message"
 
 
 
3159
  msgstr ""
3160
 
3161
+ #: addons/gateway/carts/mycred-woocommerce.php:114
3162
+ #: addons/gateway/carts/mycred-woocommerce.php:195
3163
+ msgid "Refund Log Template"
 
3164
  msgstr ""
3165
 
3166
+ #: addons/gateway/carts/mycred-woocommerce.php:127
3167
+ msgid "Select the point type users can use to pay."
3168
  msgstr ""
3169
 
3170
+ #: addons/gateway/carts/mycred-woocommerce.php:143
3171
+ msgid "Show Total"
 
 
3172
  msgstr ""
3173
 
3174
+ #: addons/gateway/carts/mycred-woocommerce.php:145
3175
+ msgid "Show the final price in %_plural% ."
3176
  msgstr ""
3177
 
3178
+ #: addons/gateway/carts/mycred-woocommerce.php:148
3179
+ msgid "Show in Cart"
3180
  msgstr ""
3181
 
3182
+ #: addons/gateway/carts/mycred-woocommerce.php:149
3183
+ msgid "Show on Checkout Page"
 
 
 
3184
  msgstr ""
3185
 
3186
+ #: addons/gateway/carts/mycred-woocommerce.php:150
3187
+ msgid "Show in Cart and on Checkout Page"
 
 
 
3188
  msgstr ""
3189
 
3190
+ #: addons/gateway/carts/mycred-woocommerce.php:155
3191
+ #: modules/mycred-module-settings.php:752
3192
+ #: modules/mycred-module-settings.php:778
3193
+ #: modules/mycred-module-settings.php:808
3194
+ msgid "Label"
3195
  msgstr ""
3196
 
3197
+ #: addons/gateway/carts/mycred-woocommerce.php:157
3198
+ msgid "Order Total in %_plural%"
3199
  msgstr ""
3200
 
3201
+ #: addons/gateway/carts/mycred-woocommerce.php:175
3202
+ msgid "Balance Label"
3203
  msgstr ""
3204
 
3205
+ #: addons/gateway/carts/mycred-woocommerce.php:177
3206
+ msgid ""
3207
+ "The label to use when presenting a user their balance on the checkout / cart "
3208
+ "pages. Leave empty to hide."
3209
  msgstr ""
3210
 
3211
+ #: addons/gateway/carts/mycred-woocommerce.php:191
3212
+ msgid "Log entry template for profit sharing."
 
3213
  msgstr ""
3214
 
3215
+ #: addons/gateway/carts/mycred-woocommerce.php:197
3216
+ msgid "Log entry template for refunds of profit shares."
3217
  msgstr ""
3218
 
3219
+ #: addons/gateway/carts/mycred-woocommerce.php:276
3220
+ #, php-format
3221
+ msgid "%s Payment"
3222
  msgstr ""
3223
 
3224
+ #: addons/gateway/carts/mycred-woocommerce.php:300
3225
+ msgid "You must be logged in to pay with %_plural%"
3226
+ msgstr ""
3227
+
3228
+ #: addons/gateway/carts/mycred-woocommerce.php:308
3229
+ msgid "You can not use this gateway. Please try a different payment option."
3230
  msgstr ""
3231
 
3232
+ #: addons/gateway/carts/mycred-woocommerce.php:427
3233
  #, php-format
3234
+ msgctxt "%s = Point amount formatted"
3235
+ msgid "Refunded %s"
3236
  msgstr ""
3237
 
3238
+ #: addons/gateway/carts/mycred-woocommerce.php:479
3239
+ msgid "Your account has successfully been charged."
 
 
3240
  msgstr ""
3241
 
3242
+ #: addons/gateway/carts/mycred-wpecommerce.php:23
3243
+ msgid "Store sale"
3244
  msgstr ""
3245
 
3246
+ #: addons/gateway/carts/mycred-wpecommerce.php:25
3247
+ msgid "You must be logged in to use this gateway"
3248
  msgstr ""
3249
 
3250
+ #: addons/gateway/carts/mycred-wpecommerce.php:26
3251
+ msgid "Insufficient Funds."
3252
  msgstr ""
3253
 
3254
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
3255
+ msgid "Deduct the amount from your balance."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3256
  msgstr ""
3257
 
3258
+ #: addons/gateway/carts/mycred-wpecommerce.php:128
3259
+ msgid "Your current balance"
 
3260
  msgstr ""
3261
 
3262
+ #: addons/gateway/carts/mycred-wpecommerce.php:202
3263
+ msgid "You can not use this gateway."
 
3264
  msgstr ""
3265
 
3266
+ #: addons/gateway/carts/mycred-wpecommerce.php:370
3267
+ #: includes/mycred-functions.php:749
3268
+ msgid "General"
 
 
3269
  msgstr ""
3270
 
3271
+ #: addons/gateway/carts/mycred-wpecommerce.php:373
3272
+ msgid "Log Template for Payments"
 
3273
  msgstr ""
3274
 
3275
+ #: addons/gateway/carts/mycred-wpecommerce.php:390
3276
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:362
3277
+ #: plugins/mycred-hook-affiliatewp.php:362
3278
+ #, php-format
3279
+ msgid "How much is 1 %s worth in %s"
3280
  msgstr ""
3281
 
3282
+ #: addons/gateway/carts/mycred-wpecommerce.php:407
3283
+ msgid "Instructions"
3284
  msgstr ""
3285
 
3286
+ #: addons/gateway/carts/mycred-wpecommerce.php:408
3287
+ msgid ""
3288
+ "Optional instructions to show users when selecting this gateway. Leave empty "
3289
+ "to hide."
 
 
3290
  msgstr ""
3291
 
3292
+ #: addons/gateway/carts/mycred-wpecommerce.php:412
3293
+ msgid "Message to show visitors who are not logged in."
3294
  msgstr ""
3295
 
3296
+ #: addons/gateway/carts/mycred-wpecommerce.php:416
3297
+ msgid ""
3298
+ "Message to show when users does not have enough %plural% to pay using this "
3299
+ "gateway."
3300
  msgstr ""
3301
 
3302
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:32
3303
+ msgid "Payment for Event Registration"
3304
  msgstr ""
3305
 
3306
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:380
3307
  #, php-format
3308
+ msgid "Activate %s"
3309
  msgstr ""
3310
 
3311
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:389
3312
+ #, php-format
3313
+ msgid "Deactivate %s"
3314
  msgstr ""
3315
 
3316
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:402
3317
+ msgid "Gateway Settings"
3318
  msgstr ""
3319
 
3320
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:442
3321
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449
3322
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:580
3323
  #, php-format
3324
+ msgid "How many %s is 1 %s worth?"
3325
  msgstr ""
3326
 
3327
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:460
3328
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535
3329
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:658
3330
+ #: includes/mycred-setup.php:275 modules/mycred-module-settings.php:547
3331
+ msgid "Labels"
3332
  msgstr ""
3333
 
3334
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:463
3335
+ msgid "Gateway Title"
 
3336
  msgstr ""
3337
 
3338
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:465
3339
+ msgid "Title to show on Payment page"
3340
  msgstr ""
3341
 
3342
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:468
3343
+ msgid "Payment Type"
3344
  msgstr ""
3345
 
3346
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
3347
+ msgid "Title to show on receipts and logs"
 
 
3348
  msgstr ""
3349
 
3350
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:473
3351
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552
3352
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:675
3353
+ #: addons/sell-content/myCRED-addon-sell-content.php:673
3354
+ #: addons/sell-content/myCRED-addon-sell-content.php:719
3355
+ #: addons/transfer/includes/mycred-transfer-widgets.php:101
3356
+ msgid "Button Label"
3357
  msgstr ""
3358
 
3359
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:475
3360
+ msgid "Pay Button"
 
 
3361
  msgstr ""
3362
 
3363
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:495
3364
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137
3365
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140
3366
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:369
3367
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:373
3368
+ #: addons/sell-content/myCRED-addon-sell-content.php:1076
3369
+ msgid "Price"
3370
  msgstr ""
3371
 
3372
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:503
3373
+ msgid "Important!"
3374
  msgstr ""
3375
 
3376
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:505
3377
  msgid ""
3378
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
3379
+ "<code>mycred_no_sale</code>"
3380
  msgstr ""
3381
 
3382
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:506
3383
+ msgid "Users must be logged in to use this gateway!"
 
3384
  msgstr ""
3385
 
3386
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:515
3387
+ #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
3388
+ #: modules/mycred-module-log.php:634
3389
+ msgid "Log"
3390
  msgstr ""
3391
 
3392
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:518
3393
+ #: addons/import/myCRED-addon-import.php:549
3394
+ #: addons/import/myCRED-addon-import.php:623
3395
+ #: addons/import/myCRED-addon-import.php:681 includes/mycred-admin.php:735
3396
+ #: includes/mycred-admin.php:772 modules/mycred-module-log.php:1001
3397
+ #: modules/mycred-module-management.php:796
3398
+ msgid "Log Entry"
3399
  msgstr ""
3400
 
3401
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:528
3402
+ msgid "Solvent users"
3403
  msgstr ""
3404
 
3405
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:530
3406
  msgid ""
3407
+ "Message to show users on the payment page before they are charged. Leave "
3408
+ "empty to hide."
 
 
 
 
 
3409
  msgstr ""
3410
 
3411
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:533
3412
+ msgid "Insolvent users"
3413
  msgstr ""
3414
 
3415
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:535
3416
+ msgid "Message to show users who do not have enough points to pay."
3417
  msgstr ""
3418
 
3419
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:540
3420
+ msgid "Message to show visitors (users not logged in) on the payment page."
 
 
3421
  msgstr ""
3422
 
3423
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
3424
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
3425
+ msgid "Payment for tickets to %link_with_title%"
 
3426
  msgstr ""
3427
 
3428
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
3429
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:31
3430
+ msgid "Ticket refund for %link_with_title%"
3431
  msgstr ""
3432
 
3433
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
3434
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
3435
+ msgid "Pay using your %_plural% balance"
3436
  msgstr ""
3437
 
3438
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
3439
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:37
3440
+ msgid "Pay"
3441
  msgstr ""
3442
 
3443
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:43
3444
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
3445
+ msgid "Thank you for your payment!"
3446
  msgstr ""
3447
 
3448
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
3449
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:41
3450
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
3451
  msgstr ""
3452
 
3453
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:134
3454
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:366
3455
+ msgid "Ticket Type"
 
3456
  msgstr ""
3457
 
3458
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:143
3459
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:377
3460
+ msgid "Spaces"
3461
  msgstr ""
3462
 
3463
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:228
3464
+ msgid "You can not pay using this gateway."
3465
  msgstr ""
3466
 
3467
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:370
3468
+ msgid "Reject"
3469
  msgstr ""
3470
 
3471
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:379
3472
+ msgid "Edit/View"
3473
  msgstr ""
3474
 
3475
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:477
3476
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:596
3477
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
 
3478
  msgstr ""
3479
 
3480
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:478
3481
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:597
3482
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
 
3483
  msgstr ""
3484
 
3485
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:479
3486
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:598
3487
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
3488
  msgstr ""
3489
 
3490
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:483
3491
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516
3492
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:618
3493
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:651
3494
+ msgid "Refunds"
3495
  msgstr ""
3496
 
3497
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:486
3498
+ msgid ""
3499
+ "The percentage of the paid amount to refund if a user cancels their booking. "
3500
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
3501
  msgstr ""
3502
 
3503
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:506
3504
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:641
3505
+ #: addons/sell-content/myCRED-addon-sell-content.php:685
3506
+ #: addons/transfer/myCRED-addon-transfer.php:384
3507
+ msgid "Log Templates"
3508
  msgstr ""
3509
 
3510
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:509
3511
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:644
3512
+ msgid "Purchases"
3513
  msgstr ""
3514
 
3515
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:538
3516
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:661
3517
+ msgid "Payment Link Label"
3518
  msgstr ""
3519
 
3520
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:541
3521
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:664
3522
  msgid ""
3523
+ "The payment link shows / hides the payment form under \"My Bookings\". No "
3524
+ "HTML allowed."
3525
  msgstr ""
3526
 
3527
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:545
3528
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:668
3529
+ msgid "Payment Header"
3530
  msgstr ""
3531
 
3532
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:548
3533
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:671
3534
+ msgid "Shown on top of the payment form. No HTML allowed."
 
3535
  msgstr ""
3536
 
3537
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:555
3538
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:678
3539
+ msgid "The button label for payments. No HTML allowed!"
3540
  msgstr ""
3541
 
3542
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:562
3543
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:685
3544
+ msgid "Successful Payments"
 
3545
  msgstr ""
3546
 
3547
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:565
3548
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572
3549
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:688
3550
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:695
3551
+ msgid "No HTML allowed!"
3552
  msgstr ""
3553
 
3554
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:472
3555
+ msgid "Balance After Payment"
 
 
3556
  msgstr ""
3557
 
3558
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
3559
+ msgid "Click to toggle"
3560
  msgstr ""
3561
 
3562
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:586
3563
+ #, php-format
3564
+ msgid "%s Payments"
3565
  msgstr ""
3566
 
3567
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:621
3568
+ msgid ""
3569
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
3570
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
3571
  msgstr ""
3572
 
3573
+ #: addons/import/myCRED-addon-import.php:12
3574
+ #: addons/import/myCRED-addon-import.php:40
3575
+ #: addons/import/myCRED-addon-import.php:41
3576
+ #: addons/import/myCRED-addon-import.php:42
3577
+ #: addons/import/myCRED-addon-import.php:743
3578
+ #: includes/importers/mycred-balances.php:327
3579
+ #: includes/importers/mycred-cubepoints.php:344
3580
+ #: includes/importers/mycred-cubepoints.php:368
3581
+ #: includes/importers/mycred-log-entries.php:312
3582
+ msgid "Import"
3583
  msgstr ""
3584
 
3585
+ #: addons/import/myCRED-addon-import.php:13
3586
  msgid ""
3587
+ "With the Import add-on you can import CSV files, CubePoints or existing "
3588
+ "points under any custom user meta values."
 
3589
  msgstr ""
3590
 
3591
+ #: addons/import/myCRED-addon-import.php:91
3592
+ #: addons/import/myCRED-addon-import.php:749
3593
+ msgid "CSV File"
3594
  msgstr ""
3595
 
3596
+ #: addons/import/myCRED-addon-import.php:92
3597
+ msgid "Import %_plural% from a comma-separated values (CSV) file."
3598
  msgstr ""
3599
 
3600
+ #: addons/import/myCRED-addon-import.php:95
3601
+ msgid "CubePoints"
3602
  msgstr ""
3603
 
3604
+ #: addons/import/myCRED-addon-import.php:96
3605
+ #: includes/importers/mycred-cubepoints.php:305
3606
+ msgid "Import CubePoints"
 
 
 
3607
  msgstr ""
3608
 
3609
+ #: addons/import/myCRED-addon-import.php:99
3610
+ #: addons/import/myCRED-addon-import.php:769
3611
+ msgid "Custom User Meta"
3612
  msgstr ""
3613
 
3614
+ #: addons/import/myCRED-addon-import.php:100
3615
+ msgid "Import %_plural% from pre-existing custom user meta."
3616
  msgstr ""
3617
 
3618
+ #: addons/import/myCRED-addon-import.php:217
3619
+ msgid "No file selected. Please select your CSV file and try again."
3620
  msgstr ""
3621
 
3622
+ #: addons/import/myCRED-addon-import.php:232
3623
+ msgid "Failed to load file."
3624
  msgstr ""
3625
 
3626
+ #: addons/import/myCRED-addon-import.php:253
3627
+ #: addons/import/myCRED-addon-import.php:423
3628
+ #, php-format
3629
+ msgid ""
3630
+ "Zero rows imported! Skipped %d entries. Import completed in %.2f seconds."
3631
  msgstr ""
3632
 
3633
+ #: addons/import/myCRED-addon-import.php:262
3634
+ msgid ""
3635
+ "No valid records found in file. Make sure you have selected the correct way "
3636
+ "to identify users in the mycred_user column!"
3637
  msgstr ""
3638
 
3639
+ #: addons/import/myCRED-addon-import.php:268
3640
+ #: addons/import/myCRED-addon-import.php:351
3641
+ #: addons/import/myCRED-addon-import.php:438
3642
+ #, php-format
3643
+ msgid ""
3644
+ "Import successfully completed. A total of %d users were effected and %d "
3645
+ "entires were skipped. Import completed in %.2f seconds."
 
 
3646
  msgstr ""
3647
 
3648
+ #: addons/import/myCRED-addon-import.php:302
3649
+ #: addons/import/myCRED-addon-import.php:587
3650
+ msgid "No CubePoints found."
3651
  msgstr ""
3652
 
3653
+ #: addons/import/myCRED-addon-import.php:336
3654
+ #, php-format
3655
+ msgid ""
3656
+ "Zero CubePoints imported! Skipped %d entries. Import completed in %.2f "
3657
+ "seconds."
3658
  msgstr ""
3659
 
3660
+ #: addons/import/myCRED-addon-import.php:345
3661
+ msgid "No valid CubePoints founds."
 
 
3662
  msgstr ""
3663
 
3664
+ #: addons/import/myCRED-addon-import.php:371
3665
+ msgid "Missing meta key. Not sure what I should be looking for."
3666
  msgstr ""
3667
 
3668
+ #: addons/import/myCRED-addon-import.php:390
3669
+ #, php-format
3670
+ msgid "No rows found for the <strong>%s</strong> meta key."
3671
  msgstr ""
3672
 
3673
+ #: addons/import/myCRED-addon-import.php:432
3674
+ msgid "No valid records founds."
 
3675
  msgstr ""
3676
 
3677
+ #: addons/import/myCRED-addon-import.php:458 includes/mycred-admin.php:573
3678
+ #: includes/mycred-network.php:148
3679
+ msgid "Access Denied"
3680
  msgstr ""
3681
 
3682
+ #: addons/import/myCRED-addon-import.php:466
3683
+ #, php-format
3684
+ msgid "%s Import"
 
3685
  msgstr ""
3686
 
3687
+ #: addons/import/myCRED-addon-import.php:478
3688
+ msgid "Remember to de-activate this add-on once you are done importing!"
3689
  msgstr ""
3690
 
3691
+ #: addons/import/myCRED-addon-import.php:510
3692
+ msgid "File"
3693
  msgstr ""
3694
 
3695
+ #: addons/import/myCRED-addon-import.php:514
3696
+ msgid "Maximum allowed upload size is "
 
 
 
 
 
 
 
 
 
3697
  msgstr ""
3698
 
3699
+ #: addons/import/myCRED-addon-import.php:514
3700
+ msgid ""
3701
+ "Required columns: <code>mycred_user</code> and <code>mycred_amount</code>. "
3702
+ "Optional columns: <code>mycred_log</code>."
3703
  msgstr ""
3704
 
3705
+ #: addons/import/myCRED-addon-import.php:517
3706
+ msgid "Identify Users By"
 
3707
  msgstr ""
3708
 
3709
+ #: addons/import/myCRED-addon-import.php:522
3710
+ msgid "Email"
3711
  msgstr ""
3712
 
3713
+ #: addons/import/myCRED-addon-import.php:529
3714
+ msgid "How much is 1 imported value worth?"
3715
  msgstr ""
3716
 
3717
+ #: addons/import/myCRED-addon-import.php:534
3718
+ #: addons/import/myCRED-addon-import.php:602
3719
+ #: addons/import/myCRED-addon-import.php:666
3720
+ msgid "Round"
3721
  msgstr ""
3722
 
3723
+ #: addons/import/myCRED-addon-import.php:535
3724
+ msgid "None"
3725
  msgstr ""
3726
 
3727
+ #: addons/import/myCRED-addon-import.php:536
3728
+ #: addons/import/myCRED-addon-import.php:604
3729
+ #: addons/import/myCRED-addon-import.php:668
3730
+ msgid "Round Up"
3731
  msgstr ""
3732
 
3733
+ #: addons/import/myCRED-addon-import.php:537
3734
+ #: addons/import/myCRED-addon-import.php:605
3735
+ #: addons/import/myCRED-addon-import.php:669
3736
+ msgid "Round Down"
3737
  msgstr ""
3738
 
3739
+ #: addons/import/myCRED-addon-import.php:542
3740
+ #: addons/import/myCRED-addon-import.php:610
3741
+ #: addons/import/myCRED-addon-import.php:674
3742
+ msgid "Precision"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3743
  msgstr ""
3744
 
3745
+ #: addons/import/myCRED-addon-import.php:544
3746
+ #: addons/import/myCRED-addon-import.php:612
3747
+ #: addons/import/myCRED-addon-import.php:676
3748
  msgid ""
3749
+ "The optional number of decimal digits to round to. Use zero to round the "
3750
+ "nearest whole number."
3751
  msgstr ""
3752
 
3753
+ #: addons/import/myCRED-addon-import.php:553
3754
+ #: addons/import/myCRED-addon-import.php:627
3755
+ #: addons/import/myCRED-addon-import.php:685
3756
+ msgid "See the help tab for available template tags. Leave blank to disable."
3757
  msgstr ""
3758
 
3759
+ #: addons/import/myCRED-addon-import.php:558
3760
+ #: addons/import/myCRED-addon-import.php:632
3761
+ #: addons/import/myCRED-addon-import.php:696
3762
+ msgid "Run Import"
3763
  msgstr ""
3764
 
3765
+ #: addons/import/myCRED-addon-import.php:585
3766
+ #, php-format
3767
+ msgid "Found %d users with CubePoints."
3768
  msgstr ""
3769
 
3770
+ #: addons/import/myCRED-addon-import.php:588
3771
+ #: addons/import/myCRED-addon-import.php:652
3772
+ #: modules/mycred-module-settings.php:746
3773
+ #: modules/mycred-module-settings.php:772
3774
+ #: modules/mycred-module-settings.php:802
3775
+ msgid "Meta Key"
3776
  msgstr ""
3777
 
3778
+ #: addons/import/myCRED-addon-import.php:603
3779
+ #: addons/import/myCRED-addon-import.php:667
3780
+ msgid "Do not round"
3781
  msgstr ""
3782
 
3783
+ #: addons/import/myCRED-addon-import.php:617
3784
+ #: addons/import/myCRED-addon-import.php:688
3785
+ msgid "After Import"
3786
  msgstr ""
3787
 
3788
+ #: addons/import/myCRED-addon-import.php:620
3789
+ msgid "Delete users CubePoints balance."
3790
  msgstr ""
3791
 
3792
+ #: addons/import/myCRED-addon-import.php:691
3793
+ msgid "Delete the old value."
3794
  msgstr ""
3795
 
3796
+ #: addons/import/myCRED-addon-import.php:720
3797
+ msgid "Failed to get file contents."
3798
+ msgstr ""
3799
+
3800
+ #: addons/import/myCRED-addon-import.php:725
3801
+ msgid "Failed to put file contents."
3802
  msgstr ""
3803
 
3804
+ #: addons/import/myCRED-addon-import.php:745
3805
+ msgid ""
3806
+ "This add-on lets you import %_plural% either though a CSV-file or from your "
3807
+ "database. Remember that the import can take time depending on your file size "
3808
+ "or the number of users being imported."
3809
  msgstr ""
3810
 
3811
+ #: addons/import/myCRED-addon-import.php:751
3812
+ msgid "CSV Import"
3813
  msgstr ""
3814
 
3815
+ #: addons/import/myCRED-addon-import.php:752
3816
+ msgid ""
3817
+ "Imports using a comma-separated values file requires the following columns:"
3818
  msgstr ""
3819
 
3820
+ #: addons/import/myCRED-addon-import.php:753
3821
+ msgid ""
3822
+ "Column identifing the user. All rows must identify the user the same way, "
3823
+ "either using an ID, Username (user_login) or email. Users that can not be "
3824
+ "found will be ignored."
3825
  msgstr ""
3826
 
3827
+ #: addons/import/myCRED-addon-import.php:754
3828
+ msgid ""
3829
+ "Column with the amount to be imported. If set, an exchange rate is applied "
3830
+ "to this value before import."
3831
  msgstr ""
3832
 
3833
+ #: addons/import/myCRED-addon-import.php:755
3834
+ msgid ""
3835
+ "Optionally you can also use the <code>mycred_log</code> column to pre-define "
3836
+ "the log entry for each import."
3837
  msgstr ""
3838
 
3839
+ #: addons/import/myCRED-addon-import.php:759
3840
+ msgid "Cubepoints"
3841
  msgstr ""
3842
 
3843
+ #: addons/import/myCRED-addon-import.php:761
3844
+ msgid "Cubepoints Import"
 
3845
  msgstr ""
3846
 
3847
+ #: addons/import/myCRED-addon-import.php:762
3848
+ msgid ""
3849
+ "When this page loads, the importer will automatically check if you have been "
3850
+ "using Cubepoints. If you have, you can import these with the option to "
3851
+ "delete the original Cubepoints once completed to help keep your database "
3852
+ "clean."
3853
  msgstr ""
3854
 
3855
+ #: addons/import/myCRED-addon-import.php:763
3856
+ #: addons/import/myCRED-addon-import.php:773
3857
+ msgid ""
3858
+ "Before a value is imported, you can apply an exchange rate. To import "
3859
+ "without changing the value, use 1 as the exchange rate."
3860
  msgstr ""
3861
 
3862
+ #: addons/import/myCRED-addon-import.php:764
3863
+ #: addons/import/myCRED-addon-import.php:774
3864
+ msgid ""
3865
+ "You can select to add a log entry for each import or leave the template "
3866
+ "empty to skip."
3867
  msgstr ""
3868
 
3869
+ #: addons/import/myCRED-addon-import.php:765
3870
+ msgid ""
3871
+ "The Cubepoints importer will automatically disable itself if no Cubepoints "
3872
+ "installation exists."
3873
  msgstr ""
3874
 
3875
+ #: addons/import/myCRED-addon-import.php:771
3876
+ msgid "Custom User Meta Import"
3877
  msgstr ""
3878
 
3879
+ #: addons/import/myCRED-addon-import.php:772
3880
+ msgid ""
3881
+ "You can import any type of points that have previously been saved in your "
3882
+ "database. All you need is the meta key under which it has been saved."
3883
  msgstr ""
3884
 
3885
+ #: addons/import/myCRED-addon-import.php:775
3886
+ msgid ""
3887
+ "Please note that the meta key is case sensitive and can not contain "
3888
+ "whitespaces!"
3889
  msgstr ""
3890
 
3891
+ #: addons/notifications/myCRED-addon-notifications.php:195
3892
+ msgid "Notifications"
3893
  msgstr ""
3894
 
3895
+ #: addons/notifications/myCRED-addon-notifications.php:202
3896
+ #: addons/ranks/myCRED-addon-ranks.php:1682
3897
+ #: addons/ranks/myCRED-addon-ranks.php:1723
3898
+ #: modules/mycred-module-buddypress.php:453
3899
+ msgid "Template"
3900
  msgstr ""
3901
 
3902
+ #: addons/notifications/myCRED-addon-notifications.php:204
3903
  msgid ""
3904
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
 
3905
  msgstr ""
3906
 
3907
+ #: addons/notifications/myCRED-addon-notifications.php:204
3908
+ msgid "Restore to default"
3909
  msgstr ""
3910
 
3911
+ #: addons/notifications/myCRED-addon-notifications.php:211
3912
+ msgid "Transient Lifespan"
3913
  msgstr ""
3914
 
3915
+ #: addons/notifications/myCRED-addon-notifications.php:213
3916
+ msgid ""
3917
+ "The number of days a users notification is saved before being automatically "
3918
+ "deleted."
3919
  msgstr ""
3920
 
3921
+ #: addons/notifications/myCRED-addon-notifications.php:218
3922
+ msgid "Duration"
3923
  msgstr ""
3924
 
3925
+ #: addons/notifications/myCRED-addon-notifications.php:220
3926
+ msgid ""
3927
+ "Number of seconds before a notice is automatically removed after being shown "
3928
+ "to user. Use zero to disable."
3929
  msgstr ""
3930
 
3931
+ #: addons/notifications/myCRED-addon-notifications.php:228
3932
+ msgid "Use the included CSS Styling for notifications."
 
 
3933
  msgstr ""
3934
 
3935
  #: addons/ranks/myCRED-addon-ranks.php:241
3942
  #: addons/ranks/myCRED-addon-ranks.php:262
3943
  #: addons/ranks/myCRED-addon-ranks.php:430
3944
  #: addons/ranks/myCRED-addon-ranks.php:431
3945
+ #: addons/ranks/myCRED-addon-ranks.php:824
3946
+ #: addons/ranks/myCRED-addon-ranks.php:1540
3947
+ #: addons/ranks/myCRED-addon-ranks.php:1842
3948
  msgid "Ranks"
3949
  msgstr ""
3950
 
3951
  #: addons/ranks/myCRED-addon-ranks.php:247
3952
+ #: addons/ranks/myCRED-addon-ranks.php:824
3953
+ #: addons/ranks/myCRED-addon-ranks.php:979
3954
+ #: addons/ranks/myCRED-addon-ranks.php:982
3955
+ #: addons/ranks/myCRED-addon-ranks.php:1032
3956
  msgid "Rank"
3957
  msgstr ""
3958
 
3973
  msgstr ""
3974
 
3975
  #: addons/ranks/myCRED-addon-ranks.php:255
3976
+ #: addons/ranks/myCRED-addon-ranks.php:1556
3977
  msgid "Rank Logo"
3978
  msgstr ""
3979
 
3990
  msgstr ""
3991
 
3992
  #: addons/ranks/myCRED-addon-ranks.php:259
3993
+ #: addons/ranks/myCRED-addon-ranks.php:1464
3994
  msgid "No ranks found"
3995
  msgstr ""
3996
 
4021
  msgid "Completed - Total of %d users effected"
4022
  msgstr ""
4023
 
4024
+ #: addons/ranks/myCRED-addon-ranks.php:1001
4025
  msgid "No ranks exists."
4026
  msgstr ""
4027
 
4028
+ #: addons/ranks/myCRED-addon-ranks.php:1019
4029
  msgid "No rank"
4030
  msgstr ""
4031
 
4032
+ #: addons/ranks/myCRED-addon-ranks.php:1161
4033
  msgid "Warning! All ranks will be deleted! This can not be undone!"
4034
  msgstr ""
4035
 
4036
+ #: addons/ranks/myCRED-addon-ranks.php:1162
4037
  msgid "Are you sure you want to re-assign user ranks?"
4038
  msgstr ""
4039
 
4040
+ #: addons/ranks/myCRED-addon-ranks.php:1251
4041
+ #: addons/ranks/myCRED-addon-ranks.php:1352
4042
  msgid "Rank Title"
4043
  msgstr ""
4044
 
4045
+ #: addons/ranks/myCRED-addon-ranks.php:1252
4046
  msgid "Logo"
4047
  msgstr ""
4048
 
4049
+ #: addons/ranks/myCRED-addon-ranks.php:1279
4050
  msgid "No Logo Set"
4051
  msgstr ""
4052
 
4053
+ #: addons/ranks/myCRED-addon-ranks.php:1294
4054
+ #: addons/ranks/myCRED-addon-ranks.php:1299
4055
  msgid "Any Value"
4056
  msgstr ""
4057
 
4058
+ #: addons/ranks/myCRED-addon-ranks.php:1296
4059
  msgid "Minimum %plural%"
4060
  msgstr ""
4061
 
4062
+ #: addons/ranks/myCRED-addon-ranks.php:1301
4063
  msgid "Maximum %plural%"
4064
  msgstr ""
4065
 
4066
+ #: addons/ranks/myCRED-addon-ranks.php:1367
4067
  msgid "Rank Setup"
4068
  msgstr ""
4069
 
4070
+ #: addons/ranks/myCRED-addon-ranks.php:1408
4071
  msgid "Minimum Balance Requirement"
4072
  msgstr ""
4073
 
4074
+ #: addons/ranks/myCRED-addon-ranks.php:1414
4075
  msgid "Maximum Balance Requirement"
4076
  msgstr ""
4077
 
4078
+ #: addons/ranks/myCRED-addon-ranks.php:1453
4079
+ #: addons/ranks/myCRED-addon-ranks.php:1454
4080
  msgid "Not Set"
4081
  msgstr ""
4082
 
4083
+ #: addons/ranks/myCRED-addon-ranks.php:1547
4084
  msgid "Rank Features"
4085
  msgstr ""
4086
 
4087
+ #: addons/ranks/myCRED-addon-ranks.php:1553
4088
+ msgid "%plural% requirement"
 
 
 
 
 
 
 
 
 
4089
  msgstr ""
4090
 
4091
+ #: addons/ranks/myCRED-addon-ranks.php:1559
4092
+ msgid "Content"
4093
+ msgstr ""
4094
+
4095
+ #: addons/ranks/myCRED-addon-ranks.php:1562
4096
+ msgid "Excerpt"
4097
+ msgstr ""
4098
+
4099
+ #: addons/ranks/myCRED-addon-ranks.php:1565
4100
+ msgid "Comments"
4101
+ msgstr ""
4102
+
4103
+ #: addons/ranks/myCRED-addon-ranks.php:1568
4104
+ msgid "Page Attributes"
4105
+ msgstr ""
4106
+
4107
+ #: addons/ranks/myCRED-addon-ranks.php:1571
4108
+ msgid "Custom Fields"
4109
+ msgstr ""
4110
+
4111
+ #: addons/ranks/myCRED-addon-ranks.php:1576
4112
+ msgid "Rank Post Type"
4113
+ msgstr ""
4114
+
4115
+ #: addons/ranks/myCRED-addon-ranks.php:1579
4116
+ msgid "Make Ranks Public"
4117
+ msgstr ""
4118
+
4119
+ #: addons/ranks/myCRED-addon-ranks.php:1583
4120
+ msgid "Rank SLUG"
4121
+ msgstr ""
4122
+
4123
+ #: addons/ranks/myCRED-addon-ranks.php:1585
4124
+ msgid ""
4125
+ "If you have selected to make Ranks public, you can select what rank archive "
4126
+ "URL slug you want to use. Ignored if Ranks are not set to be public."
4127
+ msgstr ""
4128
+
4129
+ #: addons/ranks/myCRED-addon-ranks.php:1588
4130
+ msgid "Display Order"
4131
+ msgstr ""
4132
+
4133
+ #: addons/ranks/myCRED-addon-ranks.php:1594
4134
+ msgid "Ascending - Lowest rank to highest"
4135
+ msgstr ""
4136
+
4137
+ #: addons/ranks/myCRED-addon-ranks.php:1595
4138
+ msgid "Descending - Highest rank to lowest"
4139
+ msgstr ""
4140
+
4141
+ #: addons/ranks/myCRED-addon-ranks.php:1606
4142
+ msgid "Option to set in which order Ranks should be shown on the archive page."
4143
+ msgstr ""
4144
+
4145
+ #: addons/ranks/myCRED-addon-ranks.php:1613
4146
+ msgid "Rank Behaviour"
4147
+ msgstr ""
4148
+
4149
+ #: addons/ranks/myCRED-addon-ranks.php:1618
4150
+ msgid "Manual Mode"
4151
+ msgstr ""
4152
+
4153
+ #: addons/ranks/myCRED-addon-ranks.php:1620
4154
+ msgid "Ranks are assigned manually for each user."
4155
+ msgstr ""
4156
+
4157
+ #: addons/ranks/myCRED-addon-ranks.php:1626
4158
+ msgid "Based on Current Balances"
4159
+ msgstr ""
4160
+
4161
+ #: addons/ranks/myCRED-addon-ranks.php:1628
4162
+ msgid ""
4163
+ "Users can be promoted or demoted depending on where their balance fits in "
4164
+ "amongst your ranks."
4165
+ msgstr ""
4166
+
4167
+ #: addons/ranks/myCRED-addon-ranks.php:1634
4168
+ msgid "Based on Total Balances"
4169
+ msgstr ""
4170
+
4171
+ #: addons/ranks/myCRED-addon-ranks.php:1636
4172
+ msgid ""
4173
+ "Users can only be promoted and gain higher ranks even if their balance "
4174
+ "decreases."
4175
+ msgstr ""
4176
+
4177
+ #: addons/ranks/myCRED-addon-ranks.php:1643
4178
+ msgid "Tools"
4179
+ msgstr ""
4180
+
4181
+ #: addons/ranks/myCRED-addon-ranks.php:1644
4182
+ msgid ""
4183
+ "Use this button to calculate or recalculate each individual users total "
4184
+ "balance if you think your users total balances are incorrect, or if you "
4185
+ "switch from Ranks being based on users current balance to total balance."
4186
+ msgstr ""
4187
+
4188
+ #: addons/ranks/myCRED-addon-ranks.php:1645
4189
+ msgid "Calculate Totals"
4190
+ msgstr ""
4191
+
4192
+ #: addons/ranks/myCRED-addon-ranks.php:1665
4193
+ #: addons/ranks/myCRED-addon-ranks.php:1706
4194
+ msgid "Do not show."
4195
+ msgstr ""
4196
+
4197
+ #: addons/ranks/myCRED-addon-ranks.php:1666
4198
+ msgid "Include in Profile Header."
4199
+ msgstr ""
4200
+
4201
+ #: addons/ranks/myCRED-addon-ranks.php:1668
4202
+ msgid "Include under the \"Profile\" tab and Profile Header."
4203
+ msgstr ""
4204
+
4205
+ #: addons/ranks/myCRED-addon-ranks.php:1684
4206
+ #: addons/ranks/myCRED-addon-ranks.php:1725
4207
+ msgid ""
4208
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4209
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
4210
+ msgstr ""
4211
+
4212
+ #: addons/ranks/myCRED-addon-ranks.php:1707
4213
+ msgid "Include in Topic Replies"
4214
+ msgstr ""
4215
+
4216
+ #: addons/ranks/myCRED-addon-ranks.php:1709
4217
+ msgid "Include in Topic Replies and Profile"
4218
+ msgstr ""
4219
+
4220
+ #: addons/ranks/myCRED-addon-ranks.php:1845
4221
+ msgid "User Meta Key"
4222
+ msgstr ""
4223
+
4224
+ #: addons/ranks/myCRED-addon-ranks.php:1849
4225
+ msgid "No. of ranks"
4226
+ msgstr ""
4227
+
4228
+ #: addons/ranks/myCRED-addon-ranks.php:1854
4229
+ msgid "Remove All Ranks"
4230
+ msgstr ""
4231
+
4232
+ #: addons/ranks/myCRED-addon-ranks.php:1854
4233
+ msgid "Assign Ranks to Users"
4234
+ msgstr ""
4235
+
4236
+ #: addons/sell-content/myCRED-addon-sell-content.php:153
4237
+ msgid "Error"
4238
+ msgstr ""
4239
+
4240
+ #: addons/sell-content/myCRED-addon-sell-content.php:378
4241
+ msgid "Users profit share when their content is purchased."
4242
+ msgstr ""
4243
+
4244
+ #: addons/sell-content/myCRED-addon-sell-content.php:381
4245
+ #: addons/sell-content/myCRED-addon-sell-content.php:384
4246
+ #: addons/sell-content/myCRED-addon-sell-content.php:664
4247
+ msgid "Profit Share"
4248
+ msgstr ""
4249
+
4250
+ #: addons/sell-content/myCRED-addon-sell-content.php:394
4251
+ #: addons/sell-content/myCRED-addon-sell-content.php:409
4252
+ #, php-format
4253
+ msgctxt "Points Name"
4254
+ msgid "%s Profit Share"
4255
+ msgstr ""
4256
+
4257
+ #: addons/sell-content/myCRED-addon-sell-content.php:397
4258
+ msgid "Not accepted as payment."
4259
+ msgstr ""
4260
+
4261
+ #: addons/sell-content/myCRED-addon-sell-content.php:412
4262
+ #, php-format
4263
+ msgctxt "Points Name"
4264
+ msgid "User can not pay using %s"
4265
+ msgstr ""
4266
+
4267
+ #: addons/sell-content/myCRED-addon-sell-content.php:424
4268
+ #, php-format
4269
+ msgctxt "Buying Points"
4270
+ msgid "%s Profit Share"
4271
+ msgstr ""
4272
+
4273
+ #: addons/sell-content/myCRED-addon-sell-content.php:427
4274
+ msgid "Leave empty to use the default."
4275
+ msgstr ""
4276
+
4277
+ #: addons/sell-content/myCRED-addon-sell-content.php:481
4278
+ #: modules/mycred-module-export.php:378 modules/mycred-module-network.php:156
4279
+ #: modules/mycred-module-network.php:280 modules/mycred-module-network.php:296
4280
+ msgid "Enabled"
4281
+ msgstr ""
4282
+
4283
+ #: addons/sell-content/myCRED-addon-sell-content.php:508
4284
+ #: addons/sell-content/myCRED-addon-sell-content.php:1000
4285
+ msgid "Sell Content"
4286
  msgstr ""
4287
 
4288
+ #: addons/sell-content/myCRED-addon-sell-content.php:511
4289
+ msgid "Post Types"
4290
  msgstr ""
4291
 
4292
+ #: addons/sell-content/myCRED-addon-sell-content.php:512
4293
+ msgid "Which post type(s) content field do you want to sell access to?"
4294
  msgstr ""
4295
 
4296
+ #: addons/sell-content/myCRED-addon-sell-content.php:582
4297
+ msgid "Which point type(s) can be used as payment for accessing content?"
4298
  msgstr ""
4299
 
4300
+ #: addons/sell-content/myCRED-addon-sell-content.php:635
4301
+ #: addons/sell-content/myCRED-addon-sell-content.php:1019
4302
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:198
4303
+ msgid "Hour(s)"
4304
  msgstr ""
4305
 
4306
+ #: addons/sell-content/myCRED-addon-sell-content.php:639
4307
+ #: includes/mycred-setup.php:105
4308
+ #, php-format
4309
+ msgid "%s Setup"
4310
  msgstr ""
4311
 
4312
+ #: addons/sell-content/myCRED-addon-sell-content.php:643
4313
+ msgid "Default Status"
4314
  msgstr ""
4315
 
4316
+ #: addons/sell-content/myCRED-addon-sell-content.php:651
4317
+ msgid "Default Price"
4318
  msgstr ""
4319
 
4320
+ #: addons/sell-content/myCRED-addon-sell-content.php:657
4321
+ #: addons/sell-content/myCRED-addon-sell-content.php:1082
4322
+ msgid "Expiration"
4323
  msgstr ""
4324
 
4325
+ #: addons/sell-content/myCRED-addon-sell-content.php:659
4326
+ #, php-format
4327
  msgid ""
4328
+ "Option to automatically expire purchases after certain number of %s. Use "
4329
+ "zero to disable."
4330
  msgstr ""
4331
 
4332
+ #: addons/sell-content/myCRED-addon-sell-content.php:666
4333
+ msgid "Option to pay a percentage of each sale with the content author."
4334
  msgstr ""
4335
 
4336
+ #: addons/sell-content/myCRED-addon-sell-content.php:680
4337
+ msgid "Button CSS Classes"
4338
  msgstr ""
4339
 
4340
+ #: addons/sell-content/myCRED-addon-sell-content.php:689
4341
+ msgid "Payment log entry template"
4342
  msgstr ""
4343
 
4344
+ #: addons/sell-content/myCRED-addon-sell-content.php:696
4345
+ msgid "Profit Share payout log entry template"
4346
  msgstr ""
4347
 
4348
+ #: addons/sell-content/myCRED-addon-sell-content.php:710
4349
+ msgid "Transactions"
4350
  msgstr ""
4351
 
4352
+ #: addons/sell-content/myCRED-addon-sell-content.php:714
4353
+ msgid "Reload page after successful payments."
4354
  msgstr ""
4355
 
4356
+ #: addons/sell-content/myCRED-addon-sell-content.php:721
4357
+ msgid ""
4358
+ "Option to show a custom button label while the payment is being processed. "
4359
+ "HTML is allowed."
4360
  msgstr ""
4361
 
4362
+ #: addons/sell-content/myCRED-addon-sell-content.php:728
4363
+ msgid "Purchase Template"
4364
  msgstr ""
4365
 
4366
+ #: addons/sell-content/myCRED-addon-sell-content.php:729
4367
  msgid ""
4368
+ "The content will be replaced with this template when viewed by a user that "
4369
+ "has not paid for the content but can afford to pay."
4370
  msgstr ""
4371
 
4372
+ #: addons/sell-content/myCRED-addon-sell-content.php:745
4373
+ msgid "Insufficient Funds Template"
4374
  msgstr ""
4375
 
4376
+ #: addons/sell-content/myCRED-addon-sell-content.php:746
4377
  msgid ""
4378
+ "The content will be replaced with this template when viewed by a user that "
4379
+ "has not paid for the content and can not afford to pay."
4380
  msgstr ""
4381
 
4382
+ #: addons/sell-content/myCRED-addon-sell-content.php:762
4383
+ #: addons/transfer/myCRED-addon-transfer.php:421
4384
+ msgid "Visitors Template"
4385
  msgstr ""
4386
 
4387
+ #: addons/sell-content/myCRED-addon-sell-content.php:763
4388
  msgid ""
4389
+ "The content will be replaced with this template when viewed by someone who "
4390
+ "is not logged in on your website."
 
4391
  msgstr ""
4392
 
4393
+ #: addons/sell-content/myCRED-addon-sell-content.php:1059
4394
+ msgid "Never expires"
4395
  msgstr ""
4396
 
4397
+ #: addons/sell-content/myCRED-addon-sell-content.php:1068
4398
+ #, php-format
4399
+ msgid "Sell using %s"
4400
  msgstr ""
4401
 
4402
+ #: addons/sell-content/includes/mycred-sell-functions.php:559
4403
+ #, php-format
4404
+ msgctxt "Point type name"
4405
+ msgid "You can not pay using %s"
4406
  msgstr ""
4407
 
4408
+ #: addons/sell-content/includes/mycred-sell-functions.php:820
4409
+ #, php-format
4410
+ msgctxt "all post type name"
4411
+ msgid "All %s"
4412
  msgstr ""
4413
 
4414
+ #: addons/sell-content/includes/mycred-sell-functions.php:824
4415
+ #, php-format
4416
+ msgctxt "all post type name"
4417
+ msgid "%s I manually select"
 
4418
  msgstr ""
4419
 
4420
+ #: addons/sell-content/includes/mycred-sell-functions.php:828
4421
+ #, php-format
4422
+ msgctxt "%s = post type name"
4423
+ msgid "All %s except"
4424
  msgstr ""
4425
 
4426
+ #: addons/sell-content/includes/mycred-sell-functions.php:829
4427
+ #, php-format
4428
+ msgctxt "%s = post type name"
4429
+ msgid "Comma separated list of %s IDs to exclude"
4430
  msgstr ""
4431
 
4432
+ #: addons/sell-content/includes/mycred-sell-functions.php:832
4433
+ #, php-format
4434
+ msgctxt "%s = post type name"
4435
+ msgid "Only %s"
4436
  msgstr ""
4437
 
4438
+ #: addons/sell-content/includes/mycred-sell-functions.php:833
4439
+ #, php-format
4440
+ msgctxt "%s = post type name"
4441
+ msgid "Comma separated list of %s IDs"
4442
  msgstr ""
4443
 
4444
+ #: addons/sell-content/includes/mycred-sell-functions.php:845
4445
+ #, php-format
4446
+ msgctxt "e.g. Only \"Posts\" in \"Categories\""
4447
+ msgid "Only %s in %s"
4448
  msgstr ""
4449
 
4450
+ #: addons/sell-content/includes/mycred-sell-functions.php:846
4451
+ #: addons/sell-content/includes/mycred-sell-functions.php:850
4452
+ #: addons/sell-content/includes/mycred-sell-functions.php:856
4453
+ #: addons/sell-content/includes/mycred-sell-functions.php:860
4454
+ #, php-format
4455
+ msgctxt "%s = taxonomy name"
4456
+ msgid "Comma separated list of %s slugs"
4457
  msgstr ""
4458
 
4459
+ #: addons/sell-content/includes/mycred-sell-functions.php:849
4460
+ #, php-format
4461
+ msgctxt "e.g. Only \"Posts\" not in \"Categories\""
4462
+ msgid "Only %s not in %s"
4463
  msgstr ""
4464
 
4465
+ #: addons/sell-content/includes/mycred-sell-functions.php:855
4466
+ #, php-format
4467
+ msgctxt "e.g. Only \"Posts\" with \"Tags\""
4468
+ msgid "Only %s with %s"
4469
  msgstr ""
4470
 
4471
+ #: addons/sell-content/includes/mycred-sell-functions.php:859
4472
+ #, php-format
4473
+ msgctxt "e.g. Only \"Posts\" without \"Tags\""
4474
+ msgid "Only %s without %s"
 
 
4475
  msgstr ""
4476
 
4477
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
4478
+ msgid ""
4479
+ "This shortcode can not be used in content that has not been set for sale!"
4480
  msgstr ""
4481
 
4482
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:68
4483
+ #: includes/classes/class.query-log.php:1738
4484
+ #: modules/mycred-module-management.php:583
4485
+ msgid "Edit"
4486
  msgstr ""
4487
 
4488
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:70
4489
+ msgid ""
4490
+ "This content is currently unattainable. Apologies for the inconvenience."
4491
  msgstr ""
4492
 
4493
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:248
4494
+ msgid "Never"
4495
  msgstr ""
4496
 
4497
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:250
4498
+ #, php-format
4499
+ msgctxt "e.g. 10 hours"
4500
+ msgid "Purchase expires in %s"
4501
  msgstr ""
4502
 
4503
+ #: addons/stats/myCRED-addon-stats.php:360
4504
+ msgid "Statistics"
4505
  msgstr ""
4506
 
4507
+ #: addons/stats/myCRED-addon-stats.php:366
4508
+ msgid "Statistics Color"
4509
  msgstr ""
4510
 
4511
+ #: addons/stats/myCRED-addon-stats.php:371
4512
+ msgid "Positive Values"
4513
  msgstr ""
4514
 
4515
+ #: addons/stats/myCRED-addon-stats.php:379
4516
+ msgid "Negative Values"
4517
  msgstr ""
4518
 
4519
+ #: addons/stats/myCRED-addon-stats.php:397
4520
+ #: modules/mycred-module-caching.php:251
4521
+ msgid "Optimization"
4522
  msgstr ""
4523
 
4524
+ #: addons/stats/myCRED-addon-stats.php:398
4525
  msgid ""
4526
+ "Disabling these features can improve render time of your charts, especially "
4527
+ "if you are showing a large number of charts on a single page. You can also "
4528
+ "select to disable these features when using the chart shortcodes."
4529
  msgstr ""
4530
 
4531
+ #: addons/stats/myCRED-addon-stats.php:404
4532
+ msgid "Animate Charts"
 
 
4533
  msgstr ""
4534
 
4535
+ #: addons/stats/myCRED-addon-stats.php:413
4536
+ msgid "Use Bezier Curves"
4537
  msgstr ""
4538
 
4539
+ #: addons/stats/myCRED-addon-stats.php:421
4540
+ msgid "Caching"
4541
  msgstr ""
4542
 
4543
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
4544
+ #: includes/importers/mycred-log-entries.php:214
4545
+ msgid "View Log"
4546
  msgstr ""
4547
 
4548
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
4549
+ #: modules/mycred-module-hooks.php:29 modules/mycred-module-hooks.php:30
4550
+ #: modules/mycred-module-hooks.php:31 modules/mycred-module-hooks.php:295
4551
+ msgid "Hooks"
4552
  msgstr ""
4553
 
4554
+ #: addons/stats/includes/mycred-stats-functions.php:192
 
4555
  #, php-format
4556
+ msgid "Week %d"
 
4557
  msgstr ""
4558
 
4559
+ #: addons/stats/includes/mycred-stats-functions.php:404
4560
+ msgid "Clear data once an hour"
4561
  msgstr ""
4562
 
4563
+ #: addons/stats/includes/mycred-stats-functions.php:405
4564
+ msgid "Clear data every six hours"
 
 
4565
  msgstr ""
4566
 
4567
+ #: addons/stats/includes/mycred-stats-functions.php:406
4568
+ msgid "Clear data twice a day"
 
 
4569
  msgstr ""
4570
 
4571
+ #: addons/stats/includes/mycred-stats-functions.php:407
4572
+ msgid "Clear data once a day"
4573
  msgstr ""
4574
 
4575
+ #: addons/stats/includes/mycred-stats-functions.php:635
4576
+ msgid "Gains"
 
4577
  msgstr ""
4578
 
4579
+ #: addons/stats/includes/mycred-stats-functions.php:643
4580
+ msgid "Losses"
4581
  msgstr ""
4582
 
4583
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
4584
+ #, php-format
4585
+ msgid "Total %s:"
4586
  msgstr ""
4587
 
4588
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
4589
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:264
4590
+ #: includes/mycred-overview.php:120
4591
+ msgid "Total amount in circulation"
4592
  msgstr ""
4593
 
4594
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
4595
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:266
4596
+ #, php-format
4597
+ msgid "Total amount of %s in circulation"
4598
  msgstr ""
4599
 
4600
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
4601
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:301
4602
+ msgid "Total gains (%)"
4603
  msgstr ""
4604
 
4605
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:174
4606
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:305
4607
+ msgid "Total loses (%)"
4608
  msgstr ""
4609
 
4610
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
4611
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
4612
+ #, php-format
4613
+ msgid "Total Gained: %s"
4614
  msgstr ""
4615
 
4616
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:178
4617
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:308
4618
  #, php-format
4619
+ msgid "Total Spent: %s"
 
 
4620
  msgstr ""
4621
 
4622
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
4623
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:319
4624
+ #: includes/mycred-log.php:837 includes/classes/class.query-log.php:1863
4625
+ #: modules/mycred-module-buddypress.php:237
4626
+ msgid "Today"
4627
  msgstr ""
4628
 
4629
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
4630
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
4631
+ #: includes/mycred-log.php:839 includes/classes/class.query-log.php:1865
4632
+ #: modules/mycred-module-buddypress.php:239
4633
+ msgid "This Week"
 
4634
  msgstr ""
4635
 
4636
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
4637
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
4638
+ #: includes/mycred-log.php:840 includes/classes/class.query-log.php:1866
4639
+ #: modules/mycred-module-buddypress.php:240
4640
+ msgid "This Month"
4641
  msgstr ""
4642
 
4643
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
4644
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
4645
+ msgid "This Year"
4646
  msgstr ""
4647
 
4648
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
4649
+ msgid "Most common ways your users have gained points during this period."
4650
  msgstr ""
4651
 
4652
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
4653
+ msgid "Most common ways your users have gained %_plural% during this period."
4654
  msgstr ""
4655
 
4656
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
4657
+ msgid "Gains in the last 10 days"
4658
  msgstr ""
4659
 
4660
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
4661
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
4662
+ msgid "No data found"
 
4663
  msgstr ""
4664
 
4665
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
4666
+ msgid ""
4667
+ "Most common ways your users have lost or spent points during this period."
4668
  msgstr ""
4669
 
4670
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
4671
  msgid ""
4672
+ "Most common ways your users have lost or spent %_plural% during this period."
 
4673
  msgstr ""
4674
 
4675
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
4676
+ msgid "Loses in the last 10 days"
4677
  msgstr ""
4678
 
4679
+ #: addons/transfer/myCRED-addon-transfer.php:168
4680
+ msgid "Transaction completed."
 
 
4681
  msgstr ""
4682
 
4683
+ #: addons/transfer/myCRED-addon-transfer.php:169
4684
  msgid ""
4685
+ "Security token could not be verified. Please contact your site administrator!"
 
4686
  msgstr ""
4687
 
4688
+ #: addons/transfer/myCRED-addon-transfer.php:170
4689
+ #: addons/transfer/myCRED-addon-transfer.php:177
4690
+ msgid "Communications error. Please try again later."
4691
  msgstr ""
4692
 
4693
+ #: addons/transfer/myCRED-addon-transfer.php:171
4694
+ msgid "Recipient not found. Please try again."
 
 
 
4695
  msgstr ""
4696
 
4697
+ #: addons/transfer/myCRED-addon-transfer.php:172
4698
+ msgid "Transaction declined by recipient."
4699
  msgstr ""
4700
 
4701
+ #: addons/transfer/myCRED-addon-transfer.php:173
4702
+ msgid "Incorrect amount. Please try again."
4703
  msgstr ""
4704
 
4705
+ #: addons/transfer/myCRED-addon-transfer.php:174
4706
+ msgid ""
4707
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4708
+ "this has been done!"
4709
  msgstr ""
4710
 
4711
+ #: addons/transfer/myCRED-addon-transfer.php:175
4712
+ #: includes/mycred-shortcodes.php:1009
4713
+ #: includes/shortcodes/mycred_exchange.php:178
4714
+ msgid "Insufficient Funds. Please try a lower amount."
4715
  msgstr ""
4716
 
4717
+ #: addons/transfer/myCRED-addon-transfer.php:176
4718
+ msgid "Transfer Limit exceeded."
4719
  msgstr ""
4720
 
4721
+ #: addons/transfer/myCRED-addon-transfer.php:178
4722
+ msgid "The selected point type can not be transferred."
4723
  msgstr ""
4724
 
4725
+ #: addons/transfer/myCRED-addon-transfer.php:285
4726
+ msgid "Transfers"
4727
  msgstr ""
4728
 
4729
+ #: addons/transfer/myCRED-addon-transfer.php:288
4730
+ msgid "Features"
4731
  msgstr ""
4732
 
4733
+ #: addons/transfer/myCRED-addon-transfer.php:309
4734
+ msgid "Reload"
 
4735
  msgstr ""
4736
 
4737
+ #: addons/transfer/myCRED-addon-transfer.php:321
4738
+ msgid "Should the page reload once a transfer has been completed?"
 
4739
  msgstr ""
4740
 
4741
+ #: addons/transfer/myCRED-addon-transfer.php:326
4742
+ msgid "Message Length"
4743
  msgstr ""
4744
 
4745
+ #: addons/transfer/myCRED-addon-transfer.php:328
4746
+ msgid ""
4747
+ "The maximum length of messages users can attach to a transfer. Use zero to "
4748
+ "disable."
4749
  msgstr ""
4750
 
4751
+ #: addons/transfer/myCRED-addon-transfer.php:333
4752
+ msgid "Autofill Recipient"
4753
+ msgstr ""
 
 
 
4754
 
4755
+ #: addons/transfer/myCRED-addon-transfer.php:345
4756
+ msgid "Select what user details recipients should be autofilled by."
 
4757
  msgstr ""
4758
 
4759
+ #: addons/transfer/myCRED-addon-transfer.php:371
4760
+ msgid "Limit Amount"
4761
  msgstr ""
4762
 
4763
+ #: addons/transfer/myCRED-addon-transfer.php:377
4764
+ msgid "Default Button Label"
 
4765
  msgstr ""
4766
 
4767
+ #: addons/transfer/myCRED-addon-transfer.php:379
4768
+ msgid ""
4769
+ "The default transfer button label. You can override this in the shortcode or "
4770
+ "widget if needed."
4771
  msgstr ""
4772
 
4773
+ #: addons/transfer/myCRED-addon-transfer.php:388
4774
+ msgid "Log template for sending"
4775
  msgstr ""
4776
 
4777
+ #: addons/transfer/myCRED-addon-transfer.php:395
4778
+ msgid "Log template for receiving"
4779
  msgstr ""
4780
 
4781
+ #: addons/transfer/myCRED-addon-transfer.php:402
4782
+ msgid "Warning Messages"
4783
  msgstr ""
4784
 
4785
+ #: addons/transfer/myCRED-addon-transfer.php:406
4786
+ msgid "Insufficient Funds Warning"
4787
  msgstr ""
4788
 
4789
+ #: addons/transfer/myCRED-addon-transfer.php:408
4790
+ msgid "Message to show the user if they try to send more then they can afford."
 
4791
  msgstr ""
4792
 
4793
+ #: addons/transfer/myCRED-addon-transfer.php:413
4794
+ msgid "Limit Reached Warning"
4795
  msgstr ""
4796
 
4797
+ #: addons/transfer/myCRED-addon-transfer.php:415
4798
+ msgid ""
4799
+ "Message to show the user once they reach their transfer limit. Ignored if no "
4800
+ "limits are enforced."
4801
  msgstr ""
4802
 
4803
+ #: addons/transfer/myCRED-addon-transfer.php:422
4804
+ msgid ""
4805
+ "The template to use when the transfer shortcode or widget is viewed by "
4806
+ "someone who is not logged in."
4807
  msgstr ""
4808
 
4809
+ #: addons/transfer/myCRED-addon-transfer.php:435
4810
+ msgid "Limit Template"
4811
  msgstr ""
4812
 
4813
+ #: addons/transfer/myCRED-addon-transfer.php:436
4814
+ msgid ""
4815
+ "The template to use if you select to show the transfer limit in the transfer "
4816
+ "shortcode or widget. Ignored if there is no limit enforced."
4817
  msgstr ""
4818
 
4819
+ #: addons/transfer/myCRED-addon-transfer.php:451
4820
+ msgid "Balance Template"
4821
  msgstr ""
4822
 
4823
+ #: addons/transfer/myCRED-addon-transfer.php:452
4824
+ msgid ""
4825
+ "The template to use if you select to show the users balance in the transfer "
4826
+ "shortcode or widget. Ignored if balances are not shown."
4827
  msgstr ""
4828
 
4829
+ #: addons/transfer/includes/mycred-transfer-functions.php:128
4830
+ msgid "No limits."
4831
  msgstr ""
4832
 
4833
+ #: addons/transfer/includes/mycred-transfer-functions.php:129
4834
+ msgid "Impose daily limit."
4835
  msgstr ""
4836
 
4837
+ #: addons/transfer/includes/mycred-transfer-functions.php:130
4838
+ msgid "Impose weekly limit."
4839
  msgstr ""
4840
 
4841
+ #: addons/transfer/includes/mycred-transfer-functions.php:131
4842
+ msgid "Impose monthly limit."
 
4843
  msgstr ""
4844
 
4845
+ #: addons/transfer/includes/mycred-transfer-functions.php:154
4846
+ msgid "User Login (user_login)"
4847
  msgstr ""
4848
 
4849
+ #: addons/transfer/includes/mycred-transfer-functions.php:155
4850
+ msgid "User Email (user_email)"
4851
  msgstr ""
4852
 
4853
+ #: addons/transfer/includes/mycred-transfer-object.php:155
4854
+ msgid "You do not have enough %plural% to send."
4855
+ msgstr ""
4856
+
4857
+ #: addons/transfer/includes/mycred-transfer-object.php:156
4858
+ msgid "You have exceeded your %limit% transfer limit."
4859
+ msgstr ""
4860
+
4861
+ #: addons/transfer/includes/mycred-transfer-object.php:162
4862
+ #: includes/classes/class.query-log.php:2455
4863
+ msgid "Transfer"
4864
  msgstr ""
4865
 
4866
+ #: addons/transfer/includes/mycred-transfer-object.php:256
4867
+ msgid "New"
4868
  msgstr ""
4869
 
4870
+ #: addons/transfer/includes/mycred-transfer-object.php:257
4871
+ msgid "Incomplete"
4872
  msgstr ""
4873
 
4874
+ #: addons/transfer/includes/mycred-transfer-object.php:259
4875
+ msgid "Refunded"
4876
  msgstr ""
4877
 
4878
+ #: addons/transfer/includes/mycred-transfer-object.php:825
4879
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
4880
+ #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
4881
+ #: includes/widgets/mycred-widget-balance.php:228
4882
+ #: includes/widgets/mycred-widget-wallet.php:140
4883
+ msgid "Message"
4884
  msgstr ""
4885
 
4886
+ #: addons/transfer/includes/mycred-transfer-object.php:916
4887
+ msgid "username"
4888
  msgstr ""
4889
 
4890
+ #: addons/transfer/includes/mycred-transfer-object.php:919
4891
+ msgid "email"
4892
  msgstr ""
4893
 
4894
+ #: addons/transfer/includes/mycred-transfer-object.php:921
4895
+ #, php-format
4896
+ msgid "recipients %s"
4897
  msgstr ""
4898
 
4899
+ #: addons/transfer/includes/mycred-transfer-widgets.php:19
4900
+ #, php-format
4901
+ msgid "(%s) Transfer"
4902
  msgstr ""
4903
 
4904
+ #: addons/transfer/includes/mycred-transfer-widgets.php:22
4905
+ msgid "Allow transfers between users."
4906
  msgstr ""
4907
 
4908
+ #: addons/transfer/includes/mycred-transfer-widgets.php:92
4909
+ #: addons/transfer/includes/mycred-transfer-widgets.php:114
4910
+ #: addons/transfer/includes/mycred-transfer-widgets.php:118
4911
+ #: addons/transfer/includes/mycred-transfer-widgets.php:126
4912
+ #: includes/mycred-admin.php:722 includes/mycred-admin.php:759
4913
+ #: modules/mycred-module-management.php:797
4914
+ msgid "optional"
4915
  msgstr ""
4916
 
4917
+ #: addons/transfer/includes/mycred-transfer-widgets.php:95
4918
+ msgid "Show users balance"
4919
  msgstr ""
4920
 
4921
+ #: addons/transfer/includes/mycred-transfer-widgets.php:98
4922
+ msgid "Show users limit"
4923
  msgstr ""
4924
 
4925
+ #: addons/transfer/includes/mycred-transfer-widgets.php:117
4926
+ msgid "Recipient Placeholder"
 
4927
  msgstr ""
4928
 
4929
+ #: addons/transfer/includes/mycred-transfer-widgets.php:125
4930
+ msgid "Message for Excluded Users"
4931
  msgstr ""
4932
 
4933
+ #: includes/mycred-about.php:17
4934
+ #, php-format
4935
+ msgid "Welcome to %s %s"
4936
  msgstr ""
4937
 
4938
+ #: includes/mycred-about.php:19 modules/mycred-module-settings.php:534
4939
+ #, php-format
4940
+ msgid "Thank you for using %s. If you have a moment, please leave a %s."
4941
  msgstr ""
4942
 
4943
+ #: includes/mycred-about.php:19 modules/mycred-module-settings.php:534
4944
+ msgid "review"
4945
  msgstr ""
4946
 
4947
+ #: includes/mycred-admin.php:192
4948
+ msgid "A log entry is required in order to adjust this users balance"
4949
  msgstr ""
4950
 
4951
+ #: includes/mycred-admin.php:194
4952
+ msgid "Users balance saved"
4953
  msgstr ""
4954
 
4955
+ #: includes/mycred-admin.php:202
4956
+ msgid "Users excluded"
4957
  msgstr ""
4958
 
4959
+ #: includes/mycred-admin.php:207
4960
+ msgid ""
4961
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
4962
+ "rate settings and update all premium payment gateways!"
4963
  msgstr ""
4964
 
4965
+ #: includes/mycred-admin.php:235 modules/mycred-module-management.php:114
4966
+ msgid "User is excluded"
4967
  msgstr ""
4968
 
4969
+ #: includes/mycred-admin.php:240 modules/mycred-module-management.php:122
4970
+ msgid "Log Entry can not be empty"
4971
  msgstr ""
4972
 
4973
+ #: includes/mycred-admin.php:244 modules/mycred-module-log.php:311
4974
+ #: modules/mycred-module-management.php:130
4975
+ msgid "Amount can not be zero"
4976
  msgstr ""
4977
 
4978
+ #: includes/mycred-admin.php:265
4979
+ msgid "Failed to update this uses balance."
 
4980
  msgstr ""
4981
 
4982
+ #: includes/mycred-admin.php:414
4983
+ #, php-format
4984
+ msgid "Total: %s"
4985
  msgstr ""
4986
 
4987
+ #: includes/mycred-admin.php:423 modules/mycred-module-management.php:474
4988
+ msgid "Adjust"
 
4989
  msgstr ""
4990
 
4991
+ #: includes/mycred-admin.php:461 includes/mycred-admin.php:462
4992
+ msgid "Edit Balance"
4993
  msgstr ""
4994
 
4995
+ #: includes/mycred-admin.php:480
4996
+ msgid "Profile"
4997
  msgstr ""
4998
 
4999
+ #: includes/mycred-admin.php:487
5000
+ msgid "Extended Profile"
5001
  msgstr ""
5002
 
5003
+ #: includes/mycred-admin.php:577
5004
+ #, php-format
5005
+ msgid "This user is excluded from using %s"
5006
  msgstr ""
5007
 
5008
+ #: includes/mycred-admin.php:600
5009
+ msgid "Edit User"
5010
  msgstr ""
5011
 
5012
+ #: includes/mycred-admin.php:602
5013
+ msgctxt "user"
5014
+ msgid "Add New"
5015
  msgstr ""
5016
 
5017
+ #: includes/mycred-admin.php:604
5018
+ msgctxt "user"
5019
+ msgid "Add Existing"
5020
  msgstr ""
5021
 
5022
+ #: includes/mycred-admin.php:615
5023
+ #, php-format
5024
+ msgid "Total %s Accumulated"
5025
  msgstr ""
5026
 
5027
+ #: includes/mycred-admin.php:616
5028
+ #, php-format
5029
+ msgid "Total %s Spent"
5030
  msgstr ""
5031
 
5032
+ #: includes/mycred-admin.php:627
5033
+ msgid "View History"
5034
  msgstr ""
5035
 
5036
+ #: includes/mycred-admin.php:628
5037
+ msgid "Exclude User"
5038
  msgstr ""
5039
 
5040
+ #: includes/mycred-admin.php:632
5041
+ msgid "Adjust Balance"
5042
  msgstr ""
5043
 
5044
+ #: includes/mycred-admin.php:641
5045
+ msgid ""
5046
+ "Warning! Excluding this user will result in their balance being deleted "
5047
+ "along with any entries currently in your log! This can not be undone!"
5048
  msgstr ""
5049
 
5050
+ #: includes/mycred-admin.php:699
5051
+ #, php-format
5052
+ msgid "%singular% balance"
5053
  msgstr ""
5054
 
5055
+ #: includes/mycred-admin.php:739 includes/mycred-admin.php:773
5056
+ #: modules/mycred-module-management.php:101
5057
+ msgid "Update Balance"
5058
  msgstr ""
5059
 
5060
+ #: includes/mycred-admin.php:771 modules/mycred-module-management.php:770
5061
+ msgid "A positive or negative value"
5062
  msgstr ""
5063
 
5064
+ #: includes/mycred-functions.php:113
5065
+ msgid "Point"
5066
  msgstr ""
5067
 
5068
+ #: includes/mycred-functions.php:114
5069
+ msgid "Points"
5070
  msgstr ""
5071
 
5072
+ #: includes/mycred-functions.php:542
5073
+ msgid "Deleted"
5074
  msgstr ""
5075
 
5076
+ #: includes/mycred-functions.php:670
5077
+ msgid "Deleted Item"
5078
  msgstr ""
5079
 
5080
+ #: includes/mycred-functions.php:756
5081
+ msgid "User Related"
5082
  msgstr ""
5083
 
5084
+ #: includes/mycred-functions.php:763
5085
+ msgid "Post Related"
5086
  msgstr ""
5087
 
5088
+ #: includes/mycred-functions.php:770
5089
+ msgid "Comment Related"
5090
  msgstr ""
5091
 
5092
+ #: includes/mycred-functions.php:777
5093
+ msgid "Widget Related"
5094
  msgstr ""
5095
 
5096
+ #: includes/mycred-functions.php:784
5097
+ msgid "Amount Related"
5098
  msgstr ""
5099
 
5100
+ #: includes/mycred-functions.php:791
5101
+ msgid "Video Related"
5102
  msgstr ""
5103
 
5104
+ #: includes/mycred-functions.php:802
5105
+ msgid "and"
5106
  msgstr ""
5107
 
5108
+ #: includes/mycred-functions.php:804
5109
+ msgid "Available Template Tags:"
5110
  msgstr ""
5111
 
5112
+ #: includes/mycred-functions.php:3478
5113
+ msgid "in total"
5114
  msgstr ""
5115
 
5116
+ #: includes/mycred-functions.php:3480
5117
+ msgid "per day"
5118
  msgstr ""
5119
 
5120
+ #: includes/mycred-functions.php:3483
5121
+ msgid "per week"
5122
  msgstr ""
5123
 
5124
+ #: includes/mycred-functions.php:3486
5125
+ msgid "per month"
5126
  msgstr ""
5127
 
5128
+ #: includes/mycred-functions.php:3488 includes/mycred-functions.php:3494
5129
+ #, php-format
5130
+ msgid "Maximum once"
5131
+ msgid_plural "Maximum %d times"
5132
+ msgstr[0] ""
5133
+ msgstr[1] ""
5134
+
5135
+ #: includes/mycred-functions.php:3516
5136
+ #, php-format
5137
+ msgctxt "e.g. 5 th"
5138
+ msgid "%d th"
5139
  msgstr ""
5140
 
5141
+ #: includes/mycred-functions.php:3520
5142
+ #, php-format
5143
+ msgctxt "e.g. 1 st"
5144
+ msgid "%d st"
5145
  msgstr ""
5146
 
5147
+ #: includes/mycred-functions.php:3521
5148
+ #, php-format
5149
+ msgctxt "e.g. 2 nd"
5150
+ msgid "%d nd"
5151
  msgstr ""
5152
 
5153
+ #: includes/mycred-functions.php:3522
5154
+ #, php-format
5155
+ msgctxt "e.g. 3 rd"
5156
+ msgid "%d rd"
5157
  msgstr ""
5158
 
5159
+ #: includes/mycred-importer.php:44
5160
+ msgid "Import balances."
5161
  msgstr ""
5162
 
5163
+ #: includes/mycred-importer.php:92
5164
+ msgid "No CubePoints log exists."
5165
  msgstr ""
5166
 
5167
+ #: includes/mycred-install.php:63
5168
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
5169
  msgstr ""
5170
 
5171
+ #: includes/mycred-install.php:68
5172
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
5173
  msgstr ""
5174
 
5175
+ #: includes/mycred-install.php:73
5176
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
 
5177
  msgstr ""
5178
 
5179
+ #: includes/mycred-install.php:78
5180
+ msgid ""
5181
+ "Sorry but your WordPress installation does not reach the minimum "
5182
+ "requirements for running myCRED. The following errors were given:"
5183
  msgstr ""
5184
 
5185
+ #: includes/mycred-log.php:398
5186
+ #, php-format
5187
+ msgid "Showing %d %s"
5188
  msgstr ""
5189
 
5190
+ #: includes/mycred-log.php:398
5191
+ msgid "entry"
5192
+ msgid_plural "entries"
5193
+ msgstr[0] ""
5194
+ msgstr[1] ""
5195
+
5196
+ #: includes/mycred-log.php:411
5197
+ msgid "Go to the first page"
5198
  msgstr ""
5199
 
5200
+ #: includes/mycred-log.php:418
5201
+ msgid "Go to the previous page"
5202
  msgstr ""
5203
 
5204
+ #: includes/mycred-log.php:427
5205
+ msgid "Current page"
5206
  msgstr ""
5207
 
5208
+ #: includes/mycred-log.php:433 includes/classes/class.query-log.php:1442
5209
+ #, php-format
5210
+ msgctxt "paging"
5211
+ msgid "%1$s of %2$s"
5212
  msgstr ""
5213
 
5214
+ #: includes/mycred-log.php:437
5215
+ msgid "Go to the next page"
5216
  msgstr ""
5217
 
5218
+ #: includes/mycred-log.php:444
5219
+ msgid "Go to the last page"
5220
  msgstr ""
5221
 
5222
+ #: includes/mycred-log.php:512 includes/classes/class.query-log.php:1175
5223
+ msgid "Show all references"
5224
  msgstr ""
5225
 
5226
+ #: includes/mycred-log.php:525 modules/mycred-module-settings.php:847
5227
+ msgid "User ID"
 
5228
  msgstr ""
5229
 
5230
+ #: includes/mycred-log.php:531 includes/classes/class.query-log.php:1199
5231
+ msgid "Show in order"
 
 
 
 
5232
  msgstr ""
5233
 
5234
+ #: includes/mycred-log.php:532 includes/mycred-widgets.php:401
5235
+ #: includes/classes/class.query-log.php:1200
5236
+ #: includes/widgets/mycred-widget-leaderboard.php:171
5237
+ msgid "Ascending"
5238
  msgstr ""
5239
 
5240
+ #: includes/mycred-log.php:532 includes/mycred-widgets.php:402
5241
+ #: includes/classes/class.query-log.php:1200
5242
+ #: includes/widgets/mycred-widget-leaderboard.php:172
5243
+ msgid "Descending"
5244
  msgstr ""
5245
 
5246
+ #: includes/mycred-log.php:550 includes/classes/class.query-log.php:1220
5247
+ msgid "Filter"
 
5248
  msgstr ""
5249
 
5250
+ #: includes/mycred-log.php:603 includes/classes/class.query-log.php:1804
5251
+ #: modules/mycred-module-export.php:309 modules/mycred-module-export.php:356
5252
+ msgid ""
5253
+ "Log entries are exported to a CSV file and depending on the number of "
5254
+ "entries selected, the process may take a few seconds."
 
 
5255
  msgstr ""
5256
 
5257
+ #: includes/mycred-log.php:607 includes/classes/class.query-log.php:1811
5258
+ msgid "No export options available."
 
5259
  msgstr ""
5260
 
5261
+ #: includes/mycred-log.php:636 includes/classes/class.query-export.php:263
5262
+ #: includes/classes/class.query-export.php:406
5263
+ #: includes/classes/class.query-log.php:1014
5264
+ #: includes/classes/class.query-log.php:1027 modules/mycred-module-log.php:153
5265
+ #: modules/mycred-module-management.php:238
5266
+ msgid "Entry"
5267
  msgstr ""
5268
 
5269
+ #: includes/mycred-log.php:737 includes/classes/class.query-export.php:374
5270
+ #: includes/classes/class.query-log.php:1643
5271
+ msgid "User Missing"
5272
  msgstr ""
5273
 
5274
+ #: includes/mycred-log.php:807 includes/classes/class.query-log.php:1074
5275
+ msgid "No log entries found"
 
5276
  msgstr ""
5277
 
5278
+ #: includes/mycred-log.php:822 includes/mycred-log.php:824
5279
+ #: includes/classes/class.query-log.php:1844
5280
+ #: includes/classes/class.query-log.php:1846
5281
+ msgid "Search Log"
5282
  msgstr ""
5283
 
5284
+ #: includes/mycred-log.php:823 includes/classes/class.query-log.php:1845
5285
+ msgid "search log entries"
 
5286
  msgstr ""
5287
 
5288
+ #: includes/mycred-log.php:836 includes/classes/class.query-log.php:1862
5289
+ #: modules/mycred-module-buddypress.php:236
5290
+ #: modules/mycred-module-buddypress.php:249
5291
+ msgid "All"
5292
  msgstr ""
5293
 
5294
+ #: includes/mycred-log.php:838 includes/classes/class.query-log.php:1864
5295
+ #: modules/mycred-module-buddypress.php:238
5296
+ msgid "Yesterday"
5297
  msgstr ""
5298
 
5299
+ #: includes/mycred-network.php:61 includes/mycred-network.php:62
5300
+ #: modules/mycred-module-network.php:187 modules/mycred-module-network.php:188
5301
+ msgid "Network Settings"
5302
  msgstr ""
5303
 
5304
+ #: includes/mycred-network.php:157 modules/mycred-module-network.php:241
5305
+ #, php-format
5306
+ msgid "%s Network"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5307
  msgstr ""
5308
 
5309
+ #: includes/mycred-network.php:163 modules/mycred-module-network.php:257
5310
  #, php-format
5311
+ msgid "Note! %s has not yet been setup."
5312
  msgstr ""
5313
 
5314
+ #: includes/mycred-network.php:167
5315
+ msgid "Network Settings Updated"
5316
  msgstr ""
5317
 
5318
+ #: includes/mycred-network.php:169
5319
+ #, php-format
5320
+ msgid "Configure network settings for %s."
5321
  msgstr ""
5322
 
5323
+ #: includes/mycred-network.php:176 modules/mycred-module-network.php:156
5324
+ #: modules/mycred-module-network.php:275
5325
+ msgid "Master Template"
5326
+ msgstr ""
5327
+
5328
+ #: includes/mycred-network.php:187
5329
+ #, php-format
5330
  msgid ""
5331
+ "If enabled, %s will use your main site's settings for all other sites in "
5332
+ "your network."
5333
  msgstr ""
5334
 
5335
+ #: includes/mycred-network.php:190 modules/mycred-module-network.php:291
5336
+ msgid "Central Logging"
5337
  msgstr ""
5338
 
5339
+ #: includes/mycred-network.php:201
5340
+ #, php-format
5341
+ msgid "If enabled, %s will log all site actions in your main site's log."
5342
  msgstr ""
5343
 
5344
+ #: includes/mycred-network.php:204 modules/mycred-module-network.php:308
5345
+ msgid "Site Block"
5346
  msgstr ""
5347
 
5348
+ #: includes/mycred-network.php:208 modules/mycred-module-network.php:314
5349
+ #, php-format
5350
+ msgid "Comma separated list of blog ids where %s is to be disabled."
5351
  msgstr ""
5352
 
5353
+ #: includes/mycred-network.php:217 modules/mycred-module-network.php:327
5354
+ msgid "Save Network Settings"
5355
  msgstr ""
5356
 
5357
+ #: includes/mycred-overview.php:25
5358
+ #, php-format
5359
+ msgid "%s Overview"
5360
  msgstr ""
5361
 
5362
+ #: includes/mycred-overview.php:127
5363
+ msgid "Awarded"
5364
  msgstr ""
5365
 
5366
+ #: includes/mycred-overview.php:138
5367
+ msgid "Deducted"
5368
  msgstr ""
5369
 
5370
+ #: includes/mycred-remote.php:581
5371
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
 
 
5372
  msgstr ""
5373
 
5374
+ #: includes/mycred-remote.php:585
5375
+ msgid "Click Update Settings to load the Remote API settings."
5376
  msgstr ""
5377
 
5378
+ #: includes/mycred-remote.php:588
5379
+ msgid "Allow Remote Access"
 
 
5380
  msgstr ""
5381
 
5382
+ #: includes/mycred-remote.php:613
5383
+ msgid "Remote Access"
 
5384
  msgstr ""
5385
 
5386
+ #: includes/mycred-remote.php:615
5387
+ msgid "API Key"
5388
  msgstr ""
5389
 
5390
+ #: includes/mycred-remote.php:618
5391
+ msgid "Key"
5392
  msgstr ""
5393
 
5394
+ #: includes/mycred-remote.php:619
5395
+ msgid "16, 24 or 32 characters"
 
5396
  msgstr ""
5397
 
5398
+ #: includes/mycred-remote.php:620
5399
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
 
 
 
5400
  msgstr ""
5401
 
5402
+ #: includes/mycred-remote.php:623
5403
+ msgid "Key Length"
 
5404
  msgstr ""
5405
 
5406
+ #: includes/mycred-remote.php:628
5407
+ msgid "Generate New Key"
5408
  msgstr ""
5409
 
5410
+ #: includes/mycred-remote.php:630
5411
+ msgid "Warning!"
5412
  msgstr ""
5413
 
5414
+ #: includes/mycred-remote.php:630
5415
+ msgid ""
5416
+ "Keep this key safe! Those you share this key with will be able to remotely "
5417
+ "deduct / add / transfer %plural%!"
5418
  msgstr ""
5419
 
5420
+ #: includes/mycred-remote.php:632
5421
+ msgid "Incoming URI"
5422
  msgstr ""
5423
 
5424
+ #: includes/mycred-remote.php:636
5425
+ msgid ""
5426
+ "The incoming call address. Remote calls made to any other URL will be "
5427
+ "ignored."
5428
  msgstr ""
5429
 
5430
+ #: includes/mycred-remote.php:639
5431
+ msgid "Debug Mode"
5432
  msgstr ""
5433
 
5434
+ #: includes/mycred-remote.php:642
5435
+ msgid ""
5436
+ "Remember to disable when not used to prevent mischievous calls from learning "
5437
+ "about your setup!"
5438
  msgstr ""
5439
 
5440
+ #: includes/mycred-setup.php:50
5441
+ #, php-format
5442
+ msgid "%s needs your attention."
5443
  msgstr ""
5444
 
5445
+ #: includes/mycred-setup.php:50
5446
+ msgid "Run Setup"
5447
  msgstr ""
5448
 
5449
+ #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
5450
+ msgid "myCRED Setup"
 
 
 
 
 
 
 
 
 
5451
  msgstr ""
5452
 
5453
+ #: includes/mycred-setup.php:106
5454
+ #, php-format
5455
+ msgid ""
5456
+ "Before you can begin using %s, you must setup your first point type. This "
5457
+ "includes what you want to call your points, how these points are presented "
5458
+ "and who has access to it."
 
 
 
 
 
5459
  msgstr ""
5460
 
5461
+ #: includes/mycred-setup.php:111
5462
+ msgid "Your First Point Type"
 
 
 
5463
  msgstr ""
5464
 
5465
+ #: includes/mycred-setup.php:127
5466
+ msgid "Advanced Settings"
 
 
 
5467
  msgstr ""
5468
 
5469
+ #: includes/mycred-setup.php:133
5470
+ msgid "Change Default Point Type Key"
5471
  msgstr ""
5472
 
5473
+ #: includes/mycred-setup.php:135
5474
+ msgid ""
5475
+ "You can change the meta key used to store the default point type using the "
5476
+ "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
5477
+ "file to use."
5478
  msgstr ""
5479
 
5480
+ #: includes/mycred-setup.php:136
5481
+ msgid ""
5482
+ "If you intend to change the default meta key, you should do so before "
5483
+ "continuing on in this setup!"
5484
  msgstr ""
5485
 
5486
+ #: includes/mycred-setup.php:139
5487
+ msgid "Whitelabel"
5488
  msgstr ""
5489
 
5490
+ #: includes/mycred-setup.php:141
5491
+ msgid ""
5492
+ "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
5493
+ "above code to your wp-config.php file to use."
5494
  msgstr ""
5495
 
5496
+ #: includes/mycred-setup.php:149
5497
+ msgid "Create Point Type"
5498
  msgstr ""
5499
 
5500
+ #: includes/mycred-setup.php:149
5501
+ msgid "Hide"
5502
  msgstr ""
5503
 
5504
+ #: includes/mycred-setup.php:155
5505
+ msgid "Processing ..."
5506
  msgstr ""
5507
 
5508
+ #: includes/mycred-setup.php:160
5509
+ msgid "Setup Complete!"
5510
  msgstr ""
5511
 
5512
+ #: includes/mycred-setup.php:161
5513
+ msgid "Congratulations! You are now ready to use myCRED. What's next?"
5514
  msgstr ""
5515
 
5516
+ #: includes/mycred-setup.php:166
5517
+ msgid "Enabling Hooks"
 
5518
  msgstr ""
5519
 
5520
+ #: includes/mycred-setup.php:167
5521
+ msgid ""
5522
+ "If you intend to give your users points for interacting with your website "
5523
+ "automatically, your next step should be to enable and setup the hooks you "
5524
+ "want to use."
5525
  msgstr ""
5526
 
5527
+ #: includes/mycred-setup.php:168
5528
+ msgid "Setup Hooks"
5529
  msgstr ""
5530
 
5531
+ #: includes/mycred-setup.php:171 modules/mycred-module-addons.php:25
5532
+ #: modules/mycred-module-addons.php:26 modules/mycred-module-addons.php:342
5533
+ msgid "Add-ons"
5534
  msgstr ""
5535
 
5536
+ #: includes/mycred-setup.php:172
5537
+ msgid ""
5538
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
5539
+ "your next step should be to enable and setup your add-ons."
5540
  msgstr ""
5541
 
5542
+ #: includes/mycred-setup.php:173
5543
+ msgid "Setup Add-ons"
5544
  msgstr ""
5545
 
5546
+ #: includes/mycred-setup.php:176
5547
+ msgid "Adjust Settings"
5548
  msgstr ""
5549
 
5550
+ #: includes/mycred-setup.php:177
5551
  msgid ""
5552
+ "If you need to make further changes to your settings or add new point types, "
5553
+ "you can visit your default point type's settings."
 
 
 
5554
  msgstr ""
5555
 
5556
+ #: includes/mycred-setup.php:178
5557
+ msgid "View Settings"
5558
  msgstr ""
5559
 
5560
+ #: includes/mycred-setup.php:279 modules/mycred-module-settings.php:551
5561
+ msgid "Singular"
5562
  msgstr ""
5563
 
5564
+ #: includes/mycred-setup.php:285 modules/mycred-module-settings.php:557
5565
+ msgid "Plural"
5566
  msgstr ""
5567
 
5568
+ #: includes/mycred-setup.php:290 modules/mycred-module-settings.php:562
5569
  msgid ""
5570
+ "These labels are used throughout the admin area and when presenting points "
5571
+ "to your users."
5572
  msgstr ""
5573
 
5574
+ #: includes/mycred-setup.php:297 modules/mycred-module-settings.php:569
5575
+ msgid "Prefix"
5576
  msgstr ""
5577
 
5578
+ #: includes/mycred-setup.php:303 modules/mycred-module-settings.php:575
5579
+ msgid "Separators"
5580
  msgstr ""
5581
 
5582
+ #: includes/mycred-setup.php:311 modules/mycred-module-settings.php:583
5583
+ msgid "Decimals"
5584
  msgstr ""
5585
 
5586
+ #: includes/mycred-setup.php:317 modules/mycred-module-settings.php:589
5587
+ msgid "Suffix"
5588
  msgstr ""
5589
 
5590
+ #: includes/mycred-setup.php:322
5591
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
5592
  msgstr ""
5593
 
5594
+ #: includes/mycred-setup.php:328 modules/mycred-module-settings.php:603
5595
+ msgid "Security"
5596
  msgstr ""
5597
 
5598
+ #: includes/mycred-setup.php:332 modules/mycred-module-settings.php:607
5599
+ msgid "Point Editors"
5600
  msgstr ""
5601
 
5602
+ #: includes/mycred-setup.php:334 modules/mycred-module-settings.php:609
5603
+ msgid "The capability of users who can edit balances."
 
5604
  msgstr ""
5605
 
5606
+ #: includes/mycred-setup.php:339 modules/mycred-module-settings.php:614
5607
+ msgid "Point Administrators"
5608
  msgstr ""
5609
 
5610
+ #: includes/mycred-setup.php:341 modules/mycred-module-settings.php:616
5611
+ msgid "The capability of users who can edit settings."
 
 
 
5612
  msgstr ""
5613
 
5614
+ #: includes/mycred-setup.php:346 modules/mycred-module-settings.php:622
5615
+ msgid "Max. Amount"
5616
  msgstr ""
5617
 
5618
+ #: includes/mycred-setup.php:348 modules/mycred-module-settings.php:624
5619
+ msgid "The maximum amount allowed to be paid out in a single instance."
5620
  msgstr ""
5621
 
5622
+ #: includes/mycred-setup.php:353 modules/mycred-module-settings.php:629
5623
+ msgid "Exclude by User ID"
 
5624
  msgstr ""
5625
 
5626
+ #: includes/mycred-setup.php:354 modules/mycred-module-settings.php:630
5627
+ msgid "Optional"
 
 
5628
  msgstr ""
5629
 
5630
+ #: includes/mycred-setup.php:355 modules/mycred-module-settings.php:631
5631
+ msgid "Comma separated list of user IDs to exclude from using this point type."
5632
  msgstr ""
5633
 
5634
+ #: includes/mycred-setup.php:359 modules/mycred-module-settings.php:635
5635
+ msgid "Exclude point editors"
 
 
 
 
 
 
 
 
 
5636
  msgstr ""
5637
 
5638
+ #: includes/mycred-setup.php:362 modules/mycred-module-settings.php:638
5639
+ msgid "Exclude point administrators"
 
 
5640
  msgstr ""
5641
 
5642
+ #: includes/mycred-setup.php:395 includes/mycred-setup.php:453
5643
+ msgid "Please make sure you fill out all required fields!"
5644
  msgstr ""
5645
 
5646
+ #: includes/mycred-shortcodes.php:153
5647
+ msgid "Leaderboard is empty."
 
 
5648
  msgstr ""
5649
 
5650
+ #: includes/mycred-shortcodes.php:424 includes/mycred-shortcodes.php:427
5651
+ #: includes/mycred-shortcodes.php:489 includes/mycred-shortcodes.php:547
5652
+ #: includes/mycred-shortcodes.php:551 includes/mycred-shortcodes.php:555
5653
+ msgid "error"
5654
  msgstr ""
5655
 
5656
+ #: includes/mycred-shortcodes.php:424 includes/mycred-shortcodes.php:547
5657
+ msgid "Amount missing!"
 
5658
  msgstr ""
5659
 
5660
+ #: includes/mycred-shortcodes.php:427 includes/mycred-shortcodes.php:555
5661
+ msgid "Log Template Missing!"
5662
  msgstr ""
5663
 
5664
+ #: includes/mycred-shortcodes.php:489
5665
+ msgid "Anchor missing URL!"
5666
  msgstr ""
5667
 
5668
+ #: includes/mycred-shortcodes.php:551
5669
+ msgid "User ID missing for recipient."
 
 
 
5670
  msgstr ""
5671
 
5672
+ #: includes/mycred-shortcodes.php:716 includes/shortcodes/mycred_video.php:45
5673
+ msgid "A video ID is required for this shortcode"
 
 
5674
  msgstr ""
5675
 
5676
+ #: includes/mycred-shortcodes.php:861 includes/mycred-shortcodes.php:955
5677
+ #: includes/shortcodes/mycred_exchange.php:124
5678
+ msgid "Point types not found."
 
 
5679
  msgstr ""
5680
 
5681
+ #: includes/mycred-shortcodes.php:867 includes/mycred-shortcodes.php:875
5682
+ #: includes/mycred-shortcodes.php:967 includes/mycred-shortcodes.php:987
5683
+ #: includes/shortcodes/mycred_exchange.php:33
5684
+ #: includes/shortcodes/mycred_exchange.php:41
5685
+ #: includes/shortcodes/mycred_exchange.php:136
5686
+ #: includes/shortcodes/mycred_exchange.php:156
5687
+ #, php-format
5688
+ msgid "You are excluded from using %s."
5689
  msgstr ""
5690
 
5691
+ #: includes/mycred-shortcodes.php:871 includes/mycred-shortcodes.php:977
5692
+ #: includes/shortcodes/mycred_exchange.php:37
5693
+ #: includes/shortcodes/mycred_exchange.php:146
5694
+ msgid "Your balance is too low to use this feature."
5695
  msgstr ""
5696
 
5697
+ #: includes/mycred-shortcodes.php:892
5698
+ #, php-format
5699
+ msgid "Convert <span>%s</span> to <span>%s</span>"
5700
  msgstr ""
5701
 
5702
+ #: includes/mycred-shortcodes.php:901
5703
+ #: includes/shortcodes/mycred_exchange.php:63
5704
  #, php-format
5705
+ msgid "Your current %s balance"
5706
  msgstr ""
5707
 
5708
+ #: includes/mycred-shortcodes.php:909
5709
+ #: includes/shortcodes/mycred_exchange.php:70
5710
+ #, php-format
5711
+ msgid "Minimum %s"
5712
  msgstr ""
5713
 
5714
+ #: includes/mycred-shortcodes.php:913
5715
+ #: includes/shortcodes/mycred_exchange.php:76
5716
+ #, php-format
5717
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
5718
  msgstr ""
5719
 
5720
+ #: includes/mycred-shortcodes.php:919
5721
+ msgid "Exchange"
 
 
 
5722
  msgstr ""
5723
 
5724
+ #: includes/mycred-shortcodes.php:1000
5725
+ #: includes/shortcodes/mycred_exchange.php:169
5726
+ #, php-format
5727
+ msgid "You must exchange at least %s!"
5728
  msgstr ""
5729
 
5730
+ #: includes/mycred-shortcodes.php:1022
5731
+ #: includes/shortcodes/mycred_exchange.php:191
5732
+ #, php-format
5733
+ msgid "Exchange from %s"
5734
  msgstr ""
5735
 
5736
+ #: includes/mycred-shortcodes.php:1034
5737
+ #: includes/shortcodes/mycred_exchange.php:203
5738
+ #, php-format
5739
+ msgid "Exchange to %s"
5740
  msgstr ""
5741
 
5742
+ #: includes/mycred-shortcodes.php:1042
5743
+ #: includes/shortcodes/mycred_exchange.php:211
5744
  #, php-format
5745
+ msgid "You have successfully exchanged %s into %s."
 
 
5746
  msgstr ""
5747
 
5748
+ #: includes/mycred-widgets.php:19
5749
+ #: includes/widgets/mycred-widget-balance.php:19
5750
+ #, php-format
5751
+ msgid "(%s) My Balance"
5752
  msgstr ""
5753
 
5754
+ #: includes/mycred-widgets.php:22
5755
+ #: includes/widgets/mycred-widget-balance.php:22
5756
+ msgid "Show the current users balance and history."
5757
  msgstr ""
5758
 
5759
+ #: includes/mycred-widgets.php:192
5760
+ #: includes/widgets/mycred-widget-balance.php:192
5761
+ msgid "Balance Layout"
5762
  msgstr ""
5763
 
5764
+ #: includes/mycred-widgets.php:199
5765
+ #: includes/widgets/mycred-widget-balance.php:199
5766
+ msgid "Include history"
5767
  msgstr ""
5768
 
5769
+ #: includes/mycred-widgets.php:203
5770
+ #: includes/widgets/mycred-widget-balance.php:203
5771
+ msgid "History Title"
5772
  msgstr ""
5773
 
5774
+ #: includes/mycred-widgets.php:207
5775
+ #: includes/widgets/mycred-widget-balance.php:207
5776
+ msgid "Number of entires"
5777
  msgstr ""
5778
 
5779
+ #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
5780
+ #: includes/widgets/mycred-widget-balance.php:211
5781
+ #: includes/widgets/mycred-widget-leaderboard.php:156
5782
+ msgid "Row layout"
5783
  msgstr ""
5784
 
5785
+ #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
5786
+ #: includes/widgets/mycred-widget-balance.php:224
5787
+ #: includes/widgets/mycred-widget-wallet.php:136
5788
+ msgid "Show message when not logged in"
5789
  msgstr ""
5790
 
5791
+ #: includes/mycred-widgets.php:282
5792
+ #: includes/widgets/mycred-widget-leaderboard.php:19
5793
+ #, php-format
5794
+ msgid "(%s) Leaderboard"
5795
  msgstr ""
5796
 
5797
+ #: includes/mycred-widgets.php:285
5798
+ #: includes/widgets/mycred-widget-leaderboard.php:22
5799
+ msgid "Leaderboard based on instances or balances."
5800
  msgstr ""
5801
 
5802
+ #: includes/mycred-widgets.php:373
5803
+ #: includes/widgets/mycred-widget-leaderboard.php:119
5804
+ msgid "Based On"
5805
  msgstr ""
5806
 
5807
+ #: includes/mycred-widgets.php:375
5808
+ #: includes/widgets/mycred-widget-leaderboard.php:121
5809
+ msgid ""
5810
+ "Use \"balance\" to base the leaderboard on your users current balances or "
5811
+ "use a specific reference."
5812
  msgstr ""
5813
 
5814
+ #: includes/mycred-widgets.php:375
5815
+ #: includes/widgets/mycred-widget-leaderboard.php:121
5816
+ msgid "Reference Guide"
 
5817
  msgstr ""
5818
 
5819
+ #: includes/mycred-widgets.php:379
5820
+ #: includes/widgets/mycred-widget-leaderboard.php:149
5821
+ msgid "Visible to non-members"
 
5822
  msgstr ""
5823
 
5824
+ #: includes/mycred-widgets.php:382
5825
+ #: includes/widgets/mycred-widget-leaderboard.php:152
5826
+ msgid "Number of users"
5827
  msgstr ""
5828
 
5829
+ #: includes/mycred-widgets.php:391
5830
+ #: includes/widgets/mycred-widget-leaderboard.php:161
5831
+ msgid "Offset"
5832
  msgstr ""
5833
 
5834
+ #: includes/mycred-widgets.php:393
5835
+ #: includes/widgets/mycred-widget-leaderboard.php:163
5836
+ msgid "Optional offset of order. Use zero to return the first in the list."
 
5837
  msgstr ""
5838
 
5839
+ #: includes/mycred-widgets.php:396
5840
+ #: includes/widgets/mycred-widget-leaderboard.php:166
5841
+ msgid "Order"
 
5842
  msgstr ""
5843
 
5844
+ #: includes/mycred-widgets.php:415
5845
+ #: includes/widgets/mycred-widget-leaderboard.php:185
5846
+ msgid "Append current users position"
5847
  msgstr ""
5848
 
5849
+ #: includes/mycred-widgets.php:416
5850
+ #: includes/widgets/mycred-widget-leaderboard.php:186
5851
+ msgid ""
5852
+ "If the current user is not in this leaderboard, you can select to append "
5853
+ "them at the end with their current position."
5854
  msgstr ""
5855
 
5856
+ #: includes/mycred-widgets.php:419
5857
+ #: includes/widgets/mycred-widget-leaderboard.php:189
5858
+ msgid "Timeframe"
5859
  msgstr ""
5860
 
5861
+ #: includes/mycred-widgets.php:421
5862
+ #: includes/widgets/mycred-widget-leaderboard.php:191
5863
+ msgid ""
5864
+ "Option to limit the leaderboard based on a specific timeframe. Leave empty "
5865
+ "if not used."
5866
  msgstr ""
5867
 
5868
+ #: includes/mycred-widgets.php:469
5869
+ #: includes/widgets/mycred-widget-wallet.php:19
5870
  #, php-format
5871
+ msgid "(%s) Wallet"
5872
  msgstr ""
5873
 
5874
+ #: includes/mycred-widgets.php:472
5875
+ #: includes/widgets/mycred-widget-wallet.php:22
5876
+ msgid "Shows multiple balances."
5877
  msgstr ""
5878
 
5879
+ #: includes/mycred-widgets.php:579
5880
+ #: includes/widgets/mycred-widget-wallet.php:129
5881
+ msgid "Row Layout"
 
5882
  msgstr ""
5883
 
5884
+ #: includes/classes/class.query-export.php:263
5885
+ msgid "Reference ID"
5886
  msgstr ""
5887
 
5888
+ #: includes/classes/class.query-export.php:263
5889
+ msgid "Data"
5890
  msgstr ""
5891
 
5892
+ #: includes/classes/class.query-export.php:464
5893
+ msgid "Export log entries raw"
5894
  msgstr ""
5895
 
5896
+ #: includes/classes/class.query-export.php:465
5897
+ msgid "Export log entries formatted"
5898
  msgstr ""
5899
 
5900
+ #: includes/classes/class.query-export.php:482
5901
+ msgid "All Log Entries"
5902
  msgstr ""
5903
 
5904
+ #: includes/classes/class.query-export.php:487
5905
+ msgid "Search Results"
5906
  msgstr ""
5907
 
5908
+ #: includes/classes/class.query-export.php:492
5909
+ msgid "Users Log Entries"
 
 
5910
  msgstr ""
5911
 
5912
+ #: includes/classes/class.query-export.php:493
5913
+ msgid "Export History"
5914
  msgstr ""
5915
 
5916
+ #: includes/classes/class.query-log.php:1136
5917
+ msgid "Bulk Actions"
 
 
 
5918
  msgstr ""
5919
 
5920
+ #: includes/classes/class.query-log.php:1137
5921
+ msgid "Export Raw"
 
 
 
5922
  msgstr ""
5923
 
5924
+ #: includes/classes/class.query-log.php:1138
5925
+ msgid "Export Formatted"
 
5926
  msgstr ""
5927
 
5928
+ #: includes/classes/class.query-log.php:1154
5929
+ msgid "Apply"
5930
  msgstr ""
5931
 
5932
+ #: includes/classes/class.query-log.php:1191
5933
+ msgid "User ID, Username, Email or Nicename"
 
 
5934
  msgstr ""
5935
 
5936
+ #: includes/classes/class.query-log.php:1258
5937
+ msgid "Log entries navigation"
5938
  msgstr ""
5939
 
5940
+ #: includes/classes/class.query-log.php:1389
5941
+ #, php-format
5942
+ msgid "1 entry"
5943
+ msgid_plural "%d entries"
5944
+ msgstr[0] ""
5945
+ msgstr[1] ""
5946
+
5947
+ #: includes/classes/class.query-log.php:1416
5948
+ msgid "First page"
5949
  msgstr ""
5950
 
5951
+ #: includes/classes/class.query-log.php:1426
5952
+ msgid "Previous page"
 
5953
  msgstr ""
5954
 
5955
+ #: includes/classes/class.query-log.php:1433
5956
+ #: includes/classes/class.query-log.php:1436
5957
+ msgid "Current Page"
5958
  msgstr ""
5959
 
5960
+ #: includes/classes/class.query-log.php:1449
5961
+ msgid "Next page"
5962
  msgstr ""
5963
 
5964
+ #: includes/classes/class.query-log.php:1459
5965
+ msgid "Last page"
5966
  msgstr ""
5967
 
5968
+ #: includes/classes/class.query-log.php:1525
5969
+ #: includes/classes/class.query-log.php:1575
5970
+ msgid "Select all"
5971
  msgstr ""
5972
 
5973
+ #: includes/classes/class.query-log.php:1635
5974
+ msgid "Select entry"
5975
  msgstr ""
5976
 
5977
+ #: includes/classes/class.query-log.php:1656
5978
+ msgid "Show more details"
5979
  msgstr ""
5980
 
5981
+ #: includes/classes/class.query-log.php:1680
5982
+ msgid "Filter by Date"
5983
  msgstr ""
5984
 
5985
+ #: includes/classes/class.query-log.php:1729
5986
+ msgid "Filter by User"
5987
  msgstr ""
5988
 
5989
+ #: includes/classes/class.query-log.php:1731
5990
+ msgid "Filter by ID"
5991
  msgstr ""
5992
 
5993
+ #: includes/classes/class.query-log.php:2308
5994
+ msgid "Website Registration"
5995
  msgstr ""
5996
 
5997
+ #: includes/classes/class.query-log.php:2309
5998
+ msgid "Website Visit"
5999
  msgstr ""
6000
 
6001
+ #: includes/classes/class.query-log.php:2310
6002
+ msgid "Viewing Content (Member)"
 
6003
  msgstr ""
6004
 
6005
+ #: includes/classes/class.query-log.php:2311
6006
+ msgid "Viewing Content (Author)"
6007
  msgstr ""
6008
 
6009
+ #: includes/classes/class.query-log.php:2312
6010
+ msgid "Logging in"
6011
  msgstr ""
6012
 
6013
+ #: includes/classes/class.query-log.php:2313
6014
+ msgid "Publishing Content"
6015
  msgstr ""
6016
 
6017
+ #: includes/classes/class.query-log.php:2314
6018
+ msgid "Approved Comment"
 
6019
  msgstr ""
6020
 
6021
+ #: includes/classes/class.query-log.php:2315
6022
+ msgid "Unapproved Comment"
 
 
6023
  msgstr ""
6024
 
6025
+ #: includes/classes/class.query-log.php:2316
6026
+ msgid "SPAM Comment"
6027
  msgstr ""
6028
 
6029
+ #: includes/classes/class.query-log.php:2317
6030
+ #: includes/hooks/external/mycred-hook-buddypress.php:793
6031
+ #: plugins/mycred-hook-buddypress.php:784
6032
+ msgid "Deleted Comment"
6033
  msgstr ""
6034
 
6035
+ #: includes/classes/class.query-log.php:2318
6036
+ msgid "Link Click"
 
 
6037
  msgstr ""
6038
 
6039
+ #: includes/classes/class.query-log.php:2319
6040
+ msgid "Watching Video"
6041
  msgstr ""
6042
 
6043
+ #: includes/classes/class.query-log.php:2320
6044
+ msgid "Visitor Referral"
6045
  msgstr ""
6046
 
6047
+ #: includes/classes/class.query-log.php:2321
6048
+ msgid "Signup Referral"
6049
  msgstr ""
6050
 
6051
+ #: includes/classes/class.query-log.php:2325
6052
+ msgid "New Profile Update"
 
6053
  msgstr ""
6054
 
6055
+ #: includes/classes/class.query-log.php:2326
6056
+ msgid "Profile Update Removal"
6057
  msgstr ""
6058
 
6059
+ #: includes/classes/class.query-log.php:2327
6060
+ msgid "Avatar Upload"
6061
+ msgstr ""
6062
+
6063
+ #: includes/classes/class.query-log.php:2328
6064
+ msgid "Profile Cover Upload"
6065
  msgstr ""
6066
 
6067
+ #: includes/classes/class.query-log.php:2329
6068
+ msgid "New Friendship"
 
 
6069
  msgstr ""
6070
 
6071
+ #: includes/classes/class.query-log.php:2330
6072
+ msgid "Ended Friendship"
6073
  msgstr ""
6074
 
6075
+ #: includes/classes/class.query-log.php:2331
6076
+ msgid "New Profile Comment"
6077
  msgstr ""
6078
 
6079
+ #: includes/classes/class.query-log.php:2332
6080
+ msgid "Profile Comment Deletion"
6081
  msgstr ""
6082
 
6083
+ #: includes/classes/class.query-log.php:2333
6084
+ msgid "Add Activity to Favorites"
6085
  msgstr ""
6086
 
6087
+ #: includes/classes/class.query-log.php:2334
6088
+ msgid "Remove Activity from Favorites"
6089
  msgstr ""
6090
 
6091
+ #: includes/classes/class.query-log.php:2335
6092
+ msgid "New Message"
 
6093
  msgstr ""
6094
 
6095
+ #: includes/classes/class.query-log.php:2336
6096
+ #: includes/hooks/external/mycred-hook-buddypress.php:877
6097
+ #: plugins/mycred-hook-buddypress.php:868
6098
+ msgid "Sending Gift"
6099
  msgstr ""
6100
 
6101
+ #: includes/classes/class.query-log.php:2337
6102
+ msgid "New Group"
6103
  msgstr ""
6104
 
6105
+ #: includes/classes/class.query-log.php:2338
6106
+ msgid "Deleted Group"
6107
  msgstr ""
6108
 
6109
+ #: includes/classes/class.query-log.php:2339
6110
+ msgid "New Group Forum Topic"
 
 
6111
  msgstr ""
6112
 
6113
+ #: includes/classes/class.query-log.php:2340
6114
+ msgid "Edit Group Forum Topic"
 
6115
  msgstr ""
6116
 
6117
+ #: includes/classes/class.query-log.php:2341
6118
+ msgid "New Group Forum Post"
6119
  msgstr ""
6120
 
6121
+ #: includes/classes/class.query-log.php:2342
6122
+ msgid "Edit Group Forum Post"
 
 
6123
  msgstr ""
6124
 
6125
+ #: includes/classes/class.query-log.php:2343
6126
+ msgid "Joining Group"
6127
  msgstr ""
6128
 
6129
+ #: includes/classes/class.query-log.php:2344
6130
+ msgid "Leaving Group"
 
 
6131
  msgstr ""
6132
 
6133
+ #: includes/classes/class.query-log.php:2345
6134
+ msgid "New Group Avatar"
6135
  msgstr ""
6136
 
6137
+ #: includes/classes/class.query-log.php:2346
6138
+ msgid "New Group Cover"
6139
  msgstr ""
6140
 
6141
+ #: includes/classes/class.query-log.php:2347
6142
+ msgid "New Group Comment"
 
6143
  msgstr ""
6144
 
6145
+ #: includes/classes/class.query-log.php:2351
6146
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:290
6147
+ #: plugins/mycred-hook-buddypress-media.php:290
6148
+ msgid "Photo Upload"
6149
  msgstr ""
6150
 
6151
+ #: includes/classes/class.query-log.php:2352
6152
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:314
6153
+ #: plugins/mycred-hook-buddypress-media.php:314
6154
+ msgid "Video Upload"
6155
  msgstr ""
6156
 
6157
+ #: includes/classes/class.query-log.php:2353
6158
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:338
6159
+ #: plugins/mycred-hook-buddypress-media.php:338
6160
+ msgid "Music Upload"
6161
  msgstr ""
6162
 
6163
+ #: includes/classes/class.query-log.php:2357
6164
+ msgid "New Link"
6165
  msgstr ""
6166
 
6167
+ #: includes/classes/class.query-log.php:2358
6168
+ msgid "Link Voting"
 
6169
  msgstr ""
6170
 
6171
+ #: includes/classes/class.query-log.php:2359
6172
+ msgid "Link Update"
6173
  msgstr ""
6174
 
6175
+ #: includes/classes/class.query-log.php:2363
6176
+ msgid "New Forum (bbPress)"
6177
  msgstr ""
6178
 
6179
+ #: includes/classes/class.query-log.php:2364
6180
+ msgid "New Forum Topic (bbPress)"
6181
  msgstr ""
6182
 
6183
+ #: includes/classes/class.query-log.php:2365
6184
+ msgid "Favorited Topic (bbPress)"
6185
  msgstr ""
6186
 
6187
+ #: includes/classes/class.query-log.php:2366
6188
+ msgid "New Topic Reply (bbPress)"
6189
  msgstr ""
6190
 
6191
+ #: includes/classes/class.query-log.php:2370
6192
+ msgid "Form Submission (Contact Form 7)"
6193
  msgstr ""
6194
 
6195
+ #: includes/classes/class.query-log.php:2373
6196
+ msgid "Form Submission (Gravity Form)"
6197
  msgstr ""
6198
 
6199
+ #: includes/classes/class.query-log.php:2376
6200
+ msgid "New Forum Topic (SimplePress)"
6201
  msgstr ""
6202
 
6203
+ #: includes/classes/class.query-log.php:2377
6204
+ msgid "New Forum Post (SimplePress)"
6205
  msgstr ""
6206
 
6207
+ #: includes/classes/class.query-log.php:2381
6208
+ msgid "Affiliate Signup (AffiliateWP)"
 
 
6209
  msgstr ""
6210
 
6211
+ #: includes/classes/class.query-log.php:2382
6212
+ msgid "Referred Visit (AffiliateWP)"
6213
  msgstr ""
6214
 
6215
+ #: includes/classes/class.query-log.php:2383
6216
+ msgid "Affiliate Referral (AffiliateWP)"
6217
  msgstr ""
6218
 
6219
+ #: includes/classes/class.query-log.php:2384
6220
+ msgid "Referral Refund (AffiliateWP)"
 
6221
  msgstr ""
6222
 
6223
+ #: includes/classes/class.query-log.php:2388
6224
+ msgid "Adding a Rating"
6225
  msgstr ""
6226
 
6227
+ #: includes/classes/class.query-log.php:2389
6228
+ msgid "Receiving a Rating"
6229
  msgstr ""
6230
 
6231
+ #: includes/classes/class.query-log.php:2393
6232
+ msgid "Poll Voting"
 
6233
  msgstr ""
6234
 
6235
+ #: includes/classes/class.query-log.php:2396
6236
+ msgid "Sending an Invite"
 
 
6237
  msgstr ""
6238
 
6239
+ #: includes/classes/class.query-log.php:2397
6240
+ msgid "Accepting an Invite"
6241
  msgstr ""
6242
 
6243
+ #: includes/classes/class.query-log.php:2404
6244
+ msgid "Recurring Payout"
6245
  msgstr ""
6246
 
6247
+ #: includes/classes/class.query-log.php:2408
6248
+ msgid "Badge Reward"
6249
  msgstr ""
6250
 
6251
+ #: includes/classes/class.query-log.php:2411
6252
+ msgid "buyCRED Purchase (PayPal Standard)"
 
 
 
6253
  msgstr ""
6254
 
6255
+ #: includes/classes/class.query-log.php:2412
6256
+ msgid "buyCRED Purchase (Skrill)"
 
6257
  msgstr ""
6258
 
6259
+ #: includes/classes/class.query-log.php:2413
6260
+ msgid "buyCRED Purchase (Zombaio)"
 
 
 
 
6261
  msgstr ""
6262
 
6263
+ #: includes/classes/class.query-log.php:2414
6264
+ msgid "buyCRED Purchase (NETBilling)"
6265
  msgstr ""
6266
 
6267
+ #: includes/classes/class.query-log.php:2415
6268
+ msgid "buyCRED Purchase (BitPay)"
6269
  msgstr ""
6270
 
6271
+ #: includes/classes/class.query-log.php:2416
6272
+ msgid "buyCRED Purchase (Bank Transfer)"
 
6273
  msgstr ""
6274
 
6275
+ #: includes/classes/class.query-log.php:2425
6276
+ msgid "Store Purchase (WooCommerce)"
6277
  msgstr ""
6278
 
6279
+ #: includes/classes/class.query-log.php:2426
6280
+ msgid "Store Reward (WooCommerce)"
6281
  msgstr ""
6282
 
6283
+ #: includes/classes/class.query-log.php:2427
6284
+ msgid "Product Review (WooCommerce)"
6285
  msgstr ""
6286
 
6287
+ #: includes/classes/class.query-log.php:2430
6288
+ msgid "Store Purchase (MarketPress)"
6289
  msgstr ""
6290
 
6291
+ #: includes/classes/class.query-log.php:2431
6292
+ msgid "Store Reward (MarketPress)"
6293
  msgstr ""
6294
 
6295
+ #: includes/classes/class.query-log.php:2434
6296
+ msgid "Store Purchase (WP E-Commerce)"
6297
  msgstr ""
6298
 
6299
+ #: includes/classes/class.query-log.php:2440
6300
+ msgid "Event Payment (Event Espresso)"
 
6301
  msgstr ""
6302
 
6303
+ #: includes/classes/class.query-log.php:2441
6304
+ msgid "Event Sale (Event Espresso)"
6305
  msgstr ""
6306
 
6307
+ #: includes/classes/class.query-log.php:2445
6308
+ msgid "Event Payment (Events Manager)"
6309
  msgstr ""
6310
 
6311
+ #: includes/classes/class.query-log.php:2446
6312
+ msgid "Event Sale (Events Manager)"
6313
  msgstr ""
6314
 
6315
+ #: includes/classes/class.query-log.php:2450
6316
+ msgid "Content Purchase"
6317
  msgstr ""
6318
 
6319
+ #: includes/classes/class.query-log.php:2451
6320
+ msgid "Content Sale"
6321
  msgstr ""
6322
 
6323
+ #: includes/classes/class.query-log.php:2459
6324
+ msgid "Manual Adjustment by Admin"
 
6325
  msgstr ""
6326
 
6327
+ #: includes/hooks/mycred-hook-comments.php:363
6328
+ msgid ""
6329
+ "%plural% are only awarded when your website has been synced with the Disqus "
6330
+ "server!"
6331
  msgstr ""
6332
 
6333
+ #: includes/hooks/mycred-hook-comments.php:367
6334
+ msgid "Approved Comments"
6335
  msgstr ""
6336
 
6337
+ #: includes/hooks/mycred-hook-comments.php:371
6338
+ #: includes/hooks/mycred-hook-comments.php:422
6339
+ #: includes/hooks/mycred-hook-comments.php:448
6340
+ #: includes/hooks/mycred-hook-view-content.php:150
6341
+ #: includes/hooks/mycred-hook-view-content.php:195
6342
+ #: includes/hooks/mycred-hook-view-content.php:286
6343
+ #: includes/hooks/mycred-hook-view-content.php:312
6344
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:222
6345
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:267
6346
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:165
6347
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
6348
+ #: plugins/mycred-hook-wp-favorite-posts.php:267
6349
+ #: plugins/mycred-hook-wp-postratings.php:165
6350
+ msgid "Member"
6351
  msgstr ""
6352
 
6353
+ #: includes/hooks/mycred-hook-comments.php:378
6354
+ #: includes/hooks/mycred-hook-comments.php:429
6355
+ #: includes/hooks/mycred-hook-comments.php:455
6356
+ #: includes/hooks/mycred-hook-view-content.php:162
6357
+ #: includes/hooks/mycred-hook-view-content.php:207
6358
+ #: includes/hooks/mycred-hook-view-content.php:298
6359
+ #: includes/hooks/mycred-hook-view-content.php:319
6360
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:234
6361
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:282
6362
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:177
6363
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
6364
+ #: plugins/mycred-hook-wp-favorite-posts.php:282
6365
+ #: plugins/mycred-hook-wp-postratings.php:177
6366
+ msgid "Content Author"
6367
  msgstr ""
6368
 
6369
+ #: includes/hooks/mycred-hook-comments.php:395
6370
+ msgid ""
6371
+ "%plural% is to be awarded even when comment authors reply to their own "
6372
+ "comment."
6373
  msgstr ""
6374
 
6375
+ #: includes/hooks/mycred-hook-comments.php:403
6376
+ msgid "Limit per post"
6377
  msgstr ""
6378
 
6379
+ #: includes/hooks/mycred-hook-comments.php:405
6380
+ msgid ""
6381
+ "The number of comments per post that grants %_plural% to the comment author. "
6382
+ "Use zero for unlimited."
6383
  msgstr ""
6384
 
6385
+ #: includes/hooks/mycred-hook-comments.php:410
6386
+ msgid "Limit per day"
6387
  msgstr ""
6388
 
6389
+ #: includes/hooks/mycred-hook-comments.php:412
6390
+ msgid ""
6391
+ "Number of comments per day that grants %_plural%. Use zero for unlimited."
6392
  msgstr ""
6393
 
6394
+ #: includes/hooks/mycred-hook-comments.php:418
6395
+ msgid "SPAM Comments"
6396
  msgstr ""
6397
 
6398
+ #: includes/hooks/mycred-hook-comments.php:444
6399
+ msgid "Trashed Comments"
6400
  msgstr ""
6401
 
6402
+ #: includes/hooks/mycred-hook-delete-content.php:107
6403
+ msgid "Trashing Posts"
6404
  msgstr ""
6405
 
6406
+ #: includes/hooks/mycred-hook-delete-content.php:117
6407
+ #: includes/hooks/mycred-hook-delete-content.php:141
6408
+ #: includes/hooks/mycred-hook-delete-content.php:197
6409
+ #: includes/hooks/mycred-hook-logins.php:135
6410
+ #: includes/hooks/mycred-hook-publishing-content.php:119
6411
+ #: includes/hooks/mycred-hook-publishing-content.php:143
6412
+ #: includes/hooks/mycred-hook-publishing-content.php:199
6413
+ #: includes/hooks/mycred-hook-referrals.php:565
6414
+ #: includes/hooks/mycred-hook-referrals.php:592
6415
+ #: includes/hooks/mycred-hook-view-content.php:156
6416
+ #: includes/hooks/mycred-hook-view-content.php:168
6417
+ #: includes/hooks/mycred-hook-view-content.php:201
6418
+ #: includes/hooks/mycred-hook-view-content.php:213
6419
+ #: includes/hooks/mycred-hook-view-content.php:292
6420
+ #: includes/hooks/mycred-hook-view-content.php:304
6421
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:317
6422
+ #: includes/hooks/external/mycred-hook-bbPress.php:443
6423
+ #: includes/hooks/external/mycred-hook-bbPress.php:485
6424
+ #: includes/hooks/external/mycred-hook-bbPress.php:536
6425
+ #: includes/hooks/external/mycred-hook-bbPress.php:560
6426
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:300
6427
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:324
6428
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:348
6429
+ #: includes/hooks/external/mycred-hook-buddypress.php:632
6430
+ #: includes/hooks/external/mycred-hook-buddypress.php:656
6431
+ #: includes/hooks/external/mycred-hook-buddypress.php:680
6432
+ #: includes/hooks/external/mycred-hook-buddypress.php:704
6433
+ #: includes/hooks/external/mycred-hook-buddypress.php:728
6434
+ #: includes/hooks/external/mycred-hook-buddypress.php:779
6435
+ #: includes/hooks/external/mycred-hook-buddypress.php:821
6436
+ #: includes/hooks/external/mycred-hook-buddypress.php:863
6437
+ #: includes/hooks/external/mycred-hook-buddypress.php:887
6438
+ #: includes/hooks/external/mycred-hook-buddypress.php:1565
6439
+ #: includes/hooks/external/mycred-hook-buddypress.php:1589
6440
+ #: includes/hooks/external/mycred-hook-buddypress.php:1613
6441
+ #: includes/hooks/external/mycred-hook-buddypress.php:1637
6442
+ #: includes/hooks/external/mycred-hook-buddypress.php:1661
6443
+ #: includes/hooks/external/mycred-hook-buddypress.php:1685
6444
+ #: includes/hooks/external/mycred-hook-buddypress.php:1709
6445
+ #: includes/hooks/external/mycred-hook-buddypress.php:1751
6446
+ #: includes/hooks/external/mycred-hook-contact-form7.php:173
6447
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:211
6448
+ #: includes/hooks/external/mycred-hook-gravityforms.php:166
6449
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:215
6450
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:239
6451
+ #: includes/hooks/external/mycred-hook-simplepress.php:301
6452
+ #: includes/hooks/external/mycred-hook-simplepress.php:343
6453
+ #: includes/hooks/external/mycred-hook-woocommerce.php:531
6454
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:228
6455
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:240
6456
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:171
6457
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:183
6458
+ #: includes/shortcodes/mycred_hook_table.php:85
6459
+ #: plugins/mycred-hook-affiliatewp.php:317 plugins/mycred-hook-bbPress.php:443
6460
+ #: plugins/mycred-hook-bbPress.php:485 plugins/mycred-hook-bbPress.php:536
6461
+ #: plugins/mycred-hook-bbPress.php:560
6462
+ #: plugins/mycred-hook-buddypress-media.php:300
6463
+ #: plugins/mycred-hook-buddypress-media.php:324
6464
+ #: plugins/mycred-hook-buddypress-media.php:348
6465
+ #: plugins/mycred-hook-buddypress.php:623
6466
+ #: plugins/mycred-hook-buddypress.php:647
6467
+ #: plugins/mycred-hook-buddypress.php:671
6468
+ #: plugins/mycred-hook-buddypress.php:695
6469
+ #: plugins/mycred-hook-buddypress.php:719
6470
+ #: plugins/mycred-hook-buddypress.php:770
6471
+ #: plugins/mycred-hook-buddypress.php:812
6472
+ #: plugins/mycred-hook-buddypress.php:854
6473
+ #: plugins/mycred-hook-buddypress.php:878
6474
+ #: plugins/mycred-hook-buddypress.php:1556
6475
+ #: plugins/mycred-hook-buddypress.php:1580
6476
+ #: plugins/mycred-hook-buddypress.php:1604
6477
+ #: plugins/mycred-hook-buddypress.php:1628
6478
+ #: plugins/mycred-hook-buddypress.php:1652
6479
+ #: plugins/mycred-hook-buddypress.php:1676
6480
+ #: plugins/mycred-hook-buddypress.php:1700
6481
+ #: plugins/mycred-hook-buddypress.php:1742
6482
+ #: plugins/mycred-hook-contact-form7.php:172
6483
+ #: plugins/mycred-hook-events-manager-light.php:211
6484
+ #: plugins/mycred-hook-gravityforms.php:166
6485
+ #: plugins/mycred-hook-invite-anyone.php:215
6486
+ #: plugins/mycred-hook-invite-anyone.php:239
6487
+ #: plugins/mycred-hook-sharethis.php:267
6488
+ #: plugins/mycred-hook-simplepress.php:301
6489
+ #: plugins/mycred-hook-simplepress.php:343
6490
+ #: plugins/mycred-hook-woocommerce.php:532
6491
+ #: plugins/mycred-hook-wp-favorite-posts.php:228
6492
+ #: plugins/mycred-hook-wp-favorite-posts.php:240
6493
+ #: plugins/mycred-hook-wp-postratings.php:171
6494
+ #: plugins/mycred-hook-wp-postratings.php:183
6495
+ msgid "Limit"
6496
  msgstr ""
6497
 
6498
+ #: includes/hooks/mycred-hook-delete-content.php:131
6499
+ msgid "Trashing Pages"
6500
  msgstr ""
6501
 
6502
+ #: includes/hooks/mycred-hook-delete-content.php:187
6503
+ #, php-format
6504
+ msgid "Trashing %s"
6505
  msgstr ""
6506
 
6507
+ #: includes/hooks/mycred-hook-link-clicks.php:55
6508
+ msgid "Once for each unique URL"
6509
  msgstr ""
6510
 
6511
+ #: includes/hooks/mycred-hook-link-clicks.php:56
6512
+ msgid "Once for each unique link id"
6513
  msgstr ""
6514
 
6515
+ #: includes/hooks/mycred-hook-link-clicks.php:302
6516
+ #: includes/hooks/mycred-hook-watching-video.php:355
6517
+ msgid "Available Shortcode"
6518
  msgstr ""
6519
 
6520
+ #: includes/hooks/mycred-hook-publishing-content.php:109
6521
+ #: plugins/mycred-hook-sharethis.php:257
6522
+ msgid "Publishing Posts"
6523
  msgstr ""
6524
 
6525
+ #: includes/hooks/mycred-hook-publishing-content.php:133
6526
+ msgid "Publishing Pages"
6527
  msgstr ""
6528
 
6529
+ #: includes/hooks/mycred-hook-publishing-content.php:189
6530
+ #, php-format
6531
+ msgid "Publishing %s"
6532
  msgstr ""
6533
 
6534
+ #: includes/hooks/mycred-hook-referrals.php:42
6535
+ msgid "Affiliate Program"
 
6536
  msgstr ""
6537
 
6538
+ #: includes/hooks/mycred-hook-referrals.php:51
6539
+ msgid "Per Day"
6540
  msgstr ""
6541
 
6542
+ #: includes/hooks/mycred-hook-referrals.php:211
6543
+ msgid "Link"
6544
  msgstr ""
6545
 
6546
+ #: includes/hooks/mycred-hook-referrals.php:215
6547
+ msgid "Visitors Referred"
6548
  msgstr ""
6549
 
6550
+ #: includes/hooks/mycred-hook-referrals.php:219
6551
+ msgid "Signups Referred"
6552
  msgstr ""
6553
 
6554
+ #: includes/hooks/mycred-hook-referrals.php:555
6555
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:306
6556
+ #: plugins/mycred-hook-affiliatewp.php:306
6557
+ msgid "Referring Visitors"
6558
  msgstr ""
6559
 
6560
+ #: includes/hooks/mycred-hook-referrals.php:579
6561
+ msgid "Referring Signups"
6562
  msgstr ""
6563
 
6564
+ #: includes/hooks/mycred-hook-referrals.php:620
6565
+ msgid "Referral Links"
6566
  msgstr ""
6567
 
6568
+ #: includes/hooks/mycred-hook-referrals.php:624
6569
+ msgid "Assign numeric referral IDs to each user."
6570
  msgstr ""
6571
 
6572
+ #: includes/hooks/mycred-hook-referrals.php:625
6573
+ #: includes/hooks/mycred-hook-referrals.php:631
6574
+ msgid "Example"
6575
  msgstr ""
6576
 
6577
+ #: includes/hooks/mycred-hook-referrals.php:630
6578
+ msgid "Assign usernames as IDs for each user."
6579
  msgstr ""
6580
 
6581
+ #: includes/hooks/mycred-hook-referrals.php:638
6582
+ msgid "IP Limit"
6583
  msgstr ""
6584
 
6585
+ #: includes/hooks/mycred-hook-referrals.php:640
6586
+ msgid ""
6587
+ "The number of times each IP address grants %_plural%. Use zero for unlimited."
6588
  msgstr ""
6589
 
6590
+ #: includes/hooks/mycred-hook-referrals.php:653
6591
+ msgid "BuddyPress Profile"
6592
  msgstr ""
6593
 
6594
+ #: includes/hooks/mycred-hook-referrals.php:658
6595
+ msgid "Insert referral link in users profiles"
6596
  msgstr ""
6597
 
6598
+ #: includes/hooks/mycred-hook-referrals.php:668
6599
+ msgid "Leave empty to hide."
6600
  msgstr ""
6601
 
6602
+ #: includes/hooks/mycred-hook-referrals.php:673
6603
+ msgid "Profile Positioning"
6604
  msgstr ""
6605
 
6606
+ #: includes/hooks/mycred-hook-referrals.php:675
6607
+ msgid ""
6608
+ "You can move around the referral link on your users profile by changing the "
6609
+ "position. Increase to move up, decrease to move down."
6610
  msgstr ""
6611
 
6612
+ #: includes/hooks/mycred-hook-referrals.php:682
6613
+ msgid "Description"
6614
  msgstr ""
6615
 
6616
+ #: includes/hooks/mycred-hook-referrals.php:683
6617
+ msgid "Optional description to insert under the link."
6618
  msgstr ""
6619
 
6620
+ #: includes/hooks/mycred-hook-view-content.php:146
6621
+ msgid "Viewing Posts"
6622
  msgstr ""
6623
 
6624
+ #: includes/hooks/mycred-hook-view-content.php:176
6625
+ #: includes/hooks/mycred-hook-view-content.php:221
6626
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:248
6627
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:207
6628
+ #: plugins/mycred-hook-wp-favorite-posts.php:248
6629
+ #: plugins/mycred-hook-wp-postratings.php:207
6630
+ msgid "Member Log Template"
6631
  msgstr ""
6632
 
6633
+ #: includes/hooks/mycred-hook-view-content.php:183
6634
+ #: includes/hooks/mycred-hook-view-content.php:228
6635
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:255
6636
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:214
6637
+ #: plugins/mycred-hook-wp-favorite-posts.php:255
6638
+ #: plugins/mycred-hook-wp-postratings.php:214
6639
+ msgid "Content Author Log Template"
6640
  msgstr ""
6641
 
6642
+ #: includes/hooks/mycred-hook-view-content.php:191
6643
+ msgid "Viewing Pages"
6644
  msgstr ""
6645
 
6646
+ #: includes/hooks/mycred-hook-view-content.php:282
6647
+ #, php-format
6648
+ msgid "Viewing %s"
6649
  msgstr ""
6650
 
6651
+ #: includes/hooks/mycred-hook-watching-video.php:323
6652
+ msgid "Award Logic"
6653
  msgstr ""
6654
 
6655
+ #: includes/hooks/mycred-hook-watching-video.php:325
6656
+ msgid "Play - As soon as video starts playing."
6657
  msgstr ""
6658
 
6659
+ #: includes/hooks/mycred-hook-watching-video.php:328
6660
+ msgid "Full - First when the entire video has played."
6661
  msgstr ""
6662
 
6663
+ #: includes/hooks/mycred-hook-watching-video.php:331
6664
+ msgid "Interval - For each x number of seconds watched."
6665
  msgstr ""
6666
 
6667
+ #: includes/hooks/mycred-hook-watching-video.php:338
6668
+ msgid "Intervals"
 
6669
  msgstr ""
6670
 
6671
+ #: includes/hooks/mycred-hook-watching-video.php:340
6672
+ #, php-format
6673
+ msgid "The number of seconds a user must watch in order to get %s."
6674
  msgstr ""
6675
 
6676
+ #: includes/hooks/mycred-hook-watching-video.php:345
6677
+ msgid "Leniency"
6678
  msgstr ""
6679
 
6680
+ #: includes/hooks/mycred-hook-watching-video.php:347
6681
+ msgid ""
6682
+ "Do not set this value to zero! A lot of thing can happen while a user "
6683
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
6684
+ "buffering or play back errors."
6685
  msgstr ""
6686
 
6687
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:15
6688
+ #: plugins/mycred-hook-affiliatewp.php:15
6689
+ msgid "AffiliateWP"
6690
  msgstr ""
6691
 
6692
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:16
6693
+ #: plugins/mycred-hook-affiliatewp.php:16
6694
+ msgid ""
6695
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
6696
+ "referrals."
6697
  msgstr ""
6698
 
6699
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:287
6700
+ #: plugins/mycred-hook-affiliatewp.php:287
6701
+ msgid "Affiliate Signup"
6702
  msgstr ""
6703
 
6704
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:333
6705
+ #: plugins/mycred-hook-affiliatewp.php:333
6706
+ msgid "Referring Sales"
6707
  msgstr ""
6708
 
6709
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:338
6710
+ #: plugins/mycred-hook-affiliatewp.php:338
6711
+ msgid "Pay a set amount"
6712
  msgstr ""
6713
 
6714
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:342
6715
+ #: plugins/mycred-hook-affiliatewp.php:342
6716
+ msgid "All referrals will pay the same amount."
6717
  msgstr ""
6718
 
6719
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:348
6720
+ #: plugins/mycred-hook-affiliatewp.php:348
6721
+ msgid "Pay the referral amount"
6722
+ msgstr ""
 
 
6723
 
6724
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:350
6725
+ #: plugins/mycred-hook-affiliatewp.php:350
6726
+ msgid "Points Currency Code"
6727
  msgstr ""
6728
 
6729
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:352
6730
+ #: plugins/mycred-hook-affiliatewp.php:352
6731
+ msgid "Requires AffiliateWP and your store to use points as currency."
6732
  msgstr ""
6733
 
6734
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:358
6735
+ #: plugins/mycred-hook-affiliatewp.php:358
6736
+ msgid "Apply an exchange rate"
6737
  msgstr ""
6738
 
6739
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:369
6740
+ #: plugins/mycred-hook-affiliatewp.php:369
6741
+ msgid "Log template - Payout"
6742
  msgstr ""
6743
 
6744
+ #: includes/hooks/external/mycred-hook-affiliatewp.php:376
6745
+ #: plugins/mycred-hook-affiliatewp.php:376
6746
+ msgid "Log template - Refund"
6747
  msgstr ""
6748
 
6749
+ #: includes/hooks/external/mycred-hook-badgeOS.php:15
6750
+ #: plugins/mycred-hook-badgeOS.php:15
6751
+ msgid "BadgeOS"
6752
  msgstr ""
6753
 
6754
+ #: includes/hooks/external/mycred-hook-badgeOS.php:16
6755
+ #: plugins/mycred-hook-badgeOS.php:16
6756
+ msgid ""
6757
+ "Default settings for each BadgeOS Achievement type. These settings may be "
6758
+ "overridden for individual achievement type."
6759
  msgstr ""
6760
 
6761
+ #: includes/hooks/external/mycred-hook-badgeOS.php:124
6762
+ #: plugins/mycred-hook-badgeOS.php:124
6763
+ #, php-format
6764
  msgid ""
6765
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
6766
+ "feature."
6767
  msgstr ""
6768
 
6769
+ #: includes/hooks/external/mycred-hook-badgeOS.php:138
6770
+ #: includes/hooks/external/mycred-hook-badgeOS.php:140
6771
+ #: plugins/mycred-hook-badgeOS.php:138 plugins/mycred-hook-badgeOS.php:140
6772
+ msgid "%plural% to Award"
6773
  msgstr ""
6774
 
6775
+ #: includes/hooks/external/mycred-hook-badgeOS.php:142
6776
+ #: plugins/mycred-hook-badgeOS.php:142
6777
+ msgid "Use zero to disable"
6778
  msgstr ""
6779
 
6780
+ #: includes/hooks/external/mycred-hook-badgeOS.php:155
6781
+ #: plugins/mycred-hook-badgeOS.php:155
6782
+ msgid "Deduction Log Template"
6783
  msgstr ""
6784
 
6785
+ #: includes/hooks/external/mycred-hook-badgeOS.php:317
6786
+ #: plugins/mycred-hook-badgeOS.php:317
6787
+ #, php-format
6788
+ msgid "Earning: %s"
6789
  msgstr ""
6790
 
6791
+ #: includes/hooks/external/mycred-hook-badgeOS.php:335
6792
+ #: plugins/mycred-hook-badgeOS.php:335
6793
+ #, php-format
6794
+ msgid "Revoked: %s"
6795
  msgstr ""
6796
 
6797
+ #: includes/hooks/external/mycred-hook-bbPress.php:16
6798
+ #: plugins/mycred-hook-bbPress.php:16
6799
+ msgid "Awards %_plural% for bbPress actions."
6800
  msgstr ""
6801
 
6802
+ #: includes/hooks/external/mycred-hook-bbPress.php:433
6803
+ #: plugins/mycred-hook-bbPress.php:433
6804
+ msgid "New Forums"
6805
  msgstr ""
6806
 
6807
+ #: includes/hooks/external/mycred-hook-bbPress.php:457
6808
+ #: plugins/mycred-hook-bbPress.php:457
6809
+ msgid "Deleting Forums"
6810
  msgstr ""
6811
 
6812
+ #: includes/hooks/external/mycred-hook-bbPress.php:475
6813
+ #: includes/hooks/external/mycred-hook-simplepress.php:291
6814
+ #: plugins/mycred-hook-bbPress.php:475 plugins/mycred-hook-bbPress.php:550
6815
+ #: plugins/mycred-hook-simplepress.php:291
6816
+ msgid "New Topic"
6817
  msgstr ""
6818
 
6819
+ #: includes/hooks/external/mycred-hook-bbPress.php:501
6820
+ #: plugins/mycred-hook-bbPress.php:501
6821
+ msgid "Forum authors can receive %_plural% for creating new topics."
6822
  msgstr ""
6823
 
6824
+ #: includes/hooks/external/mycred-hook-bbPress.php:508
6825
+ #: includes/hooks/external/mycred-hook-simplepress.php:315
6826
+ #: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-simplepress.php:315
6827
+ msgid "Deleted Topic"
6828
  msgstr ""
6829
 
6830
+ #: includes/hooks/external/mycred-hook-bbPress.php:526
6831
+ #: plugins/mycred-hook-bbPress.php:526
6832
+ msgid "Adding Topic to Favorites"
6833
  msgstr ""
6834
 
6835
+ #: includes/hooks/external/mycred-hook-bbPress.php:550
6836
+ msgid "Forum Reply"
 
 
6837
  msgstr ""
6838
 
6839
+ #: includes/hooks/external/mycred-hook-bbPress.php:576
6840
+ #: plugins/mycred-hook-bbPress.php:576
6841
+ msgid "Topic authors can receive %_plural% for replying to their own Topic."
6842
  msgstr ""
6843
 
6844
+ #: includes/hooks/external/mycred-hook-bbPress.php:583
6845
+ #: plugins/mycred-hook-bbPress.php:583
6846
+ msgid "Deleted Reply"
6847
  msgstr ""
6848
 
6849
+ #: includes/hooks/external/mycred-hook-bbPress.php:605
6850
+ #: plugins/mycred-hook-bbPress.php:605
6851
+ msgid "Show users %_plural% balance in replies"
6852
  msgstr ""
6853
 
6854
+ #: includes/hooks/external/mycred-hook-bbPress.php:608
6855
+ #: plugins/mycred-hook-bbPress.php:608
6856
+ msgid "Show users %_plural% balance in their bbPress profiles"
6857
  msgstr ""
6858
 
6859
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:15
6860
+ #: plugins/mycred-hook-buddypress-media.php:15
6861
+ msgid "rtMedia Galleries"
6862
  msgstr ""
6863
 
6864
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:16
6865
+ #: plugins/mycred-hook-buddypress-media.php:16
6866
  msgid ""
6867
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
 
6868
  msgstr ""
6869
 
6870
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:362
6871
+ #: plugins/mycred-hook-buddypress-media.php:362
6872
+ msgid "Photo Deletion"
6873
  msgstr ""
6874
 
6875
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:380
6876
+ #: plugins/mycred-hook-buddypress-media.php:380
6877
+ msgid "Video Deletion"
6878
  msgstr ""
6879
 
6880
+ #: includes/hooks/external/mycred-hook-buddypress-media.php:398
6881
+ #: plugins/mycred-hook-buddypress-media.php:398
6882
+ msgid "Music Deletion"
6883
  msgstr ""
6884
 
6885
+ #: includes/hooks/external/mycred-hook-buddypress.php:16
6886
+ #: plugins/mycred-hook-buddypress.php:16
6887
+ msgid "BuddyPress: Members"
6888
  msgstr ""
6889
 
6890
+ #: includes/hooks/external/mycred-hook-buddypress.php:17
6891
+ #: plugins/mycred-hook-buddypress.php:17
6892
+ msgid "Awards %_plural% for profile related actions."
6893
  msgstr ""
6894
 
6895
+ #: includes/hooks/external/mycred-hook-buddypress.php:25
6896
+ #: plugins/mycred-hook-buddypress.php:25
6897
+ msgid "BuddyPress: Groups"
6898
  msgstr ""
6899
 
6900
+ #: includes/hooks/external/mycred-hook-buddypress.php:26
6901
+ #: plugins/mycred-hook-buddypress.php:26
6902
+ msgid ""
6903
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6904
+ "zero to disable a specific hook."
6905
  msgstr ""
6906
 
6907
+ #: includes/hooks/external/mycred-hook-buddypress.php:622
6908
+ #: plugins/mycred-hook-buddypress.php:613
6909
+ msgid "New Profile Activity"
6910
  msgstr ""
6911
 
6912
+ #: includes/hooks/external/mycred-hook-buddypress.php:646
6913
+ #: plugins/mycred-hook-buddypress.php:637
6914
+ msgid "Deleted Profile Activity"
 
 
6915
  msgstr ""
6916
 
6917
+ #: includes/hooks/external/mycred-hook-buddypress.php:670
6918
+ #: plugins/mycred-hook-buddypress.php:661
6919
+ msgid "New Profile Avatar Upload"
6920
  msgstr ""
6921
 
6922
+ #: includes/hooks/external/mycred-hook-buddypress.php:694
6923
+ #: plugins/mycred-hook-buddypress.php:685
6924
+ msgid "New Profile Cover Upload"
6925
  msgstr ""
6926
 
6927
+ #: includes/hooks/external/mycred-hook-buddypress.php:718
6928
+ #: plugins/mycred-hook-buddypress.php:709
6929
+ msgid "New Friendships"
6930
  msgstr ""
6931
 
6932
+ #: includes/hooks/external/mycred-hook-buddypress.php:744
6933
+ #: plugins/mycred-hook-buddypress.php:735
6934
+ msgid ""
6935
+ "Users with zero balance can not add friends. Requires that you deduct "
6936
+ "%_plural% for adding a new friend."
6937
  msgstr ""
6938
 
6939
+ #: includes/hooks/external/mycred-hook-buddypress.php:751
6940
+ #: plugins/mycred-hook-buddypress.php:742
6941
+ msgid "Ending Friendships"
 
6942
  msgstr ""
6943
 
6944
+ #: includes/hooks/external/mycred-hook-buddypress.php:769
6945
+ #: plugins/mycred-hook-buddypress.php:760
6946
+ msgid "New Comment"
 
6947
  msgstr ""
6948
 
6949
+ #: includes/hooks/external/mycred-hook-buddypress.php:811
6950
+ #: plugins/mycred-hook-buddypress.php:802
6951
+ msgid "Favorite Activity"
 
6952
  msgstr ""
6953
 
6954
+ #: includes/hooks/external/mycred-hook-buddypress.php:835
6955
+ msgid "Removing Favorite Activity"
 
 
6956
  msgstr ""
6957
 
6958
+ #: includes/hooks/external/mycred-hook-buddypress.php:853
6959
+ #: plugins/mycred-hook-buddypress.php:844
6960
+ msgid "New Private Message"
 
6961
  msgstr ""
6962
 
6963
+ #: includes/hooks/external/mycred-hook-buddypress.php:1511
6964
+ #: plugins/mycred-hook-buddypress.php:1502
6965
+ msgid "Group Creation"
 
6966
  msgstr ""
6967
 
6968
+ #: includes/hooks/external/mycred-hook-buddypress.php:1517
6969
+ #: plugins/mycred-hook-buddypress.php:1508
6970
+ msgid ""
6971
+ "If you use a negative value and the user does not have enough %_plural%, the "
6972
+ "\"Create Group\" button will be disabled."
6973
  msgstr ""
6974
 
6975
+ #: includes/hooks/external/mycred-hook-buddypress.php:1522
6976
+ #: plugins/mycred-hook-buddypress.php:1513
6977
+ msgid "No. of Members"
 
6978
  msgstr ""
6979
 
6980
+ #: includes/hooks/external/mycred-hook-buddypress.php:1524
6981
+ #: plugins/mycred-hook-buddypress.php:1515
6982
+ msgid ""
6983
+ "The number of members a group must gain before awarding %_plural%. Use zero "
6984
+ "to award as soon as the group is created."
 
 
6985
  msgstr ""
6986
 
6987
+ #: includes/hooks/external/mycred-hook-buddypress.php:1537
6988
+ #: plugins/mycred-hook-buddypress.php:1528
6989
+ msgid "Group Deletions"
 
6990
  msgstr ""
6991
 
6992
+ #: includes/hooks/external/mycred-hook-buddypress.php:1555
6993
+ #: plugins/mycred-hook-buddypress.php:1546
6994
+ msgid "New Group Avatar Upload"
6995
+ msgstr ""
6996
+
6997
+ #: includes/hooks/external/mycred-hook-buddypress.php:1579
6998
+ #: plugins/mycred-hook-buddypress.php:1570
6999
+ msgid "New Group Cover Upload"
7000
+ msgstr ""
7001
+
7002
+ #: includes/hooks/external/mycred-hook-buddypress.php:1603
7003
+ #: plugins/mycred-hook-buddypress.php:1594
7004
+ msgid "New Forum Topics"
7005
  msgstr ""
7006
 
7007
+ #: includes/hooks/external/mycred-hook-buddypress.php:1627
7008
+ #: plugins/mycred-hook-buddypress.php:1618
7009
+ msgid "Editing Forum Topics"
 
7010
  msgstr ""
7011
 
7012
+ #: includes/hooks/external/mycred-hook-buddypress.php:1651
7013
+ #: plugins/mycred-hook-buddypress.php:1642
7014
+ msgid "New Forum Posts"
7015
  msgstr ""
7016
 
7017
+ #: includes/hooks/external/mycred-hook-buddypress.php:1675
7018
+ #: plugins/mycred-hook-buddypress.php:1666
7019
+ msgid "Editing Forum Posts"
7020
  msgstr ""
7021
 
7022
+ #: includes/hooks/external/mycred-hook-buddypress.php:1699
7023
+ #: plugins/mycred-hook-buddypress.php:1690
7024
+ msgid "Joining Groups"
 
 
 
7025
  msgstr ""
7026
 
7027
+ #: includes/hooks/external/mycred-hook-buddypress.php:1723
7028
+ #: plugins/mycred-hook-buddypress.php:1714
7029
+ msgid "Leaving Groups"
7030
  msgstr ""
7031
 
7032
+ #: includes/hooks/external/mycred-hook-buddypress.php:1741
7033
+ #: plugins/mycred-hook-buddypress.php:1732
7034
+ msgid "New Group Comments"
 
7035
  msgstr ""
7036
 
7037
+ #: includes/hooks/external/mycred-hook-contact-form7.php:15
7038
+ #: plugins/mycred-hook-contact-form7.php:15
7039
+ msgid "Contact Form 7 Form Submissions"
7040
  msgstr ""
7041
 
7042
+ #: includes/hooks/external/mycred-hook-contact-form7.php:16
7043
+ #: plugins/mycred-hook-contact-form7.php:16
7044
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
7045
  msgstr ""
7046
 
7047
+ #: includes/hooks/external/mycred-hook-contact-form7.php:135
7048
+ #: includes/hooks/external/mycred-hook-gravityforms.php:130
7049
+ #: plugins/mycred-hook-contact-form7.php:134
7050
+ #: plugins/mycred-hook-gravityforms.php:130
7051
+ msgid "No forms found."
7052
  msgstr ""
7053
 
7054
+ #: includes/hooks/external/mycred-hook-contact-form7.php:163
7055
+ #: includes/hooks/external/mycred-hook-gravityforms.php:156
7056
+ #: plugins/mycred-hook-contact-form7.php:162
7057
+ #: plugins/mycred-hook-gravityforms.php:156
7058
+ #, php-format
7059
+ msgid "Form: %s"
7060
  msgstr ""
7061
 
7062
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:15
7063
+ #: plugins/mycred-hook-events-manager-light.php:15
7064
+ msgid "Events Manager"
7065
  msgstr ""
7066
 
7067
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:16
7068
+ #: plugins/mycred-hook-events-manager-light.php:16
7069
+ msgid "Awards %_plural% for users attending events."
7070
  msgstr ""
7071
 
7072
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:201
7073
+ #: plugins/mycred-hook-events-manager-light.php:201
7074
+ msgid "Attending Event"
7075
  msgstr ""
7076
 
7077
+ #: includes/hooks/external/mycred-hook-events-manager-light.php:225
7078
+ #: plugins/mycred-hook-events-manager-light.php:225
7079
+ msgid "Cancelling Attendance"
7080
  msgstr ""
7081
 
7082
+ #: includes/hooks/external/mycred-hook-gravityforms.php:15
7083
+ #: plugins/mycred-hook-gravityforms.php:15
7084
+ msgid "Gravityform Submissions"
7085
  msgstr ""
7086
 
7087
+ #: includes/hooks/external/mycred-hook-gravityforms.php:16
7088
+ #: plugins/mycred-hook-gravityforms.php:16
7089
+ msgid "Awards %_plural% for successful form submissions."
7090
  msgstr ""
7091
 
7092
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:15
7093
+ #: plugins/mycred-hook-invite-anyone.php:15
7094
+ msgid "Invite Anyone Plugin"
7095
  msgstr ""
7096
 
7097
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:16
7098
+ #: plugins/mycred-hook-invite-anyone.php:16
7099
+ msgid ""
7100
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
7101
+ "accepted."
7102
  msgstr ""
7103
 
7104
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:205
7105
+ #: plugins/mycred-hook-invite-anyone.php:205
7106
+ msgid "Sending Invites"
7107
  msgstr ""
7108
 
7109
+ #: includes/hooks/external/mycred-hook-invite-anyone.php:229
7110
+ #: plugins/mycred-hook-invite-anyone.php:229
7111
+ msgid "Accepted Invites"
 
7112
  msgstr ""
7113
 
7114
+ #: includes/hooks/external/mycred-hook-jetpack.php:15
7115
+ #: plugins/mycred-hook-jetpack.php:15
7116
+ msgid "Jetpack Subscriptions"
7117
  msgstr ""
7118
 
7119
+ #: includes/hooks/external/mycred-hook-jetpack.php:16
7120
+ #: plugins/mycred-hook-jetpack.php:16
7121
+ msgid ""
7122
+ "Awards %_plural% for users signing up for site or comment updates using "
7123
+ "Jetpack."
7124
  msgstr ""
7125
 
7126
+ #: includes/hooks/external/mycred-hook-jetpack.php:539
7127
+ #: plugins/mycred-hook-jetpack.php:154
7128
+ msgid "Site Subscriptions"
7129
  msgstr ""
7130
 
7131
+ #: includes/hooks/external/mycred-hook-jetpack.php:557
7132
+ #: plugins/mycred-hook-jetpack.php:172
7133
+ msgid "Comment Subscriptions"
7134
  msgstr ""
7135
 
7136
+ #: includes/hooks/external/mycred-hook-simplepress.php:16
7137
+ #: plugins/mycred-hook-simplepress.php:16
7138
+ msgid "Awards %_plural% for Simple:Press actions."
7139
  msgstr ""
7140
 
7141
+ #: includes/hooks/external/mycred-hook-simplepress.php:333
7142
+ #: plugins/mycred-hook-simplepress.php:333
7143
+ msgid "New Topic Post"
7144
  msgstr ""
7145
 
7146
+ #: includes/hooks/external/mycred-hook-simplepress.php:359
7147
+ #: plugins/mycred-hook-simplepress.php:359
7148
+ msgid "Topic authors can receive %_plural% for posting on their own Topic."
7149
  msgstr ""
7150
 
7151
+ #: includes/hooks/external/mycred-hook-simplepress.php:366
7152
+ #: plugins/mycred-hook-simplepress.php:366
7153
+ msgid "Deleted Topic Post"
7154
  msgstr ""
7155
 
7156
+ #: includes/hooks/external/mycred-hook-woocommerce.php:93
7157
+ #: includes/hooks/external/mycred-hook-woocommerce.php:159
7158
+ #: plugins/mycred-hook-woocommerce.php:93
7159
+ #: plugins/mycred-hook-woocommerce.php:159
7160
+ msgid "Reward with %plural%"
7161
  msgstr ""
7162
 
7163
+ #: includes/hooks/external/mycred-hook-woocommerce.php:160
7164
+ #: plugins/mycred-hook-woocommerce.php:160
7165
+ msgid "Leave empty for no rewards"
7166
  msgstr ""
7167
 
7168
+ #: includes/hooks/external/mycred-hook-woocommerce.php:405
7169
+ #: plugins/mycred-hook-woocommerce.php:406
7170
+ msgid "WooCommerce Product Reviews"
7171
  msgstr ""
7172
 
7173
+ #: includes/hooks/external/mycred-hook-woocommerce.php:406
7174
+ #: plugins/mycred-hook-woocommerce.php:407
7175
+ msgid ""
7176
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
7177
  msgstr ""
7178
 
7179
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:15
7180
+ #: plugins/mycred-hook-wp-favorite-posts.php:15
7181
+ msgid "WP Favorite Posts"
7182
  msgstr ""
7183
 
7184
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:16
7185
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
7186
+ msgid "Awards %_plural% for users adding posts to their favorites."
7187
  msgstr ""
7188
 
7189
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:218
7190
+ #: plugins/mycred-hook-wp-favorite-posts.php:218
7191
+ msgid "Adding Content to Favorites"
7192
  msgstr ""
7193
 
7194
+ #: includes/hooks/external/mycred-hook-wp-favorite-posts.php:263
7195
+ #: plugins/mycred-hook-wp-favorite-posts.php:263
7196
+ msgid "Removing Content from Favorites"
7197
  msgstr ""
7198
 
7199
+ #: includes/hooks/external/mycred-hook-wp-polls.php:15
7200
+ #: plugins/mycred-hook-wp-polls.php:15
7201
+ msgid "WP-Polls"
7202
  msgstr ""
7203
 
7204
+ #: includes/hooks/external/mycred-hook-wp-polls.php:16
7205
+ #: plugins/mycred-hook-wp-polls.php:16
7206
+ msgid "Awards %_plural% for users voting in polls."
7207
  msgstr ""
7208
 
7209
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:15
7210
+ #: plugins/mycred-hook-wp-postratings.php:15
7211
+ msgid "Post Ratings"
7212
  msgstr ""
7213
 
7214
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:16
7215
+ #: plugins/mycred-hook-wp-postratings.php:16
7216
+ msgid ""
7217
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
7218
+ "author and the user rating."
7219
  msgstr ""
7220
 
7221
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:85
7222
+ #: plugins/mycred-hook-wp-postratings.php:85
7223
+ msgid "Based on rating"
7224
  msgstr ""
7225
 
7226
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:161
7227
+ #: plugins/mycred-hook-wp-postratings.php:161
7228
+ msgid "Content Rating"
7229
  msgstr ""
7230
 
7231
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:192
7232
+ #: includes/hooks/external/mycred-hook-wp-postratings.php:199
7233
+ #: plugins/mycred-hook-wp-postratings.php:192
7234
+ #: plugins/mycred-hook-wp-postratings.php:199
7235
+ msgid "Use the Rating Value instead of the amount set here."
7236
  msgstr ""
7237
 
7238
+ #: includes/importers/mycred-balances.php:117
7239
+ #: includes/importers/mycred-balances.php:144
7240
+ #: includes/importers/mycred-log-entries.php:117
7241
+ #: includes/importers/mycred-log-entries.php:142
7242
+ msgid "The file does not exist or could not be read."
7243
  msgstr ""
7244
 
7245
+ #: includes/importers/mycred-balances.php:220
7246
+ #: includes/importers/mycred-log-entries.php:204
7247
+ msgid ""
7248
+ "Invalid CSV file. Please consult the documentation for further assistance."
7249
  msgstr ""
7250
 
7251
+ #: includes/importers/mycred-balances.php:229
7252
+ #: includes/importers/mycred-cubepoints.php:288
7253
  #, php-format
7254
+ msgid ""
7255
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
7256
+ "imported. <strong>%d</strong> was skipped."
7257
  msgstr ""
7258
 
7259
+ #: includes/importers/mycred-balances.php:230
7260
+ #: includes/importers/mycred-cubepoints.php:289
7261
+ msgid "View Users"
7262
  msgstr ""
7263
 
7264
+ #: includes/importers/mycred-balances.php:245
7265
+ msgid "Import Balances"
 
 
 
 
7266
  msgstr ""
7267
 
7268
+ #: includes/importers/mycred-balances.php:288
7269
+ #: includes/importers/mycred-log-entries.php:284
7270
+ msgid "Choose a file from your computer:"
 
 
 
 
7271
  msgstr ""
7272
 
7273
+ #: includes/importers/mycred-balances.php:294
7274
+ #: includes/importers/mycred-log-entries.php:290
7275
+ #, php-format
7276
+ msgid "Maximum size: %s"
7277
  msgstr ""
7278
 
7279
+ #: includes/importers/mycred-balances.php:299
7280
+ #: includes/importers/mycred-log-entries.php:295
7281
+ msgid "OR enter path to file:"
7282
  msgstr ""
7283
 
7284
+ #: includes/importers/mycred-balances.php:307
7285
+ #: includes/importers/mycred-log-entries.php:303
7286
+ msgid "Delimiter"
 
 
 
 
7287
  msgstr ""
7288
 
7289
+ #: includes/importers/mycred-balances.php:315
7290
+ msgid "Method"
7291
  msgstr ""
7292
 
7293
+ #: includes/importers/mycred-balances.php:319
7294
+ msgid "Replace current balances with the amount in this CSV file"
7295
  msgstr ""
7296
 
7297
+ #: includes/importers/mycred-balances.php:320
7298
+ msgid "Adjust current balances according to the amount in this CSV file"
7299
  msgstr ""
7300
 
7301
+ #: includes/importers/mycred-cubepoints.php:85
7302
+ msgid "Could not find a CubePoints installation."
7303
  msgstr ""
7304
 
7305
+ #: includes/importers/mycred-cubepoints.php:282
7306
+ msgid "No balances were imported."
7307
+ msgstr ""
7308
+
7309
+ #: includes/importers/mycred-cubepoints.php:282
7310
+ msgid "No log entries were imported!"
7311
+ msgstr ""
7312
+
7313
+ #: includes/importers/mycred-cubepoints.php:348
7314
+ msgid "Select what to import"
7315
  msgstr ""
7316
 
7317
+ #: includes/importers/mycred-cubepoints.php:349
7318
+ msgid "Log Entries Only"
 
 
 
 
 
7319
  msgstr ""
7320
 
7321
+ #: includes/importers/mycred-cubepoints.php:350
7322
+ msgid "CubePoints Balances Only"
7323
  msgstr ""
7324
 
7325
+ #: includes/importers/mycred-cubepoints.php:351
7326
+ msgid "Log Entries and Balances"
 
 
7327
  msgstr ""
7328
 
7329
+ #: includes/importers/mycred-log-entries.php:213
 
 
7330
  #, php-format
7331
+ msgid ""
7332
+ "Import complete - A total of <strong>%d</strong> log entries were "
7333
+ "successfully imported. <strong>%d</strong> was skipped."
7334
  msgstr ""
7335
 
7336
+ #: includes/importers/mycred-log-entries.php:239
7337
+ msgid "Import Log Entries"
 
 
7338
  msgstr ""
7339
 
7340
+ #: includes/shortcodes/mycred_exchange.php:27
7341
+ #: includes/shortcodes/mycred_hook_table.php:24
7342
+ msgid "Point type not found."
 
 
7343
  msgstr ""
7344
 
7345
+ #: includes/shortcodes/mycred_hook_table.php:21
7346
+ msgid "No instances found for this point type"
 
7347
  msgstr ""
7348
 
7349
+ #: includes/shortcodes/mycred_hook_table.php:83
7350
+ msgid "Instance"
 
7351
  msgstr ""
7352
 
7353
+ #: includes/shortcodes/mycred_hook_table.php:111
7354
+ #, php-format
7355
+ msgid "Maximum %s times per post and Maximum %s times per day"
 
 
 
7356
  msgstr ""
7357
 
7358
+ #: includes/shortcodes/mycred_hook_table.php:115
7359
+ #, php-format
7360
+ msgid "Maximum %s times per post"
7361
  msgstr ""
7362
 
7363
+ #: includes/shortcodes/mycred_hook_table.php:119
7364
+ #, php-format
7365
+ msgid "Maximum %s times per day"
7366
  msgstr ""
7367
 
7368
+ #: includes/widgets/mycred-widget-leaderboard.php:127
7369
  msgid ""
7370
+ "When showing a leaderboard based on balances, you can select to use users "
7371
+ "total balance (1) instead of their current balance (0)."
7372
  msgstr ""
7373
 
7374
+ #: includes/widgets/mycred-widget-leaderboard.php:131
7375
+ msgid "Wrap"
7376
  msgstr ""
7377
 
7378
+ #: includes/widgets/mycred-widget-leaderboard.php:133
7379
  msgid ""
7380
+ "The wrapping element to use for the list. By default the leaderboard renders "
7381
+ "an organized list (ol) and each item uses a list element (li)."
7382
  msgstr ""
7383
 
7384
+ #: includes/widgets/mycred-widget-leaderboard.php:137
7385
+ msgid "Nothing"
7386
  msgstr ""
7387
 
7388
+ #: includes/widgets/mycred-widget-leaderboard.php:139
7389
+ msgid "The message to show users when the leaderboard is empty."
 
 
7390
  msgstr ""
7391
 
7392
+ #: includes/widgets/mycred-widget-leaderboard.php:143
7393
+ msgid "Exclude Zero"
 
 
7394
  msgstr ""
7395
 
7396
+ #: includes/widgets/mycred-widget-leaderboard.php:145
7397
+ msgid ""
7398
+ "Option to filter out users with zero balances / results. Use 1 to enable and "
7399
+ "0 to disable."
7400
  msgstr ""
7401
 
7402
+ #: membership/mycred-connect-membership.php:49
7403
+ msgid "myCRED Membership Club"
7404
  msgstr ""
7405
 
7406
+ #: membership/mycred-connect-membership.php:53
7407
+ msgid "Welcome to myCRED Membership Club"
7408
  msgstr ""
7409
 
7410
+ #: membership/mycred-connect-membership.php:54
7411
+ msgid "Add Your Membership License"
7412
  msgstr ""
7413
 
7414
+ #: membership/mycred-connect-membership.php:56
7415
+ msgid "Click here to get your Membership License"
7416
  msgstr ""
7417
 
7418
+ #: modules/mycred-module-addons.php:177
7419
+ msgid "Give your users badges based on their interaction with your website."
7420
+ msgstr ""
7421
+
7422
+ #: modules/mycred-module-addons.php:189
7423
  msgid ""
7424
+ "Setup recurring payouts or offer / charge interest on user account balances."
 
 
7425
  msgstr ""
7426
 
7427
+ #: modules/mycred-module-addons.php:201
7428
+ msgid ""
7429
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
7430
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
7431
+ "also let your users buy points for other members."
7432
  msgstr ""
7433
 
7434
+ #: modules/mycred-module-addons.php:213
7435
+ msgid ""
7436
+ "The coupons add-on allows you to create coupons that users can use to add "
7437
+ "points to their accounts."
7438
  msgstr ""
7439
 
7440
+ #: modules/mycred-module-addons.php:225
7441
+ msgid "Create email notices for any type of myCRED instance."
7442
  msgstr ""
7443
 
7444
+ #: modules/mycred-module-addons.php:237
7445
+ msgid ""
7446
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
7447
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
7448
+ "Bookings: Event Espresso and Events Manager (free & pro)."
7449
  msgstr ""
7450
 
7451
+ #: modules/mycred-module-addons.php:249
7452
+ msgid "Create pop-up notifications for when users gain or loose points."
7453
  msgstr ""
7454
 
7455
+ #: modules/mycred-module-addons.php:262
7456
+ msgid ""
7457
+ "Create ranks for users reaching a certain number of %_plural% with the "
7458
+ "option to add logos for each rank."
7459
  msgstr ""
7460
 
7461
+ #: modules/mycred-module-addons.php:274
7462
+ msgid ""
7463
+ "This add-on allows you to sell posts, pages or any public post types on your "
7464
+ "website. You can either sell the entire content or using our shortcode, sell "
7465
+ "parts of your content allowing you to offer \"teasers\"."
7466
  msgstr ""
7467
 
7468
+ #: modules/mycred-module-addons.php:286
7469
+ msgid ""
7470
+ "Gives you access to your myCRED Statistics based on your users gains and "
7471
+ "loses."
7472
  msgstr ""
7473
 
7474
+ #: modules/mycred-module-addons.php:297
7475
+ msgid ""
7476
+ "Allow your users to send or \"donate\" points to other members by either "
7477
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
7478
  msgstr ""
7479
 
7480
+ #: modules/mycred-module-addons.php:349
7481
+ msgid "Add-on Activated"
7482
  msgstr ""
7483
 
7484
+ #: modules/mycred-module-addons.php:352
7485
+ msgid "Add-on Deactivated"
 
 
 
7486
  msgstr ""
7487
 
7488
+ #: modules/mycred-module-addons.php:431
7489
+ msgid "Activate"
7490
  msgstr ""
7491
 
7492
+ #: modules/mycred-module-addons.php:437
7493
+ msgid "Deactivate"
7494
  msgstr ""
7495
 
7496
+ #: modules/mycred-module-buddypress.php:31
7497
+ msgid "My History"
7498
  msgstr ""
7499
 
7500
+ #: modules/mycred-module-buddypress.php:32
7501
+ #, php-format
7502
+ msgid "%s's History"
7503
  msgstr ""
7504
 
7505
+ #: modules/mycred-module-buddypress.php:131
7506
+ msgid "Current balance"
7507
  msgstr ""
7508
 
7509
+ #: modules/mycred-module-buddypress.php:352
7510
+ msgid "Show:"
7511
  msgstr ""
7512
 
7513
+ #: modules/mycred-module-buddypress.php:352
7514
+ msgid "Go"
7515
  msgstr ""
7516
 
7517
+ #: modules/mycred-module-buddypress.php:412
7518
+ msgid "Show in Profile"
 
 
7519
  msgstr ""
7520
 
7521
+ #: modules/mycred-module-buddypress.php:432
7522
+ msgid "%singular% Balance"
 
7523
  msgstr ""
7524
 
7525
+ #: modules/mycred-module-buddypress.php:447
7526
+ msgid "Members and visitors can view other members %_singular% balance."
 
7527
  msgstr ""
7528
 
7529
+ #: modules/mycred-module-buddypress.php:463
7530
+ msgid "%plural% History"
 
7531
  msgstr ""
7532
 
7533
+ #: modules/mycred-module-buddypress.php:477
7534
+ msgid "Members can view each others %_plural% history."
 
 
7535
  msgstr ""
7536
 
7537
+ #: modules/mycred-module-buddypress.php:482
7538
+ msgid "Menu Title"
7539
  msgstr ""
7540
 
7541
+ #: modules/mycred-module-buddypress.php:484
7542
+ msgid "Title shown to me"
 
7543
  msgstr ""
7544
 
7545
+ #: modules/mycred-module-buddypress.php:491
7546
+ #, php-format
7547
+ msgid "Title shown to others. Use %s to show the first name."
7548
  msgstr ""
7549
 
7550
+ #: modules/mycred-module-buddypress.php:499
7551
+ msgid "Menu Position"
7552
  msgstr ""
7553
 
7554
+ #: modules/mycred-module-buddypress.php:501
7555
+ msgid "Current menu positions:"
7556
  msgstr ""
7557
 
7558
+ #: modules/mycred-module-buddypress.php:506
7559
+ msgid "History URL slug"
7560
  msgstr ""
7561
 
7562
+ #: modules/mycred-module-buddypress.php:508
7563
+ msgid "The history page slug. Must be URL friendly."
 
7564
  msgstr ""
7565
 
7566
+ #: modules/mycred-module-buddypress.php:513
7567
+ msgid "Number of history entries to show"
7568
  msgstr ""
7569
 
7570
+ #: modules/mycred-module-caching.php:260 modules/mycred-module-caching.php:279
7571
+ msgid "No caching"
 
7572
  msgstr ""
7573
 
7574
+ #: modules/mycred-module-caching.php:263 modules/mycred-module-caching.php:282
7575
+ msgid "Clear cache each time a users balance changes"
7576
  msgstr ""
7577
 
7578
+ #: modules/mycred-module-caching.php:266 modules/mycred-module-caching.php:285
7579
+ msgid "Clear cache once a day"
7580
  msgstr ""
7581
 
7582
+ #: modules/mycred-module-caching.php:269 modules/mycred-module-caching.php:288
7583
+ msgid "Clear cache manually"
7584
  msgstr ""
7585
 
7586
+ #: modules/mycred-module-caching.php:272 modules/mycred-module-caching.php:291
7587
+ msgid "Clear Cache Now"
7588
  msgstr ""
7589
 
7590
+ #: modules/mycred-module-caching.php:277
7591
+ msgid "Leaderboards"
 
 
7592
  msgstr ""
7593
 
7594
+ #: modules/mycred-module-caching.php:296 modules/mycred-module-caching.php:310
7595
+ msgid "Auto Delete Log Entries"
7596
  msgstr ""
7597
 
7598
+ #: modules/mycred-module-caching.php:298 modules/mycred-module-caching.php:312
7599
+ msgid "Log disabled"
 
 
 
7600
  msgstr ""
7601
 
7602
+ #: modules/mycred-module-caching.php:301 modules/mycred-module-caching.php:315
7603
  #, php-format
7604
+ msgctxt "documentation"
7605
+ msgid ""
7606
+ "Option to automatically delete log entries after certain number of days. "
7607
+ "Please read the %s before using this feature as it's use has consequences! "
7608
+ "Use zero to disable."
7609
  msgstr ""
7610
 
7611
+ #: modules/mycred-module-caching.php:301 modules/mycred-module-caching.php:315
7612
+ msgid "documentation"
7613
  msgstr ""
7614
 
7615
+ #: modules/mycred-module-export.php:260 modules/mycred-module-export.php:287
7616
+ #: modules/mycred-module-export.php:337 modules/mycred-module-settings.php:871
7617
+ msgid "Export"
7618
  msgstr ""
7619
 
7620
+ #: modules/mycred-module-export.php:382
7621
+ msgid "Make both format options available."
 
7622
  msgstr ""
7623
 
7624
+ #: modules/mycred-module-export.php:384
7625
+ msgid "Exports"
 
 
 
7626
  msgstr ""
7627
 
7628
+ #: modules/mycred-module-export.php:390
7629
+ msgid "Front End Exports"
7630
  msgstr ""
7631
 
7632
+ #: modules/mycred-module-export.php:406 modules/mycred-module-export.php:454
7633
+ msgid "Export Format"
 
7634
  msgstr ""
7635
 
7636
+ #: modules/mycred-module-export.php:422 modules/mycred-module-export.php:470
7637
+ msgid "File Name"
 
 
 
 
 
 
 
 
7638
  msgstr ""
7639
 
7640
+ #: modules/mycred-module-export.php:431
7641
+ msgid ""
7642
+ "If enabled, users will only be able to export their own log entries! Export "
7643
+ "tools becomes available wherever you are using the mycred_history shortcode "
7644
+ "or in the users profile."
7645
  msgstr ""
7646
 
7647
+ #: modules/mycred-module-export.php:438
7648
+ msgid "Back End Exports"
7649
  msgstr ""
7650
 
7651
+ #: modules/mycred-module-export.php:479
7652
+ msgid ""
7653
+ "Raw format should be used when you intend to use the export tool to backup "
7654
+ "or import entries in another installation. Formatted exports reflect what "
7655
+ "users see in their history archive."
7656
  msgstr ""
7657
 
7658
+ #: modules/mycred-module-hooks.php:77
7659
+ msgid "%plural% for registrations"
 
7660
  msgstr ""
7661
 
7662
+ #: modules/mycred-module-hooks.php:78
7663
+ msgid "Award %_plural% for users joining your website."
7664
  msgstr ""
7665
 
7666
+ #: modules/mycred-module-hooks.php:85
7667
+ msgid "%plural% for Anniversary"
7668
  msgstr ""
7669
 
7670
+ #: modules/mycred-module-hooks.php:86
7671
+ msgid "Award %_plural% for each year a user has been member."
7672
  msgstr ""
7673
 
7674
+ #: modules/mycred-module-hooks.php:93
7675
+ msgid "%plural% for daily visits"
7676
  msgstr ""
7677
 
7678
+ #: modules/mycred-module-hooks.php:94
7679
+ msgid "Award %_plural% for visiting your website on a daily basis."
 
7680
  msgstr ""
7681
 
7682
+ #: modules/mycred-module-hooks.php:101
7683
+ msgid "%plural% for viewing content"
 
7684
  msgstr ""
7685
 
7686
+ #: modules/mycred-module-hooks.php:102
7687
+ msgid "Award %_plural% for viewing content."
7688
  msgstr ""
7689
 
7690
+ #: modules/mycred-module-hooks.php:109
7691
+ msgid "%plural% for logins"
7692
  msgstr ""
7693
 
7694
+ #: modules/mycred-module-hooks.php:110
7695
+ msgid "Award %_plural% for logging in."
 
7696
  msgstr ""
7697
 
7698
+ #: modules/mycred-module-hooks.php:117
7699
+ msgid "%plural% for publishing content"
7700
  msgstr ""
7701
 
7702
+ #: modules/mycred-module-hooks.php:118
7703
+ msgid "Award %_plural% for publishing content."
7704
  msgstr ""
7705
 
7706
+ #: modules/mycred-module-hooks.php:125
7707
+ msgid "%plural% for trashed content"
7708
  msgstr ""
7709
 
7710
+ #: modules/mycred-module-hooks.php:126
7711
+ msgid "Award or Deduct %_plural% when content gets trashed."
 
 
7712
  msgstr ""
7713
 
7714
+ #: modules/mycred-module-hooks.php:133
7715
+ msgid "%plural% for comments"
7716
  msgstr ""
7717
 
7718
+ #: modules/mycred-module-hooks.php:133
7719
+ msgid "%plural% for Disqus comments"
 
7720
  msgstr ""
7721
 
7722
+ #: modules/mycred-module-hooks.php:134
7723
+ msgid "Award %_plural% for making comments."
7724
  msgstr ""
7725
 
7726
+ #: modules/mycred-module-hooks.php:141
7727
+ msgid "%plural% for clicking on links"
7728
  msgstr ""
7729
 
7730
+ #: modules/mycred-module-hooks.php:142
7731
+ msgid ""
7732
+ "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
7733
  msgstr ""
7734
 
7735
+ #: modules/mycred-module-hooks.php:149
7736
+ msgid "%plural% for viewing Videos"
7737
  msgstr ""
7738
 
7739
+ #: modules/mycred-module-hooks.php:150
7740
+ msgid ""
7741
+ "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
7742
  msgstr ""
7743
 
7744
+ #: modules/mycred-module-hooks.php:157
7745
+ msgid "%plural% for referrals"
7746
  msgstr ""
7747
 
7748
+ #: modules/mycred-module-hooks.php:158
7749
+ msgid "Award %_plural% for signup or visitor referrals."
7750
  msgstr ""
7751
 
7752
+ #: modules/mycred-module-hooks.php:301
7753
+ msgid "Available Hooks"
7754
  msgstr ""
7755
 
7756
+ #: modules/mycred-module-hooks.php:301
7757
+ msgctxt "removing-widget"
7758
+ msgid "Deactivate"
7759
  msgstr ""
7760
 
7761
+ #: modules/mycred-module-hooks.php:305
7762
+ msgid ""
7763
+ "To activate a hook drag it to a sidebar or click on it. To deactivate a hook "
7764
+ "and delete its settings, drag it back."
7765
  msgstr ""
7766
 
7767
+ #: modules/mycred-module-hooks.php:382
7768
+ msgid "Add Hook"
7769
  msgstr ""
7770
 
7771
+ #: modules/mycred-module-hooks.php:421
7772
+ msgid "Active Hooks"
 
7773
  msgstr ""
7774
 
7775
+ #: modules/mycred-module-hooks.php:424
7776
+ msgid "The following hooks are used for all users."
 
 
7777
  msgstr ""
7778
 
7779
+ #: modules/mycred-module-log.php:256
7780
+ msgid "Row Deleted"
7781
  msgstr ""
7782
 
7783
+ #: modules/mycred-module-log.php:301
7784
+ msgid "Invalid or empty reference"
 
 
7785
  msgstr ""
7786
 
7787
+ #: modules/mycred-module-log.php:306
7788
+ msgid "Log Entry cannot be empty"
7789
  msgstr ""
7790
 
7791
+ #: modules/mycred-module-log.php:318
7792
+ msgid "Log entry not found"
7793
  msgstr ""
7794
 
7795
+ #: modules/mycred-module-log.php:327
7796
+ msgid "Could not save the new log entry"
 
7797
  msgstr ""
7798
 
7799
+ #: modules/mycred-module-log.php:350
7800
+ msgid "Log entry successfully updated"
7801
  msgstr ""
7802
 
7803
+ #: modules/mycred-module-log.php:395
7804
+ #, php-format
7805
+ msgid "1 Entry Deleted"
7806
+ msgid_plural "%d Entries Deleted"
7807
+ msgstr[0] ""
7808
+ msgstr[1] ""
7809
 
7810
+ #: modules/mycred-module-log.php:515 modules/mycred-module-settings.php:681
7811
+ msgid "Entries"
7812
  msgstr ""
7813
 
7814
+ #: modules/mycred-module-log.php:549
7815
+ msgid "Edit Log Entry"
7816
  msgstr ""
7817
 
7818
+ #: modules/mycred-module-log.php:553
7819
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
7820
  msgstr ""
7821
 
7822
+ #: modules/mycred-module-log.php:554
7823
+ msgid "The log entry was successfully updated."
 
 
7824
  msgstr ""
7825
 
7826
+ #: modules/mycred-module-log.php:555
7827
+ msgid "The selected log entry could not be deleted."
7828
  msgstr ""
7829
 
7830
+ #: modules/mycred-module-log.php:584
7831
+ msgid "Search results for"
7832
  msgstr ""
7833
 
7834
+ #: modules/mycred-module-log.php:589
7835
+ #, php-format
7836
+ msgctxt "e.g. Log entries from April 12th 2016"
7837
+ msgid "Log entries from %s"
7838
  msgstr ""
7839
 
7840
+ #: modules/mycred-module-log.php:644
7841
+ msgid ""
7842
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
7843
+ "Certain hooks and shortcodes will not work correctly!"
7844
+ msgstr ""
7845
+
7846
+ #: modules/mycred-module-log.php:743
7847
+ #, php-format
7848
+ msgid "My %s History"
7849
  msgstr ""
7850
 
7851
+ #: modules/mycred-module-log.php:997
7852
+ msgid "Original Entry"
7853
  msgstr ""
7854
 
7855
+ #: modules/mycred-module-log.php:1009
7856
+ msgid "Delete Entry"
 
 
7857
  msgstr ""
7858
 
7859
+ #: modules/mycred-module-log.php:1014
7860
+ msgid "Update Entry"
7861
  msgstr ""
7862
 
7863
+ #: modules/mycred-module-management.php:184
7864
+ msgid "Balance successfully updated"
7865
  msgstr ""
7866
 
7867
+ #: modules/mycred-module-management.php:189
7868
+ msgid "Request declined"
7869
  msgstr ""
7870
 
7871
+ #: modules/mycred-module-management.php:224
7872
+ msgid "No recent activity found."
7873
  msgstr ""
7874
 
7875
+ #: modules/mycred-module-management.php:280
7876
+ msgid "View complete history"
7877
  msgstr ""
7878
 
7879
+ #: modules/mycred-module-management.php:314
7880
+ msgid "Edit Users Balance"
 
 
7881
  msgstr ""
7882
 
7883
+ #: modules/mycred-module-management.php:555
7884
+ msgid "Balances"
7885
  msgstr ""
7886
 
7887
+ #: modules/mycred-module-management.php:759
7888
+ msgid "Total Balance"
7889
  msgstr ""
7890
 
7891
+ #: modules/mycred-module-management.php:785
7892
+ msgid "Log under a custom reference"
7893
  msgstr ""
7894
 
7895
+ #: modules/mycred-module-management.php:791
7896
+ msgid "lowercase without empty spaces"
7897
  msgstr ""
7898
 
7899
+ #: modules/mycred-module-management.php:804
7900
+ msgid "Update"
7901
  msgstr ""
7902
 
7903
+ #: modules/mycred-module-management.php:807
7904
+ msgid "Recent Activity"
7905
  msgstr ""
7906
 
7907
+ #: modules/mycred-module-network.php:141
7908
+ msgid "Blocked"
 
 
7909
  msgstr ""
7910
 
7911
+ #: modules/mycred-module-network.php:149
7912
+ msgid "Installed"
7913
  msgstr ""
7914
 
7915
+ #: modules/mycred-module-network.php:151
7916
+ msgid "Not Installed"
 
 
7917
  msgstr ""
7918
 
7919
+ #: modules/mycred-module-network.php:247
7920
+ msgid "I am sorry but your network is too big to use these features."
7921
  msgstr ""
7922
 
7923
+ #: modules/mycred-module-network.php:312
7924
+ msgid "Blog IDs"
7925
  msgstr ""
7926
 
7927
+ #: modules/mycred-module-settings.php:144
7928
+ msgid "Accounts successfully reset"
7929
  msgstr ""
7930
 
7931
+ #: modules/mycred-module-settings.php:196
7932
+ msgid "No users found to export"
7933
  msgstr ""
7934
 
7935
+ #: modules/mycred-module-settings.php:246
7936
+ msgid "Invalid decimal value."
7937
  msgstr ""
7938
 
7939
+ #: modules/mycred-module-settings.php:294
7940
+ msgid "Log Updated"
7941
  msgstr ""
7942
 
7943
+ #: modules/mycred-module-settings.php:431
7944
+ msgid ""
7945
+ "Warning! All entries in your log will be permanently removed! This can not "
7946
+ "be undone!"
7947
  msgstr ""
7948
 
7949
+ #: modules/mycred-module-settings.php:432
7950
+ msgid ""
7951
+ "All log entries belonging to deleted users will be permanently deleted! This "
7952
+ "can not be undone!"
7953
  msgstr ""
7954
 
7955
+ #: modules/mycred-module-settings.php:433
7956
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
7957
  msgstr ""
7958
 
7959
+ #: modules/mycred-module-settings.php:434
7960
+ msgid "Done!"
7961
  msgstr ""
7962
 
7963
+ #: modules/mycred-module-settings.php:436
7964
+ msgid "Export %singular% Balances"
7965
  msgstr ""
7966
 
7967
+ #: modules/mycred-module-settings.php:437
7968
+ msgid ""
7969
+ "In order to adjust the number of decimal places you want to use we must "
7970
+ "update your log. It is highly recommended that you backup your current log "
7971
+ "before continuing!"
7972
  msgstr ""
7973
 
7974
+ #: modules/mycred-module-settings.php:462
7975
+ msgid "Update Database"
7976
  msgstr ""
7977
 
7978
+ #: modules/mycred-module-settings.php:473
7979
+ #: modules/mycred-module-settings.php:485
7980
+ msgid "No decimals"
7981
  msgstr ""
7982
 
7983
+ #: modules/mycred-module-settings.php:497
7984
+ #, php-format
7985
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
7986
  msgstr ""
7987
 
7988
+ #: modules/mycred-module-settings.php:542
7989
+ msgid "Core Settings"
 
 
7990
  msgstr ""
7991
 
7992
+ #: modules/mycred-module-settings.php:594
7993
+ msgid "Set decimals to zero if you prefer to use whole numbers."
7994
  msgstr ""
7995
 
7996
+ #: modules/mycred-module-settings.php:596
7997
+ msgid "Tip"
7998
  msgstr ""
7999
 
8000
+ #: modules/mycred-module-settings.php:596
8001
+ msgid ""
8002
+ "As this is your main point type, the value you select here will be the "
8003
+ "largest number of decimals your installation will support."
8004
  msgstr ""
8005
 
8006
+ #: modules/mycred-module-settings.php:648
8007
+ msgid "Other Settings"
8008
  msgstr ""
8009
 
8010
+ #: modules/mycred-module-settings.php:650
8011
+ msgid "Delete log entries when user is deleted."
8012
  msgstr ""
8013
 
8014
+ #: modules/mycred-module-settings.php:669
8015
+ msgid "Management"
 
 
8016
  msgstr ""
8017
 
8018
+ #: modules/mycred-module-settings.php:690
8019
+ msgid "Empty Log"
8020
  msgstr ""
8021
 
8022
+ #: modules/mycred-module-settings.php:700
8023
+ msgid "Balance Meta Key"
8024
  msgstr ""
8025
 
8026
+ #: modules/mycred-module-settings.php:714
8027
+ msgid "Set all to zero"
8028
  msgstr ""
8029
 
8030
+ #: modules/mycred-module-settings.php:715
8031
+ msgid "Export Balances"
 
 
8032
  msgstr ""
8033
 
8034
+ #: modules/mycred-module-settings.php:798
8035
+ msgid "Add New Type"
8036
  msgstr ""
8037
 
8038
+ #: modules/mycred-module-settings.php:815
8039
+ msgid ""
8040
+ "Note This meta key must be in lowercase and only contain letters or "
8041
+ "underscore. All other characters will be deleted! make sure to add some "
8042
+ "unique prefix to this meta key to avoid any conflicts in database."
8043
  msgstr ""
8044
 
8045
+ #: modules/mycred-module-settings.php:815
8046
+ msgid "Read More"
8047
  msgstr ""
8048
 
8049
+ #: modules/mycred-module-settings.php:841
8050
+ msgid "Identify users by"
8051
  msgstr ""
8052
 
8053
+ #: modules/mycred-module-settings.php:848
8054
+ msgid "User Email"
8055
  msgstr ""
8056
 
8057
+ #: modules/mycred-module-settings.php:849
8058
+ msgid "User Login"
8059
  msgstr ""
8060
 
8061
+ #: modules/mycred-module-settings.php:857
8062
+ msgid ""
8063
+ "Use ID if you intend to use this export as a backup of your current site "
8064
+ "while Email is recommended if you want to export to a different site."
8065
  msgstr ""
8066
 
8067
+ #: modules/mycred-module-settings.php:862
8068
+ msgid "Import Log Entry"
8069
  msgstr ""
8070
 
8071
+ #: modules/mycred-module-settings.php:864
8072
+ #, php-format
8073
+ msgid ""
8074
+ "Optional log entry to use if you intend to import this file in a different "
8075
+ "%s installation."
8076
  msgstr ""
8077
 
8078
+ #: plugins/mycred-hook-buddypress-gallery.php:19
8079
+ msgid "BuddyPress: Gallery Actions"
8080
  msgstr ""
8081
 
8082
+ #: plugins/mycred-hook-buddypress-gallery.php:20
8083
+ msgid ""
8084
+ "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
8085
+ "Gallery."
8086
  msgstr ""
8087
 
8088
+ #: plugins/mycred-hook-buddypress-gallery.php:97
8089
+ msgid "%plural% for New Gallery"
8090
  msgstr ""
8091
 
8092
+ #: plugins/mycred-hook-buddypress-links.php:19
8093
+ msgid "BuddyPress: Links"
8094
  msgstr ""
8095
 
8096
+ #: plugins/mycred-hook-buddypress-links.php:20
8097
+ msgid "Awards %_plural% for link related actions."
 
8098
  msgstr ""
8099
 
8100
+ #: plugins/mycred-hook-buddypress-links.php:247
8101
+ msgid "%plural% for New Links"
8102
  msgstr ""
8103
 
8104
+ #: plugins/mycred-hook-buddypress-links.php:260
8105
+ msgid "%plural% for Vote on Link"
8106
  msgstr ""
8107
 
8108
+ #: plugins/mycred-hook-buddypress-links.php:272
8109
+ msgid "%plural% per received Vote"
8110
  msgstr ""
8111
 
8112
+ #: plugins/mycred-hook-buddypress-links.php:275
8113
+ msgid "Vote Up"
8114
  msgstr ""
8115
 
8116
+ #: plugins/mycred-hook-buddypress-links.php:286
8117
+ msgid "Vote Down"
 
 
8118
  msgstr ""
8119
 
8120
+ #: plugins/mycred-hook-buddypress-links.php:297
8121
+ msgid "%plural% for Updating Links"
 
 
 
8122
  msgstr ""
8123
 
8124
+ #: plugins/mycred-hook-buddypress-links.php:310
8125
+ msgid "%plural% for Deleting Links"
 
8126
  msgstr ""
8127
 
8128
+ #: plugins/mycred-hook-buddypress.php:826
8129
+ msgid "Removing Favorit Activity"
8130
  msgstr ""
8131
 
8132
+ #: plugins/mycred-hook-gd-star-rating.php:18
8133
+ msgid "GD Star Rating"
8134
  msgstr ""
8135
 
8136
+ #: plugins/mycred-hook-gd-star-rating.php:19
8137
+ msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
 
8138
  msgstr ""
8139
 
8140
+ #: plugins/mycred-hook-gd-star-rating.php:103
8141
+ msgid "Rating"
 
8142
  msgstr ""
8143
 
8144
+ #: plugins/mycred-hook-gd-star-rating.php:116
8145
+ msgid "Up / Down Vote"
8146
  msgstr ""
8147
 
8148
+ #: plugins/mycred-hook-sharethis.php:15
8149
+ msgid "%plural% for Sharing"
8150
  msgstr ""
8151
 
8152
+ #: plugins/mycred-hook-sharethis.php:16
8153
+ msgid ""
8154
+ "Awards %_plural% for users sharing / liking your website content to popular "
8155
+ "social media sites."
8156
  msgstr ""
8157
 
8158
+ #: plugins/mycred-hook-sharethis.php:216
8159
+ msgid "Your ShareThis public key is not set."
8160
  msgstr ""
8161
 
8162
+ #: plugins/mycred-hook-sharethis.php:221
8163
+ msgid "No ShareThis services detected. Please check your installation."
8164
  msgstr ""
membership/mycred-connect-membership.php CHANGED
@@ -18,13 +18,14 @@ if ( ! class_exists( 'myCRED_Connect_Membership' ) ) :
18
  * Construct
19
  */
20
  public function __construct() {
21
- add_action('admin_menu', array($this,'mycred_membership_menu'));
22
- add_action('init',array($this,'add_styles'));
 
23
  }
24
 
25
  function add_styles() {
26
 
27
- wp_register_style('admin-subscription-css', plugins_url( 'assets/css/admin-subscription.css', myCRED_THIS ), array(), '1.0', 'all');
28
  wp_enqueue_style('admin-subscription-css');
29
  }
30
 
@@ -46,11 +47,11 @@ if ( ! class_exists( 'myCRED_Connect_Membership' ) ) :
46
  $membership_key = '';
47
  ?>
48
  <div class="wrap">
49
- <h1><?php _e( 'myCRED Membership Club', 'mycred' ); ?></h1>
50
  <div class="mmc_welcome">
51
  <div class="mmc_welcome_content">
 
52
  <form action="#" method="post">
53
- <div class="mmc_title"><?php _e( 'Welcome to myCRED Membership Club', 'mycred' ); ?></div>
54
  <input type="text" name="mmc_lincense_key" class="mmc_lincense_key" placeholder="<?php _e( 'Add Your Membership License', 'mycred' ); ?>" value="<?php echo $membership_key?>">
55
  <input type="submit" class="mmc_save_license button-primary" value="Save"/>
56
  <div class="mmc_license_link"><a href="#"><span class="dashicons dashicons-editor-help"></span><?php _e('Click here to get your Membership License','mycred') ?></a></div>
@@ -73,6 +74,118 @@ if ( ! class_exists( 'myCRED_Connect_Membership' ) ) :
73
  update_option( 'mycred_membership_key', $license_key );
74
  }
75
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  }
77
  endif;
78
 
18
  * Construct
19
  */
20
  public function __construct() {
21
+ add_action( 'admin_menu', array( $this, 'mycred_membership_menu' ) );
22
+ add_action( 'init', array( $this, 'add_styles' ) );
23
+ add_action( 'mycred_admin_init', array( $this, 'mycred_review_notice' ) );
24
  }
25
 
26
  function add_styles() {
27
 
28
+ wp_register_style('admin-subscription-css', plugins_url( 'assets/css/admin-subscription.css', myCRED_THIS ), array(), '1.1', 'all');
29
  wp_enqueue_style('admin-subscription-css');
30
  }
31
 
47
  $membership_key = '';
48
  ?>
49
  <div class="wrap">
50
+ <h1><?php _e( 'myCred Membership Club', 'mycred' ); ?></h1>
51
  <div class="mmc_welcome">
52
  <div class="mmc_welcome_content">
53
+ <div class="mmc_title"><?php _e( 'Welcome to myCred Membership Club', 'mycred' ); ?></div>
54
  <form action="#" method="post">
 
55
  <input type="text" name="mmc_lincense_key" class="mmc_lincense_key" placeholder="<?php _e( 'Add Your Membership License', 'mycred' ); ?>" value="<?php echo $membership_key?>">
56
  <input type="submit" class="mmc_save_license button-primary" value="Save"/>
57
  <div class="mmc_license_link"><a href="#"><span class="dashicons dashicons-editor-help"></span><?php _e('Click here to get your Membership License','mycred') ?></a></div>
74
  update_option( 'mycred_membership_key', $license_key );
75
  }
76
  }
77
+
78
+ /**
79
+ * myCred Review Dialog
80
+ */
81
+ public function mycred_review_notice() {
82
+
83
+ $this->mycred_review_dismissal();
84
+ $this->mycred_review_prending();
85
+
86
+ $review_dismissal = get_site_option( 'mycred_review_dismiss' );
87
+ if ( 'yes' == $review_dismissal ) {
88
+ return;
89
+ }
90
+
91
+ $activation_time = get_site_option( 'mycred_active_time' );
92
+ if ( ! $activation_time ) {
93
+
94
+ $activation_time = time();
95
+ add_site_option( 'mycred_active_time', $activation_time );
96
+ }
97
+
98
+ // Show notice after 7 Days.
99
+ if ( ( time() - $activation_time ) > 604800 ) {
100
+ add_action( 'admin_notices', array( $this, 'mycred_review_notice_content' ) );
101
+ }
102
+
103
+ }
104
+
105
+ public function mycred_review_dismissal() {
106
+
107
+ if ( ! is_admin() ||
108
+ ! current_user_can( 'manage_options' ) ||
109
+ ! isset( $_GET['_wpnonce'] ) ||
110
+ ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'mycred-review-nonce' ) ||
111
+ ! isset( $_GET['mycred_review_dismiss'] ) ) {
112
+
113
+ return;
114
+ }
115
+
116
+ update_site_option( 'mycred_review_dismiss', 'yes' );
117
+ }
118
+
119
+ public function mycred_review_prending() {
120
+
121
+ if ( ! is_admin() ||
122
+ ! current_user_can( 'manage_options' ) ||
123
+ ! isset( $_GET['_wpnonce'] ) ||
124
+ ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'mycred-review-nonce' ) ||
125
+ ! isset( $_GET['mycred_review_later'] ) ) {
126
+
127
+ return;
128
+ }
129
+
130
+ // Reset Time
131
+ update_site_option( 'mycred_active_time', time() );
132
+
133
+ }
134
+
135
+ public function mycred_review_notice_content() {
136
+
137
+ $scheme = ( parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
138
+ $url = $_SERVER['REQUEST_URI'] . $scheme . 'mycred_review_dismiss=yes';
139
+ $dismiss_url = wp_nonce_url( $url, 'mycred-review-nonce' );
140
+
141
+ $later = $_SERVER['REQUEST_URI'] . $scheme . 'mycred_review_later=yes';
142
+ $later_url = wp_nonce_url( $later, 'mycred-review-nonce' );
143
+
144
+ ?>
145
+ <div class="mycred-review-notice">
146
+ <div class="mycred-review-thumbnail">
147
+ <img src="<?php echo plugins_url( 'assets/images/about/badge.png', myCRED_THIS ); ?>" alt="">
148
+ </div>
149
+ <div class="mycred-review-text">
150
+ <h3><?php _e( 'Your Feedback Please?', 'mycred' ); ?></h3>
151
+ <p><?php _e( 'We hope you had a pleasant experience of using myCred points management system. It will be highly appreciated if you leave us your valuable feedback on Wordpress.org.', 'mycred' ); ?></p>
152
+ <ul class="mycred-review-ul">
153
+ <li>
154
+ <a href="https://wordpress.org/support/plugin/mycred/reviews/?filter=5" target="_blank">
155
+ <span class="dashicons dashicons-external"></span>
156
+ <?php _e( 'Sure, why not?', 'mycred' ); ?>
157
+ </a>
158
+ </li>
159
+ <li>
160
+ <a href="<?php echo $dismiss_url; ?>">
161
+ <span class="dashicons dashicons-smiley"></span>
162
+ <?php _e( 'I have already provided my feedback', 'mycred' ); ?>
163
+ </a>
164
+ </li>
165
+ <li>
166
+ <a href="<?php echo $later_url; ?>">
167
+ <span class="dashicons dashicons-calendar-alt"></span>
168
+ <?php _e( 'Ummm, maybe later!', 'mycred' ); ?>
169
+ </a>
170
+ </li>
171
+ <li>
172
+ <a href="<?php echo $dismiss_url; ?>">
173
+ <span class="dashicons dashicons-dismiss"></span>
174
+ <?php _e( 'Never show again', 'mycred' ); ?>
175
+ </a>
176
+ </li>
177
+ <li>
178
+ <a href="https://mycred.me/membership/">
179
+ <span class="dashicons dashicons-businessman"></span>
180
+ <?php _e( 'Explore Membership Plans', 'mycred' ); ?>
181
+ </a>
182
+ </li>
183
+ </ul>
184
+ </div>
185
+ </div>
186
+ <?php
187
+ }
188
+
189
  }
190
  endif;
191
 
mycred.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: myCred
4
  * Plugin URI: https://mycred.me
5
  * Description: An adaptive points management system for WordPress powered websites.
6
- * Version: 1.8.9
7
  * Tags: point, credit, loyalty program, engagement, reward, woocommerce rewards
8
  * Author: myCred
9
  * Author URI: https://mycred.me
@@ -19,7 +19,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
19
  final class myCRED_Core {
20
 
21
  // Plugin Version
22
- public $version = '1.8.9';
23
 
24
  // Instnace
25
  protected static $_instance = NULL;
@@ -53,14 +53,14 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
53
  * @since 1.7
54
  * @version 1.0
55
  */
56
- public function __clone() { _doing_it_wrong( __FUNCTION__, 'Cheatin&#8217; huh?', '1.8.9' ); }
57
 
58
  /**
59
  * Not allowed
60
  * @since 1.7
61
  * @version 1.0
62
  */
63
- public function __wakeup() { _doing_it_wrong( __FUNCTION__, 'Cheatin&#8217; huh?', '1.8.9' ); }
64
 
65
  /**
66
  * Get
@@ -81,7 +81,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
81
  if ( ! defined( $name ) )
82
  define( $name, $value );
83
  elseif ( ! $definable && defined( $name ) )
84
- _doing_it_wrong( 'myCRED_Core->define()', 'Could not define: ' . $name . ' as it is already defined somewhere else!', '1.8.9' );
85
  }
86
 
87
  /**
@@ -93,7 +93,7 @@ if ( ! class_exists( 'myCRED_Core' ) ) :
93
  if ( file_exists( $required_file ) )
94
  require_once $required_file;
95
  else
96
- _doing_it_wrong( 'myCRED_Core->file()', 'Requested file ' . $required_file . ' not found.', '1.8.9' );
97
  }
98
 
99
  /**
3
  * Plugin Name: myCred
4
  * Plugin URI: https://mycred.me
5
  * Description: An adaptive points management system for WordPress powered websites.
6
+ * Version: 1.8.11
7
  * Tags: point, credit, loyalty program, engagement, reward, woocommerce rewards
8
  * Author: myCred
9
  * Author URI: https://mycred.me
19
  final class myCRED_Core {
20
 
21
  // Plugin Version
22
+ public $version = '1.8.11';
23
 
24
  // Instnace
25
  protected static $_instance = NULL;
53
  * @since 1.7
54
  * @version 1.0
55
  */
56
+ public function __clone() { _doing_it_wrong( __FUNCTION__, 'Cheatin&#8217; huh?', '1.8.11' ); }
57
 
58
  /**
59
  * Not allowed
60
  * @since 1.7
61
  * @version 1.0
62
  */
63
+ public function __wakeup() { _doing_it_wrong( __FUNCTION__, 'Cheatin&#8217; huh?', '1.8.11' ); }
64
 
65
  /**
66
  * Get
81
  if ( ! defined( $name ) )
82
  define( $name, $value );
83
  elseif ( ! $definable && defined( $name ) )
84
+ _doing_it_wrong( 'myCRED_Core->define()', 'Could not define: ' . $name . ' as it is already defined somewhere else!', '1.8.11' );
85
  }
86
 
87
  /**
93
  if ( file_exists( $required_file ) )
94
  require_once $required_file;
95
  else
96
+ _doing_it_wrong( 'myCRED_Core->file()', 'Requested file ' . $required_file . ' not found.', '1.8.11' );
97
  }
98
 
99
  /**
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: mycred,wpexpertsio
3
  Tags: badges, gamification, loyalty, points, rewards
4
  Requires at least: 4.8
5
  Tested up to: 5.4
6
- Stable tag: 1.8.9
7
  Requires PHP: 7.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -268,6 +268,8 @@ Bug fixes release.
268
  = 1.8.9 =
269
  Bug fixes release.
270
 
 
 
271
 
272
  == Other Notes ==
273
 
@@ -290,6 +292,18 @@ Bug fixes release.
290
 
291
  == Changelog ==
292
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  = 1.8.9 =
294
  NEW - Introduce a new filter mycred_update_total_balance.
295
  FIX - Rank display setting issues.
3
  Tags: badges, gamification, loyalty, points, rewards
4
  Requires at least: 4.8
5
  Tested up to: 5.4
6
+ Stable tag: 1.8.11
7
  Requires PHP: 7.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
268
  = 1.8.9 =
269
  Bug fixes release.
270
 
271
+ = 1.8.11 =
272
+ Zombaio payment gateway is no longer available and completely removed in this update.
273
 
274
  == Other Notes ==
275
 
292
 
293
  == Changelog ==
294
 
295
+ = 1.8.11 =
296
+ NEW - Added button for remove default badge image.
297
+ FIX - Log menu not visible except the master site when the master template is enabled.
298
+ FIX - Bitpay buyCred payment gateway not working.
299
+ FIX - Pending payment menu not visible in multisite if the master template is enabled.
300
+ FIX - Undefined variable in myCRED_Query_Log class.
301
+ FIX - Single Quote in form title breaks the specific badge functionality for the gravity form.
302
+ FIX - Undefined index warnings in myCred leaderboard widget.
303
+ TWEAK - Update myCred translations.
304
+ TWEAK - mycred_hook_table code improvements.
305
+ DELETE - Removed zombaio payment gateway.
306
+
307
  = 1.8.9 =
308
  NEW - Introduce a new filter mycred_update_total_balance.
309
  FIX - Rank display setting issues.