Paid Memberships Pro - Version 2.6.6

Version Description

  • 2021-11-18 =
  • SECURITY: Updated escaping on the discount codes page in the dashboard to prevent XSS attacks. #1867 (Thanks, Erwan from WPScan)
  • BUG FIX/ENHANCEMENT: Added code to remove duplicate active rows in the pmpro_memberships_users table after level change. This might have happened e.g. if users were purchasing a level via the WooCommerce Add On multiple times. #1860 (@dlparker1005)
  • BUG FIX/ENHANCEMENT: Improved the REST API endpoints to better support Zapier native requirements. #1862 (@andrewlimaza)
  • BUG FIX: Fixed PHP notices in the name parser library. #1861 (@sc0ttkclark)
Download this release

Release Info

Developer strangerstudios
Plugin Icon 128x128 Paid Memberships Pro
Version 2.6.6
Comparing to
See all releases

Code changes from version 2.6.5 to 2.6.6

Files changed (65) hide show
  1. CHANGELOG.txt +6 -0
  2. adminpages/discountcodes.php +22 -22
  3. adminpages/orders.php +1 -1
  4. includes/functions.php +42 -0
  5. includes/lib/name-parser.php +28 -9
  6. includes/rest-api.php +12 -21
  7. languages/paid-memberships-pro-ca.mo +0 -0
  8. languages/paid-memberships-pro-ca.po +18 -2
  9. languages/paid-memberships-pro-ca_AD.mo +0 -0
  10. languages/paid-memberships-pro-ca_AD.po +18 -2
  11. languages/paid-memberships-pro-ca_ES.mo +0 -0
  12. languages/paid-memberships-pro-ca_ES.po +18 -2
  13. languages/paid-memberships-pro-cs_CZ.mo +0 -0
  14. languages/paid-memberships-pro-cs_CZ.po +18 -2
  15. languages/paid-memberships-pro-da_DK.mo +0 -0
  16. languages/paid-memberships-pro-da_DK.po +18 -2
  17. languages/paid-memberships-pro-de_DE.mo +0 -0
  18. languages/paid-memberships-pro-de_DE.po +18 -2
  19. languages/paid-memberships-pro-el_GR.mo +0 -0
  20. languages/paid-memberships-pro-el_GR.po +18 -2
  21. languages/paid-memberships-pro-en_GB.mo +0 -0
  22. languages/paid-memberships-pro-en_GB.po +18 -2
  23. languages/paid-memberships-pro-es_CL.mo +0 -0
  24. languages/paid-memberships-pro-es_CL.po +18 -2
  25. languages/paid-memberships-pro-es_ES.mo +0 -0
  26. languages/paid-memberships-pro-es_ES.po +18 -2
  27. languages/paid-memberships-pro-es_PE.mo +0 -0
  28. languages/paid-memberships-pro-es_PE.po +18 -2
  29. languages/paid-memberships-pro-et_EE.mo +0 -0
  30. languages/paid-memberships-pro-et_EE.po +18 -2
  31. languages/paid-memberships-pro-fa_IR.mo +0 -0
  32. languages/paid-memberships-pro-fa_IR.po +18 -2
  33. languages/paid-memberships-pro-fi.mo +0 -0
  34. languages/paid-memberships-pro-fi.po +18 -2
  35. languages/paid-memberships-pro-fr_FR.mo +0 -0
  36. languages/paid-memberships-pro-fr_FR.po +18 -2
  37. languages/paid-memberships-pro-he_IL.mo +0 -0
  38. languages/paid-memberships-pro-he_IL.po +18 -2
  39. languages/paid-memberships-pro-it_IT.mo +0 -0
  40. languages/paid-memberships-pro-it_IT.po +18 -2
  41. languages/paid-memberships-pro-nb_NO.mo +0 -0
  42. languages/paid-memberships-pro-nb_NO.po +18 -2
  43. languages/paid-memberships-pro-nl_NL.mo +0 -0
  44. languages/paid-memberships-pro-nl_NL.po +18 -2
  45. languages/paid-memberships-pro-pt_BR.mo +0 -0
  46. languages/paid-memberships-pro-pt_BR.po +18 -2
  47. languages/paid-memberships-pro-pt_PT.mo +0 -0
  48. languages/paid-memberships-pro-pt_PT.po +18 -2
  49. languages/paid-memberships-pro-sk_SK.mo +0 -0
  50. languages/paid-memberships-pro-sk_SK.po +18 -2
  51. languages/paid-memberships-pro-sr_RS.mo +0 -0
  52. languages/paid-memberships-pro-sr_RS.po +18 -2
  53. languages/paid-memberships-pro-sv_SE.mo +0 -0
  54. languages/paid-memberships-pro-sv_SE.po +18 -2
  55. languages/paid-memberships-pro-tr_TR.mo +0 -0
  56. languages/paid-memberships-pro-tr_TR.po +18 -2
  57. languages/paid-memberships-pro-vi.mo +0 -0
  58. languages/paid-memberships-pro-vi.po +18 -2
  59. languages/paid-memberships-pro-zh_HK.mo +0 -0
  60. languages/paid-memberships-pro-zh_HK.po +18 -2
  61. languages/paid-memberships-pro.mo +0 -0
  62. languages/paid-memberships-pro.po +18 -2
  63. languages/paid-memberships-pro.pot +18 -2
  64. paid-memberships-pro.php +2 -2
  65. readme.txt +7 -1
CHANGELOG.txt CHANGED
@@ -1,4 +1,10 @@
1
  == Changelog ==
 
 
 
 
 
 
2
  = 2.6.5 - 2021-11-12 =
3
  * ENHANCEMENT: Introduced new action `pmpro_before_commit_express_checkout` to allow additional changes after an order has been saved but before sending customer to PayPal Express checkout. #1852 (@mircobabini)
4
  * BUG FIX/ENHANCEMENT: Added login compatibility for Jetpack WordPress.com SSO when using the PMPro login page. #1848 (@sc0ttkclark)
1
  == Changelog ==
2
+ = 2.6.6 - 2021-11-18 =
3
+ * SECURITY: Updated escaping on the discount codes page in the dashboard to prevent XSS attacks. #1867 (Thanks, Erwan from WPScan)
4
+ * BUG FIX/ENHANCEMENT: Added code to remove duplicate active rows in the pmpro_memberships_users table after level change. This might have happened e.g. if users were purchasing a level via the WooCommerce Add On multiple times. #1860 (@dlparker1005)
5
+ * BUG FIX/ENHANCEMENT: Improved the REST API endpoints to better support Zapier native requirements. #1862 (@andrewlimaza)
6
+ * BUG FIX: Fixed PHP notices in the name parser library. #1861 (@sc0ttkclark)
7
+
8
  = 2.6.5 - 2021-11-12 =
9
  * ENHANCEMENT: Introduced new action `pmpro_before_commit_express_checkout` to allow additional changes after an order has been saved but before sending customer to PayPal Express checkout. #1852 (@mircobabini)
10
  * BUG FIX/ENHANCEMENT: Added login compatibility for Jetpack WordPress.com SSO when using the PMPro login page. #1848 (@sc0ttkclark)
adminpages/discountcodes.php CHANGED
@@ -438,18 +438,18 @@
438
  }
439
  ?>
440
  <form action="" method="post">
441
- <input name="saveid" type="hidden" value="<?php echo $edit?>" />
442
  <?php wp_nonce_field('save', 'pmpro_discountcodes_nonce');?>
443
  <table class="form-table">
444
  <tbody>
445
  <tr>
446
  <th scope="row" valign="top"><label><?php _e('ID', 'paid-memberships-pro' );?>:</label></th>
447
- <td><p class="description"><?php if(!empty($code->id)) echo $code->id; else echo __("This will be generated when you save.", 'paid-memberships-pro' );?></p></td>
448
  </tr>
449
 
450
  <tr>
451
  <th scope="row" valign="top"><label for="code"><?php _e('Code', 'paid-memberships-pro' );?>:</label></th>
452
- <td><input name="code" type="text" size="20" value="<?php echo str_replace("\"", "&quot;", stripslashes($code->code))?>" /></td>
453
  </tr>
454
 
455
  <?php
@@ -498,8 +498,8 @@
498
  }
499
  ?>
500
  </select>
501
- <input name="starts_day" type="text" size="2" value="<?php echo $selected_starts_day?>" />
502
- <input name="starts_year" type="text" size="4" value="<?php echo $selected_starts_year?>" />
503
  </td>
504
  </tr>
505
 
@@ -516,15 +516,15 @@
516
  }
517
  ?>
518
  </select>
519
- <input name="expires_day" type="text" size="2" value="<?php echo $selected_expires_day?>" />
520
- <input name="expires_year" type="text" size="4" value="<?php echo $selected_expires_year?>" />
521
  </td>
522
  </tr>
523
 
524
  <tr>
525
  <th scope="row" valign="top"><label for="uses"><?php _e('Uses', 'paid-memberships-pro' );?>:</label></th>
526
  <td>
527
- <input name="uses" type="text" size="10" value="<?php if(!empty($code->uses)) echo str_replace("\"", "&quot;", stripslashes($code->uses));?>" />
528
  <p class="description"><?php _e('Leave blank for unlimited uses.', 'paid-memberships-pro' );?></p>
529
  </td>
530
  </tr>
@@ -566,10 +566,10 @@
566
  $level_checked = false;
567
  ?>
568
  <div class="pmpro_discount_level <?php if ( ! pmpro_check_discount_code_level_for_gateway_compatibility( $level ) ) { ?>pmpro_error<?php } ?>">
569
- <input type="hidden" name="all_levels[]" value="<?php echo $level->id?>" />
570
- <input type="checkbox" id="levels_<?php echo $level->id;?>" name="levels[]" value="<?php echo $level->id?>" <?php if(!empty($level->checked)) { ?>checked="checked"<?php } ?> onclick="if(jQuery(this).is(':checked')) jQuery(this).next().next().show(); else jQuery(this).next().next().hide();" />
571
- <label for="levels_<?php echo $level->id;?>"><?php echo $level->name?></label>
572
- <div class="pmpro_discount_levels_pricing level_<?php echo $level->id?>" <?php if(empty($level->checked)) { ?>style="display: none;"<?php } ?>>
573
  <table class="form-table">
574
  <tbody>
575
  <tr>
@@ -590,7 +590,7 @@
590
 
591
  <tr>
592
  <th scope="row" valign="top"><label><?php _e('Recurring Subscription', 'paid-memberships-pro' );?>:</label></th>
593
- <td><input class="recurring_checkbox" id="recurring_<?php echo $level->id;?>" name="recurring[]" type="checkbox" value="<?php echo $level->id?>" <?php if(pmpro_isLevelRecurring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).prop('checked')) { jQuery(this).parent().parent().siblings('.recurring_info').show(); if(!jQuery('#custom_trial_<?php echo $level->id?>').is(':checked')) jQuery(this).parent().parent().siblings('.trial_info').hide();} else jQuery(this).parent().parent().siblings('.recurring_info').hide();" /> <label for="recurring_<?php echo $level->id;?>"><?php _e('Check if this level has a recurring subscription payment.', 'paid-memberships-pro' );?></label></td>
594
  </tr>
595
 
596
  <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
@@ -606,7 +606,7 @@
606
  echo $pmpro_currency_symbol;
607
  ?>
608
  <?php _e('per', 'paid-memberships-pro' ); ?>
609
- <input name="cycle_number[]" type="text" size="10" value="<?php echo str_replace("\"", "&quot;", stripslashes($level->cycle_number))?>" />
610
  <select name="cycle_period[]">
611
  <?php
612
  $cycles = array( __('Day(s)', 'paid-memberships-pro' ) => 'Day', __('Week(s)', 'paid-memberships-pro' ) => 'Week', __('Month(s)', 'paid-memberships-pro' ) => 'Month', __('Year(s)', 'paid-memberships-pro' ) => 'Year' );
@@ -629,7 +629,7 @@
629
  <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
630
  <th scope="row" valign="top"><label for="billing_limit"><?php _e('Billing Cycle Limit', 'paid-memberships-pro' );?>:</label></th>
631
  <td>
632
- <input name="billing_limit[]" type="text" size="20" value="<?php echo $level->billing_limit?>" />
633
  <p class="description">
634
  <?php _e('The <strong>total</strong> number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite.', 'paid-memberships-pro' );?>
635
  <?php if ( ( $gateway == "stripe" ) && ! function_exists( 'pmprosbl_plugin_row_meta' ) ) { ?>
@@ -652,7 +652,7 @@
652
  <tr class="recurring_info" <?php if (!pmpro_isLevelRecurring($level)) echo "style='display:none;'";?>>
653
  <th scope="row" valign="top"><label><?php _e('Custom Trial', 'paid-memberships-pro' );?>:</label></th>
654
  <td>
655
- <input id="custom_trial_<?php echo $level->id?>" id="custom_trial_<?php echo $level->id;?>" name="custom_trial[]" type="checkbox" value="<?php echo $level->id?>" <?php if ( pmpro_isLevelTrial($level) ) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).prop('checked')) jQuery(this).parent().parent().siblings('.trial_info').show(); else jQuery(this).parent().parent().siblings('.trial_info').hide();" /> <label for="custom_trial_<?php echo $level->id;?>"><?php _e('Check to add a custom trial period.', 'paid-memberships-pro' );?></label>
656
  <?php if($gateway == "twocheckout") { ?>
657
  <p class="description"><strong <?php if(!empty($pmpro_twocheckout_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount.', 'paid-memberships-pro' );?></strong></p>
658
  <?php } ?>
@@ -672,7 +672,7 @@
672
  echo $pmpro_currency_symbol;
673
  ?>
674
  <?php _e('for the first', 'paid-memberships-pro' );?>
675
- <input name="trial_limit[]" type="text" size="10" value="<?php echo str_replace("\"", "&quot;", stripslashes($level->trial_limit))?>" />
676
  <?php _e('subscription payments', 'paid-memberships-pro' );?>.
677
  <?php if($gateway == "stripe") { ?>
678
  <p class="description"><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support trial amounts greater than $0.', 'paid-memberships-pro' );?></strong></p>
@@ -686,13 +686,13 @@
686
 
687
  <tr>
688
  <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'paid-memberships-pro' );?>:</label></th>
689
- <td><input id="expiration_<?php echo $level->id;?>" name="expiration[]" type="checkbox" value="<?php echo $level->id?>" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).is(':checked')) { jQuery(this).parent().parent().siblings('.expiration_info').show(); } else { jQuery(this).parent().parent().siblings('.expiration_info').hide();}" /> <label for="expiration_<?php echo $level->id;?>"><?php _e('Check this to set when membership access expires.', 'paid-memberships-pro' );?></label></td>
690
  </tr>
691
 
692
  <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
693
  <th scope="row" valign="top"><label for="billing_amount"><?php _e('Expires In', 'paid-memberships-pro' );?>:</label></th>
694
  <td>
695
- <input id="expiration_number" name="expiration_number[]" type="text" size="10" value="<?php echo str_replace("\"", "&quot;", stripslashes($level->expiration_number))?>" />
696
  <select id="expiration_period" name="expiration_period[]">
697
  <?php
698
 
@@ -772,8 +772,8 @@
772
  <p class="search-box">
773
  <label class="screen-reader-text" for="post-search-input"><?php _e('Search Discount Codes', 'paid-memberships-pro' );?>:</label>
774
  <input type="hidden" name="page" value="pmpro-discountcodes" />
775
- <input id="post-search-input" type="text" value="<?php if(!empty($s)) echo $s;?>" name="s" size="30" />
776
- <input class="button" type="submit" value="<?php _e('Search', 'paid-memberships-pro' );?>" id="search-submit "/>
777
  </p>
778
  </form>
779
 
@@ -806,7 +806,7 @@
806
  <tr<?php if ( ! pmpro_check_discount_code_for_gateway_compatibility( $code->id ) ) { ?> class="pmpro_error"<?php } ?>>
807
  <td><?php echo $code->id?></td>
808
  <td class="has-row-actions">
809
- <a title="<?php echo sprintf( __( 'Edit Code: %s', 'paid-memberships-pro' ), $code->code ); ?>" href="<?php echo add_query_arg( array( 'page' => 'pmpro-discountcodes', 'edit' => $code->id ), admin_url('admin.php' ) ); ?>"><?php echo $code->code?></a>
810
  <div class="row-actions">
811
  <?php
812
  $delete_text = esc_html(
438
  }
439
  ?>
440
  <form action="" method="post">
441
+ <input name="saveid" type="hidden" value="<?php echo esc_attr( $edit ); ?>" />
442
  <?php wp_nonce_field('save', 'pmpro_discountcodes_nonce');?>
443
  <table class="form-table">
444
  <tbody>
445
  <tr>
446
  <th scope="row" valign="top"><label><?php _e('ID', 'paid-memberships-pro' );?>:</label></th>
447
+ <td><p class="description"><?php if(!empty($code->id)) echo esc_html( $code->id ); else echo __("This will be generated when you save.", 'paid-memberships-pro' );?></p></td>
448
  </tr>
449
 
450
  <tr>
451
  <th scope="row" valign="top"><label for="code"><?php _e('Code', 'paid-memberships-pro' );?>:</label></th>
452
+ <td><input name="code" type="text" size="20" value="<?php echo esc_attr( $code->code ); ?>" /></td>
453
  </tr>
454
 
455
  <?php
498
  }
499
  ?>
500
  </select>
501
+ <input name="starts_day" type="text" size="2" value="<?php echo esc_attr( $selected_starts_day ); ?>" />
502
+ <input name="starts_year" type="text" size="4" value="<?php echo esc_attr( $selected_starts_year ); ?>" />
503
  </td>
504
  </tr>
505
 
516
  }
517
  ?>
518
  </select>
519
+ <input name="expires_day" type="text" size="2" value="<?php echo esc_attr( $selected_expires_day ); ?>" />
520
+ <input name="expires_year" type="text" size="4" value="<?php echo esc_attr( $selected_expires_year ); ?>" />
521
  </td>
522
  </tr>
523
 
524
  <tr>
525
  <th scope="row" valign="top"><label for="uses"><?php _e('Uses', 'paid-memberships-pro' );?>:</label></th>
526
  <td>
527
+ <input name="uses" type="text" size="10" value="<?php if ( ! empty( $code->uses ) ) echo esc_attr( $code->uses ); ?>" />
528
  <p class="description"><?php _e('Leave blank for unlimited uses.', 'paid-memberships-pro' );?></p>
529
  </td>
530
  </tr>
566
  $level_checked = false;
567
  ?>
568
  <div class="pmpro_discount_level <?php if ( ! pmpro_check_discount_code_level_for_gateway_compatibility( $level ) ) { ?>pmpro_error<?php } ?>">
569
+ <input type="hidden" name="all_levels[]" value="<?php echo esc_attr( $level->id ); ?>" />
570
+ <input type="checkbox" id="levels_<?php echo esc_attr( $level->id ); ?>" name="levels[]" value="<?php echo esc_attr( $level->id ); ?>" <?php if(!empty($level->checked)) { ?>checked="checked"<?php } ?> onclick="if(jQuery(this).is(':checked')) jQuery(this).next().next().show(); else jQuery(this).next().next().hide();" />
571
+ <label for="levels_<?php echo esc_attr( $level->id ); ?>"><?php echo $level->name?></label>
572
+ <div class="pmpro_discount_levels_pricing level_<?php echo esc_attr( $level->id ); ?>" <?php if(empty($level->checked)) { ?>style="display: none;"<?php } ?>>
573
  <table class="form-table">
574
  <tbody>
575
  <tr>
590
 
591
  <tr>
592
  <th scope="row" valign="top"><label><?php _e('Recurring Subscription', 'paid-memberships-pro' );?>:</label></th>
593
+ <td><input class="recurring_checkbox" id="recurring_<?php echo esc_attr( $level->id );?>" name="recurring[]" type="checkbox" value="<?php echo esc_attr( $level->id ); ?>" <?php if(pmpro_isLevelRecurring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).prop('checked')) { jQuery(this).parent().parent().siblings('.recurring_info').show(); if(!jQuery('#custom_trial_<?php echo esc_attr( $level->id ); ?>').is(':checked')) jQuery(this).parent().parent().siblings('.trial_info').hide();} else jQuery(this).parent().parent().siblings('.recurring_info').hide();" /> <label for="recurring_<?php echo esc_attr( $level->id ); ?>"><?php _e('Check if this level has a recurring subscription payment.', 'paid-memberships-pro' );?></label></td>
594
  </tr>
595
 
596
  <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
606
  echo $pmpro_currency_symbol;
607
  ?>
608
  <?php _e('per', 'paid-memberships-pro' ); ?>
609
+ <input name="cycle_number[]" type="text" size="10" value="<?php echo esc_attr( $level->cycle_number ); ?>" />
610
  <select name="cycle_period[]">
611
  <?php
612
  $cycles = array( __('Day(s)', 'paid-memberships-pro' ) => 'Day', __('Week(s)', 'paid-memberships-pro' ) => 'Week', __('Month(s)', 'paid-memberships-pro' ) => 'Month', __('Year(s)', 'paid-memberships-pro' ) => 'Year' );
629
  <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
630
  <th scope="row" valign="top"><label for="billing_limit"><?php _e('Billing Cycle Limit', 'paid-memberships-pro' );?>:</label></th>
631
  <td>
632
+ <input name="billing_limit[]" type="text" size="20" value="<?php echo esc_attr( $level->billing_limit ); ?>" />
633
  <p class="description">
634
  <?php _e('The <strong>total</strong> number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite.', 'paid-memberships-pro' );?>
635
  <?php if ( ( $gateway == "stripe" ) && ! function_exists( 'pmprosbl_plugin_row_meta' ) ) { ?>
652
  <tr class="recurring_info" <?php if (!pmpro_isLevelRecurring($level)) echo "style='display:none;'";?>>
653
  <th scope="row" valign="top"><label><?php _e('Custom Trial', 'paid-memberships-pro' );?>:</label></th>
654
  <td>
655
+ <input id="custom_trial_<?php echo esc_attr( $level->id ); ?>" id="custom_trial_<?php echo esc_attr( $level->id ); ?>" name="custom_trial[]" type="checkbox" value="<?php echo esc_attr( $level->id ); ?>" <?php if ( pmpro_isLevelTrial($level) ) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).prop('checked')) jQuery(this).parent().parent().siblings('.trial_info').show(); else jQuery(this).parent().parent().siblings('.trial_info').hide();" /> <label for="custom_trial_<?php echo esc_attr( $level->id );?>"><?php _e('Check to add a custom trial period.', 'paid-memberships-pro' );?></label>
656
  <?php if($gateway == "twocheckout") { ?>
657
  <p class="description"><strong <?php if(!empty($pmpro_twocheckout_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount.', 'paid-memberships-pro' );?></strong></p>
658
  <?php } ?>
672
  echo $pmpro_currency_symbol;
673
  ?>
674
  <?php _e('for the first', 'paid-memberships-pro' );?>
675
+ <input name="trial_limit[]" type="text" size="10" value="<?php echo esc_attr( $level->trial_limit ); ?>" />
676
  <?php _e('subscription payments', 'paid-memberships-pro' );?>.
677
  <?php if($gateway == "stripe") { ?>
678
  <p class="description"><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support trial amounts greater than $0.', 'paid-memberships-pro' );?></strong></p>
686
 
687
  <tr>
688
  <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'paid-memberships-pro' );?>:</label></th>
689
+ <td><input id="expiration_<?php echo esc_attr( $level->id ); ?>" name="expiration[]" type="checkbox" value="<?php echo esc_attr( $level->id ); ?>" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery(this).is(':checked')) { jQuery(this).parent().parent().siblings('.expiration_info').show(); } else { jQuery(this).parent().parent().siblings('.expiration_info').hide();}" /> <label for="expiration_<?php echo esc_attr( $level->id ); ?>"><?php _e('Check this to set when membership access expires.', 'paid-memberships-pro' );?></label></td>
690
  </tr>
691
 
692
  <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
693
  <th scope="row" valign="top"><label for="billing_amount"><?php _e('Expires In', 'paid-memberships-pro' );?>:</label></th>
694
  <td>
695
+ <input id="expiration_number" name="expiration_number[]" type="text" size="10" value="<?php echo esc_attr( $level->expiration_number ); ?>" />
696
  <select id="expiration_period" name="expiration_period[]">
697
  <?php
698
 
772
  <p class="search-box">
773
  <label class="screen-reader-text" for="post-search-input"><?php _e('Search Discount Codes', 'paid-memberships-pro' );?>:</label>
774
  <input type="hidden" name="page" value="pmpro-discountcodes" />
775
+ <input id="post-search-input" type="text" value="<?php echo esc_attr( wp_unslash( $s ) ); ?>" name="s" size="30" />
776
+ <input class="button" type="submit" value="<?php esc_attr_e('Search', 'paid-memberships-pro' );?>" id="search-submit "/>
777
  </p>
778
  </form>
779
 
806
  <tr<?php if ( ! pmpro_check_discount_code_for_gateway_compatibility( $code->id ) ) { ?> class="pmpro_error"<?php } ?>>
807
  <td><?php echo $code->id?></td>
808
  <td class="has-row-actions">
809
+ <a title="<?php echo esc_attr( sprintf( __( 'Edit Code: %s', 'paid-memberships-pro' ), $code->code ) ); ?>" href="<?php echo esc_url( add_query_arg( array( 'page' => 'pmpro-discountcodes', 'edit' => $code->id ), admin_url('admin.php' ) ) ); ?>"><?php echo $code->code?></a>
810
  <div class="row-actions">
811
  <?php
812
  $delete_text = esc_html(
adminpages/orders.php CHANGED
@@ -1255,7 +1255,7 @@ if ( function_exists( 'pmpro_add_email_order_modal' ) ) {
1255
  <p class="search-box">
1256
  <label class="hidden" for="post-search-input"><?php esc_html_e( 'Search Orders', 'paid-memberships-pro' ); ?>:</label>
1257
  <input type="hidden" name="page" value="pmpro-orders"/>
1258
- <input id="post-search-input" type="text" value="<?php echo esc_attr( $s ); ?>" name="s"/>
1259
  <input class="button" type="submit" value="<?php esc_attr_e( 'Search Orders', 'paid-memberships-pro' ); ?>"/>
1260
  </p>
1261
 
1255
  <p class="search-box">
1256
  <label class="hidden" for="post-search-input"><?php esc_html_e( 'Search Orders', 'paid-memberships-pro' ); ?>:</label>
1257
  <input type="hidden" name="page" value="pmpro-orders"/>
1258
+ <input id="post-search-input" type="text" value="<?php echo esc_attr( wp_unslash( $s ) ); ?>" name="s"/>
1259
  <input class="button" type="submit" value="<?php esc_attr_e( 'Search Orders', 'paid-memberships-pro' ); ?>"/>
1260
  </p>
1261
 
includes/functions.php CHANGED
@@ -1191,6 +1191,37 @@ function pmpro_changeMembershipLevel( $level, $user_id = null, $old_level_status
1191
  $pmpro_error = sprintf( __( 'Error interacting with database: %s', 'paid-memberships-pro' ), ( ! empty( $wpdb->last_error ) ? $wpdb->last_error : 'unavailable' ) );
1192
  return false;
1193
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1194
  }
1195
 
1196
  // remove cached level
@@ -3832,3 +3863,14 @@ function pmpro_send_200_http_response() {
3832
  ob_flush();
3833
  flush();
3834
  }
 
 
 
 
 
 
 
 
 
 
 
1191
  $pmpro_error = sprintf( __( 'Error interacting with database: %s', 'paid-memberships-pro' ), ( ! empty( $wpdb->last_error ) ? $wpdb->last_error : 'unavailable' ) );
1192
  return false;
1193
  }
1194
+
1195
+ /**
1196
+ * Allow filtering whether to remove duplicate "active" memberships by setting them to "changed".
1197
+ *
1198
+ * @since 2.6.6
1199
+ *
1200
+ * @param bool $remove_duplicate_memberships Whether to remove duplicate "active" memberships by setting them to "changed".
1201
+ */
1202
+ $remove_duplicate_memberships = apply_filters( 'pmpro_remove_duplicate_membership_entries', true );
1203
+
1204
+ if ( $remove_duplicate_memberships ) {
1205
+ $wpdb->query(
1206
+ $wpdb->prepare(
1207
+ "
1208
+ UPDATE {$wpdb->pmpro_memberships_users}
1209
+ SET status = %s,
1210
+ enddate = %s
1211
+ WHERE user_id = %d
1212
+ AND membership_id = %d
1213
+ AND status = %s
1214
+ AND id != %d
1215
+ ",
1216
+ 'changed',
1217
+ current_time( 'mysql' ),
1218
+ $user_id,
1219
+ $level_id,
1220
+ 'active',
1221
+ $wpdb->insert_id // Ignore the membership that we just added.
1222
+ )
1223
+ );
1224
+ }
1225
  }
1226
 
1227
  // remove cached level
3863
  ob_flush();
3864
  flush();
3865
  }
3866
+
3867
+ /**
3868
+ * Returns formatted ISO-8601 date (Used for Zapier Native app.)
3869
+ * @since 2.6.6
3870
+ * @param $date date A valid date value.
3871
+ * @return string The date in ISO-8601 format.
3872
+ */
3873
+ function pmpro_format_date_iso8601( $date ) {
3874
+ $datetime = new DateTime( $date );
3875
+ return $datetime->format( DateTime::ATOM );
3876
+ }
includes/lib/name-parser.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Taken from: http://code.google.com/p/php-name-parser/
4
-
5
  Changed function names to avoid conflicts.
6
  */
7
 
@@ -14,11 +14,20 @@
14
  if(!function_exists("pnp_split_full_name"))
15
  {
16
  function pnp_split_full_name($full_name) {
17
- if(empty($full_name))
18
- return "";
19
-
 
 
 
 
 
 
 
 
 
20
  $fname = $lname = $initials = NULL;
21
-
22
  $full_name = trim($full_name);
23
  // split into words
24
  $unfiltered_name_parts = explode(" ",$full_name);
@@ -28,11 +37,21 @@ if(!function_exists("pnp_split_full_name"))
28
  if (!empty($word) && $word[0] != "(")
29
  $name_parts[] = $word;
30
  }
 
 
 
 
 
31
  $num_words = sizeof($name_parts);
32
 
33
  // is the first word a title? (Mr. Mrs, etc)
34
  $salutation = pnp_is_salutation($name_parts[0]);
35
- $suffix = pnp_is_suffix($name_parts[sizeof($name_parts)-1]);
 
 
 
 
 
36
 
37
  // set the range for the middle part of the name (trim prefixes & suffixes)
38
  $start = ($salutation) ? 1 : 0;
@@ -48,12 +67,12 @@ if(!function_exists("pnp_split_full_name"))
48
  // is it a middle initial or part of their first name?
49
  // if we start off with an initial, we'll call it the first name
50
  if (pnp_is_initial($word)) {
51
- // is the initial the first word?
52
  if ($i == $start) {
53
  // if so, do a look-ahead to see if they go by their middle name
54
  // for ex: "R. Jason Smith" => "Jason Smith" & "R." is stored as an initial
55
  // but "R. J. Smith" => "R. Smith" and "J." is stored as an initial
56
- if (pnp_is_initial($name_parts[$i+1]))
57
  $fname .= " ".strtoupper($word);
58
  else
59
  $initials .= " ".strtoupper($word);
@@ -63,7 +82,7 @@ if(!function_exists("pnp_split_full_name"))
63
  }
64
  } else {
65
  $fname .= " ".pnp_fix_case($word);
66
- }
67
  }
68
 
69
  // check that we have more than 1 word in our string
1
  <?php
2
  /*
3
  Taken from: http://code.google.com/p/php-name-parser/
4
+
5
  Changed function names to avoid conflicts.
6
  */
7
 
14
  if(!function_exists("pnp_split_full_name"))
15
  {
16
  function pnp_split_full_name($full_name) {
17
+ $name = [
18
+ 'salutation' => '',
19
+ 'fname' => '',
20
+ 'initials' => '',
21
+ 'lname' => '',
22
+ 'suffix' => '',
23
+ ];
24
+
25
+ if ( empty( $full_name ) ) {
26
+ return $name;
27
+ }
28
+
29
  $fname = $lname = $initials = NULL;
30
+
31
  $full_name = trim($full_name);
32
  // split into words
33
  $unfiltered_name_parts = explode(" ",$full_name);
37
  if (!empty($word) && $word[0] != "(")
38
  $name_parts[] = $word;
39
  }
40
+
41
+ if ( empty( $name_parts ) ) {
42
+ return $name;
43
+ }
44
+
45
  $num_words = sizeof($name_parts);
46
 
47
  // is the first word a title? (Mr. Mrs, etc)
48
  $salutation = pnp_is_salutation($name_parts[0]);
49
+
50
+ $suffix = false;
51
+
52
+ if ( isset( $name_parts[sizeof($name_parts)-1] ) ) {
53
+ $suffix = pnp_is_suffix( $name_parts[ sizeof( $name_parts ) - 1 ] );
54
+ }
55
 
56
  // set the range for the middle part of the name (trim prefixes & suffixes)
57
  $start = ($salutation) ? 1 : 0;
67
  // is it a middle initial or part of their first name?
68
  // if we start off with an initial, we'll call it the first name
69
  if (pnp_is_initial($word)) {
70
+ // is the initial the first word?
71
  if ($i == $start) {
72
  // if so, do a look-ahead to see if they go by their middle name
73
  // for ex: "R. Jason Smith" => "Jason Smith" & "R." is stored as an initial
74
  // but "R. J. Smith" => "R. Smith" and "J." is stored as an initial
75
+ if ( isset( $name_parts[ $i + 1 ] ) && pnp_is_initial( $name_parts[ $i + 1 ] ) )
76
  $fname .= " ".strtoupper($word);
77
  else
78
  $initials .= " ".strtoupper($word);
82
  }
83
  } else {
84
  $fname .= " ".pnp_fix_case($word);
85
+ }
86
  }
87
 
88
  // check that we have more than 1 word in our string
includes/rest-api.php CHANGED
@@ -726,7 +726,6 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
726
  $members_limit = 1;
727
  }
728
 
729
- $response_type = isset( $params['response_type'] ) ? sanitize_text_field( $params['response_type'] ) : null;
730
  $limit = apply_filters( 'pmpro_trigger_recent_members_limit', $members_limit );
731
 
732
  // Grab the useful information.
@@ -734,7 +733,7 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
734
 
735
  $sql = "
736
  SELECT
737
- `mu`.`user_id`,
738
  `u`.`user_email`,
739
  `u`.`user_nicename`,
740
  `mu`.`membership_id`,
@@ -755,13 +754,10 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
755
 
756
  $results = $wpdb->get_results( $wpdb->prepare( $sql, $limit ) );
757
 
758
- // Generate random ID for Zapier and then also add all member information.
759
- if ( $response_type == 'json' ) {
760
- $id = isset( $results[0]->user_id ) ? intval( $results[0]->user_id ) : 0;
761
- wp_send_json( array( 'id' => $id, 'results' => $results ) );
762
- }
763
 
764
- return new WP_REST_Response( $results );
765
 
766
  }
767
 
@@ -783,14 +779,13 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
783
  $orders_limit = 1;
784
  }
785
 
786
- $response_type = isset( $params['response_type'] ) ? sanitize_text_field( $params['response_type'] ) : null;
787
  $limit = apply_filters( 'pmpro_trigger_recent_orders_limit', $orders_limit );
788
 
789
  global $wpdb;
790
 
791
  $sql = "
792
  SELECT
793
- `o`.`id` AS `order_id`,
794
  `o`.`code`,
795
  `u`.`ID` AS `user_id`,
796
  `u`.`user_email`,
@@ -819,12 +814,9 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
819
 
820
  $results = $wpdb->get_results( $wpdb->prepare( $sql, $limit ) );
821
 
822
- if ( 'json' === $response_type ) {
823
- $id = isset( $results[0]->order_id ) ? intval( $results[0]->order_id ) : 0;
824
- wp_send_json( array( 'id' => $id, 'results' => $results ) );
825
- }
826
 
827
- return new WP_REST_Response( $results );
828
  }
829
 
830
  /**
@@ -858,15 +850,15 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
858
  '/pmpro/v1/recent_orders' => 'pmpro_orders'
859
  );
860
  $route_caps = apply_filters( 'pmpro_rest_api_route_capabilities', $route_caps, $request );
861
-
862
  if ( isset( $route_caps[$route] ) ) {
863
  if ( $route_caps[$route] === true ) {
864
  // public
865
  $permission = true;
866
- } else {
867
- $permission = current_user_can( $route_caps[$route] );
868
  }
869
- }
870
 
871
  // Is the request method allowed? We disable DELETE by default.
872
  if ( ! in_array( $method, pmpro_get_rest_api_methods( $route ) ) ) {
@@ -884,8 +876,6 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
884
  function pmpro_rest_api_convert_to_array( $string ) {
885
  return explode( ',', $string );
886
  }
887
-
888
-
889
  } // End of class
890
 
891
  /**
@@ -900,6 +890,7 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
900
  add_action( 'rest_api_init', 'pmpro_rest_api_register_custom_routes', 5 );
901
  }
902
 
 
903
  /**
904
  * Get the allowed methods for PMPro REST API endpoints.
905
  * To enable DELETE, hook into this filter.
726
  $members_limit = 1;
727
  }
728
 
 
729
  $limit = apply_filters( 'pmpro_trigger_recent_members_limit', $members_limit );
730
 
731
  // Grab the useful information.
733
 
734
  $sql = "
735
  SELECT
736
+ `mu`.`user_id` as `id`,
737
  `u`.`user_email`,
738
  `u`.`user_nicename`,
739
  `mu`.`membership_id`,
754
 
755
  $results = $wpdb->get_results( $wpdb->prepare( $sql, $limit ) );
756
 
757
+ // Let's format the date to ISO8601
758
+ $results[0]->modified = pmpro_format_date_iso8601( $results[0]->modified );
 
 
 
759
 
760
+ return new WP_REST_Response( $results, 200 );
761
 
762
  }
763
 
779
  $orders_limit = 1;
780
  }
781
 
 
782
  $limit = apply_filters( 'pmpro_trigger_recent_orders_limit', $orders_limit );
783
 
784
  global $wpdb;
785
 
786
  $sql = "
787
  SELECT
788
+ `o`.`id`,
789
  `o`.`code`,
790
  `u`.`ID` AS `user_id`,
791
  `u`.`user_email`,
814
 
815
  $results = $wpdb->get_results( $wpdb->prepare( $sql, $limit ) );
816
 
817
+ $results[0]->timestamp = pmpro_format_date_iso8601( $results[0]->timestamp );
 
 
 
818
 
819
+ return new WP_REST_Response( $results, 200 );
820
  }
821
 
822
  /**
850
  '/pmpro/v1/recent_orders' => 'pmpro_orders'
851
  );
852
  $route_caps = apply_filters( 'pmpro_rest_api_route_capabilities', $route_caps, $request );
853
+
854
  if ( isset( $route_caps[$route] ) ) {
855
  if ( $route_caps[$route] === true ) {
856
  // public
857
  $permission = true;
858
+ } else {
859
+ $permission = current_user_can( $route_caps[$route] );
860
  }
861
+ }
862
 
863
  // Is the request method allowed? We disable DELETE by default.
864
  if ( ! in_array( $method, pmpro_get_rest_api_methods( $route ) ) ) {
876
  function pmpro_rest_api_convert_to_array( $string ) {
877
  return explode( ',', $string );
878
  }
 
 
879
  } // End of class
880
 
881
  /**
890
  add_action( 'rest_api_init', 'pmpro_rest_api_register_custom_routes', 5 );
891
  }
892
 
893
+
894
  /**
895
  * Get the allowed methods for PMPro REST API endpoints.
896
  * To enable DELETE, hook into this filter.
languages/paid-memberships-pro-ca.mo CHANGED
Binary file
languages/paid-memberships-pro-ca.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:20+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2709,6 +2709,7 @@ msgstr "Subtotal"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
 
2712
  msgid "Tax"
2713
  msgstr "Impost"
2714
 
@@ -2743,6 +2744,7 @@ msgstr "Valor del cupó"
2743
  #: adminpages/dashboard.php:293
2744
  #: adminpages/orders.php:650
2745
  #: adminpages/orders.php:1344
 
2746
  msgid "Total"
2747
  msgstr "Total"
2748
 
@@ -4167,6 +4169,7 @@ msgstr "Preu"
4167
  #: pages/invoice.php:79
4168
  #: pages/invoice.php:77
4169
  #: includes/functions.php:2842
 
4170
  msgid "Subtotal"
4171
  msgstr "Subtotal"
4172
 
@@ -6542,6 +6545,8 @@ msgstr "Error interactuant amb la base de dades"
6542
  #: includes/functions.php:826
6543
  #: includes/functions.php:1304
6544
  #: includes/functions.php:1342
 
 
6545
  msgid "Membership level not found."
6546
  msgstr "Nivell de subscripció no trobat."
6547
 
@@ -6556,6 +6561,7 @@ msgstr "Nivell de subscripció no trobat."
6556
  #: includes/functions.php:1173
6557
  #: includes/functions.php:1196
6558
  #: includes/functions.php:1722
 
6559
  msgid "No code was given to check."
6560
  msgstr "No s’ha donat cap codi per a fer el check"
6561
 
@@ -6577,6 +6583,7 @@ msgstr "No s’ha donat cap codi per a fer el check"
6577
  #: includes/functions.php:1182
6578
  #: includes/functions.php:1205
6579
  #: includes/functions.php:1731
 
6580
  msgid "The discount code could not be found."
6581
  msgstr "No s’ha trobat el codi de descompte"
6582
 
@@ -6598,6 +6605,7 @@ msgstr "No s’ha trobat el codi de descompte"
6598
  #: includes/functions.php:1197
6599
  #: includes/functions.php:1220
6600
  #: includes/functions.php:1746
 
6601
  #, php-format
6602
  msgid "This discount code goes into effect on %s."
6603
  msgstr "El codi de descompte serà efectiu a %s."
@@ -6620,6 +6628,7 @@ msgstr "El codi de descompte serà efectiu a %s."
6620
  #: includes/functions.php:1204
6621
  #: includes/functions.php:1227
6622
  #: includes/functions.php:1753
 
6623
  #, php-format
6624
  msgid "This discount code expired on %s."
6625
  msgstr "Aquest codi de descompte ha expirat a %s."
@@ -6642,6 +6651,7 @@ msgstr "Aquest codi de descompte ha expirat a %s."
6642
  #: includes/functions.php:1214
6643
  #: includes/functions.php:1237
6644
  #: includes/functions.php:1762
 
6645
  msgid "This discount code is no longer valid."
6646
  msgstr "Aquest codi de descompte ja no és vàlid."
6647
 
@@ -6662,6 +6672,7 @@ msgstr "Aquest codi de descompte ja no és vàlid."
6662
  #: includes/functions.php:1227
6663
  #: includes/functions.php:1250
6664
  #: includes/functions.php:1781
 
6665
  msgid "This discount code does not apply to this membership level."
6666
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6667
 
@@ -6683,6 +6694,7 @@ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6683
  #: includes/functions.php:1253
6684
  #: includes/functions.php:1276
6685
  #: includes/functions.php:1819
 
6686
  msgid "This discount code is okay."
6687
  msgstr "El codi de descompte és OK"
6688
 
@@ -6704,6 +6716,7 @@ msgstr "El codi de descompte és OK"
6704
  #: includes/functions.php:1301
6705
  #: includes/functions.php:1395
6706
  #: includes/functions.php:1847
 
6707
  msgid "and"
6708
  msgstr "i"
6709
 
@@ -6726,6 +6739,7 @@ msgstr "i"
6726
  #: includes/functions.php:1501
6727
  #: includes/functions.php:1620
6728
  #: includes/functions.php:2409
 
6729
  msgid "Sign Up for !!name!! Now"
6730
  msgstr "Sign Up per !!name!! Ara"
6731
 
@@ -7673,6 +7687,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l
7673
  #: pages/invoice.php:82
7674
  #: pages/invoice.php:80
7675
  #: includes/functions.php:2857
 
7676
  msgid "Coupon"
7677
  msgstr "Cupó"
7678
 
@@ -12700,6 +12715,7 @@ msgid "Error interacting with database: %s"
12700
  msgstr ""
12701
 
12702
  #: includes/functions.php:2433
 
12703
  msgid "Sign Up Now"
12704
  msgstr ""
12705
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:38+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
2712
+ #: includes/functions.php:2880
2713
  msgid "Tax"
2714
  msgstr "Impost"
2715
 
2744
  #: adminpages/dashboard.php:293
2745
  #: adminpages/orders.php:650
2746
  #: adminpages/orders.php:1344
2747
+ #: includes/functions.php:2909
2748
  msgid "Total"
2749
  msgstr "Total"
2750
 
4169
  #: pages/invoice.php:79
4170
  #: pages/invoice.php:77
4171
  #: includes/functions.php:2842
4172
+ #: includes/functions.php:2873
4173
  msgid "Subtotal"
4174
  msgstr "Subtotal"
4175
 
6545
  #: includes/functions.php:826
6546
  #: includes/functions.php:1304
6547
  #: includes/functions.php:1342
6548
+ #: includes/functions.php:1335
6549
+ #: includes/functions.php:1373
6550
  msgid "Membership level not found."
6551
  msgstr "Nivell de subscripció no trobat."
6552
 
6561
  #: includes/functions.php:1173
6562
  #: includes/functions.php:1196
6563
  #: includes/functions.php:1722
6564
+ #: includes/functions.php:1753
6565
  msgid "No code was given to check."
6566
  msgstr "No s’ha donat cap codi per a fer el check"
6567
 
6583
  #: includes/functions.php:1182
6584
  #: includes/functions.php:1205
6585
  #: includes/functions.php:1731
6586
+ #: includes/functions.php:1762
6587
  msgid "The discount code could not be found."
6588
  msgstr "No s’ha trobat el codi de descompte"
6589
 
6605
  #: includes/functions.php:1197
6606
  #: includes/functions.php:1220
6607
  #: includes/functions.php:1746
6608
+ #: includes/functions.php:1777
6609
  #, php-format
6610
  msgid "This discount code goes into effect on %s."
6611
  msgstr "El codi de descompte serà efectiu a %s."
6628
  #: includes/functions.php:1204
6629
  #: includes/functions.php:1227
6630
  #: includes/functions.php:1753
6631
+ #: includes/functions.php:1784
6632
  #, php-format
6633
  msgid "This discount code expired on %s."
6634
  msgstr "Aquest codi de descompte ha expirat a %s."
6651
  #: includes/functions.php:1214
6652
  #: includes/functions.php:1237
6653
  #: includes/functions.php:1762
6654
+ #: includes/functions.php:1793
6655
  msgid "This discount code is no longer valid."
6656
  msgstr "Aquest codi de descompte ja no és vàlid."
6657
 
6672
  #: includes/functions.php:1227
6673
  #: includes/functions.php:1250
6674
  #: includes/functions.php:1781
6675
+ #: includes/functions.php:1812
6676
  msgid "This discount code does not apply to this membership level."
6677
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6678
 
6694
  #: includes/functions.php:1253
6695
  #: includes/functions.php:1276
6696
  #: includes/functions.php:1819
6697
+ #: includes/functions.php:1850
6698
  msgid "This discount code is okay."
6699
  msgstr "El codi de descompte és OK"
6700
 
6716
  #: includes/functions.php:1301
6717
  #: includes/functions.php:1395
6718
  #: includes/functions.php:1847
6719
+ #: includes/functions.php:1878
6720
  msgid "and"
6721
  msgstr "i"
6722
 
6739
  #: includes/functions.php:1501
6740
  #: includes/functions.php:1620
6741
  #: includes/functions.php:2409
6742
+ #: includes/functions.php:2440
6743
  msgid "Sign Up for !!name!! Now"
6744
  msgstr "Sign Up per !!name!! Ara"
6745
 
7687
  #: pages/invoice.php:82
7688
  #: pages/invoice.php:80
7689
  #: includes/functions.php:2857
7690
+ #: includes/functions.php:2888
7691
  msgid "Coupon"
7692
  msgstr "Cupó"
7693
 
12715
  msgstr ""
12716
 
12717
  #: includes/functions.php:2433
12718
+ #: includes/functions.php:2464
12719
  msgid "Sign Up Now"
12720
  msgstr ""
12721
 
languages/paid-memberships-pro-ca_AD.mo CHANGED
Binary file
languages/paid-memberships-pro-ca_AD.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:23+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2709,6 +2709,7 @@ msgstr "Subtotal"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
 
2712
  msgid "Tax"
2713
  msgstr "Impost"
2714
 
@@ -2743,6 +2744,7 @@ msgstr "Valor del cupó"
2743
  #: adminpages/dashboard.php:293
2744
  #: adminpages/orders.php:650
2745
  #: adminpages/orders.php:1344
 
2746
  msgid "Total"
2747
  msgstr "Total"
2748
 
@@ -4167,6 +4169,7 @@ msgstr "Preu"
4167
  #: pages/invoice.php:79
4168
  #: pages/invoice.php:77
4169
  #: includes/functions.php:2842
 
4170
  msgid "Subtotal"
4171
  msgstr "Subtotal"
4172
 
@@ -6542,6 +6545,8 @@ msgstr "Error interactuant amb la base de dades"
6542
  #: includes/functions.php:826
6543
  #: includes/functions.php:1304
6544
  #: includes/functions.php:1342
 
 
6545
  msgid "Membership level not found."
6546
  msgstr "Nivell de subscripció no trobat."
6547
 
@@ -6556,6 +6561,7 @@ msgstr "Nivell de subscripció no trobat."
6556
  #: includes/functions.php:1173
6557
  #: includes/functions.php:1196
6558
  #: includes/functions.php:1722
 
6559
  msgid "No code was given to check."
6560
  msgstr "No s’ha donat cap codi per a fer el check"
6561
 
@@ -6577,6 +6583,7 @@ msgstr "No s’ha donat cap codi per a fer el check"
6577
  #: includes/functions.php:1182
6578
  #: includes/functions.php:1205
6579
  #: includes/functions.php:1731
 
6580
  msgid "The discount code could not be found."
6581
  msgstr "No s’ha trobat el codi de descompte"
6582
 
@@ -6598,6 +6605,7 @@ msgstr "No s’ha trobat el codi de descompte"
6598
  #: includes/functions.php:1197
6599
  #: includes/functions.php:1220
6600
  #: includes/functions.php:1746
 
6601
  #, php-format
6602
  msgid "This discount code goes into effect on %s."
6603
  msgstr "El codi de descompte serà efectiu a %s."
@@ -6620,6 +6628,7 @@ msgstr "El codi de descompte serà efectiu a %s."
6620
  #: includes/functions.php:1204
6621
  #: includes/functions.php:1227
6622
  #: includes/functions.php:1753
 
6623
  #, php-format
6624
  msgid "This discount code expired on %s."
6625
  msgstr "Aquest codi de descompte ha expirat a %s."
@@ -6642,6 +6651,7 @@ msgstr "Aquest codi de descompte ha expirat a %s."
6642
  #: includes/functions.php:1214
6643
  #: includes/functions.php:1237
6644
  #: includes/functions.php:1762
 
6645
  msgid "This discount code is no longer valid."
6646
  msgstr "Aquest codi de descompte ja no és vàlid."
6647
 
@@ -6662,6 +6672,7 @@ msgstr "Aquest codi de descompte ja no és vàlid."
6662
  #: includes/functions.php:1227
6663
  #: includes/functions.php:1250
6664
  #: includes/functions.php:1781
 
6665
  msgid "This discount code does not apply to this membership level."
6666
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6667
 
@@ -6683,6 +6694,7 @@ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6683
  #: includes/functions.php:1253
6684
  #: includes/functions.php:1276
6685
  #: includes/functions.php:1819
 
6686
  msgid "This discount code is okay."
6687
  msgstr "El codi de descompte és OK"
6688
 
@@ -6704,6 +6716,7 @@ msgstr "El codi de descompte és OK"
6704
  #: includes/functions.php:1301
6705
  #: includes/functions.php:1395
6706
  #: includes/functions.php:1847
 
6707
  msgid "and"
6708
  msgstr "i"
6709
 
@@ -6726,6 +6739,7 @@ msgstr "i"
6726
  #: includes/functions.php:1501
6727
  #: includes/functions.php:1620
6728
  #: includes/functions.php:2409
 
6729
  msgid "Sign Up for !!name!! Now"
6730
  msgstr "Sign Up per !!name!! Ara"
6731
 
@@ -7673,6 +7687,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l
7673
  #: pages/invoice.php:82
7674
  #: pages/invoice.php:80
7675
  #: includes/functions.php:2857
 
7676
  msgid "Coupon"
7677
  msgstr "Cupó"
7678
 
@@ -12700,6 +12715,7 @@ msgid "Error interacting with database: %s"
12700
  msgstr ""
12701
 
12702
  #: includes/functions.php:2433
 
12703
  msgid "Sign Up Now"
12704
  msgstr ""
12705
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:41+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
2712
+ #: includes/functions.php:2880
2713
  msgid "Tax"
2714
  msgstr "Impost"
2715
 
2744
  #: adminpages/dashboard.php:293
2745
  #: adminpages/orders.php:650
2746
  #: adminpages/orders.php:1344
2747
+ #: includes/functions.php:2909
2748
  msgid "Total"
2749
  msgstr "Total"
2750
 
4169
  #: pages/invoice.php:79
4170
  #: pages/invoice.php:77
4171
  #: includes/functions.php:2842
4172
+ #: includes/functions.php:2873
4173
  msgid "Subtotal"
4174
  msgstr "Subtotal"
4175
 
6545
  #: includes/functions.php:826
6546
  #: includes/functions.php:1304
6547
  #: includes/functions.php:1342
6548
+ #: includes/functions.php:1335
6549
+ #: includes/functions.php:1373
6550
  msgid "Membership level not found."
6551
  msgstr "Nivell de subscripció no trobat."
6552
 
6561
  #: includes/functions.php:1173
6562
  #: includes/functions.php:1196
6563
  #: includes/functions.php:1722
6564
+ #: includes/functions.php:1753
6565
  msgid "No code was given to check."
6566
  msgstr "No s’ha donat cap codi per a fer el check"
6567
 
6583
  #: includes/functions.php:1182
6584
  #: includes/functions.php:1205
6585
  #: includes/functions.php:1731
6586
+ #: includes/functions.php:1762
6587
  msgid "The discount code could not be found."
6588
  msgstr "No s’ha trobat el codi de descompte"
6589
 
6605
  #: includes/functions.php:1197
6606
  #: includes/functions.php:1220
6607
  #: includes/functions.php:1746
6608
+ #: includes/functions.php:1777
6609
  #, php-format
6610
  msgid "This discount code goes into effect on %s."
6611
  msgstr "El codi de descompte serà efectiu a %s."
6628
  #: includes/functions.php:1204
6629
  #: includes/functions.php:1227
6630
  #: includes/functions.php:1753
6631
+ #: includes/functions.php:1784
6632
  #, php-format
6633
  msgid "This discount code expired on %s."
6634
  msgstr "Aquest codi de descompte ha expirat a %s."
6651
  #: includes/functions.php:1214
6652
  #: includes/functions.php:1237
6653
  #: includes/functions.php:1762
6654
+ #: includes/functions.php:1793
6655
  msgid "This discount code is no longer valid."
6656
  msgstr "Aquest codi de descompte ja no és vàlid."
6657
 
6672
  #: includes/functions.php:1227
6673
  #: includes/functions.php:1250
6674
  #: includes/functions.php:1781
6675
+ #: includes/functions.php:1812
6676
  msgid "This discount code does not apply to this membership level."
6677
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6678
 
6694
  #: includes/functions.php:1253
6695
  #: includes/functions.php:1276
6696
  #: includes/functions.php:1819
6697
+ #: includes/functions.php:1850
6698
  msgid "This discount code is okay."
6699
  msgstr "El codi de descompte és OK"
6700
 
6716
  #: includes/functions.php:1301
6717
  #: includes/functions.php:1395
6718
  #: includes/functions.php:1847
6719
+ #: includes/functions.php:1878
6720
  msgid "and"
6721
  msgstr "i"
6722
 
6739
  #: includes/functions.php:1501
6740
  #: includes/functions.php:1620
6741
  #: includes/functions.php:2409
6742
+ #: includes/functions.php:2440
6743
  msgid "Sign Up for !!name!! Now"
6744
  msgstr "Sign Up per !!name!! Ara"
6745
 
7687
  #: pages/invoice.php:82
7688
  #: pages/invoice.php:80
7689
  #: includes/functions.php:2857
7690
+ #: includes/functions.php:2888
7691
  msgid "Coupon"
7692
  msgstr "Cupó"
7693
 
12715
  msgstr ""
12716
 
12717
  #: includes/functions.php:2433
12718
+ #: includes/functions.php:2464
12719
  msgid "Sign Up Now"
12720
  msgstr ""
12721
 
languages/paid-memberships-pro-ca_ES.mo CHANGED
Binary file
languages/paid-memberships-pro-ca_ES.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:25+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2709,6 +2709,7 @@ msgstr "Subtotal"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
 
2712
  msgid "Tax"
2713
  msgstr "Impost"
2714
 
@@ -2743,6 +2744,7 @@ msgstr "Valor del cupó"
2743
  #: adminpages/dashboard.php:293
2744
  #: adminpages/orders.php:650
2745
  #: adminpages/orders.php:1344
 
2746
  msgid "Total"
2747
  msgstr "Total"
2748
 
@@ -4167,6 +4169,7 @@ msgstr "Preu"
4167
  #: pages/invoice.php:79
4168
  #: pages/invoice.php:77
4169
  #: includes/functions.php:2842
 
4170
  msgid "Subtotal"
4171
  msgstr "Subtotal"
4172
 
@@ -6542,6 +6545,8 @@ msgstr "Error interactuant amb la base de dades"
6542
  #: includes/functions.php:826
6543
  #: includes/functions.php:1304
6544
  #: includes/functions.php:1342
 
 
6545
  msgid "Membership level not found."
6546
  msgstr "Nivell de subscripció no trobat."
6547
 
@@ -6556,6 +6561,7 @@ msgstr "Nivell de subscripció no trobat."
6556
  #: includes/functions.php:1173
6557
  #: includes/functions.php:1196
6558
  #: includes/functions.php:1722
 
6559
  msgid "No code was given to check."
6560
  msgstr "No s’ha donat cap codi per a fer el check"
6561
 
@@ -6577,6 +6583,7 @@ msgstr "No s’ha donat cap codi per a fer el check"
6577
  #: includes/functions.php:1182
6578
  #: includes/functions.php:1205
6579
  #: includes/functions.php:1731
 
6580
  msgid "The discount code could not be found."
6581
  msgstr "No s’ha trobat el codi de descompte"
6582
 
@@ -6598,6 +6605,7 @@ msgstr "No s’ha trobat el codi de descompte"
6598
  #: includes/functions.php:1197
6599
  #: includes/functions.php:1220
6600
  #: includes/functions.php:1746
 
6601
  #, php-format
6602
  msgid "This discount code goes into effect on %s."
6603
  msgstr "El codi de descompte serà efectiu a %s."
@@ -6620,6 +6628,7 @@ msgstr "El codi de descompte serà efectiu a %s."
6620
  #: includes/functions.php:1204
6621
  #: includes/functions.php:1227
6622
  #: includes/functions.php:1753
 
6623
  #, php-format
6624
  msgid "This discount code expired on %s."
6625
  msgstr "Aquest codi de descompte ha expirat a %s."
@@ -6642,6 +6651,7 @@ msgstr "Aquest codi de descompte ha expirat a %s."
6642
  #: includes/functions.php:1214
6643
  #: includes/functions.php:1237
6644
  #: includes/functions.php:1762
 
6645
  msgid "This discount code is no longer valid."
6646
  msgstr "Aquest codi de descompte ja no és vàlid."
6647
 
@@ -6662,6 +6672,7 @@ msgstr "Aquest codi de descompte ja no és vàlid."
6662
  #: includes/functions.php:1227
6663
  #: includes/functions.php:1250
6664
  #: includes/functions.php:1781
 
6665
  msgid "This discount code does not apply to this membership level."
6666
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6667
 
@@ -6683,6 +6694,7 @@ msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6683
  #: includes/functions.php:1253
6684
  #: includes/functions.php:1276
6685
  #: includes/functions.php:1819
 
6686
  msgid "This discount code is okay."
6687
  msgstr "El codi de descompte és OK"
6688
 
@@ -6704,6 +6716,7 @@ msgstr "El codi de descompte és OK"
6704
  #: includes/functions.php:1301
6705
  #: includes/functions.php:1395
6706
  #: includes/functions.php:1847
 
6707
  msgid "and"
6708
  msgstr "i"
6709
 
@@ -6726,6 +6739,7 @@ msgstr "i"
6726
  #: includes/functions.php:1501
6727
  #: includes/functions.php:1620
6728
  #: includes/functions.php:2409
 
6729
  msgid "Sign Up for !!name!! Now"
6730
  msgstr "Sign Up per !!name!! Ara"
6731
 
@@ -7673,6 +7687,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l
7673
  #: pages/invoice.php:82
7674
  #: pages/invoice.php:80
7675
  #: includes/functions.php:2857
 
7676
  msgid "Coupon"
7677
  msgstr "Cupó"
7678
 
@@ -12700,6 +12715,7 @@ msgid "Error interacting with database: %s"
12700
  msgstr ""
12701
 
12702
  #: includes/functions.php:2433
 
12703
  msgid "Sign Up Now"
12704
  msgstr ""
12705
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:43+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
2712
+ #: includes/functions.php:2880
2713
  msgid "Tax"
2714
  msgstr "Impost"
2715
 
2744
  #: adminpages/dashboard.php:293
2745
  #: adminpages/orders.php:650
2746
  #: adminpages/orders.php:1344
2747
+ #: includes/functions.php:2909
2748
  msgid "Total"
2749
  msgstr "Total"
2750
 
4169
  #: pages/invoice.php:79
4170
  #: pages/invoice.php:77
4171
  #: includes/functions.php:2842
4172
+ #: includes/functions.php:2873
4173
  msgid "Subtotal"
4174
  msgstr "Subtotal"
4175
 
6545
  #: includes/functions.php:826
6546
  #: includes/functions.php:1304
6547
  #: includes/functions.php:1342
6548
+ #: includes/functions.php:1335
6549
+ #: includes/functions.php:1373
6550
  msgid "Membership level not found."
6551
  msgstr "Nivell de subscripció no trobat."
6552
 
6561
  #: includes/functions.php:1173
6562
  #: includes/functions.php:1196
6563
  #: includes/functions.php:1722
6564
+ #: includes/functions.php:1753
6565
  msgid "No code was given to check."
6566
  msgstr "No s’ha donat cap codi per a fer el check"
6567
 
6583
  #: includes/functions.php:1182
6584
  #: includes/functions.php:1205
6585
  #: includes/functions.php:1731
6586
+ #: includes/functions.php:1762
6587
  msgid "The discount code could not be found."
6588
  msgstr "No s’ha trobat el codi de descompte"
6589
 
6605
  #: includes/functions.php:1197
6606
  #: includes/functions.php:1220
6607
  #: includes/functions.php:1746
6608
+ #: includes/functions.php:1777
6609
  #, php-format
6610
  msgid "This discount code goes into effect on %s."
6611
  msgstr "El codi de descompte serà efectiu a %s."
6628
  #: includes/functions.php:1204
6629
  #: includes/functions.php:1227
6630
  #: includes/functions.php:1753
6631
+ #: includes/functions.php:1784
6632
  #, php-format
6633
  msgid "This discount code expired on %s."
6634
  msgstr "Aquest codi de descompte ha expirat a %s."
6651
  #: includes/functions.php:1214
6652
  #: includes/functions.php:1237
6653
  #: includes/functions.php:1762
6654
+ #: includes/functions.php:1793
6655
  msgid "This discount code is no longer valid."
6656
  msgstr "Aquest codi de descompte ja no és vàlid."
6657
 
6672
  #: includes/functions.php:1227
6673
  #: includes/functions.php:1250
6674
  #: includes/functions.php:1781
6675
+ #: includes/functions.php:1812
6676
  msgid "This discount code does not apply to this membership level."
6677
  msgstr "Aquest codi de descompte no s’aplica a aquest nivell de subscripció."
6678
 
6694
  #: includes/functions.php:1253
6695
  #: includes/functions.php:1276
6696
  #: includes/functions.php:1819
6697
+ #: includes/functions.php:1850
6698
  msgid "This discount code is okay."
6699
  msgstr "El codi de descompte és OK"
6700
 
6716
  #: includes/functions.php:1301
6717
  #: includes/functions.php:1395
6718
  #: includes/functions.php:1847
6719
+ #: includes/functions.php:1878
6720
  msgid "and"
6721
  msgstr "i"
6722
 
6739
  #: includes/functions.php:1501
6740
  #: includes/functions.php:1620
6741
  #: includes/functions.php:2409
6742
+ #: includes/functions.php:2440
6743
  msgid "Sign Up for !!name!! Now"
6744
  msgstr "Sign Up per !!name!! Ara"
6745
 
7687
  #: pages/invoice.php:82
7688
  #: pages/invoice.php:80
7689
  #: includes/functions.php:2857
7690
+ #: includes/functions.php:2888
7691
  msgid "Coupon"
7692
  msgstr "Cupó"
7693
 
12715
  msgstr ""
12716
 
12717
  #: includes/functions.php:2433
12718
+ #: includes/functions.php:2464
12719
  msgid "Sign Up Now"
12720
  msgstr ""
12721
 
languages/paid-memberships-pro-cs_CZ.mo CHANGED
Binary file
languages/paid-memberships-pro-cs_CZ.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2089,6 +2089,7 @@ msgstr "Mezisoučet"
2089
  #: includes/functions.php:2849
2090
  #: includes/privacy.php:277
2091
  #: adminpages/orders.php:615
 
2092
  msgid "Tax"
2093
  msgstr "Daň"
2094
 
@@ -2114,6 +2115,7 @@ msgstr "Sleva"
2114
  #: adminpages/dashboard.php:293
2115
  #: adminpages/orders.php:650
2116
  #: adminpages/orders.php:1344
 
2117
  msgid "Total"
2118
  msgstr "Celkem"
2119
 
@@ -5017,6 +5019,8 @@ msgstr "Chyba komunikace s databází"
5017
  #: includes/functions.php:753
5018
  #: includes/functions.php:1304
5019
  #: includes/functions.php:1342
 
 
5020
  msgid "Membership level not found."
5021
  msgstr "Úroveň členství nebyla nalezena."
5022
 
@@ -5025,6 +5029,7 @@ msgstr "Úroveň členství nebyla nalezena."
5025
  #: includes/functions.php:1101
5026
  #: includes/functions.php:1118
5027
  #: includes/functions.php:1722
 
5028
  msgid "No code was given to check."
5029
  msgstr "Pro zkontrolování nebyl zadán žádný kód."
5030
 
@@ -5040,6 +5045,7 @@ msgstr "Pro zkontrolování nebyl zadán žádný kód."
5040
  #: includes/functions.php:1113
5041
  #: includes/functions.php:1127
5042
  #: includes/functions.php:1731
 
5043
  msgid "The discount code could not be found."
5044
  msgstr "Slevový kód nebyl nalezen."
5045
 
@@ -5055,6 +5061,7 @@ msgstr "Slevový kód nebyl nalezen."
5055
  #: includes/functions.php:1129
5056
  #: includes/functions.php:1142
5057
  #: includes/functions.php:1746
 
5058
  #, php-format
5059
  msgid "This discount code goes into effect on %s."
5060
  msgstr "Tento slevový kód nabude účinnosti %s."
@@ -5071,6 +5078,7 @@ msgstr "Tento slevový kód nabude účinnosti %s."
5071
  #: includes/functions.php:1138
5072
  #: includes/functions.php:1149
5073
  #: includes/functions.php:1753
 
5074
  #, php-format
5075
  msgid "This discount code expired on %s."
5076
  msgstr "Tento slevový kód vyprší %s."
@@ -5087,6 +5095,7 @@ msgstr "Tento slevový kód vyprší %s."
5087
  #: includes/functions.php:1150
5088
  #: includes/functions.php:1159
5089
  #: includes/functions.php:1762
 
5090
  msgid "This discount code is no longer valid."
5091
  msgstr "Tento slevový kód již není platný."
5092
 
@@ -5101,6 +5110,7 @@ msgstr "Tento slevový kód již není platný."
5101
  #: includes/functions.php:1165
5102
  #: includes/functions.php:1172
5103
  #: includes/functions.php:1781
 
5104
  msgid "This discount code does not apply to this membership level."
5105
  msgstr "Tento slevový kód se nevztahuje na tuto úroveň členství."
5106
 
@@ -5116,6 +5126,7 @@ msgstr "Tento slevový kód se nevztahuje na tuto úroveň členství."
5116
  #: includes/functions.php:1182
5117
  #: includes/functions.php:1198
5118
  #: includes/functions.php:1819
 
5119
  msgid "This discount code is okay."
5120
  msgstr "Tento slevový kód je v pořádku."
5121
 
@@ -5130,6 +5141,7 @@ msgstr "Tento slevový kód je v pořádku."
5130
  #: includes/functions.php:1206
5131
  #: includes/functions.php:1223
5132
  #: includes/functions.php:1847
 
5133
  msgid "and"
5134
  msgstr "a"
5135
 
@@ -5144,6 +5156,7 @@ msgstr "a"
5144
  #: includes/functions.php:1395
5145
  #: includes/functions.php:1412
5146
  #: includes/functions.php:2409
 
5147
  msgid "Sign Up for !!name!! Now"
5148
  msgstr "Pro !!name!! se nyní přihlaste"
5149
 
@@ -5927,12 +5940,14 @@ msgstr "Pokud nebude Váš účet aktivován během několika minut, kontaktujte
5927
  #: pages/invoice.php:79
5928
  #: pages/invoice.php:77
5929
  #: includes/functions.php:2842
 
5930
  msgid "Subtotal"
5931
  msgstr "Mezisoučet"
5932
 
5933
  #: pages/invoice.php:82
5934
  #: pages/invoice.php:80
5935
  #: includes/functions.php:2857
 
5936
  msgid "Coupon"
5937
  msgstr "Kupón"
5938
 
@@ -11011,6 +11026,7 @@ msgid "Error interacting with database: %s"
11011
  msgstr ""
11012
 
11013
  #: includes/functions.php:2433
 
11014
  msgid "Sign Up Now"
11015
  msgstr ""
11016
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:46+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2089
  #: includes/functions.php:2849
2090
  #: includes/privacy.php:277
2091
  #: adminpages/orders.php:615
2092
+ #: includes/functions.php:2880
2093
  msgid "Tax"
2094
  msgstr "Daň"
2095
 
2115
  #: adminpages/dashboard.php:293
2116
  #: adminpages/orders.php:650
2117
  #: adminpages/orders.php:1344
2118
+ #: includes/functions.php:2909
2119
  msgid "Total"
2120
  msgstr "Celkem"
2121
 
5019
  #: includes/functions.php:753
5020
  #: includes/functions.php:1304
5021
  #: includes/functions.php:1342
5022
+ #: includes/functions.php:1335
5023
+ #: includes/functions.php:1373
5024
  msgid "Membership level not found."
5025
  msgstr "Úroveň členství nebyla nalezena."
5026
 
5029
  #: includes/functions.php:1101
5030
  #: includes/functions.php:1118
5031
  #: includes/functions.php:1722
5032
+ #: includes/functions.php:1753
5033
  msgid "No code was given to check."
5034
  msgstr "Pro zkontrolování nebyl zadán žádný kód."
5035
 
5045
  #: includes/functions.php:1113
5046
  #: includes/functions.php:1127
5047
  #: includes/functions.php:1731
5048
+ #: includes/functions.php:1762
5049
  msgid "The discount code could not be found."
5050
  msgstr "Slevový kód nebyl nalezen."
5051
 
5061
  #: includes/functions.php:1129
5062
  #: includes/functions.php:1142
5063
  #: includes/functions.php:1746
5064
+ #: includes/functions.php:1777
5065
  #, php-format
5066
  msgid "This discount code goes into effect on %s."
5067
  msgstr "Tento slevový kód nabude účinnosti %s."
5078
  #: includes/functions.php:1138
5079
  #: includes/functions.php:1149
5080
  #: includes/functions.php:1753
5081
+ #: includes/functions.php:1784
5082
  #, php-format
5083
  msgid "This discount code expired on %s."
5084
  msgstr "Tento slevový kód vyprší %s."
5095
  #: includes/functions.php:1150
5096
  #: includes/functions.php:1159
5097
  #: includes/functions.php:1762
5098
+ #: includes/functions.php:1793
5099
  msgid "This discount code is no longer valid."
5100
  msgstr "Tento slevový kód již není platný."
5101
 
5110
  #: includes/functions.php:1165
5111
  #: includes/functions.php:1172
5112
  #: includes/functions.php:1781
5113
+ #: includes/functions.php:1812
5114
  msgid "This discount code does not apply to this membership level."
5115
  msgstr "Tento slevový kód se nevztahuje na tuto úroveň členství."
5116
 
5126
  #: includes/functions.php:1182
5127
  #: includes/functions.php:1198
5128
  #: includes/functions.php:1819
5129
+ #: includes/functions.php:1850
5130
  msgid "This discount code is okay."
5131
  msgstr "Tento slevový kód je v pořádku."
5132
 
5141
  #: includes/functions.php:1206
5142
  #: includes/functions.php:1223
5143
  #: includes/functions.php:1847
5144
+ #: includes/functions.php:1878
5145
  msgid "and"
5146
  msgstr "a"
5147
 
5156
  #: includes/functions.php:1395
5157
  #: includes/functions.php:1412
5158
  #: includes/functions.php:2409
5159
+ #: includes/functions.php:2440
5160
  msgid "Sign Up for !!name!! Now"
5161
  msgstr "Pro !!name!! se nyní přihlaste"
5162
 
5940
  #: pages/invoice.php:79
5941
  #: pages/invoice.php:77
5942
  #: includes/functions.php:2842
5943
+ #: includes/functions.php:2873
5944
  msgid "Subtotal"
5945
  msgstr "Mezisoučet"
5946
 
5947
  #: pages/invoice.php:82
5948
  #: pages/invoice.php:80
5949
  #: includes/functions.php:2857
5950
+ #: includes/functions.php:2888
5951
  msgid "Coupon"
5952
  msgstr "Kupón"
5953
 
11026
  msgstr ""
11027
 
11028
  #: includes/functions.php:2433
11029
+ #: includes/functions.php:2464
11030
  msgid "Sign Up Now"
11031
  msgstr ""
11032
 
languages/paid-memberships-pro-da_DK.mo CHANGED
Binary file
languages/paid-memberships-pro-da_DK.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:31+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1814,6 +1814,7 @@ msgstr "Subtotal"
1814
  #: includes/functions.php:2849
1815
  #: includes/privacy.php:277
1816
  #: adminpages/orders.php:615
 
1817
  msgid "Tax"
1818
  msgstr "Skat"
1819
 
@@ -1839,6 +1840,7 @@ msgstr "Rabatbeløb"
1839
  #: adminpages/dashboard.php:293
1840
  #: adminpages/orders.php:650
1841
  #: adminpages/orders.php:1344
 
1842
  msgid "Total"
1843
  msgstr "Total"
1844
 
@@ -4012,6 +4014,8 @@ msgstr "Fejl i at kommunikere med database"
4012
  #: includes/functions.php:720
4013
  #: includes/functions.php:1304
4014
  #: includes/functions.php:1342
 
 
4015
  msgid "Membership level not found."
4016
  msgstr "Medlemsskabsniveau ikke fundet."
4017
 
@@ -4022,6 +4026,7 @@ msgstr "Medlemsskabsniveau ikke fundet."
4022
  #: includes/functions.php:1099
4023
  #: includes/functions.php:1102
4024
  #: includes/functions.php:1731
 
4025
  msgid "The discount code could not be found."
4026
  msgstr "Denne rabatkode kunne ikke findes."
4027
 
@@ -4032,6 +4037,7 @@ msgstr "Denne rabatkode kunne ikke findes."
4032
  #: includes/functions.php:1115
4033
  #: includes/functions.php:1118
4034
  #: includes/functions.php:1746
 
4035
  #, php-format
4036
  msgid "This discount code goes into effect on %s."
4037
  msgstr "Denne rabatkode træder i kraft den %s."
@@ -4043,6 +4049,7 @@ msgstr "Denne rabatkode træder i kraft den %s."
4043
  #: includes/functions.php:1124
4044
  #: includes/functions.php:1127
4045
  #: includes/functions.php:1753
 
4046
  #, php-format
4047
  msgid "This discount code expired on %s."
4048
  msgstr "Denne rabatkode udløber den %s."
@@ -4054,6 +4061,7 @@ msgstr "Denne rabatkode udløber den %s."
4054
  #: includes/functions.php:1136
4055
  #: includes/functions.php:1139
4056
  #: includes/functions.php:1762
 
4057
  msgid "This discount code is no longer valid."
4058
  msgstr "Denne rabatkode er ikke længere gyldig."
4059
 
@@ -4064,6 +4072,7 @@ msgstr "Denne rabatkode er ikke længere gyldig."
4064
  #: includes/functions.php:1151
4065
  #: includes/functions.php:1154
4066
  #: includes/functions.php:1781
 
4067
  msgid "This discount code does not apply to this membership level."
4068
  msgstr "Denne rabatkode kan ikke tilføjes til dette medlemsskabsniveau."
4069
 
@@ -4074,6 +4083,7 @@ msgstr "Denne rabatkode kan ikke tilføjes til dette medlemsskabsniveau."
4074
  #: includes/functions.php:1159
4075
  #: includes/functions.php:1162
4076
  #: includes/functions.php:1819
 
4077
  msgid "This discount code is okay."
4078
  msgstr "Denne rabatkode er okay."
4079
 
@@ -4084,6 +4094,7 @@ msgstr "Denne rabatkode er okay."
4084
  #: includes/functions.php:1183
4085
  #: includes/functions.php:1186
4086
  #: includes/functions.php:1847
 
4087
  msgid "and"
4088
  msgstr "og"
4089
 
@@ -4094,6 +4105,7 @@ msgstr "og"
4094
  #: includes/functions.php:1372
4095
  #: includes/functions.php:1375
4096
  #: includes/functions.php:2409
 
4097
  msgid "Sign Up for !!name!! Now"
4098
  msgstr "Tilmeld !!name!! nu"
4099
 
@@ -4898,12 +4910,14 @@ msgstr "Hvis din konto ikke er aktiveret inden for få minuter, kontakt venligst
4898
  #: pages/invoice.php:79
4899
  #: pages/invoice.php:77
4900
  #: includes/functions.php:2842
 
4901
  msgid "Subtotal"
4902
  msgstr "Subtotal"
4903
 
4904
  #: pages/invoice.php:82
4905
  #: pages/invoice.php:80
4906
  #: includes/functions.php:2857
 
4907
  msgid "Coupon"
4908
  msgstr "Kupon"
4909
 
@@ -9929,10 +9943,12 @@ msgid "Error interacting with database: %s"
9929
  msgstr ""
9930
 
9931
  #: includes/functions.php:1722
 
9932
  msgid "No code was given to check."
9933
  msgstr ""
9934
 
9935
  #: includes/functions.php:2433
 
9936
  msgid "Sign Up Now"
9937
  msgstr ""
9938
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:48+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1814
  #: includes/functions.php:2849
1815
  #: includes/privacy.php:277
1816
  #: adminpages/orders.php:615
1817
+ #: includes/functions.php:2880
1818
  msgid "Tax"
1819
  msgstr "Skat"
1820
 
1840
  #: adminpages/dashboard.php:293
1841
  #: adminpages/orders.php:650
1842
  #: adminpages/orders.php:1344
1843
+ #: includes/functions.php:2909
1844
  msgid "Total"
1845
  msgstr "Total"
1846
 
4014
  #: includes/functions.php:720
4015
  #: includes/functions.php:1304
4016
  #: includes/functions.php:1342
4017
+ #: includes/functions.php:1335
4018
+ #: includes/functions.php:1373
4019
  msgid "Membership level not found."
4020
  msgstr "Medlemsskabsniveau ikke fundet."
4021
 
4026
  #: includes/functions.php:1099
4027
  #: includes/functions.php:1102
4028
  #: includes/functions.php:1731
4029
+ #: includes/functions.php:1762
4030
  msgid "The discount code could not be found."
4031
  msgstr "Denne rabatkode kunne ikke findes."
4032
 
4037
  #: includes/functions.php:1115
4038
  #: includes/functions.php:1118
4039
  #: includes/functions.php:1746
4040
+ #: includes/functions.php:1777
4041
  #, php-format
4042
  msgid "This discount code goes into effect on %s."
4043
  msgstr "Denne rabatkode træder i kraft den %s."
4049
  #: includes/functions.php:1124
4050
  #: includes/functions.php:1127
4051
  #: includes/functions.php:1753
4052
+ #: includes/functions.php:1784
4053
  #, php-format
4054
  msgid "This discount code expired on %s."
4055
  msgstr "Denne rabatkode udløber den %s."
4061
  #: includes/functions.php:1136
4062
  #: includes/functions.php:1139
4063
  #: includes/functions.php:1762
4064
+ #: includes/functions.php:1793
4065
  msgid "This discount code is no longer valid."
4066
  msgstr "Denne rabatkode er ikke længere gyldig."
4067
 
4072
  #: includes/functions.php:1151
4073
  #: includes/functions.php:1154
4074
  #: includes/functions.php:1781
4075
+ #: includes/functions.php:1812
4076
  msgid "This discount code does not apply to this membership level."
4077
  msgstr "Denne rabatkode kan ikke tilføjes til dette medlemsskabsniveau."
4078
 
4083
  #: includes/functions.php:1159
4084
  #: includes/functions.php:1162
4085
  #: includes/functions.php:1819
4086
+ #: includes/functions.php:1850
4087
  msgid "This discount code is okay."
4088
  msgstr "Denne rabatkode er okay."
4089
 
4094
  #: includes/functions.php:1183
4095
  #: includes/functions.php:1186
4096
  #: includes/functions.php:1847
4097
+ #: includes/functions.php:1878
4098
  msgid "and"
4099
  msgstr "og"
4100
 
4105
  #: includes/functions.php:1372
4106
  #: includes/functions.php:1375
4107
  #: includes/functions.php:2409
4108
+ #: includes/functions.php:2440
4109
  msgid "Sign Up for !!name!! Now"
4110
  msgstr "Tilmeld !!name!! nu"
4111
 
4910
  #: pages/invoice.php:79
4911
  #: pages/invoice.php:77
4912
  #: includes/functions.php:2842
4913
+ #: includes/functions.php:2873
4914
  msgid "Subtotal"
4915
  msgstr "Subtotal"
4916
 
4917
  #: pages/invoice.php:82
4918
  #: pages/invoice.php:80
4919
  #: includes/functions.php:2857
4920
+ #: includes/functions.php:2888
4921
  msgid "Coupon"
4922
  msgstr "Kupon"
4923
 
9943
  msgstr ""
9944
 
9945
  #: includes/functions.php:1722
9946
+ #: includes/functions.php:1753
9947
  msgid "No code was given to check."
9948
  msgstr ""
9949
 
9950
  #: includes/functions.php:2433
9951
+ #: includes/functions.php:2464
9952
  msgid "Sign Up Now"
9953
  msgstr ""
9954
 
languages/paid-memberships-pro-de_DE.mo CHANGED
Binary file
languages/paid-memberships-pro-de_DE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -3674,6 +3674,7 @@ msgstr "Zwischensumme"
3674
  #: adminpages/orders.php:609
3675
  #: includes/functions.php:2849
3676
  #: adminpages/orders.php:615
 
3677
  msgid "Tax"
3678
  msgstr "Steuern"
3679
 
@@ -3722,6 +3723,7 @@ msgstr "Gutscheinbetrag"
3722
  #: adminpages/dashboard.php:293
3723
  #: adminpages/orders.php:650
3724
  #: adminpages/orders.php:1344
 
3725
  msgid "Total"
3726
  msgstr "Gesamt"
3727
 
@@ -5632,6 +5634,7 @@ msgstr "Preis"
5632
  #: pages/invoice.php:77
5633
  #: pages/invoice.php:79
5634
  #: includes/functions.php:2842
 
5635
  msgid "Subtotal"
5636
  msgstr "Zwischensumme"
5637
 
@@ -10131,6 +10134,8 @@ msgstr "Fehler bei Datenbankverbindung: %s"
10131
  #: includes/functions.php:1252
10132
  #: includes/functions.php:1304
10133
  #: includes/functions.php:1342
 
 
10134
  msgid "Membership level not found."
10135
  msgstr "Paket nicht gefunden."
10136
 
@@ -10153,6 +10158,7 @@ msgstr "Paket nicht gefunden."
10153
  #: includes/functions.php:1611
10154
  #: includes/functions.php:1620
10155
  #: includes/functions.php:1722
 
10156
  msgid "No code was given to check."
10157
  msgstr "Kein Code zur Überprüfung eingegeben."
10158
 
@@ -10182,6 +10188,7 @@ msgstr "Kein Code zur Überprüfung eingegeben."
10182
  #: includes/functions.php:1620
10183
  #: includes/functions.php:1629
10184
  #: includes/functions.php:1731
 
10185
  msgid "The discount code could not be found."
10186
  msgstr "Der Gutscheincode konnte nicht gefunden werden."
10187
 
@@ -10211,6 +10218,7 @@ msgstr "Der Gutscheincode konnte nicht gefunden werden."
10211
  #: includes/functions.php:1635
10212
  #: includes/functions.php:1644
10213
  #: includes/functions.php:1746
 
10214
  #, php-format
10215
  msgid "This discount code goes into effect on %s."
10216
  msgstr "Dieser Gutscheincode gilt ab %s."
@@ -10241,6 +10249,7 @@ msgstr "Dieser Gutscheincode gilt ab %s."
10241
  #: includes/functions.php:1642
10242
  #: includes/functions.php:1651
10243
  #: includes/functions.php:1753
 
10244
  #, php-format
10245
  msgid "This discount code expired on %s."
10246
  msgstr "Dieser Gutscheincode läuft am %s ab."
@@ -10271,6 +10280,7 @@ msgstr "Dieser Gutscheincode läuft am %s ab."
10271
  #: includes/functions.php:1652
10272
  #: includes/functions.php:1661
10273
  #: includes/functions.php:1762
 
10274
  msgid "This discount code is no longer valid."
10275
  msgstr "Dieser Gutscheincode ist nicht mehr gültig."
10276
 
@@ -10299,6 +10309,7 @@ msgstr "Dieser Gutscheincode ist nicht mehr gültig."
10299
  #: includes/functions.php:1672
10300
  #: includes/functions.php:1681
10301
  #: includes/functions.php:1781
 
10302
  msgid "This discount code does not apply to this membership level."
10303
  msgstr "Dieser Gutscheincode kann für dieses Membership Level nicht angewendet werden."
10304
 
@@ -10328,6 +10339,7 @@ msgstr "Dieser Gutscheincode kann für dieses Membership Level nicht angewendet
10328
  #: includes/functions.php:1709
10329
  #: includes/functions.php:1718
10330
  #: includes/functions.php:1819
 
10331
  msgid "This discount code is okay."
10332
  msgstr "Dieser Gutscheincode ist in Ordnung."
10333
 
@@ -10357,6 +10369,7 @@ msgstr "Dieser Gutscheincode ist in Ordnung."
10357
  #: includes/functions.php:1736
10358
  #: includes/functions.php:1745
10359
  #: includes/functions.php:1847
 
10360
  msgid "and"
10361
  msgstr "und"
10362
 
@@ -10389,6 +10402,7 @@ msgstr "und"
10389
  #: includes/functions.php:2033
10390
  #: includes/functions.php:2034
10391
  #: includes/functions.php:2409
 
10392
  msgid "Sign Up for !!name!! Now"
10393
  msgstr "Jetzt für !!name!! anmelden"
10394
 
@@ -11851,6 +11865,7 @@ msgstr "Summe"
11851
  #: pages/invoice.php:80
11852
  #: pages/invoice.php:82
11853
  #: includes/functions.php:2857
 
11854
  msgid "Coupon"
11855
  msgstr "Gutschein"
11856
 
@@ -16120,6 +16135,7 @@ msgid "THIS IS A TEST EMAIL"
16120
  msgstr ""
16121
 
16122
  #: includes/functions.php:2433
 
16123
  msgid "Sign Up Now"
16124
  msgstr ""
16125
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:50+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
3674
  #: adminpages/orders.php:609
3675
  #: includes/functions.php:2849
3676
  #: adminpages/orders.php:615
3677
+ #: includes/functions.php:2880
3678
  msgid "Tax"
3679
  msgstr "Steuern"
3680
 
3723
  #: adminpages/dashboard.php:293
3724
  #: adminpages/orders.php:650
3725
  #: adminpages/orders.php:1344
3726
+ #: includes/functions.php:2909
3727
  msgid "Total"
3728
  msgstr "Gesamt"
3729
 
5634
  #: pages/invoice.php:77
5635
  #: pages/invoice.php:79
5636
  #: includes/functions.php:2842
5637
+ #: includes/functions.php:2873
5638
  msgid "Subtotal"
5639
  msgstr "Zwischensumme"
5640
 
10134
  #: includes/functions.php:1252
10135
  #: includes/functions.php:1304
10136
  #: includes/functions.php:1342
10137
+ #: includes/functions.php:1335
10138
+ #: includes/functions.php:1373
10139
  msgid "Membership level not found."
10140
  msgstr "Paket nicht gefunden."
10141
 
10158
  #: includes/functions.php:1611
10159
  #: includes/functions.php:1620
10160
  #: includes/functions.php:1722
10161
+ #: includes/functions.php:1753
10162
  msgid "No code was given to check."
10163
  msgstr "Kein Code zur Überprüfung eingegeben."
10164
 
10188
  #: includes/functions.php:1620
10189
  #: includes/functions.php:1629
10190
  #: includes/functions.php:1731
10191
+ #: includes/functions.php:1762
10192
  msgid "The discount code could not be found."
10193
  msgstr "Der Gutscheincode konnte nicht gefunden werden."
10194
 
10218
  #: includes/functions.php:1635
10219
  #: includes/functions.php:1644
10220
  #: includes/functions.php:1746
10221
+ #: includes/functions.php:1777
10222
  #, php-format
10223
  msgid "This discount code goes into effect on %s."
10224
  msgstr "Dieser Gutscheincode gilt ab %s."
10249
  #: includes/functions.php:1642
10250
  #: includes/functions.php:1651
10251
  #: includes/functions.php:1753
10252
+ #: includes/functions.php:1784
10253
  #, php-format
10254
  msgid "This discount code expired on %s."
10255
  msgstr "Dieser Gutscheincode läuft am %s ab."
10280
  #: includes/functions.php:1652
10281
  #: includes/functions.php:1661
10282
  #: includes/functions.php:1762
10283
+ #: includes/functions.php:1793
10284
  msgid "This discount code is no longer valid."
10285
  msgstr "Dieser Gutscheincode ist nicht mehr gültig."
10286
 
10309
  #: includes/functions.php:1672
10310
  #: includes/functions.php:1681
10311
  #: includes/functions.php:1781
10312
+ #: includes/functions.php:1812
10313
  msgid "This discount code does not apply to this membership level."
10314
  msgstr "Dieser Gutscheincode kann für dieses Membership Level nicht angewendet werden."
10315
 
10339
  #: includes/functions.php:1709
10340
  #: includes/functions.php:1718
10341
  #: includes/functions.php:1819
10342
+ #: includes/functions.php:1850
10343
  msgid "This discount code is okay."
10344
  msgstr "Dieser Gutscheincode ist in Ordnung."
10345
 
10369
  #: includes/functions.php:1736
10370
  #: includes/functions.php:1745
10371
  #: includes/functions.php:1847
10372
+ #: includes/functions.php:1878
10373
  msgid "and"
10374
  msgstr "und"
10375
 
10402
  #: includes/functions.php:2033
10403
  #: includes/functions.php:2034
10404
  #: includes/functions.php:2409
10405
+ #: includes/functions.php:2440
10406
  msgid "Sign Up for !!name!! Now"
10407
  msgstr "Jetzt für !!name!! anmelden"
10408
 
11865
  #: pages/invoice.php:80
11866
  #: pages/invoice.php:82
11867
  #: includes/functions.php:2857
11868
+ #: includes/functions.php:2888
11869
  msgid "Coupon"
11870
  msgstr "Gutschein"
11871
 
16135
  msgstr ""
16136
 
16137
  #: includes/functions.php:2433
16138
+ #: includes/functions.php:2464
16139
  msgid "Sign Up Now"
16140
  msgstr ""
16141
 
languages/paid-memberships-pro-el_GR.mo CHANGED
Binary file
languages/paid-memberships-pro-el_GR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:36+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2783,6 +2783,7 @@ msgstr "Υπό Σύνολο"
2783
  #: includes/functions.php:2849
2784
  #: includes/privacy.php:277
2785
  #: adminpages/orders.php:615
 
2786
  msgid "Tax"
2787
  msgstr "Φόρος"
2788
 
@@ -2817,6 +2818,7 @@ msgstr "Ποσό Κουπονιού"
2817
  #: adminpages/dashboard.php:293
2818
  #: adminpages/orders.php:650
2819
  #: adminpages/orders.php:1344
 
2820
  msgid "Total"
2821
  msgstr "Σύνολο"
2822
 
@@ -4256,6 +4258,7 @@ msgstr "Τιμή"
4256
  #: pages/invoice.php:79
4257
  #: pages/invoice.php:77
4258
  #: includes/functions.php:2842
 
4259
  msgid "Subtotal"
4260
  msgstr "Σύνολο"
4261
 
@@ -6737,6 +6740,8 @@ msgstr "Σφάλμα κατά την αλληλεπίδραση με την βά
6737
  #: includes/functions.php:920
6738
  #: includes/functions.php:1304
6739
  #: includes/functions.php:1342
 
 
6740
  msgid "Membership level not found."
6741
  msgstr "Δεν βρέθηκε το Επίπεδο Συνδρομής"
6742
 
@@ -6752,6 +6757,7 @@ msgstr "Δεν βρέθηκε το Επίπεδο Συνδρομής"
6752
  #: includes/functions.php:1196
6753
  #: includes/functions.php:1290
6754
  #: includes/functions.php:1722
 
6755
  msgid "No code was given to check."
6756
  msgstr "Δεν δόθηκε κωδικός προς έλεγχο."
6757
 
@@ -6774,6 +6780,7 @@ msgstr "Δεν δόθηκε κωδικός προς έλεγχο."
6774
  #: includes/functions.php:1205
6775
  #: includes/functions.php:1299
6776
  #: includes/functions.php:1731
 
6777
  msgid "The discount code could not be found."
6778
  msgstr "Δεν βρέθηκε ο παρών κωδικός έκπτωσης."
6779
 
@@ -6796,6 +6803,7 @@ msgstr "Δεν βρέθηκε ο παρών κωδικός έκπτωσης."
6796
  #: includes/functions.php:1220
6797
  #: includes/functions.php:1314
6798
  #: includes/functions.php:1746
 
6799
  #, php-format
6800
  msgid "This discount code goes into effect on %s."
6801
  msgstr "Ο παρών κωδικός έκπτωσης μπαίνει σε λειτουργία στις %s."
@@ -6819,6 +6827,7 @@ msgstr "Ο παρών κωδικός έκπτωσης μπαίνει σε λει
6819
  #: includes/functions.php:1227
6820
  #: includes/functions.php:1321
6821
  #: includes/functions.php:1753
 
6822
  #, php-format
6823
  msgid "This discount code expired on %s."
6824
  msgstr "Ο παρών κωδικός έκπτωσης έληξε στις %s."
@@ -6842,6 +6851,7 @@ msgstr "Ο παρών κωδικός έκπτωσης έληξε στις %s."
6842
  #: includes/functions.php:1237
6843
  #: includes/functions.php:1331
6844
  #: includes/functions.php:1762
 
6845
  msgid "This discount code is no longer valid."
6846
  msgstr "Ο παρών κωδικός έκπτωσης δεν είναι πλέον έγκυρος."
6847
 
@@ -6863,6 +6873,7 @@ msgstr "Ο παρών κωδικός έκπτωσης δεν είναι πλέο
6863
  #: includes/functions.php:1250
6864
  #: includes/functions.php:1344
6865
  #: includes/functions.php:1781
 
6866
  msgid "This discount code does not apply to this membership level."
6867
  msgstr "Ο παρών κωδικός έκπτωσης δεν εφαρμόζεται σε αυτό το επίπεδο συνδρομής."
6868
 
@@ -6885,6 +6896,7 @@ msgstr "Ο παρών κωδικός έκπτωσης δεν εφαρμόζετ
6885
  #: includes/functions.php:1276
6886
  #: includes/functions.php:1370
6887
  #: includes/functions.php:1819
 
6888
  msgid "This discount code is okay."
6889
  msgstr "Ο παρών κωδικός έκπτωσης είναι εντάξει."
6890
 
@@ -6907,6 +6919,7 @@ msgstr "Ο παρών κωδικός έκπτωσης είναι εντάξει.
6907
  #: includes/functions.php:1395
6908
  #: includes/functions.php:1397
6909
  #: includes/functions.php:1847
 
6910
  msgid "and"
6911
  msgstr "και"
6912
 
@@ -6930,6 +6943,7 @@ msgstr "και"
6930
  #: includes/functions.php:1620
6931
  #: includes/functions.php:1624
6932
  #: includes/functions.php:2409
 
6933
  msgid "Sign Up for !!name!! Now"
6934
  msgstr "Εγγραφείτε για !!name!! Τώρα"
6935
 
@@ -7914,6 +7928,7 @@ msgstr "Σε περίπτωση που ο λογαριασμός σας δεν
7914
  #: pages/invoice.php:82
7915
  #: pages/invoice.php:80
7916
  #: includes/functions.php:2857
 
7917
  msgid "Coupon"
7918
  msgstr "Κουπόνι"
7919
 
@@ -12960,6 +12975,7 @@ msgid "Error interacting with database: %s"
12960
  msgstr ""
12961
 
12962
  #: includes/functions.php:2433
 
12963
  msgid "Sign Up Now"
12964
  msgstr ""
12965
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:53+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2783
  #: includes/functions.php:2849
2784
  #: includes/privacy.php:277
2785
  #: adminpages/orders.php:615
2786
+ #: includes/functions.php:2880
2787
  msgid "Tax"
2788
  msgstr "Φόρος"
2789
 
2818
  #: adminpages/dashboard.php:293
2819
  #: adminpages/orders.php:650
2820
  #: adminpages/orders.php:1344
2821
+ #: includes/functions.php:2909
2822
  msgid "Total"
2823
  msgstr "Σύνολο"
2824
 
4258
  #: pages/invoice.php:79
4259
  #: pages/invoice.php:77
4260
  #: includes/functions.php:2842
4261
+ #: includes/functions.php:2873
4262
  msgid "Subtotal"
4263
  msgstr "Σύνολο"
4264
 
6740
  #: includes/functions.php:920
6741
  #: includes/functions.php:1304
6742
  #: includes/functions.php:1342
6743
+ #: includes/functions.php:1335
6744
+ #: includes/functions.php:1373
6745
  msgid "Membership level not found."
6746
  msgstr "Δεν βρέθηκε το Επίπεδο Συνδρομής"
6747
 
6757
  #: includes/functions.php:1196
6758
  #: includes/functions.php:1290
6759
  #: includes/functions.php:1722
6760
+ #: includes/functions.php:1753
6761
  msgid "No code was given to check."
6762
  msgstr "Δεν δόθηκε κωδικός προς έλεγχο."
6763
 
6780
  #: includes/functions.php:1205
6781
  #: includes/functions.php:1299
6782
  #: includes/functions.php:1731
6783
+ #: includes/functions.php:1762
6784
  msgid "The discount code could not be found."
6785
  msgstr "Δεν βρέθηκε ο παρών κωδικός έκπτωσης."
6786
 
6803
  #: includes/functions.php:1220
6804
  #: includes/functions.php:1314
6805
  #: includes/functions.php:1746
6806
+ #: includes/functions.php:1777
6807
  #, php-format
6808
  msgid "This discount code goes into effect on %s."
6809
  msgstr "Ο παρών κωδικός έκπτωσης μπαίνει σε λειτουργία στις %s."
6827
  #: includes/functions.php:1227
6828
  #: includes/functions.php:1321
6829
  #: includes/functions.php:1753
6830
+ #: includes/functions.php:1784
6831
  #, php-format
6832
  msgid "This discount code expired on %s."
6833
  msgstr "Ο παρών κωδικός έκπτωσης έληξε στις %s."
6851
  #: includes/functions.php:1237
6852
  #: includes/functions.php:1331
6853
  #: includes/functions.php:1762
6854
+ #: includes/functions.php:1793
6855
  msgid "This discount code is no longer valid."
6856
  msgstr "Ο παρών κωδικός έκπτωσης δεν είναι πλέον έγκυρος."
6857
 
6873
  #: includes/functions.php:1250
6874
  #: includes/functions.php:1344
6875
  #: includes/functions.php:1781
6876
+ #: includes/functions.php:1812
6877
  msgid "This discount code does not apply to this membership level."
6878
  msgstr "Ο παρών κωδικός έκπτωσης δεν εφαρμόζεται σε αυτό το επίπεδο συνδρομής."
6879
 
6896
  #: includes/functions.php:1276
6897
  #: includes/functions.php:1370
6898
  #: includes/functions.php:1819
6899
+ #: includes/functions.php:1850
6900
  msgid "This discount code is okay."
6901
  msgstr "Ο παρών κωδικός έκπτωσης είναι εντάξει."
6902
 
6919
  #: includes/functions.php:1395
6920
  #: includes/functions.php:1397
6921
  #: includes/functions.php:1847
6922
+ #: includes/functions.php:1878
6923
  msgid "and"
6924
  msgstr "και"
6925
 
6943
  #: includes/functions.php:1620
6944
  #: includes/functions.php:1624
6945
  #: includes/functions.php:2409
6946
+ #: includes/functions.php:2440
6947
  msgid "Sign Up for !!name!! Now"
6948
  msgstr "Εγγραφείτε για !!name!! Τώρα"
6949
 
7928
  #: pages/invoice.php:82
7929
  #: pages/invoice.php:80
7930
  #: includes/functions.php:2857
7931
+ #: includes/functions.php:2888
7932
  msgid "Coupon"
7933
  msgstr "Κουπόνι"
7934
 
12975
  msgstr ""
12976
 
12977
  #: includes/functions.php:2433
12978
+ #: includes/functions.php:2464
12979
  msgid "Sign Up Now"
12980
  msgstr ""
12981
 
languages/paid-memberships-pro-en_GB.mo CHANGED
Binary file
languages/paid-memberships-pro-en_GB.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:39+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -515,48 +515,58 @@ msgstr ""
515
  #: includes/functions.php:698
516
  #: includes/functions.php:1304
517
  #: includes/functions.php:1342
 
 
518
  msgid "Membership level not found."
519
  msgstr ""
520
 
521
  #: includes/functions.php:1080
522
  #: includes/functions.php:1731
 
523
  msgid "The discount code could not be found."
524
  msgstr ""
525
 
526
  #: includes/functions.php:1096
527
  #: includes/functions.php:1746
 
528
  #, php-format
529
  msgid "This discount code goes into effect on %s."
530
  msgstr ""
531
 
532
  #: includes/functions.php:1105
533
  #: includes/functions.php:1753
 
534
  #, php-format
535
  msgid "This discount code expired on %s."
536
  msgstr ""
537
 
538
  #: includes/functions.php:1117
539
  #: includes/functions.php:1762
 
540
  msgid "This discount code is no longer valid."
541
  msgstr ""
542
 
543
  #: includes/functions.php:1132
544
  #: includes/functions.php:1781
 
545
  msgid "This discount code does not apply to this membership level."
546
  msgstr ""
547
 
548
  #: includes/functions.php:1140
549
  #: includes/functions.php:1819
 
550
  msgid "This discount code is okay."
551
  msgstr ""
552
 
553
  #: includes/functions.php:1164
554
  #: includes/functions.php:1847
 
555
  msgid "and"
556
  msgstr ""
557
 
558
  #: includes/functions.php:1349
559
  #: includes/functions.php:2409
 
560
  msgid "Sign Up for !!name!! Now"
561
  msgstr ""
562
 
@@ -687,6 +697,7 @@ msgstr ""
687
 
688
  #: pages/invoice.php:79
689
  #: includes/functions.php:2842
 
690
  msgid "Subtotal"
691
  msgstr ""
692
 
@@ -696,11 +707,13 @@ msgstr ""
696
  #: includes/functions.php:2849
697
  #: includes/privacy.php:277
698
  #: adminpages/orders.php:615
 
699
  msgid "Tax"
700
  msgstr ""
701
 
702
  #: pages/invoice.php:82
703
  #: includes/functions.php:2857
 
704
  msgid "Coupon"
705
  msgstr ""
706
 
@@ -715,6 +728,7 @@ msgstr ""
715
  #: adminpages/dashboard.php:293
716
  #: adminpages/orders.php:650
717
  #: adminpages/orders.php:1344
 
718
  msgid "Total"
719
  msgstr ""
720
 
@@ -8760,10 +8774,12 @@ msgid "Error interacting with database: %s"
8760
  msgstr ""
8761
 
8762
  #: includes/functions.php:1722
 
8763
  msgid "No code was given to check."
8764
  msgstr ""
8765
 
8766
  #: includes/functions.php:2433
 
8767
  msgid "Sign Up Now"
8768
  msgstr ""
8769
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:55+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
515
  #: includes/functions.php:698
516
  #: includes/functions.php:1304
517
  #: includes/functions.php:1342
518
+ #: includes/functions.php:1335
519
+ #: includes/functions.php:1373
520
  msgid "Membership level not found."
521
  msgstr ""
522
 
523
  #: includes/functions.php:1080
524
  #: includes/functions.php:1731
525
+ #: includes/functions.php:1762
526
  msgid "The discount code could not be found."
527
  msgstr ""
528
 
529
  #: includes/functions.php:1096
530
  #: includes/functions.php:1746
531
+ #: includes/functions.php:1777
532
  #, php-format
533
  msgid "This discount code goes into effect on %s."
534
  msgstr ""
535
 
536
  #: includes/functions.php:1105
537
  #: includes/functions.php:1753
538
+ #: includes/functions.php:1784
539
  #, php-format
540
  msgid "This discount code expired on %s."
541
  msgstr ""
542
 
543
  #: includes/functions.php:1117
544
  #: includes/functions.php:1762
545
+ #: includes/functions.php:1793
546
  msgid "This discount code is no longer valid."
547
  msgstr ""
548
 
549
  #: includes/functions.php:1132
550
  #: includes/functions.php:1781
551
+ #: includes/functions.php:1812
552
  msgid "This discount code does not apply to this membership level."
553
  msgstr ""
554
 
555
  #: includes/functions.php:1140
556
  #: includes/functions.php:1819
557
+ #: includes/functions.php:1850
558
  msgid "This discount code is okay."
559
  msgstr ""
560
 
561
  #: includes/functions.php:1164
562
  #: includes/functions.php:1847
563
+ #: includes/functions.php:1878
564
  msgid "and"
565
  msgstr ""
566
 
567
  #: includes/functions.php:1349
568
  #: includes/functions.php:2409
569
+ #: includes/functions.php:2440
570
  msgid "Sign Up for !!name!! Now"
571
  msgstr ""
572
 
697
 
698
  #: pages/invoice.php:79
699
  #: includes/functions.php:2842
700
+ #: includes/functions.php:2873
701
  msgid "Subtotal"
702
  msgstr ""
703
 
707
  #: includes/functions.php:2849
708
  #: includes/privacy.php:277
709
  #: adminpages/orders.php:615
710
+ #: includes/functions.php:2880
711
  msgid "Tax"
712
  msgstr ""
713
 
714
  #: pages/invoice.php:82
715
  #: includes/functions.php:2857
716
+ #: includes/functions.php:2888
717
  msgid "Coupon"
718
  msgstr ""
719
 
728
  #: adminpages/dashboard.php:293
729
  #: adminpages/orders.php:650
730
  #: adminpages/orders.php:1344
731
+ #: includes/functions.php:2909
732
  msgid "Total"
733
  msgstr ""
734
 
8774
  msgstr ""
8775
 
8776
  #: includes/functions.php:1722
8777
+ #: includes/functions.php:1753
8778
  msgid "No code was given to check."
8779
  msgstr ""
8780
 
8781
  #: includes/functions.php:2433
8782
+ #: includes/functions.php:2464
8783
  msgid "Sign Up Now"
8784
  msgstr ""
8785
 
languages/paid-memberships-pro-es_CL.mo CHANGED
Binary file
languages/paid-memberships-pro-es_CL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:42+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -335,48 +335,58 @@ msgstr "Error interactuando con la base de datos"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
 
 
338
  msgid "Membership level not found."
339
  msgstr "Nivel de membresía no encontrado."
340
 
341
  #: includes/functions.php:1050
342
  #: includes/functions.php:1731
 
343
  msgid "The discount code could not be found."
344
  msgstr "El cupón de descuento no se ha podido encontrar."
345
 
346
  #: includes/functions.php:1066
347
  #: includes/functions.php:1746
 
348
  #, php-format
349
  msgid "This discount code goes into effect on %s."
350
  msgstr "El cupón de descuento entra en efecto en %s."
351
 
352
  #: includes/functions.php:1075
353
  #: includes/functions.php:1753
 
354
  #, php-format
355
  msgid "This discount code expired on %s."
356
  msgstr "El cupón de descuento expiró en %s."
357
 
358
  #: includes/functions.php:1087
359
  #: includes/functions.php:1762
 
360
  msgid "This discount code is no longer valid."
361
  msgstr "Éste cupón de descuento ya no es válido."
362
 
363
  #: includes/functions.php:1102
364
  #: includes/functions.php:1781
 
365
  msgid "This discount code does not apply to this membership level."
366
  msgstr "Este cupón de descuento no se puede aplicar a este nivel de membresía."
367
 
368
  #: includes/functions.php:1110
369
  #: includes/functions.php:1819
 
370
  msgid "This discount code is okay."
371
  msgstr "El cupón de descuento es válido."
372
 
373
  #: includes/functions.php:1134
374
  #: includes/functions.php:1847
 
375
  msgid "and"
376
  msgstr "y"
377
 
378
  #: includes/functions.php:1319
379
  #: includes/functions.php:2409
 
380
  msgid "Sign Up for !!name!! Now"
381
  msgstr "Date de alta en !!name!! ya"
382
 
@@ -1840,6 +1850,7 @@ msgstr "Subtotal"
1840
  #: includes/functions.php:2849
1841
  #: includes/privacy.php:277
1842
  #: adminpages/orders.php:615
 
1843
  msgid "Tax"
1844
  msgstr "Impuesto"
1845
 
@@ -1861,6 +1872,7 @@ msgstr "Cantidad de cupón"
1861
  #: adminpages/dashboard.php:293
1862
  #: adminpages/orders.php:650
1863
  #: adminpages/orders.php:1344
 
1864
  msgid "Total"
1865
  msgstr "Total"
1866
 
@@ -3538,11 +3550,13 @@ msgstr "Si tu cuenta no es activada en unos minutos, por favor contacta al admin
3538
 
3539
  #: pages/invoice.php:77
3540
  #: includes/functions.php:2842
 
3541
  msgid "Subtotal"
3542
  msgstr "Subtotal"
3543
 
3544
  #: pages/invoice.php:80
3545
  #: includes/functions.php:2857
 
3546
  msgid "Coupon"
3547
  msgstr "Cupón"
3548
 
@@ -8677,10 +8691,12 @@ msgid "Error interacting with database: %s"
8677
  msgstr ""
8678
 
8679
  #: includes/functions.php:1722
 
8680
  msgid "No code was given to check."
8681
  msgstr ""
8682
 
8683
  #: includes/functions.php:2433
 
8684
  msgid "Sign Up Now"
8685
  msgstr ""
8686
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:57+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
338
+ #: includes/functions.php:1335
339
+ #: includes/functions.php:1373
340
  msgid "Membership level not found."
341
  msgstr "Nivel de membresía no encontrado."
342
 
343
  #: includes/functions.php:1050
344
  #: includes/functions.php:1731
345
+ #: includes/functions.php:1762
346
  msgid "The discount code could not be found."
347
  msgstr "El cupón de descuento no se ha podido encontrar."
348
 
349
  #: includes/functions.php:1066
350
  #: includes/functions.php:1746
351
+ #: includes/functions.php:1777
352
  #, php-format
353
  msgid "This discount code goes into effect on %s."
354
  msgstr "El cupón de descuento entra en efecto en %s."
355
 
356
  #: includes/functions.php:1075
357
  #: includes/functions.php:1753
358
+ #: includes/functions.php:1784
359
  #, php-format
360
  msgid "This discount code expired on %s."
361
  msgstr "El cupón de descuento expiró en %s."
362
 
363
  #: includes/functions.php:1087
364
  #: includes/functions.php:1762
365
+ #: includes/functions.php:1793
366
  msgid "This discount code is no longer valid."
367
  msgstr "Éste cupón de descuento ya no es válido."
368
 
369
  #: includes/functions.php:1102
370
  #: includes/functions.php:1781
371
+ #: includes/functions.php:1812
372
  msgid "This discount code does not apply to this membership level."
373
  msgstr "Este cupón de descuento no se puede aplicar a este nivel de membresía."
374
 
375
  #: includes/functions.php:1110
376
  #: includes/functions.php:1819
377
+ #: includes/functions.php:1850
378
  msgid "This discount code is okay."
379
  msgstr "El cupón de descuento es válido."
380
 
381
  #: includes/functions.php:1134
382
  #: includes/functions.php:1847
383
+ #: includes/functions.php:1878
384
  msgid "and"
385
  msgstr "y"
386
 
387
  #: includes/functions.php:1319
388
  #: includes/functions.php:2409
389
+ #: includes/functions.php:2440
390
  msgid "Sign Up for !!name!! Now"
391
  msgstr "Date de alta en !!name!! ya"
392
 
1850
  #: includes/functions.php:2849
1851
  #: includes/privacy.php:277
1852
  #: adminpages/orders.php:615
1853
+ #: includes/functions.php:2880
1854
  msgid "Tax"
1855
  msgstr "Impuesto"
1856
 
1872
  #: adminpages/dashboard.php:293
1873
  #: adminpages/orders.php:650
1874
  #: adminpages/orders.php:1344
1875
+ #: includes/functions.php:2909
1876
  msgid "Total"
1877
  msgstr "Total"
1878
 
3550
 
3551
  #: pages/invoice.php:77
3552
  #: includes/functions.php:2842
3553
+ #: includes/functions.php:2873
3554
  msgid "Subtotal"
3555
  msgstr "Subtotal"
3556
 
3557
  #: pages/invoice.php:80
3558
  #: includes/functions.php:2857
3559
+ #: includes/functions.php:2888
3560
  msgid "Coupon"
3561
  msgstr "Cupón"
3562
 
8691
  msgstr ""
8692
 
8693
  #: includes/functions.php:1722
8694
+ #: includes/functions.php:1753
8695
  msgid "No code was given to check."
8696
  msgstr ""
8697
 
8698
  #: includes/functions.php:2433
8699
+ #: includes/functions.php:2464
8700
  msgid "Sign Up Now"
8701
  msgstr ""
8702
 
languages/paid-memberships-pro-es_ES.mo CHANGED
Binary file
languages/paid-memberships-pro-es_ES.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:45+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -335,48 +335,58 @@ msgstr "Error interactuando con la base de datos"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
 
 
338
  msgid "Membership level not found."
339
  msgstr "Tipo de suscripción no encontrado."
340
 
341
  #: includes/functions.php:1050
342
  #: includes/functions.php:1731
 
343
  msgid "The discount code could not be found."
344
  msgstr "El cupón de descuento no se ha podido encontrar."
345
 
346
  #: includes/functions.php:1066
347
  #: includes/functions.php:1746
 
348
  #, php-format
349
  msgid "This discount code goes into effect on %s."
350
  msgstr "El cupón de descuento entra en efecto en %s."
351
 
352
  #: includes/functions.php:1075
353
  #: includes/functions.php:1753
 
354
  #, php-format
355
  msgid "This discount code expired on %s."
356
  msgstr "El cupón de descuento expiró en %s."
357
 
358
  #: includes/functions.php:1087
359
  #: includes/functions.php:1762
 
360
  msgid "This discount code is no longer valid."
361
  msgstr "Éste cupón de descuento ya no es válido."
362
 
363
  #: includes/functions.php:1102
364
  #: includes/functions.php:1781
 
365
  msgid "This discount code does not apply to this membership level."
366
  msgstr "Este cupón de descuento no se puede aplicar a este tipo de suscripción."
367
 
368
  #: includes/functions.php:1110
369
  #: includes/functions.php:1819
 
370
  msgid "This discount code is okay."
371
  msgstr "El cupón de descuento es válido."
372
 
373
  #: includes/functions.php:1134
374
  #: includes/functions.php:1847
 
375
  msgid "and"
376
  msgstr "y"
377
 
378
  #: includes/functions.php:1319
379
  #: includes/functions.php:2409
 
380
  msgid "Sign Up for !!name!! Now"
381
  msgstr "Date de alta en !!name!! ya"
382
 
@@ -1860,6 +1870,7 @@ msgstr "Subtotal"
1860
  #: includes/functions.php:2849
1861
  #: includes/privacy.php:277
1862
  #: adminpages/orders.php:615
 
1863
  msgid "Tax"
1864
  msgstr "Impuesto"
1865
 
@@ -1881,6 +1892,7 @@ msgstr "Cantidad de cupón"
1881
  #: adminpages/dashboard.php:293
1882
  #: adminpages/orders.php:650
1883
  #: adminpages/orders.php:1344
 
1884
  msgid "Total"
1885
  msgstr "Total"
1886
 
@@ -3558,11 +3570,13 @@ msgstr "Si tu cuenta no es activada en unos minutos, por favor contacta al admin
3558
 
3559
  #: pages/invoice.php:77
3560
  #: includes/functions.php:2842
 
3561
  msgid "Subtotal"
3562
  msgstr "Subtotal"
3563
 
3564
  #: pages/invoice.php:80
3565
  #: includes/functions.php:2857
 
3566
  msgid "Coupon"
3567
  msgstr "Cupón"
3568
 
@@ -8697,10 +8711,12 @@ msgid "Error interacting with database: %s"
8697
  msgstr ""
8698
 
8699
  #: includes/functions.php:1722
 
8700
  msgid "No code was given to check."
8701
  msgstr ""
8702
 
8703
  #: includes/functions.php:2433
 
8704
  msgid "Sign Up Now"
8705
  msgstr ""
8706
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:00+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
338
+ #: includes/functions.php:1335
339
+ #: includes/functions.php:1373
340
  msgid "Membership level not found."
341
  msgstr "Tipo de suscripción no encontrado."
342
 
343
  #: includes/functions.php:1050
344
  #: includes/functions.php:1731
345
+ #: includes/functions.php:1762
346
  msgid "The discount code could not be found."
347
  msgstr "El cupón de descuento no se ha podido encontrar."
348
 
349
  #: includes/functions.php:1066
350
  #: includes/functions.php:1746
351
+ #: includes/functions.php:1777
352
  #, php-format
353
  msgid "This discount code goes into effect on %s."
354
  msgstr "El cupón de descuento entra en efecto en %s."
355
 
356
  #: includes/functions.php:1075
357
  #: includes/functions.php:1753
358
+ #: includes/functions.php:1784
359
  #, php-format
360
  msgid "This discount code expired on %s."
361
  msgstr "El cupón de descuento expiró en %s."
362
 
363
  #: includes/functions.php:1087
364
  #: includes/functions.php:1762
365
+ #: includes/functions.php:1793
366
  msgid "This discount code is no longer valid."
367
  msgstr "Éste cupón de descuento ya no es válido."
368
 
369
  #: includes/functions.php:1102
370
  #: includes/functions.php:1781
371
+ #: includes/functions.php:1812
372
  msgid "This discount code does not apply to this membership level."
373
  msgstr "Este cupón de descuento no se puede aplicar a este tipo de suscripción."
374
 
375
  #: includes/functions.php:1110
376
  #: includes/functions.php:1819
377
+ #: includes/functions.php:1850
378
  msgid "This discount code is okay."
379
  msgstr "El cupón de descuento es válido."
380
 
381
  #: includes/functions.php:1134
382
  #: includes/functions.php:1847
383
+ #: includes/functions.php:1878
384
  msgid "and"
385
  msgstr "y"
386
 
387
  #: includes/functions.php:1319
388
  #: includes/functions.php:2409
389
+ #: includes/functions.php:2440
390
  msgid "Sign Up for !!name!! Now"
391
  msgstr "Date de alta en !!name!! ya"
392
 
1870
  #: includes/functions.php:2849
1871
  #: includes/privacy.php:277
1872
  #: adminpages/orders.php:615
1873
+ #: includes/functions.php:2880
1874
  msgid "Tax"
1875
  msgstr "Impuesto"
1876
 
1892
  #: adminpages/dashboard.php:293
1893
  #: adminpages/orders.php:650
1894
  #: adminpages/orders.php:1344
1895
+ #: includes/functions.php:2909
1896
  msgid "Total"
1897
  msgstr "Total"
1898
 
3570
 
3571
  #: pages/invoice.php:77
3572
  #: includes/functions.php:2842
3573
+ #: includes/functions.php:2873
3574
  msgid "Subtotal"
3575
  msgstr "Subtotal"
3576
 
3577
  #: pages/invoice.php:80
3578
  #: includes/functions.php:2857
3579
+ #: includes/functions.php:2888
3580
  msgid "Coupon"
3581
  msgstr "Cupón"
3582
 
8711
  msgstr ""
8712
 
8713
  #: includes/functions.php:1722
8714
+ #: includes/functions.php:1753
8715
  msgid "No code was given to check."
8716
  msgstr ""
8717
 
8718
  #: includes/functions.php:2433
8719
+ #: includes/functions.php:2464
8720
  msgid "Sign Up Now"
8721
  msgstr ""
8722
 
languages/paid-memberships-pro-es_PE.mo CHANGED
Binary file
languages/paid-memberships-pro-es_PE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:48+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -335,48 +335,58 @@ msgstr "Error interactuando con la base de datos"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
 
 
338
  msgid "Membership level not found."
339
  msgstr "Nivel de membresía no encontrado."
340
 
341
  #: includes/functions.php:1050
342
  #: includes/functions.php:1731
 
343
  msgid "The discount code could not be found."
344
  msgstr "El cupón de descuento no se ha podido encontrar."
345
 
346
  #: includes/functions.php:1066
347
  #: includes/functions.php:1746
 
348
  #, php-format
349
  msgid "This discount code goes into effect on %s."
350
  msgstr "El cupón de descuento entra en efecto en %s."
351
 
352
  #: includes/functions.php:1075
353
  #: includes/functions.php:1753
 
354
  #, php-format
355
  msgid "This discount code expired on %s."
356
  msgstr "El cupón de descuento expiró en %s."
357
 
358
  #: includes/functions.php:1087
359
  #: includes/functions.php:1762
 
360
  msgid "This discount code is no longer valid."
361
  msgstr "Éste cupón de descuento ya no es válido."
362
 
363
  #: includes/functions.php:1102
364
  #: includes/functions.php:1781
 
365
  msgid "This discount code does not apply to this membership level."
366
  msgstr "Este cupón de descuento no se puede aplicar a este nivel de membresía."
367
 
368
  #: includes/functions.php:1110
369
  #: includes/functions.php:1819
 
370
  msgid "This discount code is okay."
371
  msgstr "El cupón de descuento es válido."
372
 
373
  #: includes/functions.php:1134
374
  #: includes/functions.php:1847
 
375
  msgid "and"
376
  msgstr "y"
377
 
378
  #: includes/functions.php:1319
379
  #: includes/functions.php:2409
 
380
  msgid "Sign Up for !!name!! Now"
381
  msgstr "Date de alta en !!name!! ya"
382
 
@@ -1840,6 +1850,7 @@ msgstr "Subtotal"
1840
  #: includes/functions.php:2849
1841
  #: includes/privacy.php:277
1842
  #: adminpages/orders.php:615
 
1843
  msgid "Tax"
1844
  msgstr "Impuesto"
1845
 
@@ -1861,6 +1872,7 @@ msgstr "Cantidad de cupón"
1861
  #: adminpages/dashboard.php:293
1862
  #: adminpages/orders.php:650
1863
  #: adminpages/orders.php:1344
 
1864
  msgid "Total"
1865
  msgstr "Total"
1866
 
@@ -3538,11 +3550,13 @@ msgstr "Si tu cuenta no es activada en unos minutos, por favor contacta al admin
3538
 
3539
  #: pages/invoice.php:77
3540
  #: includes/functions.php:2842
 
3541
  msgid "Subtotal"
3542
  msgstr "Subtotal"
3543
 
3544
  #: pages/invoice.php:80
3545
  #: includes/functions.php:2857
 
3546
  msgid "Coupon"
3547
  msgstr "Cupón"
3548
 
@@ -8677,10 +8691,12 @@ msgid "Error interacting with database: %s"
8677
  msgstr ""
8678
 
8679
  #: includes/functions.php:1722
 
8680
  msgid "No code was given to check."
8681
  msgstr ""
8682
 
8683
  #: includes/functions.php:2433
 
8684
  msgid "Sign Up Now"
8685
  msgstr ""
8686
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
335
  #: includes/functions.php:668
336
  #: includes/functions.php:1304
337
  #: includes/functions.php:1342
338
+ #: includes/functions.php:1335
339
+ #: includes/functions.php:1373
340
  msgid "Membership level not found."
341
  msgstr "Nivel de membresía no encontrado."
342
 
343
  #: includes/functions.php:1050
344
  #: includes/functions.php:1731
345
+ #: includes/functions.php:1762
346
  msgid "The discount code could not be found."
347
  msgstr "El cupón de descuento no se ha podido encontrar."
348
 
349
  #: includes/functions.php:1066
350
  #: includes/functions.php:1746
351
+ #: includes/functions.php:1777
352
  #, php-format
353
  msgid "This discount code goes into effect on %s."
354
  msgstr "El cupón de descuento entra en efecto en %s."
355
 
356
  #: includes/functions.php:1075
357
  #: includes/functions.php:1753
358
+ #: includes/functions.php:1784
359
  #, php-format
360
  msgid "This discount code expired on %s."
361
  msgstr "El cupón de descuento expiró en %s."
362
 
363
  #: includes/functions.php:1087
364
  #: includes/functions.php:1762
365
+ #: includes/functions.php:1793
366
  msgid "This discount code is no longer valid."
367
  msgstr "Éste cupón de descuento ya no es válido."
368
 
369
  #: includes/functions.php:1102
370
  #: includes/functions.php:1781
371
+ #: includes/functions.php:1812
372
  msgid "This discount code does not apply to this membership level."
373
  msgstr "Este cupón de descuento no se puede aplicar a este nivel de membresía."
374
 
375
  #: includes/functions.php:1110
376
  #: includes/functions.php:1819
377
+ #: includes/functions.php:1850
378
  msgid "This discount code is okay."
379
  msgstr "El cupón de descuento es válido."
380
 
381
  #: includes/functions.php:1134
382
  #: includes/functions.php:1847
383
+ #: includes/functions.php:1878
384
  msgid "and"
385
  msgstr "y"
386
 
387
  #: includes/functions.php:1319
388
  #: includes/functions.php:2409
389
+ #: includes/functions.php:2440
390
  msgid "Sign Up for !!name!! Now"
391
  msgstr "Date de alta en !!name!! ya"
392
 
1850
  #: includes/functions.php:2849
1851
  #: includes/privacy.php:277
1852
  #: adminpages/orders.php:615
1853
+ #: includes/functions.php:2880
1854
  msgid "Tax"
1855
  msgstr "Impuesto"
1856
 
1872
  #: adminpages/dashboard.php:293
1873
  #: adminpages/orders.php:650
1874
  #: adminpages/orders.php:1344
1875
+ #: includes/functions.php:2909
1876
  msgid "Total"
1877
  msgstr "Total"
1878
 
3550
 
3551
  #: pages/invoice.php:77
3552
  #: includes/functions.php:2842
3553
+ #: includes/functions.php:2873
3554
  msgid "Subtotal"
3555
  msgstr "Subtotal"
3556
 
3557
  #: pages/invoice.php:80
3558
  #: includes/functions.php:2857
3559
+ #: includes/functions.php:2888
3560
  msgid "Coupon"
3561
  msgstr "Cupón"
3562
 
8691
  msgstr ""
8692
 
8693
  #: includes/functions.php:1722
8694
+ #: includes/functions.php:1753
8695
  msgid "No code was given to check."
8696
  msgstr ""
8697
 
8698
  #: includes/functions.php:2433
8699
+ #: includes/functions.php:2464
8700
  msgid "Sign Up Now"
8701
  msgstr ""
8702
 
languages/paid-memberships-pro-et_EE.mo CHANGED
Binary file
languages/paid-memberships-pro-et_EE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:50+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2655,6 +2655,7 @@ msgstr "Kokku liidetud"
2655
  #: includes/functions.php:2849
2656
  #: includes/privacy.php:277
2657
  #: adminpages/orders.php:615
 
2658
  msgid "Tax"
2659
  msgstr "Maks"
2660
 
@@ -2686,6 +2687,7 @@ msgstr "Kuppongi summa"
2686
  #: adminpages/dashboard.php:293
2687
  #: adminpages/orders.php:650
2688
  #: adminpages/orders.php:1344
 
2689
  msgid "Total"
2690
  msgstr "Kokku"
2691
 
@@ -4008,6 +4010,7 @@ msgstr "Hind"
4008
  #: pages/invoice.php:79
4009
  #: pages/invoice.php:77
4010
  #: includes/functions.php:2842
 
4011
  msgid "Subtotal"
4012
  msgstr "Kokku"
4013
 
@@ -6233,6 +6236,8 @@ msgstr "Tekkis rike andmebaasiga suhtlemisel"
6233
  #: includes/functions.php:826
6234
  #: includes/functions.php:1304
6235
  #: includes/functions.php:1342
 
 
6236
  msgid "Membership level not found."
6237
  msgstr "Liikme taset ei leitud."
6238
 
@@ -6247,6 +6252,7 @@ msgstr "Liikme taset ei leitud."
6247
  #: includes/functions.php:1173
6248
  #: includes/functions.php:1196
6249
  #: includes/functions.php:1722
 
6250
  msgid "No code was given to check."
6251
  msgstr "Tšekile ei antud koodi"
6252
 
@@ -6268,6 +6274,7 @@ msgstr "Tšekile ei antud koodi"
6268
  #: includes/functions.php:1182
6269
  #: includes/functions.php:1205
6270
  #: includes/functions.php:1731
 
6271
  msgid "The discount code could not be found."
6272
  msgstr "Seda allahindluse koodi ei suudetud leida."
6273
 
@@ -6289,6 +6296,7 @@ msgstr "Seda allahindluse koodi ei suudetud leida."
6289
  #: includes/functions.php:1197
6290
  #: includes/functions.php:1220
6291
  #: includes/functions.php:1746
 
6292
  #, php-format
6293
  msgid "This discount code goes into effect on %s."
6294
  msgstr "See allahindluse kood võetakse kasutusse %s."
@@ -6311,6 +6319,7 @@ msgstr "See allahindluse kood võetakse kasutusse %s."
6311
  #: includes/functions.php:1204
6312
  #: includes/functions.php:1227
6313
  #: includes/functions.php:1753
 
6314
  #, php-format
6315
  msgid "This discount code expired on %s."
6316
  msgstr "See allahindluse kood aegub %s."
@@ -6333,6 +6342,7 @@ msgstr "See allahindluse kood aegub %s."
6333
  #: includes/functions.php:1214
6334
  #: includes/functions.php:1237
6335
  #: includes/functions.php:1762
 
6336
  msgid "This discount code is no longer valid."
6337
  msgstr "See allahindluse kood ei ole enam aktiivne."
6338
 
@@ -6353,6 +6363,7 @@ msgstr "See allahindluse kood ei ole enam aktiivne."
6353
  #: includes/functions.php:1227
6354
  #: includes/functions.php:1250
6355
  #: includes/functions.php:1781
 
6356
  msgid "This discount code does not apply to this membership level."
6357
  msgstr "See allahindluse kood ei kehti selle liikme tasemega."
6358
 
@@ -6374,6 +6385,7 @@ msgstr "See allahindluse kood ei kehti selle liikme tasemega."
6374
  #: includes/functions.php:1253
6375
  #: includes/functions.php:1276
6376
  #: includes/functions.php:1819
 
6377
  msgid "This discount code is okay."
6378
  msgstr "Allahindluse kood on korras."
6379
 
@@ -6394,6 +6406,7 @@ msgstr "Allahindluse kood on korras."
6394
  #: includes/functions.php:1278
6395
  #: includes/functions.php:1301
6396
  #: includes/functions.php:1847
 
6397
  msgid "and"
6398
  msgstr "ja"
6399
 
@@ -6415,6 +6428,7 @@ msgstr "ja"
6415
  #: includes/functions.php:1496
6416
  #: includes/functions.php:1501
6417
  #: includes/functions.php:2409
 
6418
  msgid "Sign Up for !!name!! Now"
6419
  msgstr "Registreeruge !!name!! nüüd"
6420
 
@@ -7310,6 +7324,7 @@ msgstr "Kui sinu konto ei ole aktiveeritud mõne minuti jooksul, palun võtke ü
7310
  #: pages/invoice.php:82
7311
  #: pages/invoice.php:80
7312
  #: includes/functions.php:2857
 
7313
  msgid "Coupon"
7314
  msgstr "Kupong"
7315
 
@@ -12354,6 +12369,7 @@ msgid "Error interacting with database: %s"
12354
  msgstr ""
12355
 
12356
  #: includes/functions.php:2433
 
12357
  msgid "Sign Up Now"
12358
  msgstr ""
12359
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:04+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2655
  #: includes/functions.php:2849
2656
  #: includes/privacy.php:277
2657
  #: adminpages/orders.php:615
2658
+ #: includes/functions.php:2880
2659
  msgid "Tax"
2660
  msgstr "Maks"
2661
 
2687
  #: adminpages/dashboard.php:293
2688
  #: adminpages/orders.php:650
2689
  #: adminpages/orders.php:1344
2690
+ #: includes/functions.php:2909
2691
  msgid "Total"
2692
  msgstr "Kokku"
2693
 
4010
  #: pages/invoice.php:79
4011
  #: pages/invoice.php:77
4012
  #: includes/functions.php:2842
4013
+ #: includes/functions.php:2873
4014
  msgid "Subtotal"
4015
  msgstr "Kokku"
4016
 
6236
  #: includes/functions.php:826
6237
  #: includes/functions.php:1304
6238
  #: includes/functions.php:1342
6239
+ #: includes/functions.php:1335
6240
+ #: includes/functions.php:1373
6241
  msgid "Membership level not found."
6242
  msgstr "Liikme taset ei leitud."
6243
 
6252
  #: includes/functions.php:1173
6253
  #: includes/functions.php:1196
6254
  #: includes/functions.php:1722
6255
+ #: includes/functions.php:1753
6256
  msgid "No code was given to check."
6257
  msgstr "Tšekile ei antud koodi"
6258
 
6274
  #: includes/functions.php:1182
6275
  #: includes/functions.php:1205
6276
  #: includes/functions.php:1731
6277
+ #: includes/functions.php:1762
6278
  msgid "The discount code could not be found."
6279
  msgstr "Seda allahindluse koodi ei suudetud leida."
6280
 
6296
  #: includes/functions.php:1197
6297
  #: includes/functions.php:1220
6298
  #: includes/functions.php:1746
6299
+ #: includes/functions.php:1777
6300
  #, php-format
6301
  msgid "This discount code goes into effect on %s."
6302
  msgstr "See allahindluse kood võetakse kasutusse %s."
6319
  #: includes/functions.php:1204
6320
  #: includes/functions.php:1227
6321
  #: includes/functions.php:1753
6322
+ #: includes/functions.php:1784
6323
  #, php-format
6324
  msgid "This discount code expired on %s."
6325
  msgstr "See allahindluse kood aegub %s."
6342
  #: includes/functions.php:1214
6343
  #: includes/functions.php:1237
6344
  #: includes/functions.php:1762
6345
+ #: includes/functions.php:1793
6346
  msgid "This discount code is no longer valid."
6347
  msgstr "See allahindluse kood ei ole enam aktiivne."
6348
 
6363
  #: includes/functions.php:1227
6364
  #: includes/functions.php:1250
6365
  #: includes/functions.php:1781
6366
+ #: includes/functions.php:1812
6367
  msgid "This discount code does not apply to this membership level."
6368
  msgstr "See allahindluse kood ei kehti selle liikme tasemega."
6369
 
6385
  #: includes/functions.php:1253
6386
  #: includes/functions.php:1276
6387
  #: includes/functions.php:1819
6388
+ #: includes/functions.php:1850
6389
  msgid "This discount code is okay."
6390
  msgstr "Allahindluse kood on korras."
6391
 
6406
  #: includes/functions.php:1278
6407
  #: includes/functions.php:1301
6408
  #: includes/functions.php:1847
6409
+ #: includes/functions.php:1878
6410
  msgid "and"
6411
  msgstr "ja"
6412
 
6428
  #: includes/functions.php:1496
6429
  #: includes/functions.php:1501
6430
  #: includes/functions.php:2409
6431
+ #: includes/functions.php:2440
6432
  msgid "Sign Up for !!name!! Now"
6433
  msgstr "Registreeruge !!name!! nüüd"
6434
 
7324
  #: pages/invoice.php:82
7325
  #: pages/invoice.php:80
7326
  #: includes/functions.php:2857
7327
+ #: includes/functions.php:2888
7328
  msgid "Coupon"
7329
  msgstr "Kupong"
7330
 
12369
  msgstr ""
12370
 
12371
  #: includes/functions.php:2433
12372
+ #: includes/functions.php:2464
12373
  msgid "Sign Up Now"
12374
  msgstr ""
12375
 
languages/paid-memberships-pro-fa_IR.mo CHANGED
Binary file
languages/paid-memberships-pro-fa_IR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:53+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2585,6 +2585,7 @@ msgstr "جمع کل"
2585
  #: includes/functions.php:2849
2586
  #: includes/privacy.php:277
2587
  #: adminpages/orders.php:615
 
2588
  msgid "Tax"
2589
  msgstr "مالیات"
2590
 
@@ -2611,6 +2612,7 @@ msgstr "مقدار کپن"
2611
  #: adminpages/dashboard.php:293
2612
  #: adminpages/orders.php:650
2613
  #: adminpages/orders.php:1344
 
2614
  msgid "Total"
2615
  msgstr "مجموع"
2616
 
@@ -5926,6 +5928,8 @@ msgstr "خطا در برقراری ارتباط با پایگاه داده"
5926
  #: includes/functions.php:803
5927
  #: includes/functions.php:1304
5928
  #: includes/functions.php:1342
 
 
5929
  msgid "Membership level not found."
5930
  msgstr "سطح عضویت یافت نشد."
5931
 
@@ -5939,6 +5943,7 @@ msgstr "سطح عضویت یافت نشد."
5939
  #: includes/functions.php:1157
5940
  #: includes/functions.php:1173
5941
  #: includes/functions.php:1722
 
5942
  msgid "No code was given to check."
5943
  msgstr "کدی برای بررسی داده نشد."
5944
 
@@ -5959,6 +5964,7 @@ msgstr "کدی برای بررسی داده نشد."
5959
  #: includes/functions.php:1166
5960
  #: includes/functions.php:1182
5961
  #: includes/functions.php:1731
 
5962
  msgid "The discount code could not be found."
5963
  msgstr "کد تخفیف یافت نمی شود."
5964
 
@@ -5979,6 +5985,7 @@ msgstr "کد تخفیف یافت نمی شود."
5979
  #: includes/functions.php:1181
5980
  #: includes/functions.php:1197
5981
  #: includes/functions.php:1746
 
5982
  #, php-format
5983
  msgid "This discount code goes into effect on %s."
5984
  msgstr "این کد تخفیف برای %s موثر است"
@@ -6000,6 +6007,7 @@ msgstr "این کد تخفیف برای %s موثر است"
6000
  #: includes/functions.php:1188
6001
  #: includes/functions.php:1204
6002
  #: includes/functions.php:1753
 
6003
  #, php-format
6004
  msgid "This discount code expired on %s."
6005
  msgstr "تاریخ اتمام کد تخفیف در %s."
@@ -6021,6 +6029,7 @@ msgstr "تاریخ اتمام کد تخفیف در %s."
6021
  #: includes/functions.php:1198
6022
  #: includes/functions.php:1214
6023
  #: includes/functions.php:1762
 
6024
  msgid "This discount code is no longer valid."
6025
  msgstr "این کد تخفیف دیگر معتبر نیست."
6026
 
@@ -6040,6 +6049,7 @@ msgstr "این کد تخفیف دیگر معتبر نیست."
6040
  #: includes/functions.php:1211
6041
  #: includes/functions.php:1227
6042
  #: includes/functions.php:1781
 
6043
  msgid "This discount code does not apply to this membership level."
6044
  msgstr "این کد تخفیف روی این سطح عضویت اعمال نمی شود."
6045
 
@@ -6060,6 +6070,7 @@ msgstr "این کد تخفیف روی این سطح عضویت اعمال نمی
6060
  #: includes/functions.php:1237
6061
  #: includes/functions.php:1253
6062
  #: includes/functions.php:1819
 
6063
  msgid "This discount code is okay."
6064
  msgstr "کد تخفیف صحیح است."
6065
 
@@ -6079,6 +6090,7 @@ msgstr "کد تخفیف صحیح است."
6079
  #: includes/functions.php:1262
6080
  #: includes/functions.php:1278
6081
  #: includes/functions.php:1847
 
6082
  msgid "and"
6083
  msgstr "و"
6084
 
@@ -6099,6 +6111,7 @@ msgstr "و"
6099
  #: includes/functions.php:1473
6100
  #: includes/functions.php:1496
6101
  #: includes/functions.php:2409
 
6102
  msgid "Sign Up for !!name!! Now"
6103
  msgstr "هم اکنون برای !!name!! ثبت نام کنید"
6104
 
@@ -6952,12 +6965,14 @@ msgstr "اگر حساب شما ظرف چند دقیقه آینده فعال نش
6952
  #: pages/invoice.php:79
6953
  #: pages/invoice.php:77
6954
  #: includes/functions.php:2842
 
6955
  msgid "Subtotal"
6956
  msgstr "مجموع"
6957
 
6958
  #: pages/invoice.php:82
6959
  #: pages/invoice.php:80
6960
  #: includes/functions.php:2857
 
6961
  msgid "Coupon"
6962
  msgstr "کوپن تخفیف"
6963
 
@@ -11978,6 +11993,7 @@ msgid "Error interacting with database: %s"
11978
  msgstr ""
11979
 
11980
  #: includes/functions.php:2433
 
11981
  msgid "Sign Up Now"
11982
  msgstr ""
11983
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:07+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2585
  #: includes/functions.php:2849
2586
  #: includes/privacy.php:277
2587
  #: adminpages/orders.php:615
2588
+ #: includes/functions.php:2880
2589
  msgid "Tax"
2590
  msgstr "مالیات"
2591
 
2612
  #: adminpages/dashboard.php:293
2613
  #: adminpages/orders.php:650
2614
  #: adminpages/orders.php:1344
2615
+ #: includes/functions.php:2909
2616
  msgid "Total"
2617
  msgstr "مجموع"
2618
 
5928
  #: includes/functions.php:803
5929
  #: includes/functions.php:1304
5930
  #: includes/functions.php:1342
5931
+ #: includes/functions.php:1335
5932
+ #: includes/functions.php:1373
5933
  msgid "Membership level not found."
5934
  msgstr "سطح عضویت یافت نشد."
5935
 
5943
  #: includes/functions.php:1157
5944
  #: includes/functions.php:1173
5945
  #: includes/functions.php:1722
5946
+ #: includes/functions.php:1753
5947
  msgid "No code was given to check."
5948
  msgstr "کدی برای بررسی داده نشد."
5949
 
5964
  #: includes/functions.php:1166
5965
  #: includes/functions.php:1182
5966
  #: includes/functions.php:1731
5967
+ #: includes/functions.php:1762
5968
  msgid "The discount code could not be found."
5969
  msgstr "کد تخفیف یافت نمی شود."
5970
 
5985
  #: includes/functions.php:1181
5986
  #: includes/functions.php:1197
5987
  #: includes/functions.php:1746
5988
+ #: includes/functions.php:1777
5989
  #, php-format
5990
  msgid "This discount code goes into effect on %s."
5991
  msgstr "این کد تخفیف برای %s موثر است"
6007
  #: includes/functions.php:1188
6008
  #: includes/functions.php:1204
6009
  #: includes/functions.php:1753
6010
+ #: includes/functions.php:1784
6011
  #, php-format
6012
  msgid "This discount code expired on %s."
6013
  msgstr "تاریخ اتمام کد تخفیف در %s."
6029
  #: includes/functions.php:1198
6030
  #: includes/functions.php:1214
6031
  #: includes/functions.php:1762
6032
+ #: includes/functions.php:1793
6033
  msgid "This discount code is no longer valid."
6034
  msgstr "این کد تخفیف دیگر معتبر نیست."
6035
 
6049
  #: includes/functions.php:1211
6050
  #: includes/functions.php:1227
6051
  #: includes/functions.php:1781
6052
+ #: includes/functions.php:1812
6053
  msgid "This discount code does not apply to this membership level."
6054
  msgstr "این کد تخفیف روی این سطح عضویت اعمال نمی شود."
6055
 
6070
  #: includes/functions.php:1237
6071
  #: includes/functions.php:1253
6072
  #: includes/functions.php:1819
6073
+ #: includes/functions.php:1850
6074
  msgid "This discount code is okay."
6075
  msgstr "کد تخفیف صحیح است."
6076
 
6090
  #: includes/functions.php:1262
6091
  #: includes/functions.php:1278
6092
  #: includes/functions.php:1847
6093
+ #: includes/functions.php:1878
6094
  msgid "and"
6095
  msgstr "و"
6096
 
6111
  #: includes/functions.php:1473
6112
  #: includes/functions.php:1496
6113
  #: includes/functions.php:2409
6114
+ #: includes/functions.php:2440
6115
  msgid "Sign Up for !!name!! Now"
6116
  msgstr "هم اکنون برای !!name!! ثبت نام کنید"
6117
 
6965
  #: pages/invoice.php:79
6966
  #: pages/invoice.php:77
6967
  #: includes/functions.php:2842
6968
+ #: includes/functions.php:2873
6969
  msgid "Subtotal"
6970
  msgstr "مجموع"
6971
 
6972
  #: pages/invoice.php:82
6973
  #: pages/invoice.php:80
6974
  #: includes/functions.php:2857
6975
+ #: includes/functions.php:2888
6976
  msgid "Coupon"
6977
  msgstr "کوپن تخفیف"
6978
 
11993
  msgstr ""
11994
 
11995
  #: includes/functions.php:2433
11996
+ #: includes/functions.php:2464
11997
  msgid "Sign Up Now"
11998
  msgstr ""
11999
 
languages/paid-memberships-pro-fi.mo CHANGED
Binary file
languages/paid-memberships-pro-fi.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:56+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1545,6 +1545,7 @@ msgstr "Välisumma"
1545
  #: includes/functions.php:2849
1546
  #: includes/privacy.php:277
1547
  #: adminpages/orders.php:615
 
1548
  msgid "Tax"
1549
  msgstr "Vero"
1550
 
@@ -1566,6 +1567,7 @@ msgstr "Alennuskuponki"
1566
  #: adminpages/dashboard.php:293
1567
  #: adminpages/orders.php:650
1568
  #: adminpages/orders.php:1344
 
1569
  msgid "Total"
1570
  msgstr "Yhteensä"
1571
 
@@ -3694,53 +3696,64 @@ msgstr ""
3694
  #: includes/functions.php:803
3695
  #: includes/functions.php:1304
3696
  #: includes/functions.php:1342
 
 
3697
  msgid "Membership level not found."
3698
  msgstr ""
3699
 
3700
  #: includes/functions.php:1173
3701
  #: includes/functions.php:1722
 
3702
  msgid "No code was given to check."
3703
  msgstr ""
3704
 
3705
  #: includes/functions.php:1182
3706
  #: includes/functions.php:1731
 
3707
  msgid "The discount code could not be found."
3708
  msgstr ""
3709
 
3710
  #: includes/functions.php:1197
3711
  #: includes/functions.php:1746
 
3712
  #, php-format
3713
  msgid "This discount code goes into effect on %s."
3714
  msgstr ""
3715
 
3716
  #: includes/functions.php:1204
3717
  #: includes/functions.php:1753
 
3718
  #, php-format
3719
  msgid "This discount code expired on %s."
3720
  msgstr ""
3721
 
3722
  #: includes/functions.php:1214
3723
  #: includes/functions.php:1762
 
3724
  msgid "This discount code is no longer valid."
3725
  msgstr ""
3726
 
3727
  #: includes/functions.php:1227
3728
  #: includes/functions.php:1781
 
3729
  msgid "This discount code does not apply to this membership level."
3730
  msgstr ""
3731
 
3732
  #: includes/functions.php:1253
3733
  #: includes/functions.php:1819
 
3734
  msgid "This discount code is okay."
3735
  msgstr ""
3736
 
3737
  #: includes/functions.php:1278
3738
  #: includes/functions.php:1847
 
3739
  msgid "and"
3740
  msgstr "ja"
3741
 
3742
  #: includes/functions.php:1473
3743
  #: includes/functions.php:2409
 
3744
  msgid "Sign Up for !!name!! Now"
3745
  msgstr "Rekisteröidy !!name!!ksi nyt"
3746
 
@@ -4281,11 +4294,13 @@ msgstr ""
4281
 
4282
  #: pages/invoice.php:79
4283
  #: includes/functions.php:2842
 
4284
  msgid "Subtotal"
4285
  msgstr "Välisumma"
4286
 
4287
  #: pages/invoice.php:82
4288
  #: includes/functions.php:2857
 
4289
  msgid "Coupon"
4290
  msgstr ""
4291
 
@@ -9112,6 +9127,7 @@ msgid "Error interacting with database: %s"
9112
  msgstr ""
9113
 
9114
  #: includes/functions.php:2433
 
9115
  msgid "Sign Up Now"
9116
  msgstr ""
9117
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:09+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1545
  #: includes/functions.php:2849
1546
  #: includes/privacy.php:277
1547
  #: adminpages/orders.php:615
1548
+ #: includes/functions.php:2880
1549
  msgid "Tax"
1550
  msgstr "Vero"
1551
 
1567
  #: adminpages/dashboard.php:293
1568
  #: adminpages/orders.php:650
1569
  #: adminpages/orders.php:1344
1570
+ #: includes/functions.php:2909
1571
  msgid "Total"
1572
  msgstr "Yhteensä"
1573
 
3696
  #: includes/functions.php:803
3697
  #: includes/functions.php:1304
3698
  #: includes/functions.php:1342
3699
+ #: includes/functions.php:1335
3700
+ #: includes/functions.php:1373
3701
  msgid "Membership level not found."
3702
  msgstr ""
3703
 
3704
  #: includes/functions.php:1173
3705
  #: includes/functions.php:1722
3706
+ #: includes/functions.php:1753
3707
  msgid "No code was given to check."
3708
  msgstr ""
3709
 
3710
  #: includes/functions.php:1182
3711
  #: includes/functions.php:1731
3712
+ #: includes/functions.php:1762
3713
  msgid "The discount code could not be found."
3714
  msgstr ""
3715
 
3716
  #: includes/functions.php:1197
3717
  #: includes/functions.php:1746
3718
+ #: includes/functions.php:1777
3719
  #, php-format
3720
  msgid "This discount code goes into effect on %s."
3721
  msgstr ""
3722
 
3723
  #: includes/functions.php:1204
3724
  #: includes/functions.php:1753
3725
+ #: includes/functions.php:1784
3726
  #, php-format
3727
  msgid "This discount code expired on %s."
3728
  msgstr ""
3729
 
3730
  #: includes/functions.php:1214
3731
  #: includes/functions.php:1762
3732
+ #: includes/functions.php:1793
3733
  msgid "This discount code is no longer valid."
3734
  msgstr ""
3735
 
3736
  #: includes/functions.php:1227
3737
  #: includes/functions.php:1781
3738
+ #: includes/functions.php:1812
3739
  msgid "This discount code does not apply to this membership level."
3740
  msgstr ""
3741
 
3742
  #: includes/functions.php:1253
3743
  #: includes/functions.php:1819
3744
+ #: includes/functions.php:1850
3745
  msgid "This discount code is okay."
3746
  msgstr ""
3747
 
3748
  #: includes/functions.php:1278
3749
  #: includes/functions.php:1847
3750
+ #: includes/functions.php:1878
3751
  msgid "and"
3752
  msgstr "ja"
3753
 
3754
  #: includes/functions.php:1473
3755
  #: includes/functions.php:2409
3756
+ #: includes/functions.php:2440
3757
  msgid "Sign Up for !!name!! Now"
3758
  msgstr "Rekisteröidy !!name!!ksi nyt"
3759
 
4294
 
4295
  #: pages/invoice.php:79
4296
  #: includes/functions.php:2842
4297
+ #: includes/functions.php:2873
4298
  msgid "Subtotal"
4299
  msgstr "Välisumma"
4300
 
4301
  #: pages/invoice.php:82
4302
  #: includes/functions.php:2857
4303
+ #: includes/functions.php:2888
4304
  msgid "Coupon"
4305
  msgstr ""
4306
 
9127
  msgstr ""
9128
 
9129
  #: includes/functions.php:2433
9130
+ #: includes/functions.php:2464
9131
  msgid "Sign Up Now"
9132
  msgstr ""
9133
 
languages/paid-memberships-pro-fr_FR.mo CHANGED
Binary file
languages/paid-memberships-pro-fr_FR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:58+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1553,6 +1553,7 @@ msgstr "Sous-total"
1553
  #: includes/functions.php:2849
1554
  #: includes/privacy.php:277
1555
  #: adminpages/orders.php:615
 
1556
  msgid "Tax"
1557
  msgstr "Taxe"
1558
 
@@ -1574,6 +1575,7 @@ msgstr "Montant du coupon"
1574
  #: adminpages/dashboard.php:293
1575
  #: adminpages/orders.php:650
1576
  #: adminpages/orders.php:1344
 
1577
  msgid "Total"
1578
  msgstr "Total"
1579
 
@@ -3674,53 +3676,64 @@ msgstr "Erreur interagissant avec la base de données."
3674
  #: includes/functions.php:787
3675
  #: includes/functions.php:1304
3676
  #: includes/functions.php:1342
 
 
3677
  msgid "Membership level not found."
3678
  msgstr "Niveau d'adhésion introuvable."
3679
 
3680
  #: includes/functions.php:1157
3681
  #: includes/functions.php:1722
 
3682
  msgid "No code was given to check."
3683
  msgstr "Aucun code à vérifier."
3684
 
3685
  #: includes/functions.php:1166
3686
  #: includes/functions.php:1731
 
3687
  msgid "The discount code could not be found."
3688
  msgstr "Le code de réduction est introuvable."
3689
 
3690
  #: includes/functions.php:1181
3691
  #: includes/functions.php:1746
 
3692
  #, php-format
3693
  msgid "This discount code goes into effect on %s."
3694
  msgstr "Ce code de réduction entrera en vigueur le %s."
3695
 
3696
  #: includes/functions.php:1188
3697
  #: includes/functions.php:1753
 
3698
  #, php-format
3699
  msgid "This discount code expired on %s."
3700
  msgstr "Ce code de réduction a expiré le %s."
3701
 
3702
  #: includes/functions.php:1198
3703
  #: includes/functions.php:1762
 
3704
  msgid "This discount code is no longer valid."
3705
  msgstr "Ce code de réduction n'est plus valide."
3706
 
3707
  #: includes/functions.php:1211
3708
  #: includes/functions.php:1781
 
3709
  msgid "This discount code does not apply to this membership level."
3710
  msgstr "Ce code de réduction ne s'applique pas à ce niveau d'adhésion."
3711
 
3712
  #: includes/functions.php:1237
3713
  #: includes/functions.php:1819
 
3714
  msgid "This discount code is okay."
3715
  msgstr "Ce code de réduction est valide."
3716
 
3717
  #: includes/functions.php:1262
3718
  #: includes/functions.php:1847
 
3719
  msgid "and"
3720
  msgstr "et"
3721
 
3722
  #: includes/functions.php:1457
3723
  #: includes/functions.php:2409
 
3724
  msgid "Sign Up for !!name!! Now"
3725
  msgstr "!!name!!, inscrivez-vous maintenant !"
3726
 
@@ -4261,11 +4274,13 @@ msgstr "Si votre compte n'est pas activé d'ici quelques minutes, veuillez conta
4261
 
4262
  #: pages/invoice.php:79
4263
  #: includes/functions.php:2842
 
4264
  msgid "Subtotal"
4265
  msgstr "Sous-total"
4266
 
4267
  #: pages/invoice.php:82
4268
  #: includes/functions.php:2857
 
4269
  msgid "Coupon"
4270
  msgstr "Promo"
4271
 
@@ -9121,6 +9136,7 @@ msgid "Error interacting with database: %s"
9121
  msgstr ""
9122
 
9123
  #: includes/functions.php:2433
 
9124
  msgid "Sign Up Now"
9125
  msgstr ""
9126
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:12+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1553
  #: includes/functions.php:2849
1554
  #: includes/privacy.php:277
1555
  #: adminpages/orders.php:615
1556
+ #: includes/functions.php:2880
1557
  msgid "Tax"
1558
  msgstr "Taxe"
1559
 
1575
  #: adminpages/dashboard.php:293
1576
  #: adminpages/orders.php:650
1577
  #: adminpages/orders.php:1344
1578
+ #: includes/functions.php:2909
1579
  msgid "Total"
1580
  msgstr "Total"
1581
 
3676
  #: includes/functions.php:787
3677
  #: includes/functions.php:1304
3678
  #: includes/functions.php:1342
3679
+ #: includes/functions.php:1335
3680
+ #: includes/functions.php:1373
3681
  msgid "Membership level not found."
3682
  msgstr "Niveau d'adhésion introuvable."
3683
 
3684
  #: includes/functions.php:1157
3685
  #: includes/functions.php:1722
3686
+ #: includes/functions.php:1753
3687
  msgid "No code was given to check."
3688
  msgstr "Aucun code à vérifier."
3689
 
3690
  #: includes/functions.php:1166
3691
  #: includes/functions.php:1731
3692
+ #: includes/functions.php:1762
3693
  msgid "The discount code could not be found."
3694
  msgstr "Le code de réduction est introuvable."
3695
 
3696
  #: includes/functions.php:1181
3697
  #: includes/functions.php:1746
3698
+ #: includes/functions.php:1777
3699
  #, php-format
3700
  msgid "This discount code goes into effect on %s."
3701
  msgstr "Ce code de réduction entrera en vigueur le %s."
3702
 
3703
  #: includes/functions.php:1188
3704
  #: includes/functions.php:1753
3705
+ #: includes/functions.php:1784
3706
  #, php-format
3707
  msgid "This discount code expired on %s."
3708
  msgstr "Ce code de réduction a expiré le %s."
3709
 
3710
  #: includes/functions.php:1198
3711
  #: includes/functions.php:1762
3712
+ #: includes/functions.php:1793
3713
  msgid "This discount code is no longer valid."
3714
  msgstr "Ce code de réduction n'est plus valide."
3715
 
3716
  #: includes/functions.php:1211
3717
  #: includes/functions.php:1781
3718
+ #: includes/functions.php:1812
3719
  msgid "This discount code does not apply to this membership level."
3720
  msgstr "Ce code de réduction ne s'applique pas à ce niveau d'adhésion."
3721
 
3722
  #: includes/functions.php:1237
3723
  #: includes/functions.php:1819
3724
+ #: includes/functions.php:1850
3725
  msgid "This discount code is okay."
3726
  msgstr "Ce code de réduction est valide."
3727
 
3728
  #: includes/functions.php:1262
3729
  #: includes/functions.php:1847
3730
+ #: includes/functions.php:1878
3731
  msgid "and"
3732
  msgstr "et"
3733
 
3734
  #: includes/functions.php:1457
3735
  #: includes/functions.php:2409
3736
+ #: includes/functions.php:2440
3737
  msgid "Sign Up for !!name!! Now"
3738
  msgstr "!!name!!, inscrivez-vous maintenant !"
3739
 
4274
 
4275
  #: pages/invoice.php:79
4276
  #: includes/functions.php:2842
4277
+ #: includes/functions.php:2873
4278
  msgid "Subtotal"
4279
  msgstr "Sous-total"
4280
 
4281
  #: pages/invoice.php:82
4282
  #: includes/functions.php:2857
4283
+ #: includes/functions.php:2888
4284
  msgid "Coupon"
4285
  msgstr "Promo"
4286
 
9136
  msgstr ""
9137
 
9138
  #: includes/functions.php:2433
9139
+ #: includes/functions.php:2464
9140
  msgid "Sign Up Now"
9141
  msgstr ""
9142
 
languages/paid-memberships-pro-he_IL.mo CHANGED
Binary file
languages/paid-memberships-pro-he_IL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:01+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2771,6 +2771,7 @@ msgstr ""
2771
  #: includes/functions.php:2849
2772
  #: includes/privacy.php:277
2773
  #: adminpages/orders.php:615
 
2774
  msgid "Tax"
2775
  msgstr ""
2776
 
@@ -2805,6 +2806,7 @@ msgstr "סכום ההנחה"
2805
  #: adminpages/dashboard.php:293
2806
  #: adminpages/orders.php:650
2807
  #: adminpages/orders.php:1344
 
2808
  msgid "Total"
2809
  msgstr "סה’’כ"
2810
 
@@ -4239,6 +4241,7 @@ msgstr "מחיר"
4239
  #: pages/invoice.php:79
4240
  #: pages/invoice.php:77
4241
  #: includes/functions.php:2842
 
4242
  msgid "Subtotal"
4243
  msgstr "סכום לא סופי"
4244
 
@@ -6628,6 +6631,8 @@ msgstr ""
6628
  #: includes/functions.php:826
6629
  #: includes/functions.php:1304
6630
  #: includes/functions.php:1342
 
 
6631
  msgid "Membership level not found."
6632
  msgstr "‎לא נמצאה דרגה זו‫.‬"
6633
 
@@ -6642,6 +6647,7 @@ msgstr "‎לא נמצאה דרגה זו‫.‬"
6642
  #: includes/functions.php:1173
6643
  #: includes/functions.php:1196
6644
  #: includes/functions.php:1722
 
6645
  msgid "No code was given to check."
6646
  msgstr ""
6647
 
@@ -6663,6 +6669,7 @@ msgstr ""
6663
  #: includes/functions.php:1182
6664
  #: includes/functions.php:1205
6665
  #: includes/functions.php:1731
 
6666
  msgid "The discount code could not be found."
6667
  msgstr "‎הקוד אינו תקין‫.‬"
6668
 
@@ -6684,6 +6691,7 @@ msgstr "‎הקוד אינו תקין‫.‬"
6684
  #: includes/functions.php:1197
6685
  #: includes/functions.php:1220
6686
  #: includes/functions.php:1746
 
6687
  #, php-format
6688
  msgid "This discount code goes into effect on %s."
6689
  msgstr "‎הקוד תקף על %s."
@@ -6706,6 +6714,7 @@ msgstr "‎הקוד תקף על %s."
6706
  #: includes/functions.php:1204
6707
  #: includes/functions.php:1227
6708
  #: includes/functions.php:1753
 
6709
  #, php-format
6710
  msgid "This discount code expired on %s."
6711
  msgstr "‎הקוד פג תוקף ב %s."
@@ -6728,6 +6737,7 @@ msgstr "‎הקוד פג תוקף ב %s."
6728
  #: includes/functions.php:1214
6729
  #: includes/functions.php:1237
6730
  #: includes/functions.php:1762
 
6731
  msgid "This discount code is no longer valid."
6732
  msgstr "‎הקוד אינו תקף יותר‫.‬"
6733
 
@@ -6748,6 +6758,7 @@ msgstr "‎הקוד אינו תקף יותר‫.‬"
6748
  #: includes/functions.php:1227
6749
  #: includes/functions.php:1250
6750
  #: includes/functions.php:1781
 
6751
  msgid "This discount code does not apply to this membership level."
6752
  msgstr "‎הקוד אינו מתאים לדרגה של משתמש זה‫.‬"
6753
 
@@ -6769,6 +6780,7 @@ msgstr "‎הקוד אינו מתאים לדרגה של משתמש זה‫.‬"
6769
  #: includes/functions.php:1253
6770
  #: includes/functions.php:1276
6771
  #: includes/functions.php:1819
 
6772
  msgid "This discount code is okay."
6773
  msgstr "‎הקוד עובד‫.‬"
6774
 
@@ -6790,6 +6802,7 @@ msgstr "‎הקוד עובד‫.‬"
6790
  #: includes/functions.php:1301
6791
  #: includes/functions.php:1395
6792
  #: includes/functions.php:1847
 
6793
  msgid "and"
6794
  msgstr "‎ו"
6795
 
@@ -6812,6 +6825,7 @@ msgstr "‎ו"
6812
  #: includes/functions.php:1501
6813
  #: includes/functions.php:1620
6814
  #: includes/functions.php:2409
 
6815
  msgid "Sign Up for !!name!! Now"
6816
  msgstr "‎הירשם עבור !!name!! עכשיו"
6817
 
@@ -7764,6 +7778,7 @@ msgstr ""
7764
  #: pages/invoice.php:82
7765
  #: pages/invoice.php:80
7766
  #: includes/functions.php:2857
 
7767
  msgid "Coupon"
7768
  msgstr ""
7769
 
@@ -12801,6 +12816,7 @@ msgid "Error interacting with database: %s"
12801
  msgstr ""
12802
 
12803
  #: includes/functions.php:2433
 
12804
  msgid "Sign Up Now"
12805
  msgstr ""
12806
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:14+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2771
  #: includes/functions.php:2849
2772
  #: includes/privacy.php:277
2773
  #: adminpages/orders.php:615
2774
+ #: includes/functions.php:2880
2775
  msgid "Tax"
2776
  msgstr ""
2777
 
2806
  #: adminpages/dashboard.php:293
2807
  #: adminpages/orders.php:650
2808
  #: adminpages/orders.php:1344
2809
+ #: includes/functions.php:2909
2810
  msgid "Total"
2811
  msgstr "סה’’כ"
2812
 
4241
  #: pages/invoice.php:79
4242
  #: pages/invoice.php:77
4243
  #: includes/functions.php:2842
4244
+ #: includes/functions.php:2873
4245
  msgid "Subtotal"
4246
  msgstr "סכום לא סופי"
4247
 
6631
  #: includes/functions.php:826
6632
  #: includes/functions.php:1304
6633
  #: includes/functions.php:1342
6634
+ #: includes/functions.php:1335
6635
+ #: includes/functions.php:1373
6636
  msgid "Membership level not found."
6637
  msgstr "‎לא נמצאה דרגה זו‫.‬"
6638
 
6647
  #: includes/functions.php:1173
6648
  #: includes/functions.php:1196
6649
  #: includes/functions.php:1722
6650
+ #: includes/functions.php:1753
6651
  msgid "No code was given to check."
6652
  msgstr ""
6653
 
6669
  #: includes/functions.php:1182
6670
  #: includes/functions.php:1205
6671
  #: includes/functions.php:1731
6672
+ #: includes/functions.php:1762
6673
  msgid "The discount code could not be found."
6674
  msgstr "‎הקוד אינו תקין‫.‬"
6675
 
6691
  #: includes/functions.php:1197
6692
  #: includes/functions.php:1220
6693
  #: includes/functions.php:1746
6694
+ #: includes/functions.php:1777
6695
  #, php-format
6696
  msgid "This discount code goes into effect on %s."
6697
  msgstr "‎הקוד תקף על %s."
6714
  #: includes/functions.php:1204
6715
  #: includes/functions.php:1227
6716
  #: includes/functions.php:1753
6717
+ #: includes/functions.php:1784
6718
  #, php-format
6719
  msgid "This discount code expired on %s."
6720
  msgstr "‎הקוד פג תוקף ב %s."
6737
  #: includes/functions.php:1214
6738
  #: includes/functions.php:1237
6739
  #: includes/functions.php:1762
6740
+ #: includes/functions.php:1793
6741
  msgid "This discount code is no longer valid."
6742
  msgstr "‎הקוד אינו תקף יותר‫.‬"
6743
 
6758
  #: includes/functions.php:1227
6759
  #: includes/functions.php:1250
6760
  #: includes/functions.php:1781
6761
+ #: includes/functions.php:1812
6762
  msgid "This discount code does not apply to this membership level."
6763
  msgstr "‎הקוד אינו מתאים לדרגה של משתמש זה‫.‬"
6764
 
6780
  #: includes/functions.php:1253
6781
  #: includes/functions.php:1276
6782
  #: includes/functions.php:1819
6783
+ #: includes/functions.php:1850
6784
  msgid "This discount code is okay."
6785
  msgstr "‎הקוד עובד‫.‬"
6786
 
6802
  #: includes/functions.php:1301
6803
  #: includes/functions.php:1395
6804
  #: includes/functions.php:1847
6805
+ #: includes/functions.php:1878
6806
  msgid "and"
6807
  msgstr "‎ו"
6808
 
6825
  #: includes/functions.php:1501
6826
  #: includes/functions.php:1620
6827
  #: includes/functions.php:2409
6828
+ #: includes/functions.php:2440
6829
  msgid "Sign Up for !!name!! Now"
6830
  msgstr "‎הירשם עבור !!name!! עכשיו"
6831
 
7778
  #: pages/invoice.php:82
7779
  #: pages/invoice.php:80
7780
  #: includes/functions.php:2857
7781
+ #: includes/functions.php:2888
7782
  msgid "Coupon"
7783
  msgstr ""
7784
 
12816
  msgstr ""
12817
 
12818
  #: includes/functions.php:2433
12819
+ #: includes/functions.php:2464
12820
  msgid "Sign Up Now"
12821
  msgstr ""
12822
 
languages/paid-memberships-pro-it_IT.mo CHANGED
Binary file
languages/paid-memberships-pro-it_IT.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:04+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2966,6 +2966,7 @@ msgstr "Subtotale"
2966
  #: includes/functions.php:2849
2967
  #: includes/privacy.php:277
2968
  #: adminpages/orders.php:615
 
2969
  msgid "Tax"
2970
  msgstr "Tassa"
2971
 
@@ -3006,6 +3007,7 @@ msgstr "Sconto"
3006
  #: adminpages/dashboard.php:293
3007
  #: adminpages/orders.php:650
3008
  #: adminpages/orders.php:1344
 
3009
  msgid "Total"
3010
  msgstr "Totale"
3011
 
@@ -4576,6 +4578,7 @@ msgstr "Costo"
4576
  #: pages/invoice.php:79
4577
  #: pages/invoice.php:77
4578
  #: includes/functions.php:2842
 
4579
  msgid "Subtotal"
4580
  msgstr "Subtotale"
4581
 
@@ -7442,6 +7445,8 @@ msgstr "Errore nell'interazione con il database: %s"
7442
  #: includes/functions.php:1237
7443
  #: includes/functions.php:1304
7444
  #: includes/functions.php:1342
 
 
7445
  msgid "Membership level not found."
7446
  msgstr "Livello d'iscrizione non trovato."
7447
 
@@ -7461,6 +7466,7 @@ msgstr "Livello d'iscrizione non trovato."
7461
  #: includes/functions.php:1362
7462
  #: includes/functions.php:1605
7463
  #: includes/functions.php:1722
 
7464
  msgid "No code was given to check."
7465
  msgstr "Nessun codice da ricercare."
7466
 
@@ -7487,6 +7493,7 @@ msgstr "Nessun codice da ricercare."
7487
  #: includes/functions.php:1371
7488
  #: includes/functions.php:1614
7489
  #: includes/functions.php:1731
 
7490
  msgid "The discount code could not be found."
7491
  msgstr "Il codice sconto non esiste."
7492
 
@@ -7513,6 +7520,7 @@ msgstr "Il codice sconto non esiste."
7513
  #: includes/functions.php:1386
7514
  #: includes/functions.php:1629
7515
  #: includes/functions.php:1746
 
7516
  #, php-format
7517
  msgid "This discount code goes into effect on %s."
7518
  msgstr "Lo sconto vale %s."
@@ -7540,6 +7548,7 @@ msgstr "Lo sconto vale %s."
7540
  #: includes/functions.php:1393
7541
  #: includes/functions.php:1636
7542
  #: includes/functions.php:1753
 
7543
  #, php-format
7544
  msgid "This discount code expired on %s."
7545
  msgstr "Il codice sconto scade %s."
@@ -7567,6 +7576,7 @@ msgstr "Il codice sconto scade %s."
7567
  #: includes/functions.php:1403
7568
  #: includes/functions.php:1646
7569
  #: includes/functions.php:1762
 
7570
  msgid "This discount code is no longer valid."
7571
  msgstr "Il codice sconto non è più valido."
7572
 
@@ -7592,6 +7602,7 @@ msgstr "Il codice sconto non è più valido."
7592
  #: includes/functions.php:1416
7593
  #: includes/functions.php:1666
7594
  #: includes/functions.php:1781
 
7595
  msgid "This discount code does not apply to this membership level."
7596
  msgstr "Il codice sconto non può essere applicato a questo livello d'iscrizione."
7597
 
@@ -7618,6 +7629,7 @@ msgstr "Il codice sconto non può essere applicato a questo livello d'iscrizione
7618
  #: includes/functions.php:1448
7619
  #: includes/functions.php:1703
7620
  #: includes/functions.php:1819
 
7621
  msgid "This discount code is okay."
7622
  msgstr "Codice sconto accettato."
7623
 
@@ -7644,6 +7656,7 @@ msgstr "Codice sconto accettato."
7644
  #: includes/functions.php:1475
7645
  #: includes/functions.php:1730
7646
  #: includes/functions.php:1847
 
7647
  msgid "and"
7648
  msgstr "e"
7649
 
@@ -7671,6 +7684,7 @@ msgstr "e"
7671
  #: includes/functions.php:1703
7672
  #: includes/functions.php:2015
7673
  #: includes/functions.php:2409
 
7674
  msgid "Sign Up for !!name!! Now"
7675
  msgstr "Registrati come !!name!! Ora"
7676
 
@@ -8767,6 +8781,7 @@ msgstr "Se il tuo conto non viene attivato in pochi minuti, contatta l'amministr
8767
  #: pages/invoice.php:82
8768
  #: pages/invoice.php:80
8769
  #: includes/functions.php:2857
 
8770
  msgid "Coupon"
8771
  msgstr "Coupon"
8772
 
@@ -13894,6 +13909,7 @@ msgid "No membership_id specified in pmpro_changeMembershipLevel."
13894
  msgstr ""
13895
 
13896
  #: includes/functions.php:2433
 
13897
  msgid "Sign Up Now"
13898
  msgstr ""
13899
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:16+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2966
  #: includes/functions.php:2849
2967
  #: includes/privacy.php:277
2968
  #: adminpages/orders.php:615
2969
+ #: includes/functions.php:2880
2970
  msgid "Tax"
2971
  msgstr "Tassa"
2972
 
3007
  #: adminpages/dashboard.php:293
3008
  #: adminpages/orders.php:650
3009
  #: adminpages/orders.php:1344
3010
+ #: includes/functions.php:2909
3011
  msgid "Total"
3012
  msgstr "Totale"
3013
 
4578
  #: pages/invoice.php:79
4579
  #: pages/invoice.php:77
4580
  #: includes/functions.php:2842
4581
+ #: includes/functions.php:2873
4582
  msgid "Subtotal"
4583
  msgstr "Subtotale"
4584
 
7445
  #: includes/functions.php:1237
7446
  #: includes/functions.php:1304
7447
  #: includes/functions.php:1342
7448
+ #: includes/functions.php:1335
7449
+ #: includes/functions.php:1373
7450
  msgid "Membership level not found."
7451
  msgstr "Livello d'iscrizione non trovato."
7452
 
7466
  #: includes/functions.php:1362
7467
  #: includes/functions.php:1605
7468
  #: includes/functions.php:1722
7469
+ #: includes/functions.php:1753
7470
  msgid "No code was given to check."
7471
  msgstr "Nessun codice da ricercare."
7472
 
7493
  #: includes/functions.php:1371
7494
  #: includes/functions.php:1614
7495
  #: includes/functions.php:1731
7496
+ #: includes/functions.php:1762
7497
  msgid "The discount code could not be found."
7498
  msgstr "Il codice sconto non esiste."
7499
 
7520
  #: includes/functions.php:1386
7521
  #: includes/functions.php:1629
7522
  #: includes/functions.php:1746
7523
+ #: includes/functions.php:1777
7524
  #, php-format
7525
  msgid "This discount code goes into effect on %s."
7526
  msgstr "Lo sconto vale %s."
7548
  #: includes/functions.php:1393
7549
  #: includes/functions.php:1636
7550
  #: includes/functions.php:1753
7551
+ #: includes/functions.php:1784
7552
  #, php-format
7553
  msgid "This discount code expired on %s."
7554
  msgstr "Il codice sconto scade %s."
7576
  #: includes/functions.php:1403
7577
  #: includes/functions.php:1646
7578
  #: includes/functions.php:1762
7579
+ #: includes/functions.php:1793
7580
  msgid "This discount code is no longer valid."
7581
  msgstr "Il codice sconto non è più valido."
7582
 
7602
  #: includes/functions.php:1416
7603
  #: includes/functions.php:1666
7604
  #: includes/functions.php:1781
7605
+ #: includes/functions.php:1812
7606
  msgid "This discount code does not apply to this membership level."
7607
  msgstr "Il codice sconto non può essere applicato a questo livello d'iscrizione."
7608
 
7629
  #: includes/functions.php:1448
7630
  #: includes/functions.php:1703
7631
  #: includes/functions.php:1819
7632
+ #: includes/functions.php:1850
7633
  msgid "This discount code is okay."
7634
  msgstr "Codice sconto accettato."
7635
 
7656
  #: includes/functions.php:1475
7657
  #: includes/functions.php:1730
7658
  #: includes/functions.php:1847
7659
+ #: includes/functions.php:1878
7660
  msgid "and"
7661
  msgstr "e"
7662
 
7684
  #: includes/functions.php:1703
7685
  #: includes/functions.php:2015
7686
  #: includes/functions.php:2409
7687
+ #: includes/functions.php:2440
7688
  msgid "Sign Up for !!name!! Now"
7689
  msgstr "Registrati come !!name!! Ora"
7690
 
8781
  #: pages/invoice.php:82
8782
  #: pages/invoice.php:80
8783
  #: includes/functions.php:2857
8784
+ #: includes/functions.php:2888
8785
  msgid "Coupon"
8786
  msgstr "Coupon"
8787
 
13909
  msgstr ""
13910
 
13911
  #: includes/functions.php:2433
13912
+ #: includes/functions.php:2464
13913
  msgid "Sign Up Now"
13914
  msgstr ""
13915
 
languages/paid-memberships-pro-nb_NO.mo CHANGED
Binary file
languages/paid-memberships-pro-nb_NO.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:07+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1945,6 +1945,7 @@ msgstr "Totalbeløp"
1945
  #: includes/functions.php:2849
1946
  #: includes/privacy.php:277
1947
  #: adminpages/orders.php:615
 
1948
  msgid "Tax"
1949
  msgstr "MVA"
1950
 
@@ -1970,6 +1971,7 @@ msgstr "Rabattkodebeløp"
1970
  #: adminpages/dashboard.php:293
1971
  #: adminpages/orders.php:650
1972
  #: adminpages/orders.php:1344
 
1973
  msgid "Total"
1974
  msgstr "Totalbeløp"
1975
 
@@ -2984,6 +2986,7 @@ msgstr "Pris"
2984
  #: adminpages/templates/orders-print.php:85
2985
  #: pages/invoice.php:79
2986
  #: includes/functions.php:2842
 
2987
  msgid "Subtotal"
2988
  msgstr "Delsum"
2989
 
@@ -4404,23 +4407,28 @@ msgstr "Feil i samspill med databasen"
4404
  #: includes/functions.php:920
4405
  #: includes/functions.php:1304
4406
  #: includes/functions.php:1342
 
 
4407
  msgid "Membership level not found."
4408
  msgstr "Fant ikke medlemsnivået"
4409
 
4410
  #: includes/functions.php:1290
4411
  #: includes/functions.php:1722
 
4412
  msgid "No code was given to check."
4413
  msgstr "Ingen rabattkode oppgitt som vi kan sjekke mot."
4414
 
4415
  # @ pmpro
4416
  #: includes/functions.php:1299
4417
  #: includes/functions.php:1731
 
4418
  msgid "The discount code could not be found."
4419
  msgstr "Finner ikke denne rabattkoden"
4420
 
4421
  # @ pmpro
4422
  #: includes/functions.php:1314
4423
  #: includes/functions.php:1746
 
4424
  #, php-format
4425
  msgid "This discount code goes into effect on %s."
4426
  msgstr "Denne rabattkoden er gyldig fra %s"
@@ -4428,6 +4436,7 @@ msgstr "Denne rabattkoden er gyldig fra %s"
4428
  # @ pmpro
4429
  #: includes/functions.php:1321
4430
  #: includes/functions.php:1753
 
4431
  #, php-format
4432
  msgid "This discount code expired on %s."
4433
  msgstr "Denne rabattkoden ble ugyldig den %s"
@@ -4435,30 +4444,35 @@ msgstr "Denne rabattkoden ble ugyldig den %s"
4435
  # @ pmpro
4436
  #: includes/functions.php:1331
4437
  #: includes/functions.php:1762
 
4438
  msgid "This discount code is no longer valid."
4439
  msgstr "Denne rabattkoden er ikke gyldig."
4440
 
4441
  # @ pmpro
4442
  #: includes/functions.php:1344
4443
  #: includes/functions.php:1781
 
4444
  msgid "This discount code does not apply to this membership level."
4445
  msgstr "Denne rabattkoden gjelder ikke for dette medlemskapsnivået."
4446
 
4447
  # @ pmpro
4448
  #: includes/functions.php:1370
4449
  #: includes/functions.php:1819
 
4450
  msgid "This discount code is okay."
4451
  msgstr "Denne rabattkoden er korrekt."
4452
 
4453
  # @ pmpro
4454
  #: includes/functions.php:1397
4455
  #: includes/functions.php:1847
 
4456
  msgid "and"
4457
  msgstr "og"
4458
 
4459
  # @ pmpro
4460
  #: includes/functions.php:1624
4461
  #: includes/functions.php:2409
 
4462
  msgid "Sign Up for !!name!! Now"
4463
  msgstr "Registrer deg for !!name!! i dag"
4464
 
@@ -5161,6 +5175,7 @@ msgstr "Hvis medlomskontoen din ikke aktiveres i løpet av et par minutter, så
5161
  # @ pmpro
5162
  #: pages/invoice.php:82
5163
  #: includes/functions.php:2857
 
5164
  msgid "Coupon"
5165
  msgstr "Rabattkode"
5166
 
@@ -9838,6 +9853,7 @@ msgid "Error interacting with database: %s"
9838
  msgstr ""
9839
 
9840
  #: includes/functions.php:2433
 
9841
  msgid "Sign Up Now"
9842
  msgstr ""
9843
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:19+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1945
  #: includes/functions.php:2849
1946
  #: includes/privacy.php:277
1947
  #: adminpages/orders.php:615
1948
+ #: includes/functions.php:2880
1949
  msgid "Tax"
1950
  msgstr "MVA"
1951
 
1971
  #: adminpages/dashboard.php:293
1972
  #: adminpages/orders.php:650
1973
  #: adminpages/orders.php:1344
1974
+ #: includes/functions.php:2909
1975
  msgid "Total"
1976
  msgstr "Totalbeløp"
1977
 
2986
  #: adminpages/templates/orders-print.php:85
2987
  #: pages/invoice.php:79
2988
  #: includes/functions.php:2842
2989
+ #: includes/functions.php:2873
2990
  msgid "Subtotal"
2991
  msgstr "Delsum"
2992
 
4407
  #: includes/functions.php:920
4408
  #: includes/functions.php:1304
4409
  #: includes/functions.php:1342
4410
+ #: includes/functions.php:1335
4411
+ #: includes/functions.php:1373
4412
  msgid "Membership level not found."
4413
  msgstr "Fant ikke medlemsnivået"
4414
 
4415
  #: includes/functions.php:1290
4416
  #: includes/functions.php:1722
4417
+ #: includes/functions.php:1753
4418
  msgid "No code was given to check."
4419
  msgstr "Ingen rabattkode oppgitt som vi kan sjekke mot."
4420
 
4421
  # @ pmpro
4422
  #: includes/functions.php:1299
4423
  #: includes/functions.php:1731
4424
+ #: includes/functions.php:1762
4425
  msgid "The discount code could not be found."
4426
  msgstr "Finner ikke denne rabattkoden"
4427
 
4428
  # @ pmpro
4429
  #: includes/functions.php:1314
4430
  #: includes/functions.php:1746
4431
+ #: includes/functions.php:1777
4432
  #, php-format
4433
  msgid "This discount code goes into effect on %s."
4434
  msgstr "Denne rabattkoden er gyldig fra %s"
4436
  # @ pmpro
4437
  #: includes/functions.php:1321
4438
  #: includes/functions.php:1753
4439
+ #: includes/functions.php:1784
4440
  #, php-format
4441
  msgid "This discount code expired on %s."
4442
  msgstr "Denne rabattkoden ble ugyldig den %s"
4444
  # @ pmpro
4445
  #: includes/functions.php:1331
4446
  #: includes/functions.php:1762
4447
+ #: includes/functions.php:1793
4448
  msgid "This discount code is no longer valid."
4449
  msgstr "Denne rabattkoden er ikke gyldig."
4450
 
4451
  # @ pmpro
4452
  #: includes/functions.php:1344
4453
  #: includes/functions.php:1781
4454
+ #: includes/functions.php:1812
4455
  msgid "This discount code does not apply to this membership level."
4456
  msgstr "Denne rabattkoden gjelder ikke for dette medlemskapsnivået."
4457
 
4458
  # @ pmpro
4459
  #: includes/functions.php:1370
4460
  #: includes/functions.php:1819
4461
+ #: includes/functions.php:1850
4462
  msgid "This discount code is okay."
4463
  msgstr "Denne rabattkoden er korrekt."
4464
 
4465
  # @ pmpro
4466
  #: includes/functions.php:1397
4467
  #: includes/functions.php:1847
4468
+ #: includes/functions.php:1878
4469
  msgid "and"
4470
  msgstr "og"
4471
 
4472
  # @ pmpro
4473
  #: includes/functions.php:1624
4474
  #: includes/functions.php:2409
4475
+ #: includes/functions.php:2440
4476
  msgid "Sign Up for !!name!! Now"
4477
  msgstr "Registrer deg for !!name!! i dag"
4478
 
5175
  # @ pmpro
5176
  #: pages/invoice.php:82
5177
  #: includes/functions.php:2857
5178
+ #: includes/functions.php:2888
5179
  msgid "Coupon"
5180
  msgstr "Rabattkode"
5181
 
9853
  msgstr ""
9854
 
9855
  #: includes/functions.php:2433
9856
+ #: includes/functions.php:2464
9857
  msgid "Sign Up Now"
9858
  msgstr ""
9859
 
languages/paid-memberships-pro-nl_NL.mo CHANGED
Binary file
languages/paid-memberships-pro-nl_NL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:09+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1819,6 +1819,7 @@ msgstr "Subtotaal"
1819
  #: includes/functions.php:2849
1820
  #: includes/privacy.php:277
1821
  #: adminpages/orders.php:615
 
1822
  msgid "Tax"
1823
  msgstr "BTW"
1824
 
@@ -1844,6 +1845,7 @@ msgstr "kortingsbedrag"
1844
  #: adminpages/dashboard.php:293
1845
  #: adminpages/orders.php:650
1846
  #: adminpages/orders.php:1344
 
1847
  msgid "Total"
1848
  msgstr "Totaal"
1849
 
@@ -3989,6 +3991,8 @@ msgstr "Fout tijdens verbinden met database"
3989
  #: includes/functions.php:717
3990
  #: includes/functions.php:1304
3991
  #: includes/functions.php:1342
 
 
3992
  msgid "Membership level not found."
3993
  msgstr "Lidmaatschap niet gevonden."
3994
 
@@ -3998,6 +4002,7 @@ msgstr "Lidmaatschap niet gevonden."
3998
  #: includes/functions.php:1088
3999
  #: includes/functions.php:1099
4000
  #: includes/functions.php:1731
 
4001
  msgid "The discount code could not be found."
4002
  msgstr "De kortingscode is niet gevonden"
4003
 
@@ -4007,6 +4012,7 @@ msgstr "De kortingscode is niet gevonden"
4007
  #: includes/functions.php:1104
4008
  #: includes/functions.php:1115
4009
  #: includes/functions.php:1746
 
4010
  #, php-format
4011
  msgid "This discount code goes into effect on %s."
4012
  msgstr "De kortingscode treedt in werking op %s"
@@ -4017,6 +4023,7 @@ msgstr "De kortingscode treedt in werking op %s"
4017
  #: includes/functions.php:1113
4018
  #: includes/functions.php:1124
4019
  #: includes/functions.php:1753
 
4020
  #, php-format
4021
  msgid "This discount code expired on %s."
4022
  msgstr "De kortingscode verloopt op %s"
@@ -4027,6 +4034,7 @@ msgstr "De kortingscode verloopt op %s"
4027
  #: includes/functions.php:1125
4028
  #: includes/functions.php:1136
4029
  #: includes/functions.php:1762
 
4030
  msgid "This discount code is no longer valid."
4031
  msgstr "De kortingscode is niet langer geldig."
4032
 
@@ -4036,6 +4044,7 @@ msgstr "De kortingscode is niet langer geldig."
4036
  #: includes/functions.php:1140
4037
  #: includes/functions.php:1151
4038
  #: includes/functions.php:1781
 
4039
  msgid "This discount code does not apply to this membership level."
4040
  msgstr "De kortingscode is niet van toepassing op dit type lidmaatschap."
4041
 
@@ -4045,6 +4054,7 @@ msgstr "De kortingscode is niet van toepassing op dit type lidmaatschap."
4045
  #: includes/functions.php:1148
4046
  #: includes/functions.php:1159
4047
  #: includes/functions.php:1819
 
4048
  msgid "This discount code is okay."
4049
  msgstr "De kortingscode is oké."
4050
 
@@ -4054,6 +4064,7 @@ msgstr "De kortingscode is oké."
4054
  #: includes/functions.php:1172
4055
  #: includes/functions.php:1183
4056
  #: includes/functions.php:1847
 
4057
  msgid "and"
4058
  msgstr "en"
4059
 
@@ -4063,6 +4074,7 @@ msgstr "en"
4063
  #: includes/functions.php:1361
4064
  #: includes/functions.php:1372
4065
  #: includes/functions.php:2409
 
4066
  msgid "Sign Up for !!name!! Now"
4067
  msgstr "Schrijf je nu in voor !!name!!"
4068
 
@@ -4862,12 +4874,14 @@ msgstr "Als je account niet geactiveerd is binnen enkele minuten, neem dan conta
4862
  #: pages/invoice.php:79
4863
  #: pages/invoice.php:77
4864
  #: includes/functions.php:2842
 
4865
  msgid "Subtotal"
4866
  msgstr "Subtotaal"
4867
 
4868
  #: pages/invoice.php:82
4869
  #: pages/invoice.php:80
4870
  #: includes/functions.php:2857
 
4871
  msgid "Coupon"
4872
  msgstr "Coupon"
4873
 
@@ -9875,10 +9889,12 @@ msgid "Error interacting with database: %s"
9875
  msgstr ""
9876
 
9877
  #: includes/functions.php:1722
 
9878
  msgid "No code was given to check."
9879
  msgstr ""
9880
 
9881
  #: includes/functions.php:2433
 
9882
  msgid "Sign Up Now"
9883
  msgstr ""
9884
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:21+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1819
  #: includes/functions.php:2849
1820
  #: includes/privacy.php:277
1821
  #: adminpages/orders.php:615
1822
+ #: includes/functions.php:2880
1823
  msgid "Tax"
1824
  msgstr "BTW"
1825
 
1845
  #: adminpages/dashboard.php:293
1846
  #: adminpages/orders.php:650
1847
  #: adminpages/orders.php:1344
1848
+ #: includes/functions.php:2909
1849
  msgid "Total"
1850
  msgstr "Totaal"
1851
 
3991
  #: includes/functions.php:717
3992
  #: includes/functions.php:1304
3993
  #: includes/functions.php:1342
3994
+ #: includes/functions.php:1335
3995
+ #: includes/functions.php:1373
3996
  msgid "Membership level not found."
3997
  msgstr "Lidmaatschap niet gevonden."
3998
 
4002
  #: includes/functions.php:1088
4003
  #: includes/functions.php:1099
4004
  #: includes/functions.php:1731
4005
+ #: includes/functions.php:1762
4006
  msgid "The discount code could not be found."
4007
  msgstr "De kortingscode is niet gevonden"
4008
 
4012
  #: includes/functions.php:1104
4013
  #: includes/functions.php:1115
4014
  #: includes/functions.php:1746
4015
+ #: includes/functions.php:1777
4016
  #, php-format
4017
  msgid "This discount code goes into effect on %s."
4018
  msgstr "De kortingscode treedt in werking op %s"
4023
  #: includes/functions.php:1113
4024
  #: includes/functions.php:1124
4025
  #: includes/functions.php:1753
4026
+ #: includes/functions.php:1784
4027
  #, php-format
4028
  msgid "This discount code expired on %s."
4029
  msgstr "De kortingscode verloopt op %s"
4034
  #: includes/functions.php:1125
4035
  #: includes/functions.php:1136
4036
  #: includes/functions.php:1762
4037
+ #: includes/functions.php:1793
4038
  msgid "This discount code is no longer valid."
4039
  msgstr "De kortingscode is niet langer geldig."
4040
 
4044
  #: includes/functions.php:1140
4045
  #: includes/functions.php:1151
4046
  #: includes/functions.php:1781
4047
+ #: includes/functions.php:1812
4048
  msgid "This discount code does not apply to this membership level."
4049
  msgstr "De kortingscode is niet van toepassing op dit type lidmaatschap."
4050
 
4054
  #: includes/functions.php:1148
4055
  #: includes/functions.php:1159
4056
  #: includes/functions.php:1819
4057
+ #: includes/functions.php:1850
4058
  msgid "This discount code is okay."
4059
  msgstr "De kortingscode is oké."
4060
 
4064
  #: includes/functions.php:1172
4065
  #: includes/functions.php:1183
4066
  #: includes/functions.php:1847
4067
+ #: includes/functions.php:1878
4068
  msgid "and"
4069
  msgstr "en"
4070
 
4074
  #: includes/functions.php:1361
4075
  #: includes/functions.php:1372
4076
  #: includes/functions.php:2409
4077
+ #: includes/functions.php:2440
4078
  msgid "Sign Up for !!name!! Now"
4079
  msgstr "Schrijf je nu in voor !!name!!"
4080
 
4874
  #: pages/invoice.php:79
4875
  #: pages/invoice.php:77
4876
  #: includes/functions.php:2842
4877
+ #: includes/functions.php:2873
4878
  msgid "Subtotal"
4879
  msgstr "Subtotaal"
4880
 
4881
  #: pages/invoice.php:82
4882
  #: pages/invoice.php:80
4883
  #: includes/functions.php:2857
4884
+ #: includes/functions.php:2888
4885
  msgid "Coupon"
4886
  msgstr "Coupon"
4887
 
9889
  msgstr ""
9890
 
9891
  #: includes/functions.php:1722
9892
+ #: includes/functions.php:1753
9893
  msgid "No code was given to check."
9894
  msgstr ""
9895
 
9896
  #: includes/functions.php:2433
9897
+ #: includes/functions.php:2464
9898
  msgid "Sign Up Now"
9899
  msgstr ""
9900
 
languages/paid-memberships-pro-pt_BR.mo CHANGED
Binary file
languages/paid-memberships-pro-pt_BR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:12+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2709,6 +2709,7 @@ msgstr "Subtotal"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
 
2712
  msgid "Tax"
2713
  msgstr "Impostos"
2714
 
@@ -2743,6 +2744,7 @@ msgstr "Desconto"
2743
  #: adminpages/dashboard.php:293
2744
  #: adminpages/orders.php:650
2745
  #: adminpages/orders.php:1344
 
2746
  msgid "Total"
2747
  msgstr "Total"
2748
 
@@ -4167,6 +4169,7 @@ msgstr "Preço"
4167
  #: pages/invoice.php:79
4168
  #: pages/invoice.php:77
4169
  #: includes/functions.php:2842
 
4170
  msgid "Subtotal"
4171
  msgstr "Subtotal"
4172
 
@@ -6542,6 +6545,8 @@ msgstr "Erro ao conectar com o banco de dados"
6542
  #: includes/functions.php:826
6543
  #: includes/functions.php:1304
6544
  #: includes/functions.php:1342
 
 
6545
  msgid "Membership level not found."
6546
  msgstr "Nivel de assinatura não encontrado."
6547
 
@@ -6556,6 +6561,7 @@ msgstr "Nivel de assinatura não encontrado."
6556
  #: includes/functions.php:1173
6557
  #: includes/functions.php:1196
6558
  #: includes/functions.php:1722
 
6559
  msgid "No code was given to check."
6560
  msgstr "Nenhum código foi informado para checagem."
6561
 
@@ -6577,6 +6583,7 @@ msgstr "Nenhum código foi informado para checagem."
6577
  #: includes/functions.php:1182
6578
  #: includes/functions.php:1205
6579
  #: includes/functions.php:1731
 
6580
  msgid "The discount code could not be found."
6581
  msgstr "O Cupom de Desconto não foi encontrado."
6582
 
@@ -6598,6 +6605,7 @@ msgstr "O Cupom de Desconto não foi encontrado."
6598
  #: includes/functions.php:1197
6599
  #: includes/functions.php:1220
6600
  #: includes/functions.php:1746
 
6601
  #, php-format
6602
  msgid "This discount code goes into effect on %s."
6603
  msgstr "O cupom de desconto começa em %s."
@@ -6620,6 +6628,7 @@ msgstr "O cupom de desconto começa em %s."
6620
  #: includes/functions.php:1204
6621
  #: includes/functions.php:1227
6622
  #: includes/functions.php:1753
 
6623
  #, php-format
6624
  msgid "This discount code expired on %s."
6625
  msgstr "O cupom de desconto expirou em %s."
@@ -6642,6 +6651,7 @@ msgstr "O cupom de desconto expirou em %s."
6642
  #: includes/functions.php:1214
6643
  #: includes/functions.php:1237
6644
  #: includes/functions.php:1762
 
6645
  msgid "This discount code is no longer valid."
6646
  msgstr "Este cupom de desconto não é mais válido."
6647
 
@@ -6662,6 +6672,7 @@ msgstr "Este cupom de desconto não é mais válido."
6662
  #: includes/functions.php:1227
6663
  #: includes/functions.php:1250
6664
  #: includes/functions.php:1781
 
6665
  msgid "This discount code does not apply to this membership level."
6666
  msgstr "Este cupom de desconto não pode ser aplicado a esse nível de assinatura."
6667
 
@@ -6683,6 +6694,7 @@ msgstr "Este cupom de desconto não pode ser aplicado a esse nível de assinatur
6683
  #: includes/functions.php:1253
6684
  #: includes/functions.php:1276
6685
  #: includes/functions.php:1819
 
6686
  msgid "This discount code is okay."
6687
  msgstr "O cupom de desconto está ok."
6688
 
@@ -6704,6 +6716,7 @@ msgstr "O cupom de desconto está ok."
6704
  #: includes/functions.php:1301
6705
  #: includes/functions.php:1395
6706
  #: includes/functions.php:1847
 
6707
  msgid "and"
6708
  msgstr "e"
6709
 
@@ -6726,6 +6739,7 @@ msgstr "e"
6726
  #: includes/functions.php:1501
6727
  #: includes/functions.php:1620
6728
  #: includes/functions.php:2409
 
6729
  msgid "Sign Up for !!name!! Now"
6730
  msgstr "Cadastre-se no !!name!! já"
6731
 
@@ -7673,6 +7687,7 @@ msgstr "Se sua conta não for ativada em alguns minutos, entre em contato com os
7673
  #: pages/invoice.php:82
7674
  #: pages/invoice.php:80
7675
  #: includes/functions.php:2857
 
7676
  msgid "Coupon"
7677
  msgstr "Cupom de Desconto"
7678
 
@@ -12703,6 +12718,7 @@ msgid "Error interacting with database: %s"
12703
  msgstr ""
12704
 
12705
  #: includes/functions.php:2433
 
12706
  msgid "Sign Up Now"
12707
  msgstr ""
12708
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:24+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
2712
+ #: includes/functions.php:2880
2713
  msgid "Tax"
2714
  msgstr "Impostos"
2715
 
2744
  #: adminpages/dashboard.php:293
2745
  #: adminpages/orders.php:650
2746
  #: adminpages/orders.php:1344
2747
+ #: includes/functions.php:2909
2748
  msgid "Total"
2749
  msgstr "Total"
2750
 
4169
  #: pages/invoice.php:79
4170
  #: pages/invoice.php:77
4171
  #: includes/functions.php:2842
4172
+ #: includes/functions.php:2873
4173
  msgid "Subtotal"
4174
  msgstr "Subtotal"
4175
 
6545
  #: includes/functions.php:826
6546
  #: includes/functions.php:1304
6547
  #: includes/functions.php:1342
6548
+ #: includes/functions.php:1335
6549
+ #: includes/functions.php:1373
6550
  msgid "Membership level not found."
6551
  msgstr "Nivel de assinatura não encontrado."
6552
 
6561
  #: includes/functions.php:1173
6562
  #: includes/functions.php:1196
6563
  #: includes/functions.php:1722
6564
+ #: includes/functions.php:1753
6565
  msgid "No code was given to check."
6566
  msgstr "Nenhum código foi informado para checagem."
6567
 
6583
  #: includes/functions.php:1182
6584
  #: includes/functions.php:1205
6585
  #: includes/functions.php:1731
6586
+ #: includes/functions.php:1762
6587
  msgid "The discount code could not be found."
6588
  msgstr "O Cupom de Desconto não foi encontrado."
6589
 
6605
  #: includes/functions.php:1197
6606
  #: includes/functions.php:1220
6607
  #: includes/functions.php:1746
6608
+ #: includes/functions.php:1777
6609
  #, php-format
6610
  msgid "This discount code goes into effect on %s."
6611
  msgstr "O cupom de desconto começa em %s."
6628
  #: includes/functions.php:1204
6629
  #: includes/functions.php:1227
6630
  #: includes/functions.php:1753
6631
+ #: includes/functions.php:1784
6632
  #, php-format
6633
  msgid "This discount code expired on %s."
6634
  msgstr "O cupom de desconto expirou em %s."
6651
  #: includes/functions.php:1214
6652
  #: includes/functions.php:1237
6653
  #: includes/functions.php:1762
6654
+ #: includes/functions.php:1793
6655
  msgid "This discount code is no longer valid."
6656
  msgstr "Este cupom de desconto não é mais válido."
6657
 
6672
  #: includes/functions.php:1227
6673
  #: includes/functions.php:1250
6674
  #: includes/functions.php:1781
6675
+ #: includes/functions.php:1812
6676
  msgid "This discount code does not apply to this membership level."
6677
  msgstr "Este cupom de desconto não pode ser aplicado a esse nível de assinatura."
6678
 
6694
  #: includes/functions.php:1253
6695
  #: includes/functions.php:1276
6696
  #: includes/functions.php:1819
6697
+ #: includes/functions.php:1850
6698
  msgid "This discount code is okay."
6699
  msgstr "O cupom de desconto está ok."
6700
 
6716
  #: includes/functions.php:1301
6717
  #: includes/functions.php:1395
6718
  #: includes/functions.php:1847
6719
+ #: includes/functions.php:1878
6720
  msgid "and"
6721
  msgstr "e"
6722
 
6739
  #: includes/functions.php:1501
6740
  #: includes/functions.php:1620
6741
  #: includes/functions.php:2409
6742
+ #: includes/functions.php:2440
6743
  msgid "Sign Up for !!name!! Now"
6744
  msgstr "Cadastre-se no !!name!! já"
6745
 
7687
  #: pages/invoice.php:82
7688
  #: pages/invoice.php:80
7689
  #: includes/functions.php:2857
7690
+ #: includes/functions.php:2888
7691
  msgid "Coupon"
7692
  msgstr "Cupom de Desconto"
7693
 
12718
  msgstr ""
12719
 
12720
  #: includes/functions.php:2433
12721
+ #: includes/functions.php:2464
12722
  msgid "Sign Up Now"
12723
  msgstr ""
12724
 
languages/paid-memberships-pro-pt_PT.mo CHANGED
Binary file
languages/paid-memberships-pro-pt_PT.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:15+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2709,6 +2709,7 @@ msgstr "Subtotal"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
 
2712
  msgid "Tax"
2713
  msgstr "Impostos"
2714
 
@@ -2743,6 +2744,7 @@ msgstr "Desconto"
2743
  #: adminpages/dashboard.php:293
2744
  #: adminpages/orders.php:650
2745
  #: adminpages/orders.php:1344
 
2746
  msgid "Total"
2747
  msgstr "Total"
2748
 
@@ -4167,6 +4169,7 @@ msgstr "Preço"
4167
  #: pages/invoice.php:79
4168
  #: pages/invoice.php:77
4169
  #: includes/functions.php:2842
 
4170
  msgid "Subtotal"
4171
  msgstr "Subtotal"
4172
 
@@ -6542,6 +6545,8 @@ msgstr "Erro ao ligar à base de dados"
6542
  #: includes/functions.php:826
6543
  #: includes/functions.php:1304
6544
  #: includes/functions.php:1342
 
 
6545
  msgid "Membership level not found."
6546
  msgstr "Tipo de assinatura não encontrado."
6547
 
@@ -6556,6 +6561,7 @@ msgstr "Tipo de assinatura não encontrado."
6556
  #: includes/functions.php:1173
6557
  #: includes/functions.php:1196
6558
  #: includes/functions.php:1722
 
6559
  msgid "No code was given to check."
6560
  msgstr "Nenhum código foi informado para checagem."
6561
 
@@ -6577,6 +6583,7 @@ msgstr "Nenhum código foi informado para checagem."
6577
  #: includes/functions.php:1182
6578
  #: includes/functions.php:1205
6579
  #: includes/functions.php:1731
 
6580
  msgid "The discount code could not be found."
6581
  msgstr "O Código de Desconto não foi encontrado."
6582
 
@@ -6598,6 +6605,7 @@ msgstr "O Código de Desconto não foi encontrado."
6598
  #: includes/functions.php:1197
6599
  #: includes/functions.php:1220
6600
  #: includes/functions.php:1746
 
6601
  #, php-format
6602
  msgid "This discount code goes into effect on %s."
6603
  msgstr "O código de desconto começa em %s."
@@ -6620,6 +6628,7 @@ msgstr "O código de desconto começa em %s."
6620
  #: includes/functions.php:1204
6621
  #: includes/functions.php:1227
6622
  #: includes/functions.php:1753
 
6623
  #, php-format
6624
  msgid "This discount code expired on %s."
6625
  msgstr "O código de desconto expirou em %s."
@@ -6642,6 +6651,7 @@ msgstr "O código de desconto expirou em %s."
6642
  #: includes/functions.php:1214
6643
  #: includes/functions.php:1237
6644
  #: includes/functions.php:1762
 
6645
  msgid "This discount code is no longer valid."
6646
  msgstr "Este código de desconto já não é válido."
6647
 
@@ -6662,6 +6672,7 @@ msgstr "Este código de desconto já não é válido."
6662
  #: includes/functions.php:1227
6663
  #: includes/functions.php:1250
6664
  #: includes/functions.php:1781
 
6665
  msgid "This discount code does not apply to this membership level."
6666
  msgstr "Este código de desconto não pode ser aplicado a esse tipo de assinatura."
6667
 
@@ -6683,6 +6694,7 @@ msgstr "Este código de desconto não pode ser aplicado a esse tipo de assinatur
6683
  #: includes/functions.php:1253
6684
  #: includes/functions.php:1276
6685
  #: includes/functions.php:1819
 
6686
  msgid "This discount code is okay."
6687
  msgstr "O código de desconto está ok."
6688
 
@@ -6704,6 +6716,7 @@ msgstr "O código de desconto está ok."
6704
  #: includes/functions.php:1301
6705
  #: includes/functions.php:1395
6706
  #: includes/functions.php:1847
 
6707
  msgid "and"
6708
  msgstr "e"
6709
 
@@ -6726,6 +6739,7 @@ msgstr "e"
6726
  #: includes/functions.php:1501
6727
  #: includes/functions.php:1620
6728
  #: includes/functions.php:2409
 
6729
  msgid "Sign Up for !!name!! Now"
6730
  msgstr "Registe-se em !!name!!"
6731
 
@@ -7673,6 +7687,7 @@ msgstr "Se sua conta não for ativada dentro de alguns minutos, entre em contact
7673
  #: pages/invoice.php:82
7674
  #: pages/invoice.php:80
7675
  #: includes/functions.php:2857
 
7676
  msgid "Coupon"
7677
  msgstr "Código de Desconto"
7678
 
@@ -12703,6 +12718,7 @@ msgid "Error interacting with database: %s"
12703
  msgstr ""
12704
 
12705
  #: includes/functions.php:2433
 
12706
  msgid "Sign Up Now"
12707
  msgstr ""
12708
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:26+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2709
  #: includes/functions.php:2849
2710
  #: includes/privacy.php:277
2711
  #: adminpages/orders.php:615
2712
+ #: includes/functions.php:2880
2713
  msgid "Tax"
2714
  msgstr "Impostos"
2715
 
2744
  #: adminpages/dashboard.php:293
2745
  #: adminpages/orders.php:650
2746
  #: adminpages/orders.php:1344
2747
+ #: includes/functions.php:2909
2748
  msgid "Total"
2749
  msgstr "Total"
2750
 
4169
  #: pages/invoice.php:79
4170
  #: pages/invoice.php:77
4171
  #: includes/functions.php:2842
4172
+ #: includes/functions.php:2873
4173
  msgid "Subtotal"
4174
  msgstr "Subtotal"
4175
 
6545
  #: includes/functions.php:826
6546
  #: includes/functions.php:1304
6547
  #: includes/functions.php:1342
6548
+ #: includes/functions.php:1335
6549
+ #: includes/functions.php:1373
6550
  msgid "Membership level not found."
6551
  msgstr "Tipo de assinatura não encontrado."
6552
 
6561
  #: includes/functions.php:1173
6562
  #: includes/functions.php:1196
6563
  #: includes/functions.php:1722
6564
+ #: includes/functions.php:1753
6565
  msgid "No code was given to check."
6566
  msgstr "Nenhum código foi informado para checagem."
6567
 
6583
  #: includes/functions.php:1182
6584
  #: includes/functions.php:1205
6585
  #: includes/functions.php:1731
6586
+ #: includes/functions.php:1762
6587
  msgid "The discount code could not be found."
6588
  msgstr "O Código de Desconto não foi encontrado."
6589
 
6605
  #: includes/functions.php:1197
6606
  #: includes/functions.php:1220
6607
  #: includes/functions.php:1746
6608
+ #: includes/functions.php:1777
6609
  #, php-format
6610
  msgid "This discount code goes into effect on %s."
6611
  msgstr "O código de desconto começa em %s."
6628
  #: includes/functions.php:1204
6629
  #: includes/functions.php:1227
6630
  #: includes/functions.php:1753
6631
+ #: includes/functions.php:1784
6632
  #, php-format
6633
  msgid "This discount code expired on %s."
6634
  msgstr "O código de desconto expirou em %s."
6651
  #: includes/functions.php:1214
6652
  #: includes/functions.php:1237
6653
  #: includes/functions.php:1762
6654
+ #: includes/functions.php:1793
6655
  msgid "This discount code is no longer valid."
6656
  msgstr "Este código de desconto já não é válido."
6657
 
6672
  #: includes/functions.php:1227
6673
  #: includes/functions.php:1250
6674
  #: includes/functions.php:1781
6675
+ #: includes/functions.php:1812
6676
  msgid "This discount code does not apply to this membership level."
6677
  msgstr "Este código de desconto não pode ser aplicado a esse tipo de assinatura."
6678
 
6694
  #: includes/functions.php:1253
6695
  #: includes/functions.php:1276
6696
  #: includes/functions.php:1819
6697
+ #: includes/functions.php:1850
6698
  msgid "This discount code is okay."
6699
  msgstr "O código de desconto está ok."
6700
 
6716
  #: includes/functions.php:1301
6717
  #: includes/functions.php:1395
6718
  #: includes/functions.php:1847
6719
+ #: includes/functions.php:1878
6720
  msgid "and"
6721
  msgstr "e"
6722
 
6739
  #: includes/functions.php:1501
6740
  #: includes/functions.php:1620
6741
  #: includes/functions.php:2409
6742
+ #: includes/functions.php:2440
6743
  msgid "Sign Up for !!name!! Now"
6744
  msgstr "Registe-se em !!name!!"
6745
 
7687
  #: pages/invoice.php:82
7688
  #: pages/invoice.php:80
7689
  #: includes/functions.php:2857
7690
+ #: includes/functions.php:2888
7691
  msgid "Coupon"
7692
  msgstr "Código de Desconto"
7693
 
12718
  msgstr ""
12719
 
12720
  #: includes/functions.php:2433
12721
+ #: includes/functions.php:2464
12722
  msgid "Sign Up Now"
12723
  msgstr ""
12724
 
languages/paid-memberships-pro-sk_SK.mo CHANGED
Binary file
languages/paid-memberships-pro-sk_SK.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:18+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2001,6 +2001,7 @@ msgstr ""
2001
  #: includes/functions.php:2849
2002
  #: includes/privacy.php:277
2003
  #: adminpages/orders.php:615
 
2004
  msgid "Tax"
2005
  msgstr ""
2006
 
@@ -2028,6 +2029,7 @@ msgstr ""
2028
  #: adminpages/dashboard.php:293
2029
  #: adminpages/orders.php:650
2030
  #: adminpages/orders.php:1344
 
2031
  msgid "Total"
2032
  msgstr ""
2033
 
@@ -4303,6 +4305,8 @@ msgstr "Chyba pri interakcii s databázou"
4303
  #: includes/functions.php:706
4304
  #: includes/functions.php:1304
4305
  #: includes/functions.php:1342
 
 
4306
  msgid "Membership level not found."
4307
  msgstr "Úroveň členstva sa nenašla."
4308
 
@@ -4312,6 +4316,7 @@ msgstr "Úroveň členstva sa nenašla."
4312
  #: includes/functions.php:1072
4313
  #: includes/functions.php:1088
4314
  #: includes/functions.php:1731
 
4315
  msgid "The discount code could not be found."
4316
  msgstr "Zľavový kód sa nenašiel."
4317
 
@@ -4321,6 +4326,7 @@ msgstr "Zľavový kód sa nenašiel."
4321
  #: includes/functions.php:1088
4322
  #: includes/functions.php:1104
4323
  #: includes/functions.php:1746
 
4324
  #, php-format
4325
  msgid "This discount code goes into effect on %s."
4326
  msgstr "Tento zľavový kód bude účinný %s."
@@ -4331,6 +4337,7 @@ msgstr "Tento zľavový kód bude účinný %s."
4331
  #: includes/functions.php:1097
4332
  #: includes/functions.php:1113
4333
  #: includes/functions.php:1753
 
4334
  #, php-format
4335
  msgid "This discount code expired on %s."
4336
  msgstr "Tento zľavový kód skončil %s."
@@ -4341,6 +4348,7 @@ msgstr "Tento zľavový kód skončil %s."
4341
  #: includes/functions.php:1109
4342
  #: includes/functions.php:1125
4343
  #: includes/functions.php:1762
 
4344
  msgid "This discount code is no longer valid."
4345
  msgstr "Tento zľavový kód nie je viac platný."
4346
 
@@ -4350,6 +4358,7 @@ msgstr "Tento zľavový kód nie je viac platný."
4350
  #: includes/functions.php:1124
4351
  #: includes/functions.php:1140
4352
  #: includes/functions.php:1781
 
4353
  msgid "This discount code does not apply to this membership level."
4354
  msgstr "Tento zľavový kód nie je možné použiť v tejto úrovni členstva."
4355
 
@@ -4359,6 +4368,7 @@ msgstr "Tento zľavový kód nie je možné použiť v tejto úrovni členstva."
4359
  #: includes/functions.php:1132
4360
  #: includes/functions.php:1148
4361
  #: includes/functions.php:1819
 
4362
  msgid "This discount code is okay."
4363
  msgstr "Tento zľavový kód je v poriadku."
4364
 
@@ -4368,6 +4378,7 @@ msgstr "Tento zľavový kód je v poriadku."
4368
  #: includes/functions.php:1156
4369
  #: includes/functions.php:1172
4370
  #: includes/functions.php:1847
 
4371
  msgid "and"
4372
  msgstr "a"
4373
 
@@ -4376,6 +4387,7 @@ msgstr "a"
4376
  #: includes/functions.php:1341
4377
  #: includes/functions.php:1361
4378
  #: includes/functions.php:2409
 
4379
  msgid "Sign Up for !!name!! Now"
4380
  msgstr ""
4381
 
@@ -5268,6 +5280,7 @@ msgstr "Ak váš členský účet nie je aktivovaný počas niekoľkých minút,
5268
  #: pages/invoice.php:79
5269
  #: pages/invoice.php:77
5270
  #: includes/functions.php:2842
 
5271
  msgid "Subtotal"
5272
  msgstr "Medzisúčet"
5273
 
@@ -5275,6 +5288,7 @@ msgstr "Medzisúčet"
5275
  #: pages/invoice.php:82
5276
  #: pages/invoice.php:80
5277
  #: includes/functions.php:2857
 
5278
  msgid "Coupon"
5279
  msgstr "Kupón"
5280
 
@@ -10373,10 +10387,12 @@ msgid "Error interacting with database: %s"
10373
  msgstr ""
10374
 
10375
  #: includes/functions.php:1722
 
10376
  msgid "No code was given to check."
10377
  msgstr ""
10378
 
10379
  #: includes/functions.php:2433
 
10380
  msgid "Sign Up Now"
10381
  msgstr ""
10382
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2001
  #: includes/functions.php:2849
2002
  #: includes/privacy.php:277
2003
  #: adminpages/orders.php:615
2004
+ #: includes/functions.php:2880
2005
  msgid "Tax"
2006
  msgstr ""
2007
 
2029
  #: adminpages/dashboard.php:293
2030
  #: adminpages/orders.php:650
2031
  #: adminpages/orders.php:1344
2032
+ #: includes/functions.php:2909
2033
  msgid "Total"
2034
  msgstr ""
2035
 
4305
  #: includes/functions.php:706
4306
  #: includes/functions.php:1304
4307
  #: includes/functions.php:1342
4308
+ #: includes/functions.php:1335
4309
+ #: includes/functions.php:1373
4310
  msgid "Membership level not found."
4311
  msgstr "Úroveň členstva sa nenašla."
4312
 
4316
  #: includes/functions.php:1072
4317
  #: includes/functions.php:1088
4318
  #: includes/functions.php:1731
4319
+ #: includes/functions.php:1762
4320
  msgid "The discount code could not be found."
4321
  msgstr "Zľavový kód sa nenašiel."
4322
 
4326
  #: includes/functions.php:1088
4327
  #: includes/functions.php:1104
4328
  #: includes/functions.php:1746
4329
+ #: includes/functions.php:1777
4330
  #, php-format
4331
  msgid "This discount code goes into effect on %s."
4332
  msgstr "Tento zľavový kód bude účinný %s."
4337
  #: includes/functions.php:1097
4338
  #: includes/functions.php:1113
4339
  #: includes/functions.php:1753
4340
+ #: includes/functions.php:1784
4341
  #, php-format
4342
  msgid "This discount code expired on %s."
4343
  msgstr "Tento zľavový kód skončil %s."
4348
  #: includes/functions.php:1109
4349
  #: includes/functions.php:1125
4350
  #: includes/functions.php:1762
4351
+ #: includes/functions.php:1793
4352
  msgid "This discount code is no longer valid."
4353
  msgstr "Tento zľavový kód nie je viac platný."
4354
 
4358
  #: includes/functions.php:1124
4359
  #: includes/functions.php:1140
4360
  #: includes/functions.php:1781
4361
+ #: includes/functions.php:1812
4362
  msgid "This discount code does not apply to this membership level."
4363
  msgstr "Tento zľavový kód nie je možné použiť v tejto úrovni členstva."
4364
 
4368
  #: includes/functions.php:1132
4369
  #: includes/functions.php:1148
4370
  #: includes/functions.php:1819
4371
+ #: includes/functions.php:1850
4372
  msgid "This discount code is okay."
4373
  msgstr "Tento zľavový kód je v poriadku."
4374
 
4378
  #: includes/functions.php:1156
4379
  #: includes/functions.php:1172
4380
  #: includes/functions.php:1847
4381
+ #: includes/functions.php:1878
4382
  msgid "and"
4383
  msgstr "a"
4384
 
4387
  #: includes/functions.php:1341
4388
  #: includes/functions.php:1361
4389
  #: includes/functions.php:2409
4390
+ #: includes/functions.php:2440
4391
  msgid "Sign Up for !!name!! Now"
4392
  msgstr ""
4393
 
5280
  #: pages/invoice.php:79
5281
  #: pages/invoice.php:77
5282
  #: includes/functions.php:2842
5283
+ #: includes/functions.php:2873
5284
  msgid "Subtotal"
5285
  msgstr "Medzisúčet"
5286
 
5288
  #: pages/invoice.php:82
5289
  #: pages/invoice.php:80
5290
  #: includes/functions.php:2857
5291
+ #: includes/functions.php:2888
5292
  msgid "Coupon"
5293
  msgstr "Kupón"
5294
 
10387
  msgstr ""
10388
 
10389
  #: includes/functions.php:1722
10390
+ #: includes/functions.php:1753
10391
  msgid "No code was given to check."
10392
  msgstr ""
10393
 
10394
  #: includes/functions.php:2433
10395
+ #: includes/functions.php:2464
10396
  msgid "Sign Up Now"
10397
  msgstr ""
10398
 
languages/paid-memberships-pro-sr_RS.mo CHANGED
Binary file
languages/paid-memberships-pro-sr_RS.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:20+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -515,48 +515,58 @@ msgstr "Greška u interakciji sa bazom podataka."
515
  #: includes/functions.php:698
516
  #: includes/functions.php:1304
517
  #: includes/functions.php:1342
 
 
518
  msgid "Membership level not found."
519
  msgstr "Nivo Članstva nije pronađen."
520
 
521
  #: includes/functions.php:1080
522
  #: includes/functions.php:1731
 
523
  msgid "The discount code could not be found."
524
  msgstr "Kod za popust nije pronađen."
525
 
526
  #: includes/functions.php:1096
527
  #: includes/functions.php:1746
 
528
  #, php-format
529
  msgid "This discount code goes into effect on %s."
530
  msgstr "Kod za popust važi za %s"
531
 
532
  #: includes/functions.php:1105
533
  #: includes/functions.php:1753
 
534
  #, php-format
535
  msgid "This discount code expired on %s."
536
  msgstr "Kod za popust je istekao %s."
537
 
538
  #: includes/functions.php:1117
539
  #: includes/functions.php:1762
 
540
  msgid "This discount code is no longer valid."
541
  msgstr "Kod za popust nije više važeći."
542
 
543
  #: includes/functions.php:1132
544
  #: includes/functions.php:1781
 
545
  msgid "This discount code does not apply to this membership level."
546
  msgstr "Kod za popust ne važi za ovaj nivo članstva."
547
 
548
  #: includes/functions.php:1140
549
  #: includes/functions.php:1819
 
550
  msgid "This discount code is okay."
551
  msgstr "Kod za popust je važeći."
552
 
553
  #: includes/functions.php:1164
554
  #: includes/functions.php:1847
 
555
  msgid "and"
556
  msgstr "i"
557
 
558
  #: includes/functions.php:1349
559
  #: includes/functions.php:2409
 
560
  msgid "Sign Up for !!name!! Now"
561
  msgstr "Prijavite Se za !!name!! Sada"
562
 
@@ -687,6 +697,7 @@ msgstr "Isticanje"
687
 
688
  #: pages/invoice.php:79
689
  #: includes/functions.php:2842
 
690
  msgid "Subtotal"
691
  msgstr "Suma stavke"
692
 
@@ -696,11 +707,13 @@ msgstr "Suma stavke"
696
  #: includes/functions.php:2849
697
  #: includes/privacy.php:277
698
  #: adminpages/orders.php:615
 
699
  msgid "Tax"
700
  msgstr "Porez"
701
 
702
  #: pages/invoice.php:82
703
  #: includes/functions.php:2857
 
704
  msgid "Coupon"
705
  msgstr "Kupon"
706
 
@@ -715,6 +728,7 @@ msgstr "Kupon"
715
  #: adminpages/dashboard.php:293
716
  #: adminpages/orders.php:650
717
  #: adminpages/orders.php:1344
 
718
  msgid "Total"
719
  msgstr "Ukupno"
720
 
@@ -8760,10 +8774,12 @@ msgid "Error interacting with database: %s"
8760
  msgstr ""
8761
 
8762
  #: includes/functions.php:1722
 
8763
  msgid "No code was given to check."
8764
  msgstr ""
8765
 
8766
  #: includes/functions.php:2433
 
8767
  msgid "Sign Up Now"
8768
  msgstr ""
8769
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:31+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
515
  #: includes/functions.php:698
516
  #: includes/functions.php:1304
517
  #: includes/functions.php:1342
518
+ #: includes/functions.php:1335
519
+ #: includes/functions.php:1373
520
  msgid "Membership level not found."
521
  msgstr "Nivo Članstva nije pronađen."
522
 
523
  #: includes/functions.php:1080
524
  #: includes/functions.php:1731
525
+ #: includes/functions.php:1762
526
  msgid "The discount code could not be found."
527
  msgstr "Kod za popust nije pronađen."
528
 
529
  #: includes/functions.php:1096
530
  #: includes/functions.php:1746
531
+ #: includes/functions.php:1777
532
  #, php-format
533
  msgid "This discount code goes into effect on %s."
534
  msgstr "Kod za popust važi za %s"
535
 
536
  #: includes/functions.php:1105
537
  #: includes/functions.php:1753
538
+ #: includes/functions.php:1784
539
  #, php-format
540
  msgid "This discount code expired on %s."
541
  msgstr "Kod za popust je istekao %s."
542
 
543
  #: includes/functions.php:1117
544
  #: includes/functions.php:1762
545
+ #: includes/functions.php:1793
546
  msgid "This discount code is no longer valid."
547
  msgstr "Kod za popust nije više važeći."
548
 
549
  #: includes/functions.php:1132
550
  #: includes/functions.php:1781
551
+ #: includes/functions.php:1812
552
  msgid "This discount code does not apply to this membership level."
553
  msgstr "Kod za popust ne važi za ovaj nivo članstva."
554
 
555
  #: includes/functions.php:1140
556
  #: includes/functions.php:1819
557
+ #: includes/functions.php:1850
558
  msgid "This discount code is okay."
559
  msgstr "Kod za popust je važeći."
560
 
561
  #: includes/functions.php:1164
562
  #: includes/functions.php:1847
563
+ #: includes/functions.php:1878
564
  msgid "and"
565
  msgstr "i"
566
 
567
  #: includes/functions.php:1349
568
  #: includes/functions.php:2409
569
+ #: includes/functions.php:2440
570
  msgid "Sign Up for !!name!! Now"
571
  msgstr "Prijavite Se za !!name!! Sada"
572
 
697
 
698
  #: pages/invoice.php:79
699
  #: includes/functions.php:2842
700
+ #: includes/functions.php:2873
701
  msgid "Subtotal"
702
  msgstr "Suma stavke"
703
 
707
  #: includes/functions.php:2849
708
  #: includes/privacy.php:277
709
  #: adminpages/orders.php:615
710
+ #: includes/functions.php:2880
711
  msgid "Tax"
712
  msgstr "Porez"
713
 
714
  #: pages/invoice.php:82
715
  #: includes/functions.php:2857
716
+ #: includes/functions.php:2888
717
  msgid "Coupon"
718
  msgstr "Kupon"
719
 
728
  #: adminpages/dashboard.php:293
729
  #: adminpages/orders.php:650
730
  #: adminpages/orders.php:1344
731
+ #: includes/functions.php:2909
732
  msgid "Total"
733
  msgstr "Ukupno"
734
 
8774
  msgstr ""
8775
 
8776
  #: includes/functions.php:1722
8777
+ #: includes/functions.php:1753
8778
  msgid "No code was given to check."
8779
  msgstr ""
8780
 
8781
  #: includes/functions.php:2433
8782
+ #: includes/functions.php:2464
8783
  msgid "Sign Up Now"
8784
  msgstr ""
8785
 
languages/paid-memberships-pro-sv_SE.mo CHANGED
Binary file
languages/paid-memberships-pro-sv_SE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:23+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -3161,6 +3161,7 @@ msgstr "Delsumma"
3161
  #: includes/functions.php:2849
3162
  #: includes/privacy.php:277
3163
  #: adminpages/orders.php:615
 
3164
  msgid "Tax"
3165
  msgstr "Skatt"
3166
 
@@ -3201,6 +3202,7 @@ msgstr "Kupongbelopp"
3201
  #: adminpages/dashboard.php:293
3202
  #: adminpages/orders.php:650
3203
  #: adminpages/orders.php:1344
 
3204
  msgid "Total"
3205
  msgstr "Totalt"
3206
 
@@ -4797,6 +4799,7 @@ msgstr "Pris"
4797
  #: pages/invoice.php:79
4798
  #: pages/invoice.php:77
4799
  #: includes/functions.php:2842
 
4800
  msgid "Subtotal"
4801
  msgstr "Delsumma"
4802
 
@@ -7781,6 +7784,8 @@ msgstr "Fel vid interaktion med databasen: %s"
7781
  #: includes/functions.php:1237
7782
  #: includes/functions.php:1304
7783
  #: includes/functions.php:1342
 
 
7784
  msgid "Membership level not found."
7785
  msgstr "Medlemskapsnivå hittades inte."
7786
 
@@ -7800,6 +7805,7 @@ msgstr "Medlemskapsnivå hittades inte."
7800
  #: includes/functions.php:1362
7801
  #: includes/functions.php:1605
7802
  #: includes/functions.php:1722
 
7803
  msgid "No code was given to check."
7804
  msgstr "Ingen kod angavs för kontroll."
7805
 
@@ -7826,6 +7832,7 @@ msgstr "Ingen kod angavs för kontroll."
7826
  #: includes/functions.php:1371
7827
  #: includes/functions.php:1614
7828
  #: includes/functions.php:1731
 
7829
  msgid "The discount code could not be found."
7830
  msgstr "Rabattkod kunde inte hittas."
7831
 
@@ -7852,6 +7859,7 @@ msgstr "Rabattkod kunde inte hittas."
7852
  #: includes/functions.php:1386
7853
  #: includes/functions.php:1629
7854
  #: includes/functions.php:1746
 
7855
  #, php-format
7856
  msgid "This discount code goes into effect on %s."
7857
  msgstr "Denna rabattkod börjar gälla %s."
@@ -7879,6 +7887,7 @@ msgstr "Denna rabattkod börjar gälla %s."
7879
  #: includes/functions.php:1393
7880
  #: includes/functions.php:1636
7881
  #: includes/functions.php:1753
 
7882
  #, php-format
7883
  msgid "This discount code expired on %s."
7884
  msgstr "Denna rabattkod upphörde %s."
@@ -7906,6 +7915,7 @@ msgstr "Denna rabattkod upphörde %s."
7906
  #: includes/functions.php:1403
7907
  #: includes/functions.php:1646
7908
  #: includes/functions.php:1762
 
7909
  msgid "This discount code is no longer valid."
7910
  msgstr "Denna rabattkod är inte längre giltig"
7911
 
@@ -7931,6 +7941,7 @@ msgstr "Denna rabattkod är inte längre giltig"
7931
  #: includes/functions.php:1416
7932
  #: includes/functions.php:1666
7933
  #: includes/functions.php:1781
 
7934
  msgid "This discount code does not apply to this membership level."
7935
  msgstr "Denna rabattkod gäller inte för denna medlemskapsnivå."
7936
 
@@ -7957,6 +7968,7 @@ msgstr "Denna rabattkod gäller inte för denna medlemskapsnivå."
7957
  #: includes/functions.php:1448
7958
  #: includes/functions.php:1703
7959
  #: includes/functions.php:1819
 
7960
  msgid "This discount code is okay."
7961
  msgstr "Denna rabattkod är ok."
7962
 
@@ -7983,6 +7995,7 @@ msgstr "Denna rabattkod är ok."
7983
  #: includes/functions.php:1475
7984
  #: includes/functions.php:1730
7985
  #: includes/functions.php:1847
 
7986
  msgid "and"
7987
  msgstr "och"
7988
 
@@ -8010,6 +8023,7 @@ msgstr "och"
8010
  #: includes/functions.php:1703
8011
  #: includes/functions.php:2015
8012
  #: includes/functions.php:2409
 
8013
  msgid "Sign Up for !!name!! Now"
8014
  msgstr "Registrera dig för !!namn!! nu"
8015
 
@@ -9141,6 +9155,7 @@ msgstr "Om ditt konto inte aktiverats inom några minuter, vänligen kontakta we
9141
  #: pages/invoice.php:82
9142
  #: pages/invoice.php:80
9143
  #: includes/functions.php:2857
 
9144
  msgid "Coupon"
9145
  msgstr "Kupong"
9146
 
@@ -14264,6 +14279,7 @@ msgid "No membership_id specified in pmpro_changeMembershipLevel."
14264
  msgstr ""
14265
 
14266
  #: includes/functions.php:2433
 
14267
  msgid "Sign Up Now"
14268
  msgstr ""
14269
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:33+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
3161
  #: includes/functions.php:2849
3162
  #: includes/privacy.php:277
3163
  #: adminpages/orders.php:615
3164
+ #: includes/functions.php:2880
3165
  msgid "Tax"
3166
  msgstr "Skatt"
3167
 
3202
  #: adminpages/dashboard.php:293
3203
  #: adminpages/orders.php:650
3204
  #: adminpages/orders.php:1344
3205
+ #: includes/functions.php:2909
3206
  msgid "Total"
3207
  msgstr "Totalt"
3208
 
4799
  #: pages/invoice.php:79
4800
  #: pages/invoice.php:77
4801
  #: includes/functions.php:2842
4802
+ #: includes/functions.php:2873
4803
  msgid "Subtotal"
4804
  msgstr "Delsumma"
4805
 
7784
  #: includes/functions.php:1237
7785
  #: includes/functions.php:1304
7786
  #: includes/functions.php:1342
7787
+ #: includes/functions.php:1335
7788
+ #: includes/functions.php:1373
7789
  msgid "Membership level not found."
7790
  msgstr "Medlemskapsnivå hittades inte."
7791
 
7805
  #: includes/functions.php:1362
7806
  #: includes/functions.php:1605
7807
  #: includes/functions.php:1722
7808
+ #: includes/functions.php:1753
7809
  msgid "No code was given to check."
7810
  msgstr "Ingen kod angavs för kontroll."
7811
 
7832
  #: includes/functions.php:1371
7833
  #: includes/functions.php:1614
7834
  #: includes/functions.php:1731
7835
+ #: includes/functions.php:1762
7836
  msgid "The discount code could not be found."
7837
  msgstr "Rabattkod kunde inte hittas."
7838
 
7859
  #: includes/functions.php:1386
7860
  #: includes/functions.php:1629
7861
  #: includes/functions.php:1746
7862
+ #: includes/functions.php:1777
7863
  #, php-format
7864
  msgid "This discount code goes into effect on %s."
7865
  msgstr "Denna rabattkod börjar gälla %s."
7887
  #: includes/functions.php:1393
7888
  #: includes/functions.php:1636
7889
  #: includes/functions.php:1753
7890
+ #: includes/functions.php:1784
7891
  #, php-format
7892
  msgid "This discount code expired on %s."
7893
  msgstr "Denna rabattkod upphörde %s."
7915
  #: includes/functions.php:1403
7916
  #: includes/functions.php:1646
7917
  #: includes/functions.php:1762
7918
+ #: includes/functions.php:1793
7919
  msgid "This discount code is no longer valid."
7920
  msgstr "Denna rabattkod är inte längre giltig"
7921
 
7941
  #: includes/functions.php:1416
7942
  #: includes/functions.php:1666
7943
  #: includes/functions.php:1781
7944
+ #: includes/functions.php:1812
7945
  msgid "This discount code does not apply to this membership level."
7946
  msgstr "Denna rabattkod gäller inte för denna medlemskapsnivå."
7947
 
7968
  #: includes/functions.php:1448
7969
  #: includes/functions.php:1703
7970
  #: includes/functions.php:1819
7971
+ #: includes/functions.php:1850
7972
  msgid "This discount code is okay."
7973
  msgstr "Denna rabattkod är ok."
7974
 
7995
  #: includes/functions.php:1475
7996
  #: includes/functions.php:1730
7997
  #: includes/functions.php:1847
7998
+ #: includes/functions.php:1878
7999
  msgid "and"
8000
  msgstr "och"
8001
 
8023
  #: includes/functions.php:1703
8024
  #: includes/functions.php:2015
8025
  #: includes/functions.php:2409
8026
+ #: includes/functions.php:2440
8027
  msgid "Sign Up for !!name!! Now"
8028
  msgstr "Registrera dig för !!namn!! nu"
8029
 
9155
  #: pages/invoice.php:82
9156
  #: pages/invoice.php:80
9157
  #: includes/functions.php:2857
9158
+ #: includes/functions.php:2888
9159
  msgid "Coupon"
9160
  msgstr "Kupong"
9161
 
14279
  msgstr ""
14280
 
14281
  #: includes/functions.php:2433
14282
+ #: includes/functions.php:2464
14283
  msgid "Sign Up Now"
14284
  msgstr ""
14285
 
languages/paid-memberships-pro-tr_TR.mo CHANGED
Binary file
languages/paid-memberships-pro-tr_TR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:26+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -1814,6 +1814,7 @@ msgstr "Ara Toplam"
1814
  #: includes/functions.php:2849
1815
  #: includes/privacy.php:277
1816
  #: adminpages/orders.php:615
 
1817
  msgid "Tax"
1818
  msgstr "Vergi"
1819
 
@@ -1839,6 +1840,7 @@ msgstr "Kupon Tutarı"
1839
  #: adminpages/dashboard.php:293
1840
  #: adminpages/orders.php:650
1841
  #: adminpages/orders.php:1344
 
1842
  msgid "Total"
1843
  msgstr "Toplam"
1844
 
@@ -4012,6 +4014,8 @@ msgstr "Veritabanı etkileşim hatası."
4012
  #: includes/functions.php:720
4013
  #: includes/functions.php:1304
4014
  #: includes/functions.php:1342
 
 
4015
  msgid "Membership level not found."
4016
  msgstr "Üyelik seviye bulunamadı."
4017
 
@@ -4022,6 +4026,7 @@ msgstr "Üyelik seviye bulunamadı."
4022
  #: includes/functions.php:1099
4023
  #: includes/functions.php:1102
4024
  #: includes/functions.php:1731
 
4025
  msgid "The discount code could not be found."
4026
  msgstr "İndirim kupon kodu bulunamadı."
4027
 
@@ -4032,6 +4037,7 @@ msgstr "İndirim kupon kodu bulunamadı."
4032
  #: includes/functions.php:1115
4033
  #: includes/functions.php:1118
4034
  #: includes/functions.php:1746
 
4035
  #, php-format
4036
  msgid "This discount code goes into effect on %s."
4037
  msgstr "Bu indirim kodu %s tarihinde kullanıma açılır."
@@ -4043,6 +4049,7 @@ msgstr "Bu indirim kodu %s tarihinde kullanıma açılır."
4043
  #: includes/functions.php:1124
4044
  #: includes/functions.php:1127
4045
  #: includes/functions.php:1753
 
4046
  #, php-format
4047
  msgid "This discount code expired on %s."
4048
  msgstr "Bu indirim kupon kodu %s tarihinde sona ermiştir ."
@@ -4054,6 +4061,7 @@ msgstr "Bu indirim kupon kodu %s tarihinde sona ermiştir ."
4054
  #: includes/functions.php:1136
4055
  #: includes/functions.php:1139
4056
  #: includes/functions.php:1762
 
4057
  msgid "This discount code is no longer valid."
4058
  msgstr "Bu indirim kodunu artık geçerli değil."
4059
 
@@ -4064,6 +4072,7 @@ msgstr "Bu indirim kodunu artık geçerli değil."
4064
  #: includes/functions.php:1151
4065
  #: includes/functions.php:1154
4066
  #: includes/functions.php:1781
 
4067
  msgid "This discount code does not apply to this membership level."
4068
  msgstr "Bu indirim kupon kodu üyelik seviyesi için geçerli değildir."
4069
 
@@ -4074,6 +4083,7 @@ msgstr "Bu indirim kupon kodu üyelik seviyesi için geçerli değildir."
4074
  #: includes/functions.php:1159
4075
  #: includes/functions.php:1162
4076
  #: includes/functions.php:1819
 
4077
  msgid "This discount code is okay."
4078
  msgstr "İndirim kodu tamam"
4079
 
@@ -4084,6 +4094,7 @@ msgstr "İndirim kodu tamam"
4084
  #: includes/functions.php:1183
4085
  #: includes/functions.php:1186
4086
  #: includes/functions.php:1847
 
4087
  msgid "and"
4088
  msgstr "ve"
4089
 
@@ -4094,6 +4105,7 @@ msgstr "ve"
4094
  #: includes/functions.php:1372
4095
  #: includes/functions.php:1375
4096
  #: includes/functions.php:2409
 
4097
  msgid "Sign Up for !!name!! Now"
4098
  msgstr "!!name!! Şimdi Üye Ol"
4099
 
@@ -4898,12 +4910,14 @@ msgstr "Eğer hesabınız birkaç dakika içinde aktif olmazsa bizimle iletişim
4898
  #: pages/invoice.php:79
4899
  #: pages/invoice.php:77
4900
  #: includes/functions.php:2842
 
4901
  msgid "Subtotal"
4902
  msgstr "Ara-toplam"
4903
 
4904
  #: pages/invoice.php:82
4905
  #: pages/invoice.php:80
4906
  #: includes/functions.php:2857
 
4907
  msgid "Coupon"
4908
  msgstr "Kupon"
4909
 
@@ -9935,10 +9949,12 @@ msgid "Error interacting with database: %s"
9935
  msgstr ""
9936
 
9937
  #: includes/functions.php:1722
 
9938
  msgid "No code was given to check."
9939
  msgstr ""
9940
 
9941
  #: includes/functions.php:2433
 
9942
  msgid "Sign Up Now"
9943
  msgstr ""
9944
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:35+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
1814
  #: includes/functions.php:2849
1815
  #: includes/privacy.php:277
1816
  #: adminpages/orders.php:615
1817
+ #: includes/functions.php:2880
1818
  msgid "Tax"
1819
  msgstr "Vergi"
1820
 
1840
  #: adminpages/dashboard.php:293
1841
  #: adminpages/orders.php:650
1842
  #: adminpages/orders.php:1344
1843
+ #: includes/functions.php:2909
1844
  msgid "Total"
1845
  msgstr "Toplam"
1846
 
4014
  #: includes/functions.php:720
4015
  #: includes/functions.php:1304
4016
  #: includes/functions.php:1342
4017
+ #: includes/functions.php:1335
4018
+ #: includes/functions.php:1373
4019
  msgid "Membership level not found."
4020
  msgstr "Üyelik seviye bulunamadı."
4021
 
4026
  #: includes/functions.php:1099
4027
  #: includes/functions.php:1102
4028
  #: includes/functions.php:1731
4029
+ #: includes/functions.php:1762
4030
  msgid "The discount code could not be found."
4031
  msgstr "İndirim kupon kodu bulunamadı."
4032
 
4037
  #: includes/functions.php:1115
4038
  #: includes/functions.php:1118
4039
  #: includes/functions.php:1746
4040
+ #: includes/functions.php:1777
4041
  #, php-format
4042
  msgid "This discount code goes into effect on %s."
4043
  msgstr "Bu indirim kodu %s tarihinde kullanıma açılır."
4049
  #: includes/functions.php:1124
4050
  #: includes/functions.php:1127
4051
  #: includes/functions.php:1753
4052
+ #: includes/functions.php:1784
4053
  #, php-format
4054
  msgid "This discount code expired on %s."
4055
  msgstr "Bu indirim kupon kodu %s tarihinde sona ermiştir ."
4061
  #: includes/functions.php:1136
4062
  #: includes/functions.php:1139
4063
  #: includes/functions.php:1762
4064
+ #: includes/functions.php:1793
4065
  msgid "This discount code is no longer valid."
4066
  msgstr "Bu indirim kodunu artık geçerli değil."
4067
 
4072
  #: includes/functions.php:1151
4073
  #: includes/functions.php:1154
4074
  #: includes/functions.php:1781
4075
+ #: includes/functions.php:1812
4076
  msgid "This discount code does not apply to this membership level."
4077
  msgstr "Bu indirim kupon kodu üyelik seviyesi için geçerli değildir."
4078
 
4083
  #: includes/functions.php:1159
4084
  #: includes/functions.php:1162
4085
  #: includes/functions.php:1819
4086
+ #: includes/functions.php:1850
4087
  msgid "This discount code is okay."
4088
  msgstr "İndirim kodu tamam"
4089
 
4094
  #: includes/functions.php:1183
4095
  #: includes/functions.php:1186
4096
  #: includes/functions.php:1847
4097
+ #: includes/functions.php:1878
4098
  msgid "and"
4099
  msgstr "ve"
4100
 
4105
  #: includes/functions.php:1372
4106
  #: includes/functions.php:1375
4107
  #: includes/functions.php:2409
4108
+ #: includes/functions.php:2440
4109
  msgid "Sign Up for !!name!! Now"
4110
  msgstr "!!name!! Şimdi Üye Ol"
4111
 
4910
  #: pages/invoice.php:79
4911
  #: pages/invoice.php:77
4912
  #: includes/functions.php:2842
4913
+ #: includes/functions.php:2873
4914
  msgid "Subtotal"
4915
  msgstr "Ara-toplam"
4916
 
4917
  #: pages/invoice.php:82
4918
  #: pages/invoice.php:80
4919
  #: includes/functions.php:2857
4920
+ #: includes/functions.php:2888
4921
  msgid "Coupon"
4922
  msgstr "Kupon"
4923
 
9949
  msgstr ""
9950
 
9951
  #: includes/functions.php:1722
9952
+ #: includes/functions.php:1753
9953
  msgid "No code was given to check."
9954
  msgstr ""
9955
 
9956
  #: includes/functions.php:2433
9957
+ #: includes/functions.php:2464
9958
  msgid "Sign Up Now"
9959
  msgstr ""
9960
 
languages/paid-memberships-pro-vi.mo CHANGED
Binary file
languages/paid-memberships-pro-vi.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2504,6 +2504,7 @@ msgstr ""
2504
  #: includes/functions.php:2849
2505
  #: includes/privacy.php:277
2506
  #: adminpages/orders.php:615
 
2507
  msgid "Tax"
2508
  msgstr ""
2509
 
@@ -2530,6 +2531,7 @@ msgstr ""
2530
  #: adminpages/dashboard.php:293
2531
  #: adminpages/orders.php:650
2532
  #: adminpages/orders.php:1344
 
2533
  msgid "Total"
2534
  msgstr ""
2535
 
@@ -5763,6 +5765,8 @@ msgstr "Lỗi tương tác với cơ sở dữ liệu"
5763
  #: includes/functions.php:803
5764
  #: includes/functions.php:1304
5765
  #: includes/functions.php:1342
 
 
5766
  msgid "Membership level not found."
5767
  msgstr "Kiểu thành viên không có"
5768
 
@@ -5776,6 +5780,7 @@ msgstr "Kiểu thành viên không có"
5776
  #: includes/functions.php:1157
5777
  #: includes/functions.php:1173
5778
  #: includes/functions.php:1722
 
5779
  msgid "No code was given to check."
5780
  msgstr "Không có mã đã được đưa ra để kiểm tra."
5781
 
@@ -5796,6 +5801,7 @@ msgstr "Không có mã đã được đưa ra để kiểm tra."
5796
  #: includes/functions.php:1166
5797
  #: includes/functions.php:1182
5798
  #: includes/functions.php:1731
 
5799
  msgid "The discount code could not be found."
5800
  msgstr "Mã giảm giá không có hoặc hết hạn."
5801
 
@@ -5816,6 +5822,7 @@ msgstr "Mã giảm giá không có hoặc hết hạn."
5816
  #: includes/functions.php:1181
5817
  #: includes/functions.php:1197
5818
  #: includes/functions.php:1746
 
5819
  #, php-format
5820
  msgid "This discount code goes into effect on %s."
5821
  msgstr "Mã giảm giá này sẽ có hiệu lực đến %s."
@@ -5837,6 +5844,7 @@ msgstr "Mã giảm giá này sẽ có hiệu lực đến %s."
5837
  #: includes/functions.php:1188
5838
  #: includes/functions.php:1204
5839
  #: includes/functions.php:1753
 
5840
  #, php-format
5841
  msgid "This discount code expired on %s."
5842
  msgstr "Mã giảm giá này sẽ hết hiệu lực vào %s."
@@ -5858,6 +5866,7 @@ msgstr "Mã giảm giá này sẽ hết hiệu lực vào %s."
5858
  #: includes/functions.php:1198
5859
  #: includes/functions.php:1214
5860
  #: includes/functions.php:1762
 
5861
  msgid "This discount code is no longer valid."
5862
  msgstr "Mã giảm giá này đã hết hạn"
5863
 
@@ -5877,6 +5886,7 @@ msgstr "Mã giảm giá này đã hết hạn"
5877
  #: includes/functions.php:1211
5878
  #: includes/functions.php:1227
5879
  #: includes/functions.php:1781
 
5880
  msgid "This discount code does not apply to this membership level."
5881
  msgstr "9Mã giảm giá này không áp dung cho kiểu thành viên này"
5882
 
@@ -5897,6 +5907,7 @@ msgstr "9Mã giảm giá này không áp dung cho kiểu thành viên này"
5897
  #: includes/functions.php:1237
5898
  #: includes/functions.php:1253
5899
  #: includes/functions.php:1819
 
5900
  msgid "This discount code is okay."
5901
  msgstr "Mã giảm giá này có hiệu lực"
5902
 
@@ -5916,6 +5927,7 @@ msgstr "Mã giảm giá này có hiệu lực"
5916
  #: includes/functions.php:1262
5917
  #: includes/functions.php:1278
5918
  #: includes/functions.php:1847
 
5919
  msgid "and"
5920
  msgstr "và"
5921
 
@@ -5935,6 +5947,7 @@ msgstr "và"
5935
  #: includes/functions.php:1457
5936
  #: includes/functions.php:1473
5937
  #: includes/functions.php:2409
 
5938
  msgid "Sign Up for !!name!! Now"
5939
  msgstr "Đăng ký ngay cho !!name!!"
5940
 
@@ -6775,12 +6788,14 @@ msgstr "Nếu tài khoản của bạn chưa được kích hoạt trong vòng m
6775
  #: pages/invoice.php:79
6776
  #: pages/invoice.php:77
6777
  #: includes/functions.php:2842
 
6778
  msgid "Subtotal"
6779
  msgstr "Tổng phụ"
6780
 
6781
  #: pages/invoice.php:82
6782
  #: pages/invoice.php:80
6783
  #: includes/functions.php:2857
 
6784
  msgid "Coupon"
6785
  msgstr "Mã khuyến mại"
6786
 
@@ -11823,6 +11838,7 @@ msgid "Error interacting with database: %s"
11823
  msgstr ""
11824
 
11825
  #: includes/functions.php:2433
 
11826
  msgid "Sign Up Now"
11827
  msgstr ""
11828
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:38+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2504
  #: includes/functions.php:2849
2505
  #: includes/privacy.php:277
2506
  #: adminpages/orders.php:615
2507
+ #: includes/functions.php:2880
2508
  msgid "Tax"
2509
  msgstr ""
2510
 
2531
  #: adminpages/dashboard.php:293
2532
  #: adminpages/orders.php:650
2533
  #: adminpages/orders.php:1344
2534
+ #: includes/functions.php:2909
2535
  msgid "Total"
2536
  msgstr ""
2537
 
5765
  #: includes/functions.php:803
5766
  #: includes/functions.php:1304
5767
  #: includes/functions.php:1342
5768
+ #: includes/functions.php:1335
5769
+ #: includes/functions.php:1373
5770
  msgid "Membership level not found."
5771
  msgstr "Kiểu thành viên không có"
5772
 
5780
  #: includes/functions.php:1157
5781
  #: includes/functions.php:1173
5782
  #: includes/functions.php:1722
5783
+ #: includes/functions.php:1753
5784
  msgid "No code was given to check."
5785
  msgstr "Không có mã đã được đưa ra để kiểm tra."
5786
 
5801
  #: includes/functions.php:1166
5802
  #: includes/functions.php:1182
5803
  #: includes/functions.php:1731
5804
+ #: includes/functions.php:1762
5805
  msgid "The discount code could not be found."
5806
  msgstr "Mã giảm giá không có hoặc hết hạn."
5807
 
5822
  #: includes/functions.php:1181
5823
  #: includes/functions.php:1197
5824
  #: includes/functions.php:1746
5825
+ #: includes/functions.php:1777
5826
  #, php-format
5827
  msgid "This discount code goes into effect on %s."
5828
  msgstr "Mã giảm giá này sẽ có hiệu lực đến %s."
5844
  #: includes/functions.php:1188
5845
  #: includes/functions.php:1204
5846
  #: includes/functions.php:1753
5847
+ #: includes/functions.php:1784
5848
  #, php-format
5849
  msgid "This discount code expired on %s."
5850
  msgstr "Mã giảm giá này sẽ hết hiệu lực vào %s."
5866
  #: includes/functions.php:1198
5867
  #: includes/functions.php:1214
5868
  #: includes/functions.php:1762
5869
+ #: includes/functions.php:1793
5870
  msgid "This discount code is no longer valid."
5871
  msgstr "Mã giảm giá này đã hết hạn"
5872
 
5886
  #: includes/functions.php:1211
5887
  #: includes/functions.php:1227
5888
  #: includes/functions.php:1781
5889
+ #: includes/functions.php:1812
5890
  msgid "This discount code does not apply to this membership level."
5891
  msgstr "9Mã giảm giá này không áp dung cho kiểu thành viên này"
5892
 
5907
  #: includes/functions.php:1237
5908
  #: includes/functions.php:1253
5909
  #: includes/functions.php:1819
5910
+ #: includes/functions.php:1850
5911
  msgid "This discount code is okay."
5912
  msgstr "Mã giảm giá này có hiệu lực"
5913
 
5927
  #: includes/functions.php:1262
5928
  #: includes/functions.php:1278
5929
  #: includes/functions.php:1847
5930
+ #: includes/functions.php:1878
5931
  msgid "and"
5932
  msgstr "và"
5933
 
5947
  #: includes/functions.php:1457
5948
  #: includes/functions.php:1473
5949
  #: includes/functions.php:2409
5950
+ #: includes/functions.php:2440
5951
  msgid "Sign Up for !!name!! Now"
5952
  msgstr "Đăng ký ngay cho !!name!!"
5953
 
6788
  #: pages/invoice.php:79
6789
  #: pages/invoice.php:77
6790
  #: includes/functions.php:2842
6791
+ #: includes/functions.php:2873
6792
  msgid "Subtotal"
6793
  msgstr "Tổng phụ"
6794
 
6795
  #: pages/invoice.php:82
6796
  #: pages/invoice.php:80
6797
  #: includes/functions.php:2857
6798
+ #: includes/functions.php:2888
6799
  msgid "Coupon"
6800
  msgstr "Mã khuyến mại"
6801
 
11838
  msgstr ""
11839
 
11840
  #: includes/functions.php:2433
11841
+ #: includes/functions.php:2464
11842
  msgid "Sign Up Now"
11843
  msgstr ""
11844
 
languages/paid-memberships-pro-zh_HK.mo CHANGED
Binary file
languages/paid-memberships-pro-zh_HK.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:26:31+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -3161,6 +3161,7 @@ msgstr "小計部分"
3161
  #: includes/functions.php:2849
3162
  #: includes/privacy.php:277
3163
  #: adminpages/orders.php:615
 
3164
  msgid "Tax"
3165
  msgstr "稅"
3166
 
@@ -3201,6 +3202,7 @@ msgstr "禮券數量"
3201
  #: adminpages/dashboard.php:293
3202
  #: adminpages/orders.php:650
3203
  #: adminpages/orders.php:1344
 
3204
  msgid "Total"
3205
  msgstr "總數"
3206
 
@@ -4807,6 +4809,7 @@ msgstr "價錢"
4807
  #: pages/invoice.php:79
4808
  #: pages/invoice.php:77
4809
  #: includes/functions.php:2842
 
4810
  msgid "Subtotal"
4811
  msgstr "小計部分總數"
4812
 
@@ -7791,6 +7794,8 @@ msgstr "同數據庫交流有錯: %s"
7791
  #: includes/functions.php:1237
7792
  #: includes/functions.php:1304
7793
  #: includes/functions.php:1342
 
 
7794
  msgid "Membership level not found."
7795
  msgstr "找不到會籍程度."
7796
 
@@ -7810,6 +7815,7 @@ msgstr "找不到會籍程度."
7810
  #: includes/functions.php:1362
7811
  #: includes/functions.php:1605
7812
  #: includes/functions.php:1722
 
7813
  msgid "No code was given to check."
7814
  msgstr "無給到密碼來檢查."
7815
 
@@ -7836,6 +7842,7 @@ msgstr "無給到密碼來檢查."
7836
  #: includes/functions.php:1371
7837
  #: includes/functions.php:1614
7838
  #: includes/functions.php:1731
 
7839
  msgid "The discount code could not be found."
7840
  msgstr "减價密碼找不到."
7841
 
@@ -7862,6 +7869,7 @@ msgstr "减價密碼找不到."
7862
  #: includes/functions.php:1386
7863
  #: includes/functions.php:1629
7864
  #: includes/functions.php:1746
 
7865
  #, php-format
7866
  msgid "This discount code goes into effect on %s."
7867
  msgstr "减價密碼生效在 %s."
@@ -7889,6 +7897,7 @@ msgstr "减價密碼生效在 %s."
7889
  #: includes/functions.php:1393
7890
  #: includes/functions.php:1636
7891
  #: includes/functions.php:1753
 
7892
  #, php-format
7893
  msgid "This discount code expired on %s."
7894
  msgstr "减價密碼到期在 %s."
@@ -7916,6 +7925,7 @@ msgstr "减價密碼到期在 %s."
7916
  #: includes/functions.php:1403
7917
  #: includes/functions.php:1646
7918
  #: includes/functions.php:1762
 
7919
  msgid "This discount code is no longer valid."
7920
  msgstr "减價密碼已經不承認了."
7921
 
@@ -7941,6 +7951,7 @@ msgstr "减價密碼已經不承認了."
7941
  #: includes/functions.php:1416
7942
  #: includes/functions.php:1666
7943
  #: includes/functions.php:1781
 
7944
  msgid "This discount code does not apply to this membership level."
7945
  msgstr "减價密碼不可以啟用在這個程度."
7946
 
@@ -7967,6 +7978,7 @@ msgstr "减價密碼不可以啟用在這個程度."
7967
  #: includes/functions.php:1448
7968
  #: includes/functions.php:1703
7969
  #: includes/functions.php:1819
 
7970
  msgid "This discount code is okay."
7971
  msgstr "减價密碼無問題."
7972
 
@@ -8000,6 +8012,7 @@ msgstr "减價密碼無問題."
8000
  #: includes/functions.php:1475
8001
  #: includes/functions.php:1730
8002
  #: includes/functions.php:1847
 
8003
  msgid "and"
8004
  msgstr "和"
8005
 
@@ -8027,6 +8040,7 @@ msgstr "和"
8027
  #: includes/functions.php:1703
8028
  #: includes/functions.php:2015
8029
  #: includes/functions.php:2409
 
8030
  msgid "Sign Up for !!name!! Now"
8031
  msgstr "馬上報名加入到 !!name!!啊"
8032
 
@@ -9158,6 +9172,7 @@ msgstr "如果你的戶口在幾分鐘後都是無活躍, 請您通告網站的
9158
  #: pages/invoice.php:82
9159
  #: pages/invoice.php:80
9160
  #: includes/functions.php:2857
 
9161
  msgid "Coupon"
9162
  msgstr "禮券"
9163
 
@@ -14347,6 +14362,7 @@ msgid "No membership_id specified in pmpro_changeMembershipLevel."
14347
  msgstr ""
14348
 
14349
  #: includes/functions.php:2433
 
14350
  msgid "Sign Up Now"
14351
  msgstr ""
14352
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:34:40+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
3161
  #: includes/functions.php:2849
3162
  #: includes/privacy.php:277
3163
  #: adminpages/orders.php:615
3164
+ #: includes/functions.php:2880
3165
  msgid "Tax"
3166
  msgstr "稅"
3167
 
3202
  #: adminpages/dashboard.php:293
3203
  #: adminpages/orders.php:650
3204
  #: adminpages/orders.php:1344
3205
+ #: includes/functions.php:2909
3206
  msgid "Total"
3207
  msgstr "總數"
3208
 
4809
  #: pages/invoice.php:79
4810
  #: pages/invoice.php:77
4811
  #: includes/functions.php:2842
4812
+ #: includes/functions.php:2873
4813
  msgid "Subtotal"
4814
  msgstr "小計部分總數"
4815
 
7794
  #: includes/functions.php:1237
7795
  #: includes/functions.php:1304
7796
  #: includes/functions.php:1342
7797
+ #: includes/functions.php:1335
7798
+ #: includes/functions.php:1373
7799
  msgid "Membership level not found."
7800
  msgstr "找不到會籍程度."
7801
 
7815
  #: includes/functions.php:1362
7816
  #: includes/functions.php:1605
7817
  #: includes/functions.php:1722
7818
+ #: includes/functions.php:1753
7819
  msgid "No code was given to check."
7820
  msgstr "無給到密碼來檢查."
7821
 
7842
  #: includes/functions.php:1371
7843
  #: includes/functions.php:1614
7844
  #: includes/functions.php:1731
7845
+ #: includes/functions.php:1762
7846
  msgid "The discount code could not be found."
7847
  msgstr "减價密碼找不到."
7848
 
7869
  #: includes/functions.php:1386
7870
  #: includes/functions.php:1629
7871
  #: includes/functions.php:1746
7872
+ #: includes/functions.php:1777
7873
  #, php-format
7874
  msgid "This discount code goes into effect on %s."
7875
  msgstr "减價密碼生效在 %s."
7897
  #: includes/functions.php:1393
7898
  #: includes/functions.php:1636
7899
  #: includes/functions.php:1753
7900
+ #: includes/functions.php:1784
7901
  #, php-format
7902
  msgid "This discount code expired on %s."
7903
  msgstr "减價密碼到期在 %s."
7925
  #: includes/functions.php:1403
7926
  #: includes/functions.php:1646
7927
  #: includes/functions.php:1762
7928
+ #: includes/functions.php:1793
7929
  msgid "This discount code is no longer valid."
7930
  msgstr "减價密碼已經不承認了."
7931
 
7951
  #: includes/functions.php:1416
7952
  #: includes/functions.php:1666
7953
  #: includes/functions.php:1781
7954
+ #: includes/functions.php:1812
7955
  msgid "This discount code does not apply to this membership level."
7956
  msgstr "减價密碼不可以啟用在這個程度."
7957
 
7978
  #: includes/functions.php:1448
7979
  #: includes/functions.php:1703
7980
  #: includes/functions.php:1819
7981
+ #: includes/functions.php:1850
7982
  msgid "This discount code is okay."
7983
  msgstr "减價密碼無問題."
7984
 
8012
  #: includes/functions.php:1475
8013
  #: includes/functions.php:1730
8014
  #: includes/functions.php:1847
8015
+ #: includes/functions.php:1878
8016
  msgid "and"
8017
  msgstr "和"
8018
 
8040
  #: includes/functions.php:1703
8041
  #: includes/functions.php:2015
8042
  #: includes/functions.php:2409
8043
+ #: includes/functions.php:2440
8044
  msgid "Sign Up for !!name!! Now"
8045
  msgstr "馬上報名加入到 !!name!!啊"
8046
 
9172
  #: pages/invoice.php:82
9173
  #: pages/invoice.php:80
9174
  #: includes/functions.php:2857
9175
+ #: includes/functions.php:2888
9176
  msgid "Coupon"
9177
  msgstr "禮券"
9178
 
14362
  msgstr ""
14363
 
14364
  #: includes/functions.php:2433
14365
+ #: includes/functions.php:2464
14366
  msgid "Sign Up Now"
14367
  msgstr ""
14368
 
languages/paid-memberships-pro.mo CHANGED
Binary file
languages/paid-memberships-pro.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:17+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2551,6 +2551,7 @@ msgstr ""
2551
  #: includes/functions.php:2878
2552
  #: adminpages/orders.php:650
2553
  #: adminpages/orders.php:1344
 
2554
  msgid "Total"
2555
  msgstr ""
2556
 
@@ -6248,6 +6249,7 @@ msgstr ""
6248
  #: pages/invoice.php:89
6249
  #: includes/functions.php:2849
6250
  #: adminpages/orders.php:615
 
6251
  msgid "Tax"
6252
  msgstr ""
6253
 
@@ -15343,6 +15345,8 @@ msgstr ""
15343
  #: includes/functions.php:1331
15344
  #: includes/functions.php:1304
15345
  #: includes/functions.php:1342
 
 
15346
  msgid "Membership level not found."
15347
  msgstr ""
15348
 
@@ -15375,6 +15379,7 @@ msgstr ""
15375
  #: includes/functions.php:1658
15376
  #: includes/functions.php:1709
15377
  #: includes/functions.php:1722
 
15378
  msgid "No code was given to check."
15379
  msgstr ""
15380
 
@@ -15414,6 +15419,7 @@ msgstr ""
15414
  #: includes/functions.php:1667
15415
  #: includes/functions.php:1718
15416
  #: includes/functions.php:1731
 
15417
  msgid "The discount code could not be found."
15418
  msgstr ""
15419
 
@@ -15453,6 +15459,7 @@ msgstr ""
15453
  #: includes/functions.php:1682
15454
  #: includes/functions.php:1733
15455
  #: includes/functions.php:1746
 
15456
  #, php-format
15457
  msgid "This discount code goes into effect on %s."
15458
  msgstr ""
@@ -15493,6 +15500,7 @@ msgstr ""
15493
  #: includes/functions.php:1689
15494
  #: includes/functions.php:1740
15495
  #: includes/functions.php:1753
 
15496
  #, php-format
15497
  msgid "This discount code expired on %s."
15498
  msgstr ""
@@ -15533,6 +15541,7 @@ msgstr ""
15533
  #: includes/functions.php:1698
15534
  #: includes/functions.php:1749
15535
  #: includes/functions.php:1762
 
15536
  msgid "This discount code is no longer valid."
15537
  msgstr ""
15538
 
@@ -15571,6 +15580,7 @@ msgstr ""
15571
  #: includes/functions.php:1717
15572
  #: includes/functions.php:1768
15573
  #: includes/functions.php:1781
 
15574
  msgid "This discount code does not apply to this membership level."
15575
  msgstr ""
15576
 
@@ -15610,6 +15620,7 @@ msgstr ""
15610
  #: includes/functions.php:1755
15611
  #: includes/functions.php:1806
15612
  #: includes/functions.php:1819
 
15613
  msgid "This discount code is okay."
15614
  msgstr ""
15615
 
@@ -15649,6 +15660,7 @@ msgstr ""
15649
  #: includes/functions.php:1783
15650
  #: includes/functions.php:1834
15651
  #: includes/functions.php:1847
 
15652
  msgid "and"
15653
  msgstr ""
15654
 
@@ -15693,6 +15705,7 @@ msgstr ""
15693
  #: includes/functions.php:2303
15694
  #: includes/functions.php:2388
15695
  #: includes/functions.php:2409
 
15696
  msgid "Sign Up for !!name!! Now"
15697
  msgstr ""
15698
 
@@ -15709,6 +15722,7 @@ msgstr ""
15709
  #: includes/functions.php:2327
15710
  #: includes/functions.php:2412
15711
  #: includes/functions.php:2433
 
15712
  msgid "Sign Up Now"
15713
  msgstr ""
15714
 
@@ -15731,6 +15745,7 @@ msgstr ""
15731
  #: pages/invoice.php:84
15732
  #: pages/invoice.php:88
15733
  #: includes/functions.php:2842
 
15734
  msgid "Subtotal"
15735
  msgstr ""
15736
 
@@ -15751,6 +15766,7 @@ msgstr ""
15751
  #: pages/invoice.php:87
15752
  #: pages/invoice.php:91
15753
  #: includes/functions.php:2857
 
15754
  msgid "Coupon"
15755
  msgstr ""
15756
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:36+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2551
  #: includes/functions.php:2878
2552
  #: adminpages/orders.php:650
2553
  #: adminpages/orders.php:1344
2554
+ #: includes/functions.php:2909
2555
  msgid "Total"
2556
  msgstr ""
2557
 
6249
  #: pages/invoice.php:89
6250
  #: includes/functions.php:2849
6251
  #: adminpages/orders.php:615
6252
+ #: includes/functions.php:2880
6253
  msgid "Tax"
6254
  msgstr ""
6255
 
15345
  #: includes/functions.php:1331
15346
  #: includes/functions.php:1304
15347
  #: includes/functions.php:1342
15348
+ #: includes/functions.php:1335
15349
+ #: includes/functions.php:1373
15350
  msgid "Membership level not found."
15351
  msgstr ""
15352
 
15379
  #: includes/functions.php:1658
15380
  #: includes/functions.php:1709
15381
  #: includes/functions.php:1722
15382
+ #: includes/functions.php:1753
15383
  msgid "No code was given to check."
15384
  msgstr ""
15385
 
15419
  #: includes/functions.php:1667
15420
  #: includes/functions.php:1718
15421
  #: includes/functions.php:1731
15422
+ #: includes/functions.php:1762
15423
  msgid "The discount code could not be found."
15424
  msgstr ""
15425
 
15459
  #: includes/functions.php:1682
15460
  #: includes/functions.php:1733
15461
  #: includes/functions.php:1746
15462
+ #: includes/functions.php:1777
15463
  #, php-format
15464
  msgid "This discount code goes into effect on %s."
15465
  msgstr ""
15500
  #: includes/functions.php:1689
15501
  #: includes/functions.php:1740
15502
  #: includes/functions.php:1753
15503
+ #: includes/functions.php:1784
15504
  #, php-format
15505
  msgid "This discount code expired on %s."
15506
  msgstr ""
15541
  #: includes/functions.php:1698
15542
  #: includes/functions.php:1749
15543
  #: includes/functions.php:1762
15544
+ #: includes/functions.php:1793
15545
  msgid "This discount code is no longer valid."
15546
  msgstr ""
15547
 
15580
  #: includes/functions.php:1717
15581
  #: includes/functions.php:1768
15582
  #: includes/functions.php:1781
15583
+ #: includes/functions.php:1812
15584
  msgid "This discount code does not apply to this membership level."
15585
  msgstr ""
15586
 
15620
  #: includes/functions.php:1755
15621
  #: includes/functions.php:1806
15622
  #: includes/functions.php:1819
15623
+ #: includes/functions.php:1850
15624
  msgid "This discount code is okay."
15625
  msgstr ""
15626
 
15660
  #: includes/functions.php:1783
15661
  #: includes/functions.php:1834
15662
  #: includes/functions.php:1847
15663
+ #: includes/functions.php:1878
15664
  msgid "and"
15665
  msgstr ""
15666
 
15705
  #: includes/functions.php:2303
15706
  #: includes/functions.php:2388
15707
  #: includes/functions.php:2409
15708
+ #: includes/functions.php:2440
15709
  msgid "Sign Up for !!name!! Now"
15710
  msgstr ""
15711
 
15722
  #: includes/functions.php:2327
15723
  #: includes/functions.php:2412
15724
  #: includes/functions.php:2433
15725
+ #: includes/functions.php:2464
15726
  msgid "Sign Up Now"
15727
  msgstr ""
15728
 
15745
  #: pages/invoice.php:84
15746
  #: pages/invoice.php:88
15747
  #: includes/functions.php:2842
15748
+ #: includes/functions.php:2873
15749
  msgid "Subtotal"
15750
  msgstr ""
15751
 
15766
  #: pages/invoice.php:87
15767
  #: pages/invoice.php:91
15768
  #: includes/functions.php:2857
15769
+ #: includes/functions.php:2888
15770
  msgid "Coupon"
15771
  msgstr ""
15772
 
languages/paid-memberships-pro.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.4\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-11-12T17:25:15+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -2551,6 +2551,7 @@ msgstr ""
2551
  #: includes/functions.php:2878
2552
  #: adminpages/orders.php:650
2553
  #: adminpages/orders.php:1344
 
2554
  msgid "Total"
2555
  msgstr ""
2556
 
@@ -6248,6 +6249,7 @@ msgstr ""
6248
  #: pages/invoice.php:89
6249
  #: includes/functions.php:2849
6250
  #: adminpages/orders.php:615
 
6251
  msgid "Tax"
6252
  msgstr ""
6253
 
@@ -15343,6 +15345,8 @@ msgstr ""
15343
  #: includes/functions.php:1331
15344
  #: includes/functions.php:1304
15345
  #: includes/functions.php:1342
 
 
15346
  msgid "Membership level not found."
15347
  msgstr ""
15348
 
@@ -15375,6 +15379,7 @@ msgstr ""
15375
  #: includes/functions.php:1658
15376
  #: includes/functions.php:1709
15377
  #: includes/functions.php:1722
 
15378
  msgid "No code was given to check."
15379
  msgstr ""
15380
 
@@ -15414,6 +15419,7 @@ msgstr ""
15414
  #: includes/functions.php:1667
15415
  #: includes/functions.php:1718
15416
  #: includes/functions.php:1731
 
15417
  msgid "The discount code could not be found."
15418
  msgstr ""
15419
 
@@ -15453,6 +15459,7 @@ msgstr ""
15453
  #: includes/functions.php:1682
15454
  #: includes/functions.php:1733
15455
  #: includes/functions.php:1746
 
15456
  #, php-format
15457
  msgid "This discount code goes into effect on %s."
15458
  msgstr ""
@@ -15493,6 +15500,7 @@ msgstr ""
15493
  #: includes/functions.php:1689
15494
  #: includes/functions.php:1740
15495
  #: includes/functions.php:1753
 
15496
  #, php-format
15497
  msgid "This discount code expired on %s."
15498
  msgstr ""
@@ -15533,6 +15541,7 @@ msgstr ""
15533
  #: includes/functions.php:1698
15534
  #: includes/functions.php:1749
15535
  #: includes/functions.php:1762
 
15536
  msgid "This discount code is no longer valid."
15537
  msgstr ""
15538
 
@@ -15571,6 +15580,7 @@ msgstr ""
15571
  #: includes/functions.php:1717
15572
  #: includes/functions.php:1768
15573
  #: includes/functions.php:1781
 
15574
  msgid "This discount code does not apply to this membership level."
15575
  msgstr ""
15576
 
@@ -15610,6 +15620,7 @@ msgstr ""
15610
  #: includes/functions.php:1755
15611
  #: includes/functions.php:1806
15612
  #: includes/functions.php:1819
 
15613
  msgid "This discount code is okay."
15614
  msgstr ""
15615
 
@@ -15649,6 +15660,7 @@ msgstr ""
15649
  #: includes/functions.php:1783
15650
  #: includes/functions.php:1834
15651
  #: includes/functions.php:1847
 
15652
  msgid "and"
15653
  msgstr ""
15654
 
@@ -15693,6 +15705,7 @@ msgstr ""
15693
  #: includes/functions.php:2303
15694
  #: includes/functions.php:2388
15695
  #: includes/functions.php:2409
 
15696
  msgid "Sign Up for !!name!! Now"
15697
  msgstr ""
15698
 
@@ -15709,6 +15722,7 @@ msgstr ""
15709
  #: includes/functions.php:2327
15710
  #: includes/functions.php:2412
15711
  #: includes/functions.php:2433
 
15712
  msgid "Sign Up Now"
15713
  msgstr ""
15714
 
@@ -15731,6 +15745,7 @@ msgstr ""
15731
  #: pages/invoice.php:84
15732
  #: pages/invoice.php:88
15733
  #: includes/functions.php:2842
 
15734
  msgid "Subtotal"
15735
  msgstr ""
15736
 
@@ -15751,6 +15766,7 @@ msgstr ""
15751
  #: pages/invoice.php:87
15752
  #: pages/invoice.php:91
15753
  #: includes/functions.php:2857
 
15754
  msgid "Coupon"
15755
  msgstr ""
15756
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.6\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-11-18T22:33:33+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
2551
  #: includes/functions.php:2878
2552
  #: adminpages/orders.php:650
2553
  #: adminpages/orders.php:1344
2554
+ #: includes/functions.php:2909
2555
  msgid "Total"
2556
  msgstr ""
2557
 
6249
  #: pages/invoice.php:89
6250
  #: includes/functions.php:2849
6251
  #: adminpages/orders.php:615
6252
+ #: includes/functions.php:2880
6253
  msgid "Tax"
6254
  msgstr ""
6255
 
15345
  #: includes/functions.php:1331
15346
  #: includes/functions.php:1304
15347
  #: includes/functions.php:1342
15348
+ #: includes/functions.php:1335
15349
+ #: includes/functions.php:1373
15350
  msgid "Membership level not found."
15351
  msgstr ""
15352
 
15379
  #: includes/functions.php:1658
15380
  #: includes/functions.php:1709
15381
  #: includes/functions.php:1722
15382
+ #: includes/functions.php:1753
15383
  msgid "No code was given to check."
15384
  msgstr ""
15385
 
15419
  #: includes/functions.php:1667
15420
  #: includes/functions.php:1718
15421
  #: includes/functions.php:1731
15422
+ #: includes/functions.php:1762
15423
  msgid "The discount code could not be found."
15424
  msgstr ""
15425
 
15459
  #: includes/functions.php:1682
15460
  #: includes/functions.php:1733
15461
  #: includes/functions.php:1746
15462
+ #: includes/functions.php:1777
15463
  #, php-format
15464
  msgid "This discount code goes into effect on %s."
15465
  msgstr ""
15500
  #: includes/functions.php:1689
15501
  #: includes/functions.php:1740
15502
  #: includes/functions.php:1753
15503
+ #: includes/functions.php:1784
15504
  #, php-format
15505
  msgid "This discount code expired on %s."
15506
  msgstr ""
15541
  #: includes/functions.php:1698
15542
  #: includes/functions.php:1749
15543
  #: includes/functions.php:1762
15544
+ #: includes/functions.php:1793
15545
  msgid "This discount code is no longer valid."
15546
  msgstr ""
15547
 
15580
  #: includes/functions.php:1717
15581
  #: includes/functions.php:1768
15582
  #: includes/functions.php:1781
15583
+ #: includes/functions.php:1812
15584
  msgid "This discount code does not apply to this membership level."
15585
  msgstr ""
15586
 
15620
  #: includes/functions.php:1755
15621
  #: includes/functions.php:1806
15622
  #: includes/functions.php:1819
15623
+ #: includes/functions.php:1850
15624
  msgid "This discount code is okay."
15625
  msgstr ""
15626
 
15660
  #: includes/functions.php:1783
15661
  #: includes/functions.php:1834
15662
  #: includes/functions.php:1847
15663
+ #: includes/functions.php:1878
15664
  msgid "and"
15665
  msgstr ""
15666
 
15705
  #: includes/functions.php:2303
15706
  #: includes/functions.php:2388
15707
  #: includes/functions.php:2409
15708
+ #: includes/functions.php:2440
15709
  msgid "Sign Up for !!name!! Now"
15710
  msgstr ""
15711
 
15722
  #: includes/functions.php:2327
15723
  #: includes/functions.php:2412
15724
  #: includes/functions.php:2433
15725
+ #: includes/functions.php:2464
15726
  msgid "Sign Up Now"
15727
  msgstr ""
15728
 
15745
  #: pages/invoice.php:84
15746
  #: pages/invoice.php:88
15747
  #: includes/functions.php:2842
15748
+ #: includes/functions.php:2873
15749
  msgid "Subtotal"
15750
  msgstr ""
15751
 
15766
  #: pages/invoice.php:87
15767
  #: pages/invoice.php:91
15768
  #: includes/functions.php:2857
15769
+ #: includes/functions.php:2888
15770
  msgid "Coupon"
15771
  msgstr ""
15772
 
paid-memberships-pro.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Paid Memberships Pro
4
  * Plugin URI: https://www.paidmembershipspro.com
5
  * Description: The most complete member management and membership subscriptions plugin for WordPress.
6
- * Version: 2.6.5
7
  * Author: Stranger Studios
8
  * Author URI: https://www.strangerstudios.com
9
  * Text Domain: paid-memberships-pro
@@ -16,7 +16,7 @@
16
  */
17
 
18
  // version constant
19
- define( 'PMPRO_VERSION', '2.6.5' );
20
  define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
21
  define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
22
 
3
  * Plugin Name: Paid Memberships Pro
4
  * Plugin URI: https://www.paidmembershipspro.com
5
  * Description: The most complete member management and membership subscriptions plugin for WordPress.
6
+ * Version: 2.6.6
7
  * Author: Stranger Studios
8
  * Author URI: https://www.strangerstudios.com
9
  * Text Domain: paid-memberships-pro
16
  */
17
 
18
  // version constant
19
+ define( 'PMPRO_VERSION', '2.6.6' );
20
  define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
21
  define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
22
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: memberships, members, subscriptions, ecommerce, user registration, member,
4
  Requires at least: 5.2
5
  Tested up to: 5.8.1
6
  Requires PHP: 5.6
7
- Stable tag: 2.6.5
8
 
9
  Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
10
 
@@ -156,6 +156,12 @@ Not sure? You can find out by doing a bit a research.
156
  9. Membership Account page, display all sections or show specific sections using shortcode attributes.
157
 
158
  == Changelog ==
 
 
 
 
 
 
159
  = 2.6.5 - 2021-11-12 =
160
  * ENHANCEMENT: Introduced new action `pmpro_before_commit_express_checkout` to allow additional changes after an order has been saved but before sending customer to PayPal Express checkout. #1852 (@mircobabini)
161
  * BUG FIX/ENHANCEMENT: Added login compatibility for Jetpack WordPress.com SSO when using the PMPro login page. #1848 (@sc0ttkclark)
4
  Requires at least: 5.2
5
  Tested up to: 5.8.1
6
  Requires PHP: 5.6
7
+ Stable tag: 2.6.6
8
 
9
  Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
10
 
156
  9. Membership Account page, display all sections or show specific sections using shortcode attributes.
157
 
158
  == Changelog ==
159
+ = 2.6.6 - 2021-11-18 =
160
+ * SECURITY: Updated escaping on the discount codes page in the dashboard to prevent XSS attacks. #1867 (Thanks, Erwan from WPScan)
161
+ * BUG FIX/ENHANCEMENT: Added code to remove duplicate active rows in the pmpro_memberships_users table after level change. This might have happened e.g. if users were purchasing a level via the WooCommerce Add On multiple times. #1860 (@dlparker1005)
162
+ * BUG FIX/ENHANCEMENT: Improved the REST API endpoints to better support Zapier native requirements. #1862 (@andrewlimaza)
163
+ * BUG FIX: Fixed PHP notices in the name parser library. #1861 (@sc0ttkclark)
164
+
165
  = 2.6.5 - 2021-11-12 =
166
  * ENHANCEMENT: Introduced new action `pmpro_before_commit_express_checkout` to allow additional changes after an order has been saved but before sending customer to PayPal Express checkout. #1852 (@mircobabini)
167
  * BUG FIX/ENHANCEMENT: Added login compatibility for Jetpack WordPress.com SSO when using the PMPro login page. #1848 (@sc0ttkclark)