Paid Memberships Pro - Version 1.9.4.2

Version Description

  • 2017-12-07 =
  • BUG FIX: Avoid double-encoding the API version in PayPal Standard gateway
  • BUG FIX: The update billing page now checks the gateway of the user's last order instead of the default gateway settings in case multiple gateways are in use or the default gateway has changed.
  • BUG FIX: Fixed bug where discount codes were not being applied properly if the pmpro_default_level custom field was set and used on a page.
  • BUG FIX: Credit card expiration emails were being to sent to members with PayPal Express orders.
  • BUG FIX: Now correctly unslashing instructions for the check gateway.
  • BUG FIX: Fixed issue with creating pages from the page settings page.
  • BUG FIX/ENHANCEMENT: Improved submit button and processing message position for default and RTL on checkout page.
  • BUG FIX/ENHANCEMENT: Added invoice total and total billed breakdown back to confirmation and invoice single views.
  • BUG FIX/ENHANCEMENT: Avoid double-encoding the PayPal API version number
  • ENHANCEMENT: Improved submit button and processing message position for default and RTL on checkout page.
  • ENHANCEMENT: Switched order of Publishable and Secret Key fields and added validation check.
  • ENHANCEMENT: Conditionally update members list headings for expired, cancelled, or old members.
Download this release

Release Info

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

Code changes from version 1.9.4.1 to 1.9.4.2

adminpages/memberslist.php CHANGED
@@ -175,6 +175,10 @@
175
  <?php
176
  if($l == "oldmembers")
177
  _e('Ended', 'paid-memberships-pro' );
 
 
 
 
178
  else
179
  _e('Expires', 'paid-memberships-pro' );
180
  ?>
175
  <?php
176
  if($l == "oldmembers")
177
  _e('Ended', 'paid-memberships-pro' );
178
+ elseif($l == "cancelled")
179
+ _e('Cancelled', 'paid-memberships-pro' );
180
+ elseif($l == "expired")
181
+ _e('Expired', 'paid-memberships-pro' );
182
  else
183
  _e('Expires', 'paid-memberships-pro' );
184
  ?>
adminpages/pagesettings.php CHANGED
@@ -292,8 +292,8 @@ require_once(dirname(__FILE__) . "/admin_header.php");
292
  <a target="_blank" href="<?php echo get_permalink($pmpro_pages[$name]); ?>"
293
  class="button button-secondary pmpro_page_view"><?php _e('view page', 'paid-memberships-pro' ); ?></a>
294
  <?php } else { ?>
295
- &nbsp;
296
- <a href="?page=pmpro-pagesettings&createpages=1&page_name=<?php echo $name; ?>"><?php _e('Generate Page', 'paid-memberships-pro' ); ?></a>
297
  <?php } ?>
298
  <?php if(!empty($hint)) { ?>
299
  <br/>
292
  <a target="_blank" href="<?php echo get_permalink($pmpro_pages[$name]); ?>"
293
  class="button button-secondary pmpro_page_view"><?php _e('view page', 'paid-memberships-pro' ); ?></a>
294
  <?php } else { ?>
295
+ &nbsp;
296
+ <a href="<?php echo wp_nonce_url( add_query_arg( array( 'page' => 'pmpro-pagesettings', 'createpages' => 1, 'page_name' => esc_attr( $name ) ), admin_url('admin.php') ), 'createpages', 'pmpro_pagesettings_nonce' ); ?>"><?php _e('Generate Page', 'paid-memberships-pro' ); ?></a>
297
  <?php } ?>
298
  <?php if(!empty($hint)) { ?>
299
  <br/>
adminpages/paymentsettings.php CHANGED
@@ -28,11 +28,11 @@
28
  */
29
  foreach($payment_options as $option) {
30
  //for now we make a special case for sslseal, but we need a way to specify sanitize functions for other fields
31
- if($option == 'sslseal') {
32
  global $allowedposttags;
33
- $sslseal = wp_kses(wp_unslash($_POST['sslseal']), $allowedposttags);
34
- update_option('pmpro_sslseal', $sslseal);
35
- } else {
36
  pmpro_setOption($option);
37
  }
38
  }
28
  */
29
  foreach($payment_options as $option) {
30
  //for now we make a special case for sslseal, but we need a way to specify sanitize functions for other fields
31
+ if( in_array( $option, array( 'sslseal', 'instructions' ) ) ) {
32
  global $allowedposttags;
33
+ $html = wp_kses(wp_unslash($_POST[$option]), $allowedposttags);
34
+ update_option("pmpro_{$option}", $html);
35
+ } else {
36
  pmpro_setOption($option);
37
  }
38
  }
classes/gateways/class.pmprogateway_check.php CHANGED
@@ -106,7 +106,7 @@
106
  <label for="instructions"><?php _e('Instructions', 'paid-memberships-pro' );?></label>
107
  </th>
108
  <td>
109
- <textarea id="instructions" name="instructions" rows="3" cols="80"><?php echo wpautop( $values['instructions'] ); ?></textarea>
110
  <p><small><?php _e('Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and invoice pages.', 'paid-memberships-pro' );?></small></p>
111
  </td>
112
  </tr>
@@ -149,7 +149,7 @@
149
 
150
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level)) {
151
  $instructions = pmpro_getOption("instructions");
152
- echo '<div class="pmpro_check_instructions">' . wpautop($instructions) . '</div>';
153
  }
154
  }
155
 
106
  <label for="instructions"><?php _e('Instructions', 'paid-memberships-pro' );?></label>
107
  </th>
108
  <td>
109
+ <textarea id="instructions" name="instructions" rows="3" cols="80"><?php echo wpautop( wp_unslash( $values['instructions'] ) ); ?></textarea>
110
  <p><small><?php _e('Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and invoice pages.', 'paid-memberships-pro' );?></small></p>
111
  </td>
112
  </tr>
149
 
150
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level)) {
151
  $instructions = pmpro_getOption("instructions");
152
+ echo '<div class="pmpro_check_instructions">' . wpautop(wp_unslash( $instructions )) . '</div>';
153
  }
154
  }
155
 
classes/gateways/class.pmprogateway_paypalstandard.php CHANGED
@@ -598,11 +598,10 @@
598
  if("sandbox" === $environment || "beta-sandbox" === $environment) {
599
  $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp";
600
  }
601
-
602
- $version = urlencode('72.0');
603
  $nvp_args = array(
604
  'METHOD' => $methodName_,
605
- 'VERSION' => $version,
606
  'bn' => PAYPAL_BN_CODE,
607
  );
608
 
@@ -618,8 +617,6 @@
618
  $nvp_args['SIGNATURE'] = $API_Signature;
619
  }
620
 
621
- // NVPRequest for submitting to server
622
- // $nvpreq = "METHOD=" . urlencode($methodName_) . "&VERSION=" . urlencode($version) . "&PWD=" . urlencode($API_Password) . "&USER=" . urlencode($API_UserName) . "&SIGNATURE=" . urlencode($API_Signature) . "&bn=" . urlencode(PAYPAL_BN_CODE) . $nvpStr_;
623
  $nvpreq = http_build_query( $nvp_args );
624
  $nvpreq = "{$nvpStr_}&{$nvpreq}";
625
 
598
  if("sandbox" === $environment || "beta-sandbox" === $environment) {
599
  $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp";
600
  }
601
+
 
602
  $nvp_args = array(
603
  'METHOD' => $methodName_,
604
+ 'VERSION' => '72.0',
605
  'bn' => PAYPAL_BN_CODE,
606
  );
607
 
617
  $nvp_args['SIGNATURE'] = $API_Signature;
618
  }
619
 
 
 
620
  $nvpreq = http_build_query( $nvp_args );
621
  $nvpreq = "{$nvpStr_}&{$nvpreq}";
622
 
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -233,7 +233,7 @@
233
  * @since 1.8
234
  */
235
  static function pmpro_payment_options($options)
236
- {
237
  //get stripe options
238
  $stripe_options = self::getGatewayOptions();
239
 
@@ -241,7 +241,7 @@
241
  $options = array_merge($stripe_options, $options);
242
 
243
  return $options;
244
- }
245
 
246
  /**
247
  * Display fields for Stripe options.
@@ -258,18 +258,35 @@
258
  </tr>
259
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
260
  <th scope="row" valign="top">
261
- <label for="stripe_secretkey"><?php _e('Secret Key', 'paid-memberships-pro' );?>:</label>
262
  </th>
263
  <td>
264
- <input type="text" id="stripe_secretkey" name="stripe_secretkey" size="60" value="<?php echo esc_attr($values['stripe_secretkey'])?>" />
 
 
 
 
 
 
 
 
265
  </td>
266
- </tr>
267
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
268
  <th scope="row" valign="top">
269
- <label for="stripe_publishablekey"><?php _e('Publishable Key', 'paid-memberships-pro' );?>:</label>
270
  </th>
271
  <td>
272
- <input type="text" id="stripe_publishablekey" name="stripe_publishablekey" size="60" value="<?php echo esc_attr($values['stripe_publishablekey'])?>" />
 
 
 
 
 
 
 
 
 
273
  </td>
274
  </tr>
275
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
233
  * @since 1.8
234
  */
235
  static function pmpro_payment_options($options)
236
+ {
237
  //get stripe options
238
  $stripe_options = self::getGatewayOptions();
239
 
241
  $options = array_merge($stripe_options, $options);
242
 
243
  return $options;
244
+ }
245
 
246
  /**
247
  * Display fields for Stripe options.
258
  </tr>
259
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
260
  <th scope="row" valign="top">
261
+ <label for="stripe_publishablekey"><?php _e('Publishable Key', 'paid-memberships-pro' );?>:</label>
262
  </th>
263
  <td>
264
+ <input type="text" id="stripe_publishablekey" name="stripe_publishablekey" size="60" value="<?php echo esc_attr($values['stripe_publishablekey'])?>" />
265
+ <?php
266
+ $public_key_prefix = substr($values['stripe_publishablekey'] , 0, 3);
267
+ if($public_key_prefix != 'pk_') {
268
+ ?>
269
+ <br /><small class="pmpro_message pmpro_error"><?php _e('Your Publishable Key appears incorrect.', 'paid-memberships-pro');?></small>
270
+ <?php
271
+ }
272
+ ?>
273
  </td>
274
+ </tr>
275
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
276
  <th scope="row" valign="top">
277
+ <label for="stripe_secretkey"><?php _e('Secret Key', 'paid-memberships-pro' );?>:</label>
278
  </th>
279
  <td>
280
+ <input type="text" id="stripe_secretkey" name="stripe_secretkey" size="60" value="<?php echo esc_attr($values['stripe_secretkey'])?>" />
281
+ <?php
282
+ $secret_key_prefix = substr($values['stripe_secretkey'] , 0, 3);
283
+ //note the false here to disable this for now until we figure out a better check
284
+ if(false && $secret_key_prefix != 'sk_') {
285
+ ?>
286
+ <br /><small class="pmpro_message pmpro_error"><?php _e('Your Secret Key appears incorrect.', 'paid-memberships-pro');?></small>
287
+ <?php
288
+ }
289
+ ?>
290
  </td>
291
  </tr>
292
  <tr class="gateway gateway_stripe" <?php if($gateway != "stripe") { ?>style="display: none;"<?php } ?>>
css/frontend-rtl.css CHANGED
@@ -5,82 +5,32 @@
5
  /*---------------------------------------
6
  Forms
7
  ---------------------------------------*/
8
- form.pmpro_form div {
9
- clear: right;
10
- }
11
-
12
  form.pmpro_form label {
13
- float: right;
14
- margin: 3px 0 0 10px;
15
- text-align: left;
16
- }
17
-
18
- form.pmpro_form .input, form.pmpro_form textarea, .input, form.pmpro_form select {
19
- margin: 0 0 0 3px;
20
- }
21
-
22
- form.pmpro_form .leftmar {
23
- margin: 8px 130px 0 0;
24
- }
25
-
26
- form.pmpro_form .pmpro_captcha {
27
- margin: 0 130px 0 0 !important;
28
- }
29
-
30
- form.pmpro_form .pmpro_submit {
31
- margin-right: 130px;
32
- margin-left: auto;
33
- }
34
-
35
- form.pmpro_form .pmpro_submit span {
36
- float: right;
37
- }
38
-
39
- form.pmpro_form #pmpro_processing_message {
40
- margin: 5px 10px 0 0;
41
- }
42
-
43
- /*--------------------------------------------------
44
- Messages - Success, Error, Alert
45
- ----------------------------------------------------*/
46
-
47
- .pmpro_content_message a {
48
- margin: 5px 0 0 5px;
49
  }
50
 
51
  /*---------------------------------------
52
  Membership Checkout
53
  ---------------------------------------*/
54
-
55
  .pmpro_checkout ul {
56
  margin: 5px 20px 0 0;
57
  }
58
 
59
- .pmpro_checkout td.rtbdr {
60
- border-left: 1px solid #CCC;
61
- border-right: none;
62
- }
63
-
64
- .pmpro_thead-msg {
65
- float: left;
66
- text-align: left;
67
- }
68
-
69
- .pmpro_ordersummary {
70
- float: left;
71
- }
72
-
73
- .pmpro_sslseal {
74
- float: left;
75
- }
76
-
77
  /*---------------------------------------
78
  Membership Invoice
79
  ---------------------------------------*/
80
-
 
 
 
81
  /*---------------------------------------
82
  Membership Account
83
  ---------------------------------------*/
 
 
 
 
 
84
 
85
  li.pmpro_more {
86
  margin-right: -20px;
@@ -106,6 +56,3 @@ li.pmpro_more {
106
  background: url(../images/printer.gif) top right no-repeat;
107
  padding: 0px 20px 2px 0px;
108
  }
109
-
110
-
111
- /* Generated by the RTLer - http://l0uy.com/rtler/ */
5
  /*---------------------------------------
6
  Forms
7
  ---------------------------------------*/
 
 
 
 
8
  form.pmpro_form label {
9
+ text-align: right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  }
11
 
12
  /*---------------------------------------
13
  Membership Checkout
14
  ---------------------------------------*/
 
15
  .pmpro_checkout ul {
16
  margin: 5px 20px 0 0;
17
  }
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  /*---------------------------------------
20
  Membership Invoice
21
  ---------------------------------------*/
22
+ body.pmpro-invoice .entry-content ul {
23
+ margin-left: 0;
24
+ margin-right: 1.5em;
25
+ }
26
  /*---------------------------------------
27
  Membership Account
28
  ---------------------------------------*/
29
+ #pmpro_account .pmpro_box ul {
30
+ margin-bottom: 0;
31
+ margin-left: 0;
32
+ margin-right: 1.5em;
33
+ }
34
 
35
  li.pmpro_more {
36
  margin-right: -20px;
56
  background: url(../images/printer.gif) top right no-repeat;
57
  padding: 0px 20px 2px 0px;
58
  }
 
 
 
css/frontend.css CHANGED
@@ -64,7 +64,7 @@ input[type="button"].pmpro_btn.pmpro_btn-cancel:hover {
64
  background: #EFEFEF;
65
  }
66
  .pmpro_btn.pmpro_btn-submit-checkout {
67
- width: 100%;
68
  }
69
  /*---------------------------------------
70
  Forms
@@ -99,6 +99,7 @@ form.pmpro_form input[type=checkbox]#tos {
99
  form.pmpro_form .input,
100
  form.pmpro_form textarea,
101
  form.pmpro_form select {
 
102
  max-width: 90%;
103
  }
104
  form.pmpro_form .pmpro_payment-cvv .input,
@@ -115,14 +116,14 @@ form.pmpro_form .pmpro_captcha div {
115
  }
116
  form.pmpro_form .pmpro_submit{
117
  margin-top: 1em;
118
- text-align: center;
119
  }
120
  form.pmpro_form #pmpro_processing_message {
121
  color: #999;
122
  display: block;
123
  font-style: italic;
124
  margin: 1em 0 0 0;
125
- text-align: center;
126
  }
127
  /*--------------------------------------------------
128
  Messages - Success, Error, Alert
@@ -348,20 +349,13 @@ li.pmpro_more {
348
  #pmpro_payment_information_fields .pmpro_checkout-fields-display-seal {
349
  display: block;
350
  }
351
- form.pmpro_form .leftmar, form.pmpro_form .pmpro_captcha {
352
- margin: 2px 0 0 0;
353
- }
354
- form.pmpro_form .pmpro_submit {
355
- margin-left: 0;
356
- }
357
- form.pmpro_form .pmpro_submit #pmpro_submit_span {
358
- display: block;
359
- float: none;
360
- }
361
  form.pmpro_form .pmpro_btn {
362
  display: block;
363
  width: 100%;
364
  }
 
 
 
365
  .pmpro_invoice_details {
366
  display: block;
367
  }
64
  background: #EFEFEF;
65
  }
66
  .pmpro_btn.pmpro_btn-submit-checkout {
67
+ width: auto;
68
  }
69
  /*---------------------------------------
70
  Forms
99
  form.pmpro_form .input,
100
  form.pmpro_form textarea,
101
  form.pmpro_form select {
102
+ display: inline-block;
103
  max-width: 90%;
104
  }
105
  form.pmpro_form .pmpro_payment-cvv .input,
116
  }
117
  form.pmpro_form .pmpro_submit{
118
  margin-top: 1em;
119
+ text-align: right;
120
  }
121
  form.pmpro_form #pmpro_processing_message {
122
  color: #999;
123
  display: block;
124
  font-style: italic;
125
  margin: 1em 0 0 0;
126
+ text-align: right;
127
  }
128
  /*--------------------------------------------------
129
  Messages - Success, Error, Alert
349
  #pmpro_payment_information_fields .pmpro_checkout-fields-display-seal {
350
  display: block;
351
  }
 
 
 
 
 
 
 
 
 
 
352
  form.pmpro_form .pmpro_btn {
353
  display: block;
354
  width: 100%;
355
  }
356
+ form.pmpro_form #pmpro_processing_message {
357
+ text-align: center;
358
+ }
359
  .pmpro_invoice_details {
360
  display: block;
361
  }
includes/functions.php CHANGED
@@ -1982,6 +1982,11 @@ function pmpro_getLevelAtCheckout($level_id = NULL, $discount_code = NULL) {
1982
  $level_id = intval($_REQUEST['level']);
1983
  }
1984
 
 
 
 
 
 
1985
  //default to discount code passed in
1986
  if(empty($discount_code) && !empty($_REQUEST['discount_code'])) {
1987
  $discount_code = preg_replace( "/[^A-Za-z0-9\-]/", "", $_REQUEST['discount_code'] );
@@ -1992,7 +1997,7 @@ function pmpro_getLevelAtCheckout($level_id = NULL, $discount_code = NULL) {
1992
  $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . $discount_code . "' LIMIT 1" );
1993
 
1994
  //check code
1995
- $code_check = pmpro_checkDiscountCode( $discount_code, $level_id, true );
1996
  if ( $code_check[0] != false ) {
1997
  $sqlQuery = "SELECT l.id, cl.*, l.name, l.description, l.allow_signups FROM $wpdb->pmpro_discount_codes_levels cl LEFT JOIN $wpdb->pmpro_membership_levels l ON cl.level_id = l.id LEFT JOIN $wpdb->pmpro_discount_codes dc ON dc.id = cl.code_id WHERE dc.code = '" . $discount_code . "' AND cl.level_id = '" . $level_id . "' LIMIT 1";
1998
  $pmpro_level = $wpdb->get_row( $sqlQuery );
@@ -2014,12 +2019,6 @@ function pmpro_getLevelAtCheckout($level_id = NULL, $discount_code = NULL) {
2014
  //what level are they purchasing? (no discount code)
2015
  if ( empty( $pmpro_level ) && ! empty( $level_id ) ) {
2016
  $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $level_id ) . "' AND allow_signups = 1 LIMIT 1" );
2017
- } elseif ( empty( $pmpro_level ) && !empty( $post ) ) {
2018
- //check if a level is defined in custom fields
2019
- $default_level = get_post_meta( $post->ID, "pmpro_default_level", true );
2020
- if ( ! empty( $default_level ) ) {
2021
- $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $default_level ) . "' AND allow_signups = 1 LIMIT 1" );
2022
- }
2023
  }
2024
 
2025
  //filter the level (for upgrades, etc)
1982
  $level_id = intval($_REQUEST['level']);
1983
  }
1984
 
1985
+ //no level, check for a default level in the custom fields for this post
1986
+ if(empty($level_id) && !empty($post)) {
1987
+ $level_id = get_post_meta( $post->ID, "pmpro_default_level", true );
1988
+ }
1989
+
1990
  //default to discount code passed in
1991
  if(empty($discount_code) && !empty($_REQUEST['discount_code'])) {
1992
  $discount_code = preg_replace( "/[^A-Za-z0-9\-]/", "", $_REQUEST['discount_code'] );
1997
  $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . $discount_code . "' LIMIT 1" );
1998
 
1999
  //check code
2000
+ $code_check = pmpro_checkDiscountCode( $discount_code, $level_id, true );
2001
  if ( $code_check[0] != false ) {
2002
  $sqlQuery = "SELECT l.id, cl.*, l.name, l.description, l.allow_signups FROM $wpdb->pmpro_discount_codes_levels cl LEFT JOIN $wpdb->pmpro_membership_levels l ON cl.level_id = l.id LEFT JOIN $wpdb->pmpro_discount_codes dc ON dc.id = cl.code_id WHERE dc.code = '" . $discount_code . "' AND cl.level_id = '" . $level_id . "' LIMIT 1";
2003
  $pmpro_level = $wpdb->get_row( $sqlQuery );
2019
  //what level are they purchasing? (no discount code)
2020
  if ( empty( $pmpro_level ) && ! empty( $level_id ) ) {
2021
  $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $level_id ) . "' AND allow_signups = 1 LIMIT 1" );
 
 
 
 
 
 
2022
  }
2023
 
2024
  //filter the level (for upgrades, etc)
languages/{pmpro-pt_PT.mo → paid-memberships-pro-pt_PT.mo} RENAMED
Binary file
languages/{pmpro-pt_PT.po → paid-memberships-pro-pt_PT.po} RENAMED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: pmpro\n"
4
  "POT-Creation-Date: 2016-02-08 12:53-0200\n"
5
  "PO-Revision-Date: 2017-09-07 15:57+0100\n"
6
  "Last-Translator: Secundino Correia <secundino@imagina.pt>\n"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: paid-memberships-pro\n"
4
  "POT-Creation-Date: 2016-02-08 12:53-0200\n"
5
  "PO-Revision-Date: 2017-09-07 15:57+0100\n"
6
  "Last-Translator: Secundino Correia <secundino@imagina.pt>\n"
languages/paid-memberships-pro.mo CHANGED
Binary file
languages/paid-memberships-pro.po CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
- "POT-Creation-Date: 2017-10-31 18:59-0400\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: \n"
12
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -539,7 +539,7 @@ msgstr ""
539
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
540
  #: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
541
  #: adminpages/paymentsettings.php:236
542
- #: classes/gateways/class.pmprogateway_stripe.php:281 includes/profile.php:125
543
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
544
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
545
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
@@ -618,7 +618,7 @@ msgstr ""
618
 
619
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
620
  #: adminpages/paymentsettings.php:237
621
- #: classes/gateways/class.pmprogateway_stripe.php:282 includes/profile.php:126
622
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
623
  #: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
624
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
@@ -883,7 +883,7 @@ msgstr ""
883
 
884
  #: adminpages/discountcodes.php:483
885
  #: classes/gateways/class.pmprogateway_braintree.php:459
886
- #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:317
887
  #: pages/checkout.php:463 adminpages/discountcodes.php:367
888
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
889
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
@@ -896,6 +896,7 @@ msgstr ""
896
  #: classes/gateways/class.pmprogateway_braintree.php:359
897
  #: classes/gateways/class.pmprogateway_braintree.php:361
898
  #: classes/gateways/class.pmprogateway_braintree.php:423
 
899
  #: classes/gateways/class.pmprogateway_stripe.php:454
900
  #: classes/gateways/class.pmprogateway_stripe.php:455
901
  #: classes/gateways/class.pmprogateway_stripe.php:465
@@ -911,11 +912,11 @@ msgstr ""
911
  #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:249
912
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
913
  #: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
914
- #: pages/billing.php:319 pages/billing.php:342 pages/checkout.php:463
915
- #: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
916
- #: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
917
- #: pages/checkout.php:571 pages/checkout.php:575 pages/checkout.php:582
918
- #: pages/checkout.php:585
919
  msgid "Expiration Date"
920
  msgstr ""
921
 
@@ -1007,7 +1008,7 @@ msgstr ""
1007
 
1008
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1009
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1010
- #: classes/gateways/class.pmprogateway_stripe.php:671
1011
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1012
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1013
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1040,7 +1041,7 @@ msgstr ""
1040
 
1041
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1042
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1043
- #: classes/gateways/class.pmprogateway_stripe.php:671
1044
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1045
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1046
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1073,7 +1074,7 @@ msgstr ""
1073
 
1074
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1075
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1076
- #: classes/gateways/class.pmprogateway_stripe.php:671
1077
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1078
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1079
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1106,7 +1107,7 @@ msgstr ""
1106
 
1107
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1108
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1109
- #: classes/gateways/class.pmprogateway_stripe.php:671
1110
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1111
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1112
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1328,7 +1329,7 @@ msgstr ""
1328
  msgid "Starts"
1329
  msgstr ""
1330
 
1331
- #: adminpages/discountcodes.php:722 adminpages/memberslist.php:179
1332
  #: adminpages/reports/login.php:167 includes/profile.php:122
1333
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
1334
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
@@ -1653,7 +1654,7 @@ msgid "Billing Details"
1653
  msgstr ""
1654
 
1655
  #: adminpages/membershiplevels.php:406
1656
- #: classes/gateways/class.pmprogateway_stripe.php:769
1657
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1658
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1659
  #: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
@@ -1722,6 +1723,7 @@ msgstr ""
1722
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1723
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1724
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
 
1725
  msgid "Note"
1726
  msgstr ""
1727
 
@@ -1840,11 +1842,11 @@ msgstr ""
1840
  #: adminpages/orders.php:807 pages/account.php:44 pages/billing.php:295
1841
  #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1842
  #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1843
- #: pages/billing.php:364 pages/billing.php:371 pages/billing.php:392
1844
- #: pages/billing.php:397 pages/billing.php:401 pages/billing.php:406
1845
- #: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
1846
- #: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
1847
- #: shortcodes/pmpro_account.php:73
1848
  msgid "Cancel"
1849
  msgstr ""
1850
 
@@ -1882,7 +1884,7 @@ msgid "Drag and drop membership levels to reorder them on the Levels page."
1882
  msgstr ""
1883
 
1884
  #: adminpages/membershiplevels.php:666 pages/cancel.php:62
1885
- #: pages/confirmation.php:84 pages/invoice.php:63
1886
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1887
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1888
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
@@ -2064,17 +2066,17 @@ msgid "Last&nbsp;Name"
2064
  msgstr ""
2065
 
2066
  #: adminpages/memberslist.php:170 pages/billing.php:104 pages/checkout.php:275
2067
- #: pages/confirmation.php:69 pages/invoice.php:48
2068
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
2069
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2070
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
2071
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
2072
  #: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
2073
- #: pages/billing.php:103 pages/checkout.php:275 pages/checkout.php:298
2074
- #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
2075
- #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
2076
- #: pages/checkout.php:321 pages/checkout.php:326 pages/checkout.php:329
2077
- #: pages/confirmation.php:59 pages/confirmation.php:61
2078
  #: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
2079
  #: pages/invoice.php:48
2080
  msgid "Billing Address"
@@ -2111,7 +2113,15 @@ msgstr ""
2111
  msgid "Ended"
2112
  msgstr ""
2113
 
2114
- #: adminpages/memberslist.php:262 adminpages/reports/login.php:232
 
 
 
 
 
 
 
 
2115
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2116
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2117
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
@@ -2120,7 +2130,7 @@ msgstr ""
2120
  msgid "No members found."
2121
  msgstr ""
2122
 
2123
- #: adminpages/memberslist.php:262 adminpages/reports/login.php:232
2124
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2125
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2126
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
@@ -2174,7 +2184,7 @@ msgstr ""
2174
  #: adminpages/orders.php:195 adminpages/orders.php:245
2175
  #: adminpages/orders.php:317 adminpages/orders.php:321
2176
  #: adminpages/orders.php:346 adminpages/orders.php:352
2177
- #: adminpages/orders.php:362
2178
  msgid "Order"
2179
  msgstr ""
2180
 
@@ -2263,11 +2273,11 @@ msgid "Sub Total"
2263
  msgstr ""
2264
 
2265
  #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2266
- #: adminpages/templates/orders-print.php:89 adminpages/orders.php:304
2267
- #: adminpages/orders.php:354 adminpages/orders.php:426
2268
- #: adminpages/orders.php:455 adminpages/orders.php:481
2269
- #: adminpages/orders.php:512 adminpages/orders.php:523
2270
- #: adminpages/templates/orders-email.php:60
2271
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
2272
  #: pages/invoice.php:80
2273
  msgid "Tax"
@@ -2282,15 +2292,15 @@ msgstr ""
2282
 
2283
  #: adminpages/orders.php:546 adminpages/orders.php:1145
2284
  #: adminpages/templates/orders-email.php:64
2285
- #: adminpages/templates/orders-print.php:93 adminpages/orders.php:320
2286
- #: adminpages/orders.php:370 adminpages/orders.php:442
2287
- #: adminpages/orders.php:471 adminpages/orders.php:504
2288
- #: adminpages/orders.php:535 adminpages/orders.php:546
2289
- #: adminpages/orders.php:602 adminpages/orders.php:905
2290
- #: adminpages/orders.php:915 adminpages/orders.php:942
2291
- #: adminpages/orders.php:971 adminpages/orders.php:1108
2292
- #: adminpages/orders.php:1139 adminpages/orders.php:1145
2293
- #: adminpages/templates/orders-email.php:64
2294
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
2295
  #: pages/invoice.php:84
2296
  msgid "Total"
@@ -2319,7 +2329,7 @@ msgstr ""
2319
 
2320
  #: adminpages/orders.php:574
2321
  #: classes/gateways/class.pmprogateway_braintree.php:446
2322
- #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:275
2323
  #: pages/checkout.php:423 adminpages/orders.php:339 adminpages/orders.php:389
2324
  #: adminpages/orders.php:461 adminpages/orders.php:490
2325
  #: adminpages/orders.php:532 adminpages/orders.php:563
@@ -2333,6 +2343,7 @@ msgstr ""
2333
  #: classes/gateways/class.pmprogateway_braintree.php:344
2334
  #: classes/gateways/class.pmprogateway_braintree.php:406
2335
  #: classes/gateways/class.pmprogateway_braintree.php:441
 
2336
  #: classes/gateways/class.pmprogateway_stripe.php:408
2337
  #: classes/gateways/class.pmprogateway_stripe.php:409
2338
  #: classes/gateways/class.pmprogateway_stripe.php:419
@@ -2348,11 +2359,11 @@ msgstr ""
2348
  #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:234
2349
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
2350
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
2351
- #: pages/billing.php:271 pages/billing.php:274 pages/billing.php:294
2352
- #: pages/checkout.php:423 pages/checkout.php:493 pages/checkout.php:507
2353
- #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
2354
- #: pages/checkout.php:525 pages/checkout.php:527 pages/checkout.php:534
2355
- #: pages/checkout.php:537
2356
  msgid "Card Type"
2357
  msgstr ""
2358
 
@@ -2418,6 +2429,7 @@ msgstr ""
2418
  #: adminpages/orders.php:917 adminpages/orders.php:944
2419
  #: adminpages/orders.php:973 adminpages/orders.php:1110
2420
  #: adminpages/orders.php:1141 adminpages/orders.php:1147
 
2421
  msgid "Gateway"
2422
  msgstr ""
2423
 
@@ -2475,6 +2487,7 @@ msgstr ""
2475
  #: adminpages/orders.php:483 adminpages/orders.php:555
2476
  #: adminpages/orders.php:584 adminpages/orders.php:664
2477
  #: adminpages/orders.php:695 adminpages/orders.php:706
 
2478
  msgid "Subscription Transaction ID"
2479
  msgstr ""
2480
 
@@ -2486,7 +2499,7 @@ msgstr ""
2486
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2487
  msgstr ""
2488
 
2489
- #: adminpages/orders.php:721 adminpages/orders.php:1150 pages/invoice.php:87
2490
  #: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
2491
  #: adminpages/orders.php:492 adminpages/orders.php:493
2492
  #: adminpages/orders.php:565 adminpages/orders.php:594
@@ -2658,9 +2671,8 @@ msgid "User"
2658
  msgstr ""
2659
 
2660
  #: adminpages/orders.php:1144 includes/init.php:244 includes/profile.php:36
2661
- #: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:91
2662
- #: pages/confirmation.php:113 pages/invoice.php:28 pages/invoice.php:70
2663
- #: adminpages/orders.php:601 adminpages/orders.php:904
2664
  #: adminpages/orders.php:914 adminpages/orders.php:941
2665
  #: adminpages/orders.php:970 adminpages/orders.php:1107
2666
  #: adminpages/orders.php:1138 adminpages/orders.php:1144 includes/init.php:214
@@ -3064,7 +3076,8 @@ msgstr ""
3064
  #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
3065
  #: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
3066
  #: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
3067
- #: pages/billing.php:100 pages/billing.php:120 pages/billing.php:123
 
3068
  msgid "optional"
3069
  msgstr ""
3070
 
@@ -3471,8 +3484,8 @@ msgid "Price"
3471
  msgstr ""
3472
 
3473
  #: adminpages/templates/orders-email.php:56
3474
- #: adminpages/templates/orders-print.php:85
3475
- #: adminpages/templates/orders-email.php:56
3476
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
3477
  #: pages/invoice.php:79
3478
  msgid "Subtotal"
@@ -3509,7 +3522,7 @@ msgstr ""
3509
  #: classes/class.memberorder.php:706 classes/class.memberorder.php:716
3510
  #: classes/class.memberorder.php:719 classes/class.memberorder.php:720
3511
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:740
3512
- #: includes/cleanup.php:24
3513
  #, php-format
3514
  msgid ""
3515
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -3517,11 +3530,11 @@ msgid ""
3517
  "active."
3518
  msgstr ""
3519
 
3520
- #: classes/class.memberorder.php:744
3521
  msgid "User Email"
3522
  msgstr ""
3523
 
3524
- #: classes/class.memberorder.php:745
3525
  msgid "User Display Name"
3526
  msgstr ""
3527
 
@@ -3558,7 +3571,7 @@ msgstr ""
3558
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3559
  #: classes/class.pmproemail.php:698
3560
  #: classes/gateways/class.pmprogateway_braintree.php:489
3561
- #: classes/gateways/class.pmprogateway_stripe.php:644 pages/checkout.php:70
3562
  #: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
3563
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3564
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
@@ -3589,6 +3602,7 @@ msgstr ""
3589
  #: classes/gateways/class.pmprogateway_braintree.php:402
3590
  #: classes/gateways/class.pmprogateway_braintree.php:448
3591
  #: classes/gateways/class.pmprogateway_braintree.php:464
 
3592
  #: classes/gateways/class.pmprogateway_stripe.php:495
3593
  #: classes/gateways/class.pmprogateway_stripe.php:496
3594
  #: classes/gateways/class.pmprogateway_stripe.php:506
@@ -4068,7 +4082,7 @@ msgid "Client-Side Encryption Key"
4068
  msgstr ""
4069
 
4070
  #: classes/gateways/class.pmprogateway_braintree.php:313
4071
- #: classes/gateways/class.pmprogateway_stripe.php:289
4072
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
4073
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
4074
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -4107,7 +4121,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
4107
  msgstr ""
4108
 
4109
  #: classes/gateways/class.pmprogateway_braintree.php:434
4110
- #: classes/gateways/class.pmprogateway_stripe.php:561 pages/checkout.php:411
4111
  #: classes/gateways/class.pmprogateway_braintree.php:270
4112
  #: classes/gateways/class.pmprogateway_braintree.php:283
4113
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -4117,6 +4131,7 @@ msgstr ""
4117
  #: classes/gateways/class.pmprogateway_braintree.php:321
4118
  #: classes/gateways/class.pmprogateway_braintree.php:383
4119
  #: classes/gateways/class.pmprogateway_braintree.php:429
 
4120
  #: classes/gateways/class.pmprogateway_stripe.php:387
4121
  #: classes/gateways/class.pmprogateway_stripe.php:388
4122
  #: classes/gateways/class.pmprogateway_stripe.php:398
@@ -4138,7 +4153,7 @@ msgid "Payment Information"
4138
  msgstr ""
4139
 
4140
  #: classes/gateways/class.pmprogateway_braintree.php:435
4141
- #: classes/gateways/class.pmprogateway_stripe.php:562 pages/checkout.php:412
4142
  #: classes/gateways/class.pmprogateway_braintree.php:270
4143
  #: classes/gateways/class.pmprogateway_braintree.php:283
4144
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -4148,6 +4163,7 @@ msgstr ""
4148
  #: classes/gateways/class.pmprogateway_braintree.php:322
4149
  #: classes/gateways/class.pmprogateway_braintree.php:384
4150
  #: classes/gateways/class.pmprogateway_braintree.php:430
 
4151
  #: classes/gateways/class.pmprogateway_stripe.php:387
4152
  #: classes/gateways/class.pmprogateway_stripe.php:388
4153
  #: classes/gateways/class.pmprogateway_stripe.php:398
@@ -4170,7 +4186,7 @@ msgid "We Accept %s"
4170
  msgstr ""
4171
 
4172
  #: classes/gateways/class.pmprogateway_braintree.php:455
4173
- #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:313
4174
  #: pages/checkout.php:459
4175
  #: classes/gateways/class.pmprogateway_braintree.php:303
4176
  #: classes/gateways/class.pmprogateway_braintree.php:316
@@ -4180,6 +4196,7 @@ msgstr ""
4180
  #: classes/gateways/class.pmprogateway_braintree.php:354
4181
  #: classes/gateways/class.pmprogateway_braintree.php:356
4182
  #: classes/gateways/class.pmprogateway_braintree.php:418
 
4183
  #: classes/gateways/class.pmprogateway_stripe.php:449
4184
  #: classes/gateways/class.pmprogateway_stripe.php:450
4185
  #: classes/gateways/class.pmprogateway_stripe.php:460
@@ -4195,11 +4212,11 @@ msgstr ""
4195
  #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:244
4196
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
4197
  #: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
4198
- #: pages/billing.php:312 pages/billing.php:314 pages/billing.php:337
4199
- #: pages/checkout.php:459 pages/checkout.php:503 pages/checkout.php:519
4200
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
4201
- #: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
4202
- #: pages/checkout.php:577 pages/checkout.php:580
4203
  msgid "Card Number"
4204
  msgstr ""
4205
 
@@ -4212,6 +4229,7 @@ msgstr ""
4212
  #: classes/gateways/class.pmprogateway_braintree.php:391
4213
  #: classes/gateways/class.pmprogateway_braintree.php:393
4214
  #: classes/gateways/class.pmprogateway_braintree.php:455
 
4215
  #: classes/gateways/class.pmprogateway_stripe.php:486
4216
  #: classes/gateways/class.pmprogateway_stripe.php:487
4217
  #: classes/gateways/class.pmprogateway_stripe.php:497
@@ -4236,7 +4254,7 @@ msgid "CVV"
4236
  msgstr ""
4237
 
4238
  #: classes/gateways/class.pmprogateway_braintree.php:484
4239
- #: classes/gateways/class.pmprogateway_stripe.php:639 pages/billing.php:353
4240
  #: pages/checkout.php:493
4241
  #: classes/gateways/class.pmprogateway_braintree.php:341
4242
  #: classes/gateways/class.pmprogateway_braintree.php:354
@@ -4246,6 +4264,7 @@ msgstr ""
4246
  #: classes/gateways/class.pmprogateway_braintree.php:392
4247
  #: classes/gateways/class.pmprogateway_braintree.php:394
4248
  #: classes/gateways/class.pmprogateway_braintree.php:456
 
4249
  #: classes/gateways/class.pmprogateway_stripe.php:487
4250
  #: classes/gateways/class.pmprogateway_stripe.php:488
4251
  #: classes/gateways/class.pmprogateway_stripe.php:498
@@ -4271,7 +4290,7 @@ msgid "what's this?"
4271
  msgstr ""
4272
 
4273
  #: classes/gateways/class.pmprogateway_braintree.php:491
4274
- #: classes/gateways/class.pmprogateway_stripe.php:646 pages/checkout.php:78
4275
  #: pages/checkout.php:500
4276
  #: classes/gateways/class.pmprogateway_braintree.php:351
4277
  #: classes/gateways/class.pmprogateway_braintree.php:364
@@ -4282,6 +4301,7 @@ msgstr ""
4282
  #: classes/gateways/class.pmprogateway_braintree.php:404
4283
  #: classes/gateways/class.pmprogateway_braintree.php:450
4284
  #: classes/gateways/class.pmprogateway_braintree.php:466
 
4285
  #: classes/gateways/class.pmprogateway_stripe.php:497
4286
  #: classes/gateways/class.pmprogateway_stripe.php:498
4287
  #: classes/gateways/class.pmprogateway_stripe.php:508
@@ -4314,19 +4334,25 @@ msgstr ""
4314
  #: classes/gateways/class.pmprogateway_braintree.php:524
4315
  #: classes/gateways/class.pmprogateway_braintree.php:526
4316
  #: classes/gateways/class.pmprogateway_braintree.php:541
 
 
4317
  #: classes/gateways/class.pmprogateway_braintree.php:616
4318
  #: classes/gateways/class.pmprogateway_braintree.php:623
 
4319
  #: classes/gateways/class.pmprogateway_braintree.php:781
4320
  #: classes/gateways/class.pmprogateway_braintree.php:782
 
4321
  #: classes/gateways/class.pmprogateway_braintree.php:886
4322
  #: classes/gateways/class.pmprogateway_braintree.php:887
4323
  #: classes/gateways/class.pmprogateway_braintree.php:906
4324
  #: classes/gateways/class.pmprogateway_braintree.php:907
 
 
4325
  msgid "Payment error: Please contact the webmaster (braintree-load-error)"
4326
  msgstr ""
4327
 
4328
  #: classes/gateways/class.pmprogateway_braintree.php:554
4329
- #: classes/gateways/class.pmprogateway_stripe.php:1123
4330
  #: classes/gateways/class.pmprogateway_braintree.php:61
4331
  #: classes/gateways/class.pmprogateway_braintree.php:406
4332
  #: classes/gateways/class.pmprogateway_braintree.php:419
@@ -4337,6 +4363,7 @@ msgstr ""
4337
  #: classes/gateways/class.pmprogateway_braintree.php:459
4338
  #: classes/gateways/class.pmprogateway_braintree.php:513
4339
  #: classes/gateways/class.pmprogateway_braintree.php:528
 
4340
  #: classes/gateways/class.pmprogateway_stripe.php:53
4341
  #: classes/gateways/class.pmprogateway_stripe.php:1011
4342
  #: classes/gateways/class.pmprogateway_stripe.php:1025
@@ -4366,6 +4393,7 @@ msgstr ""
4366
  #: classes/gateways/class.pmprogateway_braintree.php:518
4367
  #: classes/gateways/class.pmprogateway_braintree.php:589
4368
  #: classes/gateways/class.pmprogateway_braintree.php:596
 
4369
  msgid "Error during settlement:"
4370
  msgstr ""
4371
 
@@ -4380,11 +4408,13 @@ msgstr ""
4380
  #: classes/gateways/class.pmprogateway_braintree.php:527
4381
  #: classes/gateways/class.pmprogateway_braintree.php:598
4382
  #: classes/gateways/class.pmprogateway_braintree.php:605
 
4383
  msgid "Error during charge:"
4384
  msgstr ""
4385
 
4386
  #: classes/gateways/class.pmprogateway_braintree.php:731
4387
  #: classes/gateways/class.pmprogateway_braintree.php:690
 
4388
  #, php-format
4389
  msgid "Failed to update customer: %s"
4390
  msgstr ""
@@ -4401,6 +4431,7 @@ msgstr ""
4401
  #: classes/gateways/class.pmprogateway_braintree.php:619
4402
  #: classes/gateways/class.pmprogateway_braintree.php:702
4403
  #: classes/gateways/class.pmprogateway_braintree.php:703
 
4404
  msgid "Failed to update customer."
4405
  msgstr ""
4406
 
@@ -4416,6 +4447,7 @@ msgstr ""
4416
  #: classes/gateways/class.pmprogateway_braintree.php:667
4417
  #: classes/gateways/class.pmprogateway_braintree.php:750
4418
  #: classes/gateways/class.pmprogateway_braintree.php:751
 
4419
  msgid "Failed to create customer."
4420
  msgstr ""
4421
 
@@ -4431,6 +4463,7 @@ msgstr ""
4431
  #: classes/gateways/class.pmprogateway_braintree.php:674
4432
  #: classes/gateways/class.pmprogateway_braintree.php:757
4433
  #: classes/gateways/class.pmprogateway_braintree.php:758
 
4434
  msgid "Error creating customer record with Braintree:"
4435
  msgstr ""
4436
 
@@ -4447,6 +4480,7 @@ msgstr ""
4447
  #: classes/gateways/class.pmprogateway_braintree.php:774
4448
  #: classes/gateways/class.pmprogateway_braintree.php:862
4449
  #: classes/gateways/class.pmprogateway_braintree.php:863
 
4450
  msgid "Error subscribing customer to plan with Braintree:"
4451
  msgstr ""
4452
 
@@ -4463,6 +4497,7 @@ msgstr ""
4463
  #: classes/gateways/class.pmprogateway_braintree.php:789
4464
  #: classes/gateways/class.pmprogateway_braintree.php:877
4465
  #: classes/gateways/class.pmprogateway_braintree.php:878
 
4466
  msgid "Failed to subscribe with Braintree:"
4467
  msgstr ""
4468
 
@@ -4504,6 +4539,9 @@ msgstr ""
4504
  #: classes/gateways/class.pmprogateway_braintree.php:939
4505
  #: classes/gateways/class.pmprogateway_braintree.php:945
4506
  #: classes/gateways/class.pmprogateway_braintree.php:946
 
 
 
4507
  #: classes/gateways/class.pmprogateway_stripe.php:343
4508
  #: classes/gateways/class.pmprogateway_stripe.php:344
4509
  #: classes/gateways/class.pmprogateway_stripe.php:351
@@ -4661,6 +4699,7 @@ msgstr ""
4661
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
4662
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
4663
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
 
4664
  msgid "PayPal Settings"
4665
  msgstr ""
4666
 
@@ -4674,6 +4713,7 @@ msgstr ""
4674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
4675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
4676
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
 
4677
  msgid ""
4678
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
4679
  "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
@@ -4693,6 +4733,7 @@ msgstr ""
4693
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
4694
  #: classes/gateways/class.pmprogateway_paypalexpress.php:150
4695
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
 
4696
  msgid "Gateway Account Email"
4697
  msgstr ""
4698
 
@@ -4709,6 +4750,7 @@ msgstr ""
4709
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
4710
  #: classes/gateways/class.pmprogateway_paypalexpress.php:158
4711
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
 
4712
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
4713
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
4714
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
@@ -4728,6 +4770,7 @@ msgstr ""
4728
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
4729
  #: classes/gateways/class.pmprogateway_paypalexpress.php:166
4730
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
 
4731
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4732
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
4733
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
@@ -4745,6 +4788,7 @@ msgstr ""
4745
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4746
  #: classes/gateways/class.pmprogateway_paypalexpress.php:174
4747
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
 
4748
  msgid "API Signature"
4749
  msgstr ""
4750
 
@@ -4766,6 +4810,7 @@ msgstr ""
4766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4767
  #: classes/gateways/class.pmprogateway_paypalexpress.php:193
4768
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
4769
  msgid "IPN Handler URL"
4770
  msgstr ""
4771
 
@@ -4787,6 +4832,7 @@ msgstr ""
4787
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4788
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4789
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
 
4790
  #: pages/checkout.php:263 pages/checkout.php:286 pages/checkout.php:288
4791
  #: pages/checkout.php:295 pages/checkout.php:300 pages/checkout.php:302
4792
  #: pages/checkout.php:309 pages/checkout.php:312 pages/checkout.php:675
@@ -4804,6 +4850,7 @@ msgstr ""
4804
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4805
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4806
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
 
4807
  #: pages/checkout.php:598 pages/checkout.php:681 pages/checkout.php:688
4808
  #: pages/checkout.php:691 pages/checkout.php:704 pages/checkout.php:707
4809
  #: pages/checkout.php:713 pages/checkout.php:718 pages/checkout.php:722
@@ -4823,6 +4870,7 @@ msgstr ""
4823
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4824
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4825
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
 
4826
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4827
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4828
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
@@ -4856,6 +4904,7 @@ msgstr ""
4856
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4857
  #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4858
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
 
4859
  msgid ""
4860
  "Please contact the site owner or cancel your subscription from within PayPal "
4861
  "to make sure you are not charged going forward."
@@ -4903,6 +4952,7 @@ msgstr ""
4903
  #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4904
  #: paid-memberships-pro.php:134
4905
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
 
4906
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4907
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4908
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
@@ -4913,11 +4963,13 @@ msgstr ""
4913
 
4914
  #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4915
  #: classes/gateways/class.pmprogateway_paypalstandard.php:157
 
4916
  msgid ""
4917
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
4918
  "settings."
4919
  msgstr ""
4920
 
 
4921
  #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4922
  msgid "User requested cancellation"
4923
  msgstr ""
@@ -4957,6 +5009,26 @@ msgid "Stripe Settings"
4957
  msgstr ""
4958
 
4959
  #: classes/gateways/class.pmprogateway_stripe.php:261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4960
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
4961
  #: adminpages/paymentsettings.php:286
4962
  #: classes/gateways/class.pmprogateway_stripe.php:153
@@ -4972,23 +5044,11 @@ msgstr ""
4972
  msgid "Secret Key"
4973
  msgstr ""
4974
 
4975
- #: classes/gateways/class.pmprogateway_stripe.php:269
4976
- #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
4977
- #: adminpages/paymentsettings.php:294
4978
- #: classes/gateways/class.pmprogateway_stripe.php:161
4979
- #: classes/gateways/class.pmprogateway_stripe.php:162
4980
- #: classes/gateways/class.pmprogateway_stripe.php:172
4981
- #: classes/gateways/class.pmprogateway_stripe.php:194
4982
- #: classes/gateways/class.pmprogateway_stripe.php:196
4983
- #: classes/gateways/class.pmprogateway_stripe.php:197
4984
- #: classes/gateways/class.pmprogateway_stripe.php:208
4985
- #: classes/gateways/class.pmprogateway_stripe.php:210
4986
- #: classes/gateways/class.pmprogateway_stripe.php:237
4987
- #: classes/gateways/class.pmprogateway_stripe.php:269
4988
- msgid "Publishable Key"
4989
  msgstr ""
4990
 
4991
- #: classes/gateways/class.pmprogateway_stripe.php:277
4992
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
4993
  #: adminpages/paymentsettings.php:432
4994
  #: classes/gateways/class.pmprogateway_stripe.php:169
@@ -5004,7 +5064,7 @@ msgstr ""
5004
  msgid "Show Billing Address Fields"
5005
  msgstr ""
5006
 
5007
- #: classes/gateways/class.pmprogateway_stripe.php:284
5008
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
5009
  #: classes/gateways/class.pmprogateway_stripe.php:176
5010
  #: classes/gateways/class.pmprogateway_stripe.php:177
@@ -5022,7 +5082,7 @@ msgid ""
5022
  "verification in the Stripe dashboard settings.</strong>"
5023
  msgstr ""
5024
 
5025
- #: classes/gateways/class.pmprogateway_stripe.php:292
5026
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
5027
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
5028
  #: classes/gateways/class.pmprogateway_stripe.php:184
@@ -5038,12 +5098,12 @@ msgstr ""
5038
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
5039
  msgstr ""
5040
 
5041
- #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5042
  #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5043
  msgid "Security Code (CVC)"
5044
  msgstr ""
5045
 
5046
- #: classes/gateways/class.pmprogateway_stripe.php:710
5047
  #: classes/gateways/class.pmprogateway_stripe.php:703
5048
  #: classes/gateways/class.pmprogateway_stripe.php:710
5049
  #, php-format
@@ -5052,7 +5112,7 @@ msgid ""
5052
  "have been deleted."
5053
  msgstr ""
5054
 
5055
- #: classes/gateways/class.pmprogateway_stripe.php:717
5056
  #: classes/gateways/class.pmprogateway_stripe.php:567
5057
  #: classes/gateways/class.pmprogateway_stripe.php:568
5058
  #: classes/gateways/class.pmprogateway_stripe.php:578
@@ -5069,7 +5129,7 @@ msgstr ""
5069
  msgid "Subscription Updates"
5070
  msgstr ""
5071
 
5072
- #: classes/gateways/class.pmprogateway_stripe.php:721
5073
  #: classes/gateways/class.pmprogateway_stripe.php:571
5074
  #: classes/gateways/class.pmprogateway_stripe.php:572
5075
  #: classes/gateways/class.pmprogateway_stripe.php:582
@@ -5088,7 +5148,7 @@ msgid ""
5088
  "at predefined times. Be sure to click Update Profile after making changes."
5089
  msgstr ""
5090
 
5091
- #: classes/gateways/class.pmprogateway_stripe.php:723
5092
  #: classes/gateways/class.pmprogateway_stripe.php:573
5093
  #: classes/gateways/class.pmprogateway_stripe.php:574
5094
  #: classes/gateways/class.pmprogateway_stripe.php:584
@@ -5107,7 +5167,7 @@ msgid ""
5107
  "at predefined times. Be sure to click Update User after making changes."
5108
  msgstr ""
5109
 
5110
- #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:364
5111
  #: classes/gateways/class.pmprogateway_stripe.php:578
5112
  #: classes/gateways/class.pmprogateway_stripe.php:579
5113
  #: classes/gateways/class.pmprogateway_stripe.php:589
@@ -5123,18 +5183,19 @@ msgstr ""
5123
  #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:294
5124
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
5125
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
5126
- #: pages/billing.php:363 pages/billing.php:370 pages/billing.php:391
5127
- #: pages/billing.php:396 pages/billing.php:400 pages/billing.php:405
 
5128
  msgid "Update"
5129
  msgstr ""
5130
 
5131
- #: classes/gateways/class.pmprogateway_stripe.php:1119
5132
  #: classes/gateways/class.pmprogateway_stripe.php:1119
5133
  #: classes/gateways/class.pmprogateway_stripe.php:1172
5134
  msgid "Payment error: Please contact the webmaster (stripe-load-error)"
5135
  msgstr ""
5136
 
5137
- #: classes/gateways/class.pmprogateway_stripe.php:1357
5138
  #: classes/gateways/class.pmprogateway_stripe.php:190
5139
  #: classes/gateways/class.pmprogateway_stripe.php:192
5140
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -5160,7 +5221,7 @@ msgstr ""
5160
  msgid "Error creating customer record with Stripe:"
5161
  msgstr ""
5162
 
5163
- #: classes/gateways/class.pmprogateway_stripe.php:1416
5164
  #: classes/gateways/class.pmprogateway_stripe.php:1275
5165
  #: classes/gateways/class.pmprogateway_stripe.php:1303
5166
  #: classes/gateways/class.pmprogateway_stripe.php:1313
@@ -5176,7 +5237,7 @@ msgstr ""
5176
  msgid "Error getting subscription with Stripe:"
5177
  msgstr ""
5178
 
5179
- #: classes/gateways/class.pmprogateway_stripe.php:1572
5180
  #: classes/gateways/class.pmprogateway_stripe.php:278
5181
  #: classes/gateways/class.pmprogateway_stripe.php:279
5182
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -5210,7 +5271,7 @@ msgstr ""
5210
  msgid "Error creating plan with Stripe:"
5211
  msgstr ""
5212
 
5213
- #: classes/gateways/class.pmprogateway_stripe.php:1603
5214
  #: classes/gateways/class.pmprogateway_stripe.php:294
5215
  #: classes/gateways/class.pmprogateway_stripe.php:295
5216
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -5239,7 +5300,7 @@ msgstr ""
5239
  msgid "Error subscribing customer to plan with Stripe:"
5240
  msgstr ""
5241
 
5242
- #: classes/gateways/class.pmprogateway_stripe.php:1698
5243
  #: classes/gateways/class.pmprogateway_stripe.php:769
5244
  #: classes/gateways/class.pmprogateway_stripe.php:770
5245
  #: classes/gateways/class.pmprogateway_stripe.php:780
@@ -5256,7 +5317,7 @@ msgstr ""
5256
  msgid "Could not cancel the old subscription. Updates have not been processed."
5257
  msgstr ""
5258
 
5259
- #: classes/gateways/class.pmprogateway_stripe.php:1801
5260
  #: classes/gateways/class.pmprogateway_stripe.php:383
5261
  #: classes/gateways/class.pmprogateway_stripe.php:389
5262
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -5282,7 +5343,7 @@ msgstr ""
5282
  msgid "Could not cancel old subscription."
5283
  msgstr ""
5284
 
5285
- #: classes/gateways/class.pmprogateway_stripe.php:1818
5286
  #: classes/gateways/class.pmprogateway_stripe.php:1533
5287
  #: classes/gateways/class.pmprogateway_stripe.php:1534
5288
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -5305,7 +5366,7 @@ msgstr ""
5305
  msgid "Could not find the customer."
5306
  msgstr ""
5307
 
5308
- #: classes/gateways/class.pmprogateway_stripe.php:1978
5309
  #: classes/gateways/class.pmprogateway_stripe.php:1836
5310
  #: classes/gateways/class.pmprogateway_stripe.php:1837
5311
  #: classes/gateways/class.pmprogateway_stripe.php:1847
@@ -5315,7 +5376,7 @@ msgstr ""
5315
  msgid "Error: "
5316
  msgstr ""
5317
 
5318
- #: classes/gateways/class.pmprogateway_stripe.php:1991
5319
  #: classes/gateways/class.pmprogateway_stripe.php:1849
5320
  #: classes/gateways/class.pmprogateway_stripe.php:1850
5321
  #: classes/gateways/class.pmprogateway_stripe.php:1860
@@ -7223,7 +7284,7 @@ msgstr ""
7223
  msgid "and"
7224
  msgstr ""
7225
 
7226
- #: includes/functions.php:2034 includes/functions.php:1319
7227
  #: includes/functions.php:1341 includes/functions.php:1361
7228
  #: includes/functions.php:1372 includes/functions.php:1375
7229
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -7240,7 +7301,7 @@ msgstr ""
7240
  msgid "Sign Up for !!name!! Now"
7241
  msgstr ""
7242
 
7243
- #: includes/functions.php:2040 includes/functions.php:1325
7244
  #: includes/functions.php:1347 includes/functions.php:1367
7245
  #: includes/functions.php:1378 includes/functions.php:1381
7246
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -7257,7 +7318,7 @@ msgstr ""
7257
  msgid "Please specify a level id."
7258
  msgstr ""
7259
 
7260
- #: includes/functions.php:2047 includes/functions.php:2047
7261
  #, php-format
7262
  msgid "Level #%s not found."
7263
  msgstr ""
@@ -7334,6 +7395,7 @@ msgstr ""
7334
  #: includes/license.php:302 includes/updates/upgrade_1_9_4.php:27
7335
  #: includes/license.php:274 includes/license.php:279 includes/license.php:289
7336
  #: includes/license.php:292 includes/license.php:302
 
7337
  msgid "Dismiss"
7338
  msgstr ""
7339
 
@@ -7476,14 +7538,14 @@ msgid ""
7476
  "register to read."
7477
  msgstr ""
7478
 
7479
- #: includes/updates/upgrade_1_9_4.php:26
7480
  msgid ""
7481
  "We have detected that you are using a custom checkout page template for Paid "
7482
  "Memberships Pro. This was recently changed and may need to be updated in "
7483
  "order to display correctly."
7484
  msgstr ""
7485
 
7486
- #: includes/updates/upgrade_1_9_4.php:27
7487
  msgid ""
7488
  "If you notice UI issues after upgrading, <a href=\"https://www."
7489
  "paidmembershipspro.com/add-ons/table-layout-plugin-pages/\">see this free "
@@ -7492,46 +7554,50 @@ msgid ""
7492
  msgstr ""
7493
 
7494
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7495
- #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
 
7496
  #, php-format
7497
  msgid "Logged in as <strong>%s</strong>."
7498
  msgstr ""
7499
 
7500
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7501
- #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
 
7502
  msgid "logout"
7503
  msgstr ""
7504
 
7505
- #: pages/billing.php:45 pages/cancel.php:61 pages/invoice.php:89
7506
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7507
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7508
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7509
  #: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
7510
- #: pages/billing.php:44 pages/cancel.php:52 pages/cancel.php:60
7511
- #: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:109
7512
- #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:43
7513
- #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
7514
- #: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
7515
- #: shortcodes/pmpro_account.php:128
7516
  msgid "Level"
7517
  msgstr ""
7518
 
7519
  #: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
7520
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7521
- #: pages/billing.php:32 pages/billing.php:46
7522
  msgid "Membership Fee"
7523
  msgstr ""
7524
 
7525
  #: pages/billing.php:51 pages/account.php:18 pages/billing.php:22
7526
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7527
- #: pages/billing.php:36 pages/billing.php:50 pages/levels.php:70
 
7528
  #, php-format
7529
  msgid "%s every %d %s."
7530
  msgstr ""
7531
 
7532
  #: pages/billing.php:53 pages/account.php:20 pages/billing.php:24
7533
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7534
- #: pages/billing.php:38 pages/billing.php:52 pages/levels.php:66
 
7535
  #, php-format
7536
  msgid "%s per %s."
7537
  msgstr ""
@@ -7539,13 +7605,13 @@ msgstr ""
7539
  #: pages/billing.php:63 pages/account.php:25 pages/account.php:29
7540
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7541
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7542
- #: pages/billing.php:62
7543
  msgid "Duration"
7544
  msgstr ""
7545
 
7546
  #: pages/billing.php:81 pages/billing.php:39 pages/billing.php:43
7547
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7548
- #: pages/billing.php:57 pages/billing.php:80
7549
  msgid ""
7550
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
7551
  "paypal.com\">login to PayPal here</a> to update your billing information."
@@ -7554,149 +7620,149 @@ msgstr ""
7554
  #: pages/billing.php:108 pages/checkout.php:279 pages/billing.php:65
7555
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7556
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7557
- #: pages/billing.php:107 pages/billing.php:110 pages/checkout.php:279
7558
- #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
7559
- #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
7560
- #: pages/checkout.php:326 pages/checkout.php:328 pages/checkout.php:333
7561
- #: pages/checkout.php:336
7562
  msgid "First Name"
7563
  msgstr ""
7564
 
7565
  #: pages/billing.php:112 pages/checkout.php:283 pages/billing.php:69
7566
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7567
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7568
- #: pages/billing.php:111 pages/billing.php:114 pages/checkout.php:283
7569
- #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
7570
- #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
7571
- #: pages/checkout.php:330 pages/checkout.php:332 pages/checkout.php:337
7572
- #: pages/checkout.php:340
7573
  msgid "Last Name"
7574
  msgstr ""
7575
 
7576
  #: pages/billing.php:116 pages/checkout.php:287 pages/billing.php:73
7577
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7578
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7579
- #: pages/billing.php:115 pages/billing.php:118 pages/checkout.php:287
7580
- #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
7581
- #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
7582
- #: pages/checkout.php:334 pages/checkout.php:336 pages/checkout.php:341
7583
- #: pages/checkout.php:344
7584
  msgid "Address 1"
7585
  msgstr ""
7586
 
7587
  #: pages/billing.php:120 pages/checkout.php:291 pages/billing.php:77
7588
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7589
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7590
- #: pages/billing.php:119 pages/billing.php:122 pages/checkout.php:291
7591
- #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
7592
- #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
7593
- #: pages/checkout.php:338 pages/checkout.php:340 pages/checkout.php:345
7594
- #: pages/checkout.php:348
7595
  msgid "Address 2"
7596
  msgstr ""
7597
 
7598
  #: pages/billing.php:130 pages/checkout.php:298 pages/billing.php:87
7599
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7600
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7601
- #: pages/billing.php:129 pages/billing.php:132 pages/checkout.php:298
7602
- #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
7603
- #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
7604
- #: pages/checkout.php:348 pages/checkout.php:350 pages/checkout.php:355
7605
- #: pages/checkout.php:358
7606
  msgid "City"
7607
  msgstr ""
7608
 
7609
  #: pages/billing.php:134 pages/checkout.php:302 pages/billing.php:91
7610
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7611
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7612
- #: pages/billing.php:133 pages/billing.php:136 pages/checkout.php:302
7613
- #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
7614
- #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
7615
- #: pages/checkout.php:352 pages/checkout.php:354 pages/checkout.php:359
7616
- #: pages/checkout.php:362
7617
  msgid "State"
7618
  msgstr ""
7619
 
7620
  #: pages/billing.php:138 pages/checkout.php:306 pages/billing.php:95
7621
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7622
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7623
- #: pages/billing.php:137 pages/billing.php:140 pages/checkout.php:306
7624
- #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
7625
- #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
7626
- #: pages/checkout.php:356 pages/checkout.php:358 pages/checkout.php:363
7627
- #: pages/checkout.php:366
7628
  msgid "Postal Code"
7629
  msgstr ""
7630
 
7631
  #: pages/billing.php:147 pages/checkout.php:311 pages/billing.php:104
7632
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7633
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7634
- #: pages/billing.php:146 pages/billing.php:149 pages/checkout.php:311
7635
- #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
7636
- #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
7637
- #: pages/checkout.php:365 pages/checkout.php:367 pages/checkout.php:372
7638
- #: pages/checkout.php:375
7639
  msgid "City, State Zip"
7640
  msgstr ""
7641
 
7642
  #: pages/billing.php:200 pages/checkout.php:348 pages/billing.php:157
7643
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7644
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7645
- #: pages/billing.php:199 pages/billing.php:202 pages/checkout.php:348
7646
- #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
7647
- #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
7648
- #: pages/checkout.php:418 pages/checkout.php:420 pages/checkout.php:425
7649
- #: pages/checkout.php:428
7650
  msgid "Country"
7651
  msgstr ""
7652
 
7653
  #: pages/billing.php:225 pages/checkout.php:364 pages/billing.php:182
7654
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7655
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7656
- #: pages/billing.php:224 pages/billing.php:227 pages/checkout.php:364
7657
- #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
7658
- #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
7659
- #: pages/checkout.php:443 pages/checkout.php:445 pages/checkout.php:450
7660
- #: pages/checkout.php:453
7661
  msgid "Phone"
7662
  msgstr ""
7663
 
7664
  #: pages/billing.php:236 pages/checkout.php:197 pages/checkout.php:379
7665
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7666
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7667
- #: pages/billing.php:215 pages/billing.php:235 pages/billing.php:238
7668
- #: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:207
7669
- #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
7670
- #: pages/checkout.php:220 pages/checkout.php:227 pages/checkout.php:230
7671
- #: pages/checkout.php:379 pages/checkout.php:436 pages/checkout.php:438
7672
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
7673
- #: pages/checkout.php:455 pages/checkout.php:457 pages/checkout.php:460
7674
- #: pages/checkout.php:464 pages/checkout.php:467
7675
  msgid "E-mail Address"
7676
  msgstr ""
7677
 
7678
  #: pages/billing.php:240 pages/checkout.php:386 pages/billing.php:197
7679
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7680
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7681
- #: pages/billing.php:239 pages/billing.php:242 pages/checkout.php:386
7682
- #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
7683
- #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
7684
- #: pages/checkout.php:466 pages/checkout.php:469 pages/checkout.php:473
7685
- #: pages/checkout.php:476
7686
  msgid "Confirm E-mail"
7687
  msgstr ""
7688
 
7689
  #: pages/billing.php:263 pages/billing.php:217 pages/billing.php:221
7690
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7691
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7692
- #: pages/billing.php:262 pages/billing.php:270
7693
  msgid "Credit Card Information"
7694
  msgstr ""
7695
 
7696
  #: pages/billing.php:264 pages/billing.php:217 pages/billing.php:221
7697
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7698
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7699
- #: pages/billing.php:263 pages/billing.php:271
7700
  #, php-format
7701
  msgid "We accept %s"
7702
  msgstr ""
@@ -7704,8 +7770,8 @@ msgstr ""
7704
  #: pages/billing.php:381 pages/billing.php:309 pages/billing.php:313
7705
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7706
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
7707
- #: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
7708
- #: pages/billing.php:417 pages/billing.php:422
7709
  msgid ""
7710
  "This subscription is not recurring. So you don't need to update your billing "
7711
  "information."
@@ -7923,7 +7989,7 @@ msgstr ""
7923
  msgid "Print"
7924
  msgstr ""
7925
 
7926
- #: pages/confirmation.php:52 pages/confirmation.php:112 pages/invoice.php:27
7927
  #: pages/confirmation.php:45 pages/confirmation.php:46
7928
  #: pages/confirmation.php:52 pages/confirmation.php:102
7929
  #: pages/confirmation.php:104 pages/confirmation.php:112
@@ -7937,29 +8003,34 @@ msgstr ""
7937
  msgid "Membership Expires"
7938
  msgstr ""
7939
 
7940
- #: pages/confirmation.php:61 pages/invoice.php:90 pages/confirmation.php:61
7941
- #: pages/confirmation.php:63 pages/confirmation.php:65
7942
- #: pages/confirmation.php:71 pages/invoice.php:50 pages/invoice.php:52
7943
- #: pages/invoice.php:90 pages/invoice.php:107 pages/invoice.php:109
7944
- #: pages/invoice.php:110
7945
- msgid "Total Billed"
7946
- msgstr ""
7947
-
7948
- #: pages/confirmation.php:82 pages/invoice.php:61 pages/account.php:105
7949
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
7950
  #: pages/confirmation.php:69 pages/confirmation.php:82 pages/invoice.php:48
7951
  #: pages/invoice.php:50 pages/invoice.php:61
7952
  msgid "Payment Method"
7953
  msgstr ""
7954
 
7955
- #: pages/confirmation.php:83 pages/invoice.php:62 pages/confirmation.php:80
7956
  #: pages/confirmation.php:82 pages/confirmation.php:83
7957
  #: pages/confirmation.php:88 pages/invoice.php:62 pages/invoice.php:67
7958
  #: pages/invoice.php:69
7959
  msgid "ending in"
7960
  msgstr ""
7961
 
7962
- #: pages/confirmation.php:100 pages/confirmation.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
7963
  #: pages/confirmation.php:100 pages/confirmation.php:103
7964
  #, php-format
7965
  msgid ""
@@ -7967,20 +8038,20 @@ msgid ""
7967
  "sent to %s."
7968
  msgstr ""
7969
 
7970
- #: pages/confirmation.php:113 pages/confirmation.php:103
7971
  #: pages/confirmation.php:105 pages/confirmation.php:113
7972
  #: pages/confirmation.php:116
7973
  msgid "Pending"
7974
  msgstr ""
7975
 
7976
- #: pages/confirmation.php:121 pages/invoice.php:121 pages/confirmation.php:111
7977
  #: pages/confirmation.php:113 pages/confirmation.php:121
7978
  #: pages/confirmation.php:124 pages/invoice.php:121 pages/invoice.php:139
7979
  #: pages/invoice.php:141
7980
  msgid "View Your Membership Account &rarr;"
7981
  msgstr ""
7982
 
7983
- #: pages/confirmation.php:123 pages/confirmation.php:113
7984
  #: pages/confirmation.php:115 pages/confirmation.php:123
7985
  #: pages/confirmation.php:126
7986
  msgid ""
@@ -7988,17 +8059,17 @@ msgid ""
7988
  "site owner."
7989
  msgstr ""
7990
 
7991
- #: pages/invoice.php:88 pages/invoice.php:88 pages/invoice.php:106
7992
  #: pages/invoice.php:108
7993
  msgid "Invoice #"
7994
  msgstr ""
7995
 
7996
- #: pages/invoice.php:114 pages/invoice.php:114 pages/invoice.php:132
7997
  #: pages/invoice.php:134
7998
  msgid "No invoices found."
7999
  msgstr ""
8000
 
8001
- #: pages/invoice.php:125 pages/invoice.php:125 pages/invoice.php:143
8002
  #: pages/invoice.php:145
8003
  msgid "&larr; View All Invoices"
8004
  msgstr ""
@@ -8081,7 +8152,7 @@ msgid ""
8081
  "moments."
8082
  msgstr ""
8083
 
8084
- #: preheaders/billing.php:145 preheaders/checkout.php:322
8085
  #: preheaders/billing.php:145 preheaders/billing.php:258
8086
  #: preheaders/billing.php:265 preheaders/billing.php:266
8087
  #: preheaders/billing.php:270 preheaders/billing.php:273
@@ -8094,7 +8165,7 @@ msgstr ""
8094
  msgid "Please complete all required fields."
8095
  msgstr ""
8096
 
8097
- #: preheaders/billing.php:148 preheaders/checkout.php:330
8098
  #: preheaders/billing.php:148 preheaders/billing.php:263
8099
  #: preheaders/billing.php:268 preheaders/billing.php:269
8100
  #: preheaders/billing.php:273 preheaders/billing.php:276
@@ -8107,7 +8178,7 @@ msgstr ""
8107
  msgid "Your email addresses do not match. Please try again."
8108
  msgstr ""
8109
 
8110
- #: preheaders/billing.php:151 preheaders/checkout.php:335
8111
  #: preheaders/billing.php:151 preheaders/billing.php:268
8112
  #: preheaders/billing.php:271 preheaders/billing.php:272
8113
  #: preheaders/billing.php:276 preheaders/billing.php:279
@@ -8120,14 +8191,14 @@ msgstr ""
8120
  msgid "The email address entered is in an invalid format. Please try again."
8121
  msgstr ""
8122
 
8123
- #: preheaders/billing.php:155 preheaders/billing.php:155
8124
  #: preheaders/billing.php:274 preheaders/billing.php:275
8125
  #: preheaders/billing.php:276 preheaders/billing.php:280
8126
  #: preheaders/billing.php:283 preheaders/billing.php:295
8127
  msgid "All good!"
8128
  msgstr ""
8129
 
8130
- #: preheaders/billing.php:222 preheaders/billing.php:222
8131
  #: preheaders/billing.php:340 preheaders/billing.php:345
8132
  #: preheaders/billing.php:346 preheaders/billing.php:350
8133
  #: preheaders/billing.php:353 preheaders/billing.php:370
@@ -8135,7 +8206,7 @@ msgstr ""
8135
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
8136
  msgstr ""
8137
 
8138
- #: preheaders/billing.php:228 preheaders/billing.php:228
8139
  #: preheaders/billing.php:347 preheaders/billing.php:351
8140
  #: preheaders/billing.php:352 preheaders/billing.php:356
8141
  #: preheaders/billing.php:359 preheaders/billing.php:378
@@ -8785,10 +8856,6 @@ msgid ""
8785
  "been sent to %s."
8786
  msgstr ""
8787
 
8788
- #: pages/invoice.php:80 pages/invoice.php:82
8789
- msgid "Coupon"
8790
- msgstr ""
8791
-
8792
  #: pages/invoice.php:120 pages/invoice.php:122
8793
  msgid "View Invoice"
8794
  msgstr ""
6
  msgstr ""
7
  "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
+ "POT-Creation-Date: 2017-12-07 19:45-0500\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: \n"
12
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
539
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
540
  #: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
541
  #: adminpages/paymentsettings.php:236
542
+ #: classes/gateways/class.pmprogateway_stripe.php:297 includes/profile.php:125
543
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
544
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
545
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
618
 
619
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
620
  #: adminpages/paymentsettings.php:237
621
+ #: classes/gateways/class.pmprogateway_stripe.php:298 includes/profile.php:126
622
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
623
  #: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
624
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
883
 
884
  #: adminpages/discountcodes.php:483
885
  #: classes/gateways/class.pmprogateway_braintree.php:459
886
+ #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:317
887
  #: pages/checkout.php:463 adminpages/discountcodes.php:367
888
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
889
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
896
  #: classes/gateways/class.pmprogateway_braintree.php:359
897
  #: classes/gateways/class.pmprogateway_braintree.php:361
898
  #: classes/gateways/class.pmprogateway_braintree.php:423
899
+ #: classes/gateways/class.pmprogateway_braintree.php:459
900
  #: classes/gateways/class.pmprogateway_stripe.php:454
901
  #: classes/gateways/class.pmprogateway_stripe.php:455
902
  #: classes/gateways/class.pmprogateway_stripe.php:465
912
  #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:249
913
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
914
  #: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
915
+ #: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
916
+ #: pages/checkout.php:463 pages/checkout.php:508 pages/checkout.php:524
917
+ #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
918
+ #: pages/checkout.php:562 pages/checkout.php:571 pages/checkout.php:575
919
+ #: pages/checkout.php:582 pages/checkout.php:585
920
  msgid "Expiration Date"
921
  msgstr ""
922
 
1008
 
1009
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1010
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1011
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1012
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1013
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1014
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1041
 
1042
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1043
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1044
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1045
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1046
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1047
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1074
 
1075
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1076
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1077
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1078
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1079
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1080
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1107
 
1108
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1109
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1110
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1111
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1112
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1113
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1329
  msgid "Starts"
1330
  msgstr ""
1331
 
1332
+ #: adminpages/discountcodes.php:722 adminpages/memberslist.php:183
1333
  #: adminpages/reports/login.php:167 includes/profile.php:122
1334
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
1335
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
1654
  msgstr ""
1655
 
1656
  #: adminpages/membershiplevels.php:406
1657
+ #: classes/gateways/class.pmprogateway_stripe.php:785
1658
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1659
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1660
  #: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
1723
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1724
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1725
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1726
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:137
1727
  msgid "Note"
1728
  msgstr ""
1729
 
1842
  #: adminpages/orders.php:807 pages/account.php:44 pages/billing.php:295
1843
  #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1844
  #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1845
+ #: pages/billing.php:364 pages/billing.php:365 pages/billing.php:371
1846
+ #: pages/billing.php:392 pages/billing.php:397 pages/billing.php:401
1847
+ #: pages/billing.php:406 pages/cancel.php:71 pages/cancel.php:83
1848
+ #: pages/cancel.php:84 shortcodes/pmpro_account.php:70
1849
+ #: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
1850
  msgid "Cancel"
1851
  msgstr ""
1852
 
1884
  msgstr ""
1885
 
1886
  #: adminpages/membershiplevels.php:666 pages/cancel.php:62
1887
+ #: pages/confirmation.php:81 pages/invoice.php:63
1888
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1889
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1890
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
2066
  msgstr ""
2067
 
2068
  #: adminpages/memberslist.php:170 pages/billing.php:104 pages/checkout.php:275
2069
+ #: pages/confirmation.php:66 pages/invoice.php:48
2070
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
2071
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2072
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
2073
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
2074
  #: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
2075
+ #: pages/billing.php:103 pages/billing.php:104 pages/checkout.php:275
2076
+ #: pages/checkout.php:298 pages/checkout.php:300 pages/checkout.php:302
2077
+ #: pages/checkout.php:311 pages/checkout.php:314 pages/checkout.php:317
2078
+ #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:326
2079
+ #: pages/checkout.php:329 pages/confirmation.php:59 pages/confirmation.php:61
2080
  #: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
2081
  #: pages/invoice.php:48
2082
  msgid "Billing Address"
2113
  msgid "Ended"
2114
  msgstr ""
2115
 
2116
+ #: adminpages/memberslist.php:179
2117
+ msgid "Cancelled"
2118
+ msgstr ""
2119
+
2120
+ #: adminpages/memberslist.php:181
2121
+ msgid "Expired"
2122
+ msgstr ""
2123
+
2124
+ #: adminpages/memberslist.php:266 adminpages/reports/login.php:232
2125
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2126
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2127
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
2130
  msgid "No members found."
2131
  msgstr ""
2132
 
2133
+ #: adminpages/memberslist.php:266 adminpages/reports/login.php:232
2134
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2135
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2136
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
2184
  #: adminpages/orders.php:195 adminpages/orders.php:245
2185
  #: adminpages/orders.php:317 adminpages/orders.php:321
2186
  #: adminpages/orders.php:346 adminpages/orders.php:352
2187
+ #: adminpages/orders.php:362 classes/class.memberorder.php:746
2188
  msgid "Order"
2189
  msgstr ""
2190
 
2273
  msgstr ""
2274
 
2275
  #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2276
+ #: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
2277
+ #: pages/invoice.php:74 adminpages/orders.php:304 adminpages/orders.php:354
2278
+ #: adminpages/orders.php:426 adminpages/orders.php:455
2279
+ #: adminpages/orders.php:481 adminpages/orders.php:512
2280
+ #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2281
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
2282
  #: pages/invoice.php:80
2283
  msgid "Tax"
2292
 
2293
  #: adminpages/orders.php:546 adminpages/orders.php:1145
2294
  #: adminpages/templates/orders-email.php:64
2295
+ #: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
2296
+ #: pages/invoice.php:78 adminpages/orders.php:320 adminpages/orders.php:370
2297
+ #: adminpages/orders.php:442 adminpages/orders.php:471
2298
+ #: adminpages/orders.php:504 adminpages/orders.php:535
2299
+ #: adminpages/orders.php:546 adminpages/orders.php:602
2300
+ #: adminpages/orders.php:905 adminpages/orders.php:915
2301
+ #: adminpages/orders.php:942 adminpages/orders.php:971
2302
+ #: adminpages/orders.php:1108 adminpages/orders.php:1139
2303
+ #: adminpages/orders.php:1145 adminpages/templates/orders-email.php:64
2304
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
2305
  #: pages/invoice.php:84
2306
  msgid "Total"
2329
 
2330
  #: adminpages/orders.php:574
2331
  #: classes/gateways/class.pmprogateway_braintree.php:446
2332
+ #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:275
2333
  #: pages/checkout.php:423 adminpages/orders.php:339 adminpages/orders.php:389
2334
  #: adminpages/orders.php:461 adminpages/orders.php:490
2335
  #: adminpages/orders.php:532 adminpages/orders.php:563
2343
  #: classes/gateways/class.pmprogateway_braintree.php:344
2344
  #: classes/gateways/class.pmprogateway_braintree.php:406
2345
  #: classes/gateways/class.pmprogateway_braintree.php:441
2346
+ #: classes/gateways/class.pmprogateway_braintree.php:446
2347
  #: classes/gateways/class.pmprogateway_stripe.php:408
2348
  #: classes/gateways/class.pmprogateway_stripe.php:409
2349
  #: classes/gateways/class.pmprogateway_stripe.php:419
2359
  #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:234
2360
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
2361
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
2362
+ #: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
2363
+ #: pages/billing.php:294 pages/checkout.php:423 pages/checkout.php:493
2364
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
2365
+ #: pages/checkout.php:517 pages/checkout.php:525 pages/checkout.php:527
2366
+ #: pages/checkout.php:534 pages/checkout.php:537
2367
  msgid "Card Type"
2368
  msgstr ""
2369
 
2429
  #: adminpages/orders.php:917 adminpages/orders.php:944
2430
  #: adminpages/orders.php:973 adminpages/orders.php:1110
2431
  #: adminpages/orders.php:1141 adminpages/orders.php:1147
2432
+ #: classes/class.memberorder.php:747
2433
  msgid "Gateway"
2434
  msgstr ""
2435
 
2487
  #: adminpages/orders.php:483 adminpages/orders.php:555
2488
  #: adminpages/orders.php:584 adminpages/orders.php:664
2489
  #: adminpages/orders.php:695 adminpages/orders.php:706
2490
+ #: classes/class.memberorder.php:748
2491
  msgid "Subscription Transaction ID"
2492
  msgstr ""
2493
 
2499
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2500
  msgstr ""
2501
 
2502
+ #: adminpages/orders.php:721 adminpages/orders.php:1150 pages/invoice.php:100
2503
  #: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
2504
  #: adminpages/orders.php:492 adminpages/orders.php:493
2505
  #: adminpages/orders.php:565 adminpages/orders.php:594
2671
  msgstr ""
2672
 
2673
  #: adminpages/orders.php:1144 includes/init.php:244 includes/profile.php:36
2674
+ #: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
2675
+ #: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
 
2676
  #: adminpages/orders.php:914 adminpages/orders.php:941
2677
  #: adminpages/orders.php:970 adminpages/orders.php:1107
2678
  #: adminpages/orders.php:1138 adminpages/orders.php:1144 includes/init.php:214
3076
  #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
3077
  #: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
3078
  #: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
3079
+ #: pages/billing.php:100 pages/billing.php:120 pages/billing.php:121
3080
+ #: pages/billing.php:123
3081
  msgid "optional"
3082
  msgstr ""
3083
 
3484
  msgstr ""
3485
 
3486
  #: adminpages/templates/orders-email.php:56
3487
+ #: adminpages/templates/orders-print.php:85 pages/confirmation.php:91
3488
+ #: pages/invoice.php:73 adminpages/templates/orders-email.php:56
3489
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
3490
  #: pages/invoice.php:79
3491
  msgid "Subtotal"
3522
  #: classes/class.memberorder.php:706 classes/class.memberorder.php:716
3523
  #: classes/class.memberorder.php:719 classes/class.memberorder.php:720
3524
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:740
3525
+ #: classes/class.memberorder.php:743 includes/cleanup.php:24
3526
  #, php-format
3527
  msgid ""
3528
  "There was an error canceling the subscription for user with ID=%s. You will "
3530
  "active."
3531
  msgstr ""
3532
 
3533
+ #: classes/class.memberorder.php:744 classes/class.memberorder.php:744
3534
  msgid "User Email"
3535
  msgstr ""
3536
 
3537
+ #: classes/class.memberorder.php:745 classes/class.memberorder.php:745
3538
  msgid "User Display Name"
3539
  msgstr ""
3540
 
3571
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3572
  #: classes/class.pmproemail.php:698
3573
  #: classes/gateways/class.pmprogateway_braintree.php:489
3574
+ #: classes/gateways/class.pmprogateway_stripe.php:660 pages/checkout.php:70
3575
  #: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
3576
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3577
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3602
  #: classes/gateways/class.pmprogateway_braintree.php:402
3603
  #: classes/gateways/class.pmprogateway_braintree.php:448
3604
  #: classes/gateways/class.pmprogateway_braintree.php:464
3605
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3606
  #: classes/gateways/class.pmprogateway_stripe.php:495
3607
  #: classes/gateways/class.pmprogateway_stripe.php:496
3608
  #: classes/gateways/class.pmprogateway_stripe.php:506
4082
  msgstr ""
4083
 
4084
  #: classes/gateways/class.pmprogateway_braintree.php:313
4085
+ #: classes/gateways/class.pmprogateway_stripe.php:305
4086
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
4087
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
4088
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
4121
  msgstr ""
4122
 
4123
  #: classes/gateways/class.pmprogateway_braintree.php:434
4124
+ #: classes/gateways/class.pmprogateway_stripe.php:577 pages/checkout.php:411
4125
  #: classes/gateways/class.pmprogateway_braintree.php:270
4126
  #: classes/gateways/class.pmprogateway_braintree.php:283
4127
  #: classes/gateways/class.pmprogateway_braintree.php:285
4131
  #: classes/gateways/class.pmprogateway_braintree.php:321
4132
  #: classes/gateways/class.pmprogateway_braintree.php:383
4133
  #: classes/gateways/class.pmprogateway_braintree.php:429
4134
+ #: classes/gateways/class.pmprogateway_braintree.php:434
4135
  #: classes/gateways/class.pmprogateway_stripe.php:387
4136
  #: classes/gateways/class.pmprogateway_stripe.php:388
4137
  #: classes/gateways/class.pmprogateway_stripe.php:398
4153
  msgstr ""
4154
 
4155
  #: classes/gateways/class.pmprogateway_braintree.php:435
4156
+ #: classes/gateways/class.pmprogateway_stripe.php:578 pages/checkout.php:412
4157
  #: classes/gateways/class.pmprogateway_braintree.php:270
4158
  #: classes/gateways/class.pmprogateway_braintree.php:283
4159
  #: classes/gateways/class.pmprogateway_braintree.php:285
4163
  #: classes/gateways/class.pmprogateway_braintree.php:322
4164
  #: classes/gateways/class.pmprogateway_braintree.php:384
4165
  #: classes/gateways/class.pmprogateway_braintree.php:430
4166
+ #: classes/gateways/class.pmprogateway_braintree.php:435
4167
  #: classes/gateways/class.pmprogateway_stripe.php:387
4168
  #: classes/gateways/class.pmprogateway_stripe.php:388
4169
  #: classes/gateways/class.pmprogateway_stripe.php:398
4186
  msgstr ""
4187
 
4188
  #: classes/gateways/class.pmprogateway_braintree.php:455
4189
+ #: classes/gateways/class.pmprogateway_stripe.php:625 pages/billing.php:313
4190
  #: pages/checkout.php:459
4191
  #: classes/gateways/class.pmprogateway_braintree.php:303
4192
  #: classes/gateways/class.pmprogateway_braintree.php:316
4196
  #: classes/gateways/class.pmprogateway_braintree.php:354
4197
  #: classes/gateways/class.pmprogateway_braintree.php:356
4198
  #: classes/gateways/class.pmprogateway_braintree.php:418
4199
+ #: classes/gateways/class.pmprogateway_braintree.php:455
4200
  #: classes/gateways/class.pmprogateway_stripe.php:449
4201
  #: classes/gateways/class.pmprogateway_stripe.php:450
4202
  #: classes/gateways/class.pmprogateway_stripe.php:460
4212
  #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:244
4213
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
4214
  #: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
4215
+ #: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
4216
+ #: pages/billing.php:337 pages/checkout.php:459 pages/checkout.php:503
4217
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
4218
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
4219
+ #: pages/checkout.php:570 pages/checkout.php:577 pages/checkout.php:580
4220
  msgid "Card Number"
4221
  msgstr ""
4222
 
4229
  #: classes/gateways/class.pmprogateway_braintree.php:391
4230
  #: classes/gateways/class.pmprogateway_braintree.php:393
4231
  #: classes/gateways/class.pmprogateway_braintree.php:455
4232
+ #: classes/gateways/class.pmprogateway_braintree.php:483
4233
  #: classes/gateways/class.pmprogateway_stripe.php:486
4234
  #: classes/gateways/class.pmprogateway_stripe.php:487
4235
  #: classes/gateways/class.pmprogateway_stripe.php:497
4254
  msgstr ""
4255
 
4256
  #: classes/gateways/class.pmprogateway_braintree.php:484
4257
+ #: classes/gateways/class.pmprogateway_stripe.php:655 pages/billing.php:353
4258
  #: pages/checkout.php:493
4259
  #: classes/gateways/class.pmprogateway_braintree.php:341
4260
  #: classes/gateways/class.pmprogateway_braintree.php:354
4264
  #: classes/gateways/class.pmprogateway_braintree.php:392
4265
  #: classes/gateways/class.pmprogateway_braintree.php:394
4266
  #: classes/gateways/class.pmprogateway_braintree.php:456
4267
+ #: classes/gateways/class.pmprogateway_braintree.php:484
4268
  #: classes/gateways/class.pmprogateway_stripe.php:487
4269
  #: classes/gateways/class.pmprogateway_stripe.php:488
4270
  #: classes/gateways/class.pmprogateway_stripe.php:498
4290
  msgstr ""
4291
 
4292
  #: classes/gateways/class.pmprogateway_braintree.php:491
4293
+ #: classes/gateways/class.pmprogateway_stripe.php:662 pages/checkout.php:78
4294
  #: pages/checkout.php:500
4295
  #: classes/gateways/class.pmprogateway_braintree.php:351
4296
  #: classes/gateways/class.pmprogateway_braintree.php:364
4301
  #: classes/gateways/class.pmprogateway_braintree.php:404
4302
  #: classes/gateways/class.pmprogateway_braintree.php:450
4303
  #: classes/gateways/class.pmprogateway_braintree.php:466
4304
+ #: classes/gateways/class.pmprogateway_braintree.php:491
4305
  #: classes/gateways/class.pmprogateway_stripe.php:497
4306
  #: classes/gateways/class.pmprogateway_stripe.php:498
4307
  #: classes/gateways/class.pmprogateway_stripe.php:508
4334
  #: classes/gateways/class.pmprogateway_braintree.php:524
4335
  #: classes/gateways/class.pmprogateway_braintree.php:526
4336
  #: classes/gateways/class.pmprogateway_braintree.php:541
4337
+ #: classes/gateways/class.pmprogateway_braintree.php:550
4338
+ #: classes/gateways/class.pmprogateway_braintree.php:567
4339
  #: classes/gateways/class.pmprogateway_braintree.php:616
4340
  #: classes/gateways/class.pmprogateway_braintree.php:623
4341
+ #: classes/gateways/class.pmprogateway_braintree.php:657
4342
  #: classes/gateways/class.pmprogateway_braintree.php:781
4343
  #: classes/gateways/class.pmprogateway_braintree.php:782
4344
+ #: classes/gateways/class.pmprogateway_braintree.php:822
4345
  #: classes/gateways/class.pmprogateway_braintree.php:886
4346
  #: classes/gateways/class.pmprogateway_braintree.php:887
4347
  #: classes/gateways/class.pmprogateway_braintree.php:906
4348
  #: classes/gateways/class.pmprogateway_braintree.php:907
4349
+ #: classes/gateways/class.pmprogateway_braintree.php:927
4350
+ #: classes/gateways/class.pmprogateway_braintree.php:947
4351
  msgid "Payment error: Please contact the webmaster (braintree-load-error)"
4352
  msgstr ""
4353
 
4354
  #: classes/gateways/class.pmprogateway_braintree.php:554
4355
+ #: classes/gateways/class.pmprogateway_stripe.php:1139
4356
  #: classes/gateways/class.pmprogateway_braintree.php:61
4357
  #: classes/gateways/class.pmprogateway_braintree.php:406
4358
  #: classes/gateways/class.pmprogateway_braintree.php:419
4363
  #: classes/gateways/class.pmprogateway_braintree.php:459
4364
  #: classes/gateways/class.pmprogateway_braintree.php:513
4365
  #: classes/gateways/class.pmprogateway_braintree.php:528
4366
+ #: classes/gateways/class.pmprogateway_braintree.php:554
4367
  #: classes/gateways/class.pmprogateway_stripe.php:53
4368
  #: classes/gateways/class.pmprogateway_stripe.php:1011
4369
  #: classes/gateways/class.pmprogateway_stripe.php:1025
4393
  #: classes/gateways/class.pmprogateway_braintree.php:518
4394
  #: classes/gateways/class.pmprogateway_braintree.php:589
4395
  #: classes/gateways/class.pmprogateway_braintree.php:596
4396
+ #: classes/gateways/class.pmprogateway_braintree.php:630
4397
  msgid "Error during settlement:"
4398
  msgstr ""
4399
 
4408
  #: classes/gateways/class.pmprogateway_braintree.php:527
4409
  #: classes/gateways/class.pmprogateway_braintree.php:598
4410
  #: classes/gateways/class.pmprogateway_braintree.php:605
4411
+ #: classes/gateways/class.pmprogateway_braintree.php:639
4412
  msgid "Error during charge:"
4413
  msgstr ""
4414
 
4415
  #: classes/gateways/class.pmprogateway_braintree.php:731
4416
  #: classes/gateways/class.pmprogateway_braintree.php:690
4417
+ #: classes/gateways/class.pmprogateway_braintree.php:731
4418
  #, php-format
4419
  msgid "Failed to update customer: %s"
4420
  msgstr ""
4431
  #: classes/gateways/class.pmprogateway_braintree.php:619
4432
  #: classes/gateways/class.pmprogateway_braintree.php:702
4433
  #: classes/gateways/class.pmprogateway_braintree.php:703
4434
+ #: classes/gateways/class.pmprogateway_braintree.php:743
4435
  msgid "Failed to update customer."
4436
  msgstr ""
4437
 
4447
  #: classes/gateways/class.pmprogateway_braintree.php:667
4448
  #: classes/gateways/class.pmprogateway_braintree.php:750
4449
  #: classes/gateways/class.pmprogateway_braintree.php:751
4450
+ #: classes/gateways/class.pmprogateway_braintree.php:791
4451
  msgid "Failed to create customer."
4452
  msgstr ""
4453
 
4463
  #: classes/gateways/class.pmprogateway_braintree.php:674
4464
  #: classes/gateways/class.pmprogateway_braintree.php:757
4465
  #: classes/gateways/class.pmprogateway_braintree.php:758
4466
+ #: classes/gateways/class.pmprogateway_braintree.php:798
4467
  msgid "Error creating customer record with Braintree:"
4468
  msgstr ""
4469
 
4480
  #: classes/gateways/class.pmprogateway_braintree.php:774
4481
  #: classes/gateways/class.pmprogateway_braintree.php:862
4482
  #: classes/gateways/class.pmprogateway_braintree.php:863
4483
+ #: classes/gateways/class.pmprogateway_braintree.php:903
4484
  msgid "Error subscribing customer to plan with Braintree:"
4485
  msgstr ""
4486
 
4497
  #: classes/gateways/class.pmprogateway_braintree.php:789
4498
  #: classes/gateways/class.pmprogateway_braintree.php:877
4499
  #: classes/gateways/class.pmprogateway_braintree.php:878
4500
+ #: classes/gateways/class.pmprogateway_braintree.php:918
4501
  msgid "Failed to subscribe with Braintree:"
4502
  msgstr ""
4503
 
4539
  #: classes/gateways/class.pmprogateway_braintree.php:939
4540
  #: classes/gateways/class.pmprogateway_braintree.php:945
4541
  #: classes/gateways/class.pmprogateway_braintree.php:946
4542
+ #: classes/gateways/class.pmprogateway_braintree.php:966
4543
+ #: classes/gateways/class.pmprogateway_braintree.php:979
4544
+ #: classes/gateways/class.pmprogateway_braintree.php:986
4545
  #: classes/gateways/class.pmprogateway_stripe.php:343
4546
  #: classes/gateways/class.pmprogateway_stripe.php:344
4547
  #: classes/gateways/class.pmprogateway_stripe.php:351
4699
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
4700
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
4701
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
4702
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:132
4703
  msgid "PayPal Settings"
4704
  msgstr ""
4705
 
4713
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
4714
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
4715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
4716
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:137
4717
  msgid ""
4718
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
4719
  "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
4733
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
4734
  #: classes/gateways/class.pmprogateway_paypalexpress.php:150
4735
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
4736
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:142
4737
  msgid "Gateway Account Email"
4738
  msgstr ""
4739
 
4750
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
4751
  #: classes/gateways/class.pmprogateway_paypalexpress.php:158
4752
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
4753
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:150
4754
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
4755
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
4756
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4770
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
4771
  #: classes/gateways/class.pmprogateway_paypalexpress.php:166
4772
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
4773
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:158
4774
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4775
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
4776
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
4788
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4789
  #: classes/gateways/class.pmprogateway_paypalexpress.php:174
4790
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
4791
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:166
4792
  msgid "API Signature"
4793
  msgstr ""
4794
 
4810
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4811
  #: classes/gateways/class.pmprogateway_paypalexpress.php:193
4812
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
4813
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:174
4814
  msgid "IPN Handler URL"
4815
  msgstr ""
4816
 
4832
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4833
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4834
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
4835
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:229
4836
  #: pages/checkout.php:263 pages/checkout.php:286 pages/checkout.php:288
4837
  #: pages/checkout.php:295 pages/checkout.php:300 pages/checkout.php:302
4838
  #: pages/checkout.php:309 pages/checkout.php:312 pages/checkout.php:675
4850
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4851
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4852
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
4853
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:234
4854
  #: pages/checkout.php:598 pages/checkout.php:681 pages/checkout.php:688
4855
  #: pages/checkout.php:691 pages/checkout.php:704 pages/checkout.php:707
4856
  #: pages/checkout.php:713 pages/checkout.php:718 pages/checkout.php:722
4870
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4871
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4872
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
4873
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:234
4874
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4875
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4876
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
4904
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4905
  #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4906
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
4907
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:575
4908
  msgid ""
4909
  "Please contact the site owner or cancel your subscription from within PayPal "
4910
  "to make sure you are not charged going forward."
4952
  #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4953
  #: paid-memberships-pro.php:134
4954
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4955
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4956
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4957
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4958
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
4963
 
4964
  #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4965
  #: classes/gateways/class.pmprogateway_paypalstandard.php:157
4966
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4967
  msgid ""
4968
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
4969
  "settings."
4970
  msgstr ""
4971
 
4972
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4973
  #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4974
  msgid "User requested cancellation"
4975
  msgstr ""
5009
  msgstr ""
5010
 
5011
  #: classes/gateways/class.pmprogateway_stripe.php:261
5012
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
5013
+ #: adminpages/paymentsettings.php:294
5014
+ #: classes/gateways/class.pmprogateway_stripe.php:161
5015
+ #: classes/gateways/class.pmprogateway_stripe.php:162
5016
+ #: classes/gateways/class.pmprogateway_stripe.php:172
5017
+ #: classes/gateways/class.pmprogateway_stripe.php:194
5018
+ #: classes/gateways/class.pmprogateway_stripe.php:196
5019
+ #: classes/gateways/class.pmprogateway_stripe.php:197
5020
+ #: classes/gateways/class.pmprogateway_stripe.php:208
5021
+ #: classes/gateways/class.pmprogateway_stripe.php:210
5022
+ #: classes/gateways/class.pmprogateway_stripe.php:237
5023
+ #: classes/gateways/class.pmprogateway_stripe.php:269
5024
+ msgid "Publishable Key"
5025
+ msgstr ""
5026
+
5027
+ #: classes/gateways/class.pmprogateway_stripe.php:269
5028
+ msgid "Your Publishable Key appears incorrect."
5029
+ msgstr ""
5030
+
5031
+ #: classes/gateways/class.pmprogateway_stripe.php:277
5032
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
5033
  #: adminpages/paymentsettings.php:286
5034
  #: classes/gateways/class.pmprogateway_stripe.php:153
5044
  msgid "Secret Key"
5045
  msgstr ""
5046
 
5047
+ #: classes/gateways/class.pmprogateway_stripe.php:285
5048
+ msgid "Your Secret Key appears incorrect."
 
 
 
 
 
 
 
 
 
 
 
 
5049
  msgstr ""
5050
 
5051
+ #: classes/gateways/class.pmprogateway_stripe.php:293
5052
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
5053
  #: adminpages/paymentsettings.php:432
5054
  #: classes/gateways/class.pmprogateway_stripe.php:169
5064
  msgid "Show Billing Address Fields"
5065
  msgstr ""
5066
 
5067
+ #: classes/gateways/class.pmprogateway_stripe.php:300
5068
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
5069
  #: classes/gateways/class.pmprogateway_stripe.php:176
5070
  #: classes/gateways/class.pmprogateway_stripe.php:177
5082
  "verification in the Stripe dashboard settings.</strong>"
5083
  msgstr ""
5084
 
5085
+ #: classes/gateways/class.pmprogateway_stripe.php:308
5086
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
5087
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
5088
  #: classes/gateways/class.pmprogateway_stripe.php:184
5098
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
5099
  msgstr ""
5100
 
5101
+ #: classes/gateways/class.pmprogateway_stripe.php:654 pages/checkout.php:492
5102
  #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5103
  msgid "Security Code (CVC)"
5104
  msgstr ""
5105
 
5106
+ #: classes/gateways/class.pmprogateway_stripe.php:726
5107
  #: classes/gateways/class.pmprogateway_stripe.php:703
5108
  #: classes/gateways/class.pmprogateway_stripe.php:710
5109
  #, php-format
5112
  "have been deleted."
5113
  msgstr ""
5114
 
5115
+ #: classes/gateways/class.pmprogateway_stripe.php:733
5116
  #: classes/gateways/class.pmprogateway_stripe.php:567
5117
  #: classes/gateways/class.pmprogateway_stripe.php:568
5118
  #: classes/gateways/class.pmprogateway_stripe.php:578
5129
  msgid "Subscription Updates"
5130
  msgstr ""
5131
 
5132
+ #: classes/gateways/class.pmprogateway_stripe.php:737
5133
  #: classes/gateways/class.pmprogateway_stripe.php:571
5134
  #: classes/gateways/class.pmprogateway_stripe.php:572
5135
  #: classes/gateways/class.pmprogateway_stripe.php:582
5148
  "at predefined times. Be sure to click Update Profile after making changes."
5149
  msgstr ""
5150
 
5151
+ #: classes/gateways/class.pmprogateway_stripe.php:739
5152
  #: classes/gateways/class.pmprogateway_stripe.php:573
5153
  #: classes/gateways/class.pmprogateway_stripe.php:574
5154
  #: classes/gateways/class.pmprogateway_stripe.php:584
5167
  "at predefined times. Be sure to click Update User after making changes."
5168
  msgstr ""
5169
 
5170
+ #: classes/gateways/class.pmprogateway_stripe.php:744 pages/billing.php:364
5171
  #: classes/gateways/class.pmprogateway_stripe.php:578
5172
  #: classes/gateways/class.pmprogateway_stripe.php:579
5173
  #: classes/gateways/class.pmprogateway_stripe.php:589
5183
  #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:294
5184
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
5185
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
5186
+ #: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
5187
+ #: pages/billing.php:391 pages/billing.php:396 pages/billing.php:400
5188
+ #: pages/billing.php:405
5189
  msgid "Update"
5190
  msgstr ""
5191
 
5192
+ #: classes/gateways/class.pmprogateway_stripe.php:1135
5193
  #: classes/gateways/class.pmprogateway_stripe.php:1119
5194
  #: classes/gateways/class.pmprogateway_stripe.php:1172
5195
  msgid "Payment error: Please contact the webmaster (stripe-load-error)"
5196
  msgstr ""
5197
 
5198
+ #: classes/gateways/class.pmprogateway_stripe.php:1373
5199
  #: classes/gateways/class.pmprogateway_stripe.php:190
5200
  #: classes/gateways/class.pmprogateway_stripe.php:192
5201
  #: classes/gateways/class.pmprogateway_stripe.php:199
5221
  msgid "Error creating customer record with Stripe:"
5222
  msgstr ""
5223
 
5224
+ #: classes/gateways/class.pmprogateway_stripe.php:1432
5225
  #: classes/gateways/class.pmprogateway_stripe.php:1275
5226
  #: classes/gateways/class.pmprogateway_stripe.php:1303
5227
  #: classes/gateways/class.pmprogateway_stripe.php:1313
5237
  msgid "Error getting subscription with Stripe:"
5238
  msgstr ""
5239
 
5240
+ #: classes/gateways/class.pmprogateway_stripe.php:1588
5241
  #: classes/gateways/class.pmprogateway_stripe.php:278
5242
  #: classes/gateways/class.pmprogateway_stripe.php:279
5243
  #: classes/gateways/class.pmprogateway_stripe.php:286
5271
  msgid "Error creating plan with Stripe:"
5272
  msgstr ""
5273
 
5274
+ #: classes/gateways/class.pmprogateway_stripe.php:1619
5275
  #: classes/gateways/class.pmprogateway_stripe.php:294
5276
  #: classes/gateways/class.pmprogateway_stripe.php:295
5277
  #: classes/gateways/class.pmprogateway_stripe.php:302
5300
  msgid "Error subscribing customer to plan with Stripe:"
5301
  msgstr ""
5302
 
5303
+ #: classes/gateways/class.pmprogateway_stripe.php:1714
5304
  #: classes/gateways/class.pmprogateway_stripe.php:769
5305
  #: classes/gateways/class.pmprogateway_stripe.php:770
5306
  #: classes/gateways/class.pmprogateway_stripe.php:780
5317
  msgid "Could not cancel the old subscription. Updates have not been processed."
5318
  msgstr ""
5319
 
5320
+ #: classes/gateways/class.pmprogateway_stripe.php:1817
5321
  #: classes/gateways/class.pmprogateway_stripe.php:383
5322
  #: classes/gateways/class.pmprogateway_stripe.php:389
5323
  #: classes/gateways/class.pmprogateway_stripe.php:410
5343
  msgid "Could not cancel old subscription."
5344
  msgstr ""
5345
 
5346
+ #: classes/gateways/class.pmprogateway_stripe.php:1834
5347
  #: classes/gateways/class.pmprogateway_stripe.php:1533
5348
  #: classes/gateways/class.pmprogateway_stripe.php:1534
5349
  #: classes/gateways/class.pmprogateway_stripe.php:1535
5366
  msgid "Could not find the customer."
5367
  msgstr ""
5368
 
5369
+ #: classes/gateways/class.pmprogateway_stripe.php:1994
5370
  #: classes/gateways/class.pmprogateway_stripe.php:1836
5371
  #: classes/gateways/class.pmprogateway_stripe.php:1837
5372
  #: classes/gateways/class.pmprogateway_stripe.php:1847
5376
  msgid "Error: "
5377
  msgstr ""
5378
 
5379
+ #: classes/gateways/class.pmprogateway_stripe.php:2007
5380
  #: classes/gateways/class.pmprogateway_stripe.php:1849
5381
  #: classes/gateways/class.pmprogateway_stripe.php:1850
5382
  #: classes/gateways/class.pmprogateway_stripe.php:1860
7284
  msgid "and"
7285
  msgstr ""
7286
 
7287
+ #: includes/functions.php:2033 includes/functions.php:1319
7288
  #: includes/functions.php:1341 includes/functions.php:1361
7289
  #: includes/functions.php:1372 includes/functions.php:1375
7290
  #: includes/functions.php:1385 includes/functions.php:1394
7301
  msgid "Sign Up for !!name!! Now"
7302
  msgstr ""
7303
 
7304
+ #: includes/functions.php:2039 includes/functions.php:1325
7305
  #: includes/functions.php:1347 includes/functions.php:1367
7306
  #: includes/functions.php:1378 includes/functions.php:1381
7307
  #: includes/functions.php:1391 includes/functions.php:1400
7318
  msgid "Please specify a level id."
7319
  msgstr ""
7320
 
7321
+ #: includes/functions.php:2046 includes/functions.php:2047
7322
  #, php-format
7323
  msgid "Level #%s not found."
7324
  msgstr ""
7395
  #: includes/license.php:302 includes/updates/upgrade_1_9_4.php:27
7396
  #: includes/license.php:274 includes/license.php:279 includes/license.php:289
7397
  #: includes/license.php:292 includes/license.php:302
7398
+ #: includes/updates/upgrade_1_9_4.php:27
7399
  msgid "Dismiss"
7400
  msgstr ""
7401
 
7538
  "register to read."
7539
  msgstr ""
7540
 
7541
+ #: includes/updates/upgrade_1_9_4.php:26 includes/updates/upgrade_1_9_4.php:26
7542
  msgid ""
7543
  "We have detected that you are using a custom checkout page template for Paid "
7544
  "Memberships Pro. This was recently changed and may need to be updated in "
7545
  "order to display correctly."
7546
  msgstr ""
7547
 
7548
+ #: includes/updates/upgrade_1_9_4.php:27 includes/updates/upgrade_1_9_4.php:27
7549
  msgid ""
7550
  "If you notice UI issues after upgrading, <a href=\"https://www."
7551
  "paidmembershipspro.com/add-ons/table-layout-plugin-pages/\">see this free "
7554
  msgstr ""
7555
 
7556
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7557
+ #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
7558
+ #: pages/billing.php:28
7559
  #, php-format
7560
  msgid "Logged in as <strong>%s</strong>."
7561
  msgstr ""
7562
 
7563
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7564
+ #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
7565
+ #: pages/billing.php:28
7566
  msgid "logout"
7567
  msgstr ""
7568
 
7569
+ #: pages/billing.php:45 pages/cancel.php:61 pages/invoice.php:102
7570
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7571
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7572
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7573
  #: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
7574
+ #: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
7575
+ #: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
7576
+ #: pages/invoice.php:109 pages/levels.php:13 pages/levels.php:35
7577
+ #: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
7578
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
7579
+ #: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
7580
  msgid "Level"
7581
  msgstr ""
7582
 
7583
  #: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
7584
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7585
+ #: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
7586
  msgid "Membership Fee"
7587
  msgstr ""
7588
 
7589
  #: pages/billing.php:51 pages/account.php:18 pages/billing.php:22
7590
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7591
+ #: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
7592
+ #: pages/levels.php:70
7593
  #, php-format
7594
  msgid "%s every %d %s."
7595
  msgstr ""
7596
 
7597
  #: pages/billing.php:53 pages/account.php:20 pages/billing.php:24
7598
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7599
+ #: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
7600
+ #: pages/levels.php:66
7601
  #, php-format
7602
  msgid "%s per %s."
7603
  msgstr ""
7605
  #: pages/billing.php:63 pages/account.php:25 pages/account.php:29
7606
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7607
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7608
+ #: pages/billing.php:62 pages/billing.php:63
7609
  msgid "Duration"
7610
  msgstr ""
7611
 
7612
  #: pages/billing.php:81 pages/billing.php:39 pages/billing.php:43
7613
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7614
+ #: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
7615
  msgid ""
7616
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
7617
  "paypal.com\">login to PayPal here</a> to update your billing information."
7620
  #: pages/billing.php:108 pages/checkout.php:279 pages/billing.php:65
7621
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7622
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7623
+ #: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
7624
+ #: pages/checkout.php:279 pages/checkout.php:305 pages/checkout.php:307
7625
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
7626
+ #: pages/checkout.php:324 pages/checkout.php:326 pages/checkout.php:328
7627
+ #: pages/checkout.php:333 pages/checkout.php:336
7628
  msgid "First Name"
7629
  msgstr ""
7630
 
7631
  #: pages/billing.php:112 pages/checkout.php:283 pages/billing.php:69
7632
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7633
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7634
+ #: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
7635
+ #: pages/checkout.php:283 pages/checkout.php:309 pages/checkout.php:311
7636
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
7637
+ #: pages/checkout.php:328 pages/checkout.php:330 pages/checkout.php:332
7638
+ #: pages/checkout.php:337 pages/checkout.php:340
7639
  msgid "Last Name"
7640
  msgstr ""
7641
 
7642
  #: pages/billing.php:116 pages/checkout.php:287 pages/billing.php:73
7643
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7644
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7645
+ #: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
7646
+ #: pages/checkout.php:287 pages/checkout.php:313 pages/checkout.php:315
7647
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
7648
+ #: pages/checkout.php:332 pages/checkout.php:334 pages/checkout.php:336
7649
+ #: pages/checkout.php:341 pages/checkout.php:344
7650
  msgid "Address 1"
7651
  msgstr ""
7652
 
7653
  #: pages/billing.php:120 pages/checkout.php:291 pages/billing.php:77
7654
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7655
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7656
+ #: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
7657
+ #: pages/checkout.php:291 pages/checkout.php:317 pages/checkout.php:319
7658
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
7659
+ #: pages/checkout.php:336 pages/checkout.php:338 pages/checkout.php:340
7660
+ #: pages/checkout.php:345 pages/checkout.php:348
7661
  msgid "Address 2"
7662
  msgstr ""
7663
 
7664
  #: pages/billing.php:130 pages/checkout.php:298 pages/billing.php:87
7665
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7666
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7667
+ #: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
7668
+ #: pages/checkout.php:298 pages/checkout.php:327 pages/checkout.php:329
7669
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
7670
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:350
7671
+ #: pages/checkout.php:355 pages/checkout.php:358
7672
  msgid "City"
7673
  msgstr ""
7674
 
7675
  #: pages/billing.php:134 pages/checkout.php:302 pages/billing.php:91
7676
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7677
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7678
+ #: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
7679
+ #: pages/checkout.php:302 pages/checkout.php:331 pages/checkout.php:333
7680
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
7681
+ #: pages/checkout.php:350 pages/checkout.php:352 pages/checkout.php:354
7682
+ #: pages/checkout.php:359 pages/checkout.php:362
7683
  msgid "State"
7684
  msgstr ""
7685
 
7686
  #: pages/billing.php:138 pages/checkout.php:306 pages/billing.php:95
7687
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7688
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7689
+ #: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
7690
+ #: pages/checkout.php:306 pages/checkout.php:335 pages/checkout.php:337
7691
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
7692
+ #: pages/checkout.php:354 pages/checkout.php:356 pages/checkout.php:358
7693
+ #: pages/checkout.php:363 pages/checkout.php:366
7694
  msgid "Postal Code"
7695
  msgstr ""
7696
 
7697
  #: pages/billing.php:147 pages/checkout.php:311 pages/billing.php:104
7698
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7699
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7700
+ #: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
7701
+ #: pages/checkout.php:311 pages/checkout.php:344 pages/checkout.php:346
7702
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
7703
+ #: pages/checkout.php:363 pages/checkout.php:365 pages/checkout.php:367
7704
+ #: pages/checkout.php:372 pages/checkout.php:375
7705
  msgid "City, State Zip"
7706
  msgstr ""
7707
 
7708
  #: pages/billing.php:200 pages/checkout.php:348 pages/billing.php:157
7709
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7710
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7711
+ #: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
7712
+ #: pages/checkout.php:348 pages/checkout.php:397 pages/checkout.php:399
7713
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
7714
+ #: pages/checkout.php:416 pages/checkout.php:418 pages/checkout.php:420
7715
+ #: pages/checkout.php:425 pages/checkout.php:428
7716
  msgid "Country"
7717
  msgstr ""
7718
 
7719
  #: pages/billing.php:225 pages/checkout.php:364 pages/billing.php:182
7720
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7721
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7722
+ #: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
7723
+ #: pages/checkout.php:364 pages/checkout.php:422 pages/checkout.php:424
7724
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
7725
+ #: pages/checkout.php:441 pages/checkout.php:443 pages/checkout.php:445
7726
+ #: pages/checkout.php:450 pages/checkout.php:453
7727
  msgid "Phone"
7728
  msgstr ""
7729
 
7730
  #: pages/billing.php:236 pages/checkout.php:197 pages/checkout.php:379
7731
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7732
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7733
+ #: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
7734
+ #: pages/billing.php:238 pages/checkout.php:197 pages/checkout.php:204
7735
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
7736
+ #: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
7737
+ #: pages/checkout.php:230 pages/checkout.php:379 pages/checkout.php:436
7738
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:449
7739
+ #: pages/checkout.php:453 pages/checkout.php:455 pages/checkout.php:457
7740
+ #: pages/checkout.php:460 pages/checkout.php:464 pages/checkout.php:467
7741
  msgid "E-mail Address"
7742
  msgstr ""
7743
 
7744
  #: pages/billing.php:240 pages/checkout.php:386 pages/billing.php:197
7745
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7746
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7747
+ #: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
7748
+ #: pages/checkout.php:386 pages/checkout.php:445 pages/checkout.php:447
7749
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
7750
+ #: pages/checkout.php:464 pages/checkout.php:466 pages/checkout.php:469
7751
+ #: pages/checkout.php:473 pages/checkout.php:476
7752
  msgid "Confirm E-mail"
7753
  msgstr ""
7754
 
7755
  #: pages/billing.php:263 pages/billing.php:217 pages/billing.php:221
7756
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7757
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7758
+ #: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
7759
  msgid "Credit Card Information"
7760
  msgstr ""
7761
 
7762
  #: pages/billing.php:264 pages/billing.php:217 pages/billing.php:221
7763
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7764
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7765
+ #: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
7766
  #, php-format
7767
  msgid "We accept %s"
7768
  msgstr ""
7770
  #: pages/billing.php:381 pages/billing.php:309 pages/billing.php:313
7771
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7772
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
7773
+ #: pages/billing.php:381 pages/billing.php:387 pages/billing.php:408
7774
+ #: pages/billing.php:413 pages/billing.php:417 pages/billing.php:422
7775
  msgid ""
7776
  "This subscription is not recurring. So you don't need to update your billing "
7777
  "information."
7989
  msgid "Print"
7990
  msgstr ""
7991
 
7992
+ #: pages/confirmation.php:52 pages/confirmation.php:123 pages/invoice.php:27
7993
  #: pages/confirmation.php:45 pages/confirmation.php:46
7994
  #: pages/confirmation.php:52 pages/confirmation.php:102
7995
  #: pages/confirmation.php:104 pages/confirmation.php:112
8003
  msgid "Membership Expires"
8004
  msgstr ""
8005
 
8006
+ #: pages/confirmation.php:79 pages/invoice.php:61 pages/account.php:105
 
 
 
 
 
 
 
 
8007
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
8008
  #: pages/confirmation.php:69 pages/confirmation.php:82 pages/invoice.php:48
8009
  #: pages/invoice.php:50 pages/invoice.php:61
8010
  msgid "Payment Method"
8011
  msgstr ""
8012
 
8013
+ #: pages/confirmation.php:80 pages/invoice.php:62 pages/confirmation.php:80
8014
  #: pages/confirmation.php:82 pages/confirmation.php:83
8015
  #: pages/confirmation.php:88 pages/invoice.php:62 pages/invoice.php:67
8016
  #: pages/invoice.php:69
8017
  msgid "ending in"
8018
  msgstr ""
8019
 
8020
+ #: pages/confirmation.php:88 pages/invoice.php:70 pages/invoice.php:103
8021
+ #: pages/confirmation.php:61 pages/confirmation.php:63
8022
+ #: pages/confirmation.php:65 pages/confirmation.php:71 pages/invoice.php:50
8023
+ #: pages/invoice.php:52 pages/invoice.php:90 pages/invoice.php:107
8024
+ #: pages/invoice.php:109 pages/invoice.php:110
8025
+ msgid "Total Billed"
8026
+ msgstr ""
8027
+
8028
+ #: pages/confirmation.php:94 pages/invoice.php:76 pages/invoice.php:80
8029
+ #: pages/invoice.php:82
8030
+ msgid "Coupon"
8031
+ msgstr ""
8032
+
8033
+ #: pages/confirmation.php:111 pages/confirmation.php:97
8034
  #: pages/confirmation.php:100 pages/confirmation.php:103
8035
  #, php-format
8036
  msgid ""
8038
  "sent to %s."
8039
  msgstr ""
8040
 
8041
+ #: pages/confirmation.php:124 pages/confirmation.php:103
8042
  #: pages/confirmation.php:105 pages/confirmation.php:113
8043
  #: pages/confirmation.php:116
8044
  msgid "Pending"
8045
  msgstr ""
8046
 
8047
+ #: pages/confirmation.php:132 pages/invoice.php:134 pages/confirmation.php:111
8048
  #: pages/confirmation.php:113 pages/confirmation.php:121
8049
  #: pages/confirmation.php:124 pages/invoice.php:121 pages/invoice.php:139
8050
  #: pages/invoice.php:141
8051
  msgid "View Your Membership Account &rarr;"
8052
  msgstr ""
8053
 
8054
+ #: pages/confirmation.php:134 pages/confirmation.php:113
8055
  #: pages/confirmation.php:115 pages/confirmation.php:123
8056
  #: pages/confirmation.php:126
8057
  msgid ""
8059
  "site owner."
8060
  msgstr ""
8061
 
8062
+ #: pages/invoice.php:101 pages/invoice.php:88 pages/invoice.php:106
8063
  #: pages/invoice.php:108
8064
  msgid "Invoice #"
8065
  msgstr ""
8066
 
8067
+ #: pages/invoice.php:127 pages/invoice.php:114 pages/invoice.php:132
8068
  #: pages/invoice.php:134
8069
  msgid "No invoices found."
8070
  msgstr ""
8071
 
8072
+ #: pages/invoice.php:138 pages/invoice.php:125 pages/invoice.php:143
8073
  #: pages/invoice.php:145
8074
  msgid "&larr; View All Invoices"
8075
  msgstr ""
8152
  "moments."
8153
  msgstr ""
8154
 
8155
+ #: preheaders/billing.php:147 preheaders/checkout.php:322
8156
  #: preheaders/billing.php:145 preheaders/billing.php:258
8157
  #: preheaders/billing.php:265 preheaders/billing.php:266
8158
  #: preheaders/billing.php:270 preheaders/billing.php:273
8165
  msgid "Please complete all required fields."
8166
  msgstr ""
8167
 
8168
+ #: preheaders/billing.php:150 preheaders/checkout.php:330
8169
  #: preheaders/billing.php:148 preheaders/billing.php:263
8170
  #: preheaders/billing.php:268 preheaders/billing.php:269
8171
  #: preheaders/billing.php:273 preheaders/billing.php:276
8178
  msgid "Your email addresses do not match. Please try again."
8179
  msgstr ""
8180
 
8181
+ #: preheaders/billing.php:153 preheaders/checkout.php:335
8182
  #: preheaders/billing.php:151 preheaders/billing.php:268
8183
  #: preheaders/billing.php:271 preheaders/billing.php:272
8184
  #: preheaders/billing.php:276 preheaders/billing.php:279
8191
  msgid "The email address entered is in an invalid format. Please try again."
8192
  msgstr ""
8193
 
8194
+ #: preheaders/billing.php:157 preheaders/billing.php:155
8195
  #: preheaders/billing.php:274 preheaders/billing.php:275
8196
  #: preheaders/billing.php:276 preheaders/billing.php:280
8197
  #: preheaders/billing.php:283 preheaders/billing.php:295
8198
  msgid "All good!"
8199
  msgstr ""
8200
 
8201
+ #: preheaders/billing.php:224 preheaders/billing.php:222
8202
  #: preheaders/billing.php:340 preheaders/billing.php:345
8203
  #: preheaders/billing.php:346 preheaders/billing.php:350
8204
  #: preheaders/billing.php:353 preheaders/billing.php:370
8206
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
8207
  msgstr ""
8208
 
8209
+ #: preheaders/billing.php:230 preheaders/billing.php:228
8210
  #: preheaders/billing.php:347 preheaders/billing.php:351
8211
  #: preheaders/billing.php:352 preheaders/billing.php:356
8212
  #: preheaders/billing.php:359 preheaders/billing.php:378
8856
  "been sent to %s."
8857
  msgstr ""
8858
 
 
 
 
 
8859
  #: pages/invoice.php:120 pages/invoice.php:122
8860
  msgid "View Invoice"
8861
  msgstr ""
languages/paid-memberships-pro.pot CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
- "POT-Creation-Date: 2017-10-31 18:59-0400\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: \n"
12
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -539,7 +539,7 @@ msgstr ""
539
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
540
  #: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
541
  #: adminpages/paymentsettings.php:236
542
- #: classes/gateways/class.pmprogateway_stripe.php:281 includes/profile.php:125
543
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
544
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
545
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
@@ -618,7 +618,7 @@ msgstr ""
618
 
619
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
620
  #: adminpages/paymentsettings.php:237
621
- #: classes/gateways/class.pmprogateway_stripe.php:282 includes/profile.php:126
622
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
623
  #: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
624
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
@@ -883,7 +883,7 @@ msgstr ""
883
 
884
  #: adminpages/discountcodes.php:483
885
  #: classes/gateways/class.pmprogateway_braintree.php:459
886
- #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:317
887
  #: pages/checkout.php:463 adminpages/discountcodes.php:367
888
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
889
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
@@ -896,6 +896,7 @@ msgstr ""
896
  #: classes/gateways/class.pmprogateway_braintree.php:359
897
  #: classes/gateways/class.pmprogateway_braintree.php:361
898
  #: classes/gateways/class.pmprogateway_braintree.php:423
 
899
  #: classes/gateways/class.pmprogateway_stripe.php:454
900
  #: classes/gateways/class.pmprogateway_stripe.php:455
901
  #: classes/gateways/class.pmprogateway_stripe.php:465
@@ -911,11 +912,11 @@ msgstr ""
911
  #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:249
912
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
913
  #: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
914
- #: pages/billing.php:319 pages/billing.php:342 pages/checkout.php:463
915
- #: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
916
- #: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
917
- #: pages/checkout.php:571 pages/checkout.php:575 pages/checkout.php:582
918
- #: pages/checkout.php:585
919
  msgid "Expiration Date"
920
  msgstr ""
921
 
@@ -1007,7 +1008,7 @@ msgstr ""
1007
 
1008
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1009
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1010
- #: classes/gateways/class.pmprogateway_stripe.php:671
1011
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1012
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1013
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1040,7 +1041,7 @@ msgstr ""
1040
 
1041
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1042
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1043
- #: classes/gateways/class.pmprogateway_stripe.php:671
1044
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1045
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1046
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1073,7 +1074,7 @@ msgstr ""
1073
 
1074
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1075
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1076
- #: classes/gateways/class.pmprogateway_stripe.php:671
1077
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1078
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1079
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1106,7 +1107,7 @@ msgstr ""
1106
 
1107
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1108
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1109
- #: classes/gateways/class.pmprogateway_stripe.php:671
1110
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1111
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1112
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
@@ -1328,7 +1329,7 @@ msgstr ""
1328
  msgid "Starts"
1329
  msgstr ""
1330
 
1331
- #: adminpages/discountcodes.php:722 adminpages/memberslist.php:179
1332
  #: adminpages/reports/login.php:167 includes/profile.php:122
1333
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
1334
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
@@ -1653,7 +1654,7 @@ msgid "Billing Details"
1653
  msgstr ""
1654
 
1655
  #: adminpages/membershiplevels.php:406
1656
- #: classes/gateways/class.pmprogateway_stripe.php:769
1657
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1658
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1659
  #: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
@@ -1722,6 +1723,7 @@ msgstr ""
1722
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1723
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1724
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
 
1725
  msgid "Note"
1726
  msgstr ""
1727
 
@@ -1840,11 +1842,11 @@ msgstr ""
1840
  #: adminpages/orders.php:807 pages/account.php:44 pages/billing.php:295
1841
  #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1842
  #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1843
- #: pages/billing.php:364 pages/billing.php:371 pages/billing.php:392
1844
- #: pages/billing.php:397 pages/billing.php:401 pages/billing.php:406
1845
- #: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
1846
- #: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
1847
- #: shortcodes/pmpro_account.php:73
1848
  msgid "Cancel"
1849
  msgstr ""
1850
 
@@ -1882,7 +1884,7 @@ msgid "Drag and drop membership levels to reorder them on the Levels page."
1882
  msgstr ""
1883
 
1884
  #: adminpages/membershiplevels.php:666 pages/cancel.php:62
1885
- #: pages/confirmation.php:84 pages/invoice.php:63
1886
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1887
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1888
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
@@ -2064,17 +2066,17 @@ msgid "Last&nbsp;Name"
2064
  msgstr ""
2065
 
2066
  #: adminpages/memberslist.php:170 pages/billing.php:104 pages/checkout.php:275
2067
- #: pages/confirmation.php:69 pages/invoice.php:48
2068
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
2069
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2070
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
2071
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
2072
  #: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
2073
- #: pages/billing.php:103 pages/checkout.php:275 pages/checkout.php:298
2074
- #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
2075
- #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
2076
- #: pages/checkout.php:321 pages/checkout.php:326 pages/checkout.php:329
2077
- #: pages/confirmation.php:59 pages/confirmation.php:61
2078
  #: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
2079
  #: pages/invoice.php:48
2080
  msgid "Billing Address"
@@ -2111,7 +2113,15 @@ msgstr ""
2111
  msgid "Ended"
2112
  msgstr ""
2113
 
2114
- #: adminpages/memberslist.php:262 adminpages/reports/login.php:232
 
 
 
 
 
 
 
 
2115
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2116
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2117
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
@@ -2120,7 +2130,7 @@ msgstr ""
2120
  msgid "No members found."
2121
  msgstr ""
2122
 
2123
- #: adminpages/memberslist.php:262 adminpages/reports/login.php:232
2124
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2125
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2126
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
@@ -2174,7 +2184,7 @@ msgstr ""
2174
  #: adminpages/orders.php:195 adminpages/orders.php:245
2175
  #: adminpages/orders.php:317 adminpages/orders.php:321
2176
  #: adminpages/orders.php:346 adminpages/orders.php:352
2177
- #: adminpages/orders.php:362
2178
  msgid "Order"
2179
  msgstr ""
2180
 
@@ -2263,11 +2273,11 @@ msgid "Sub Total"
2263
  msgstr ""
2264
 
2265
  #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2266
- #: adminpages/templates/orders-print.php:89 adminpages/orders.php:304
2267
- #: adminpages/orders.php:354 adminpages/orders.php:426
2268
- #: adminpages/orders.php:455 adminpages/orders.php:481
2269
- #: adminpages/orders.php:512 adminpages/orders.php:523
2270
- #: adminpages/templates/orders-email.php:60
2271
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
2272
  #: pages/invoice.php:80
2273
  msgid "Tax"
@@ -2282,15 +2292,15 @@ msgstr ""
2282
 
2283
  #: adminpages/orders.php:546 adminpages/orders.php:1145
2284
  #: adminpages/templates/orders-email.php:64
2285
- #: adminpages/templates/orders-print.php:93 adminpages/orders.php:320
2286
- #: adminpages/orders.php:370 adminpages/orders.php:442
2287
- #: adminpages/orders.php:471 adminpages/orders.php:504
2288
- #: adminpages/orders.php:535 adminpages/orders.php:546
2289
- #: adminpages/orders.php:602 adminpages/orders.php:905
2290
- #: adminpages/orders.php:915 adminpages/orders.php:942
2291
- #: adminpages/orders.php:971 adminpages/orders.php:1108
2292
- #: adminpages/orders.php:1139 adminpages/orders.php:1145
2293
- #: adminpages/templates/orders-email.php:64
2294
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
2295
  #: pages/invoice.php:84
2296
  msgid "Total"
@@ -2319,7 +2329,7 @@ msgstr ""
2319
 
2320
  #: adminpages/orders.php:574
2321
  #: classes/gateways/class.pmprogateway_braintree.php:446
2322
- #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:275
2323
  #: pages/checkout.php:423 adminpages/orders.php:339 adminpages/orders.php:389
2324
  #: adminpages/orders.php:461 adminpages/orders.php:490
2325
  #: adminpages/orders.php:532 adminpages/orders.php:563
@@ -2333,6 +2343,7 @@ msgstr ""
2333
  #: classes/gateways/class.pmprogateway_braintree.php:344
2334
  #: classes/gateways/class.pmprogateway_braintree.php:406
2335
  #: classes/gateways/class.pmprogateway_braintree.php:441
 
2336
  #: classes/gateways/class.pmprogateway_stripe.php:408
2337
  #: classes/gateways/class.pmprogateway_stripe.php:409
2338
  #: classes/gateways/class.pmprogateway_stripe.php:419
@@ -2348,11 +2359,11 @@ msgstr ""
2348
  #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:234
2349
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
2350
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
2351
- #: pages/billing.php:271 pages/billing.php:274 pages/billing.php:294
2352
- #: pages/checkout.php:423 pages/checkout.php:493 pages/checkout.php:507
2353
- #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
2354
- #: pages/checkout.php:525 pages/checkout.php:527 pages/checkout.php:534
2355
- #: pages/checkout.php:537
2356
  msgid "Card Type"
2357
  msgstr ""
2358
 
@@ -2418,6 +2429,7 @@ msgstr ""
2418
  #: adminpages/orders.php:917 adminpages/orders.php:944
2419
  #: adminpages/orders.php:973 adminpages/orders.php:1110
2420
  #: adminpages/orders.php:1141 adminpages/orders.php:1147
 
2421
  msgid "Gateway"
2422
  msgstr ""
2423
 
@@ -2475,6 +2487,7 @@ msgstr ""
2475
  #: adminpages/orders.php:483 adminpages/orders.php:555
2476
  #: adminpages/orders.php:584 adminpages/orders.php:664
2477
  #: adminpages/orders.php:695 adminpages/orders.php:706
 
2478
  msgid "Subscription Transaction ID"
2479
  msgstr ""
2480
 
@@ -2486,7 +2499,7 @@ msgstr ""
2486
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2487
  msgstr ""
2488
 
2489
- #: adminpages/orders.php:721 adminpages/orders.php:1150 pages/invoice.php:87
2490
  #: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
2491
  #: adminpages/orders.php:492 adminpages/orders.php:493
2492
  #: adminpages/orders.php:565 adminpages/orders.php:594
@@ -2658,9 +2671,8 @@ msgid "User"
2658
  msgstr ""
2659
 
2660
  #: adminpages/orders.php:1144 includes/init.php:244 includes/profile.php:36
2661
- #: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:91
2662
- #: pages/confirmation.php:113 pages/invoice.php:28 pages/invoice.php:70
2663
- #: adminpages/orders.php:601 adminpages/orders.php:904
2664
  #: adminpages/orders.php:914 adminpages/orders.php:941
2665
  #: adminpages/orders.php:970 adminpages/orders.php:1107
2666
  #: adminpages/orders.php:1138 adminpages/orders.php:1144 includes/init.php:214
@@ -3064,7 +3076,8 @@ msgstr ""
3064
  #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
3065
  #: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
3066
  #: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
3067
- #: pages/billing.php:100 pages/billing.php:120 pages/billing.php:123
 
3068
  msgid "optional"
3069
  msgstr ""
3070
 
@@ -3471,8 +3484,8 @@ msgid "Price"
3471
  msgstr ""
3472
 
3473
  #: adminpages/templates/orders-email.php:56
3474
- #: adminpages/templates/orders-print.php:85
3475
- #: adminpages/templates/orders-email.php:56
3476
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
3477
  #: pages/invoice.php:79
3478
  msgid "Subtotal"
@@ -3509,7 +3522,7 @@ msgstr ""
3509
  #: classes/class.memberorder.php:706 classes/class.memberorder.php:716
3510
  #: classes/class.memberorder.php:719 classes/class.memberorder.php:720
3511
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:740
3512
- #: includes/cleanup.php:24
3513
  #, php-format
3514
  msgid ""
3515
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -3517,11 +3530,11 @@ msgid ""
3517
  "active."
3518
  msgstr ""
3519
 
3520
- #: classes/class.memberorder.php:744
3521
  msgid "User Email"
3522
  msgstr ""
3523
 
3524
- #: classes/class.memberorder.php:745
3525
  msgid "User Display Name"
3526
  msgstr ""
3527
 
@@ -3558,7 +3571,7 @@ msgstr ""
3558
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3559
  #: classes/class.pmproemail.php:698
3560
  #: classes/gateways/class.pmprogateway_braintree.php:489
3561
- #: classes/gateways/class.pmprogateway_stripe.php:644 pages/checkout.php:70
3562
  #: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
3563
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3564
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
@@ -3589,6 +3602,7 @@ msgstr ""
3589
  #: classes/gateways/class.pmprogateway_braintree.php:402
3590
  #: classes/gateways/class.pmprogateway_braintree.php:448
3591
  #: classes/gateways/class.pmprogateway_braintree.php:464
 
3592
  #: classes/gateways/class.pmprogateway_stripe.php:495
3593
  #: classes/gateways/class.pmprogateway_stripe.php:496
3594
  #: classes/gateways/class.pmprogateway_stripe.php:506
@@ -4068,7 +4082,7 @@ msgid "Client-Side Encryption Key"
4068
  msgstr ""
4069
 
4070
  #: classes/gateways/class.pmprogateway_braintree.php:313
4071
- #: classes/gateways/class.pmprogateway_stripe.php:289
4072
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
4073
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
4074
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -4107,7 +4121,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
4107
  msgstr ""
4108
 
4109
  #: classes/gateways/class.pmprogateway_braintree.php:434
4110
- #: classes/gateways/class.pmprogateway_stripe.php:561 pages/checkout.php:411
4111
  #: classes/gateways/class.pmprogateway_braintree.php:270
4112
  #: classes/gateways/class.pmprogateway_braintree.php:283
4113
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -4117,6 +4131,7 @@ msgstr ""
4117
  #: classes/gateways/class.pmprogateway_braintree.php:321
4118
  #: classes/gateways/class.pmprogateway_braintree.php:383
4119
  #: classes/gateways/class.pmprogateway_braintree.php:429
 
4120
  #: classes/gateways/class.pmprogateway_stripe.php:387
4121
  #: classes/gateways/class.pmprogateway_stripe.php:388
4122
  #: classes/gateways/class.pmprogateway_stripe.php:398
@@ -4138,7 +4153,7 @@ msgid "Payment Information"
4138
  msgstr ""
4139
 
4140
  #: classes/gateways/class.pmprogateway_braintree.php:435
4141
- #: classes/gateways/class.pmprogateway_stripe.php:562 pages/checkout.php:412
4142
  #: classes/gateways/class.pmprogateway_braintree.php:270
4143
  #: classes/gateways/class.pmprogateway_braintree.php:283
4144
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -4148,6 +4163,7 @@ msgstr ""
4148
  #: classes/gateways/class.pmprogateway_braintree.php:322
4149
  #: classes/gateways/class.pmprogateway_braintree.php:384
4150
  #: classes/gateways/class.pmprogateway_braintree.php:430
 
4151
  #: classes/gateways/class.pmprogateway_stripe.php:387
4152
  #: classes/gateways/class.pmprogateway_stripe.php:388
4153
  #: classes/gateways/class.pmprogateway_stripe.php:398
@@ -4170,7 +4186,7 @@ msgid "We Accept %s"
4170
  msgstr ""
4171
 
4172
  #: classes/gateways/class.pmprogateway_braintree.php:455
4173
- #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:313
4174
  #: pages/checkout.php:459
4175
  #: classes/gateways/class.pmprogateway_braintree.php:303
4176
  #: classes/gateways/class.pmprogateway_braintree.php:316
@@ -4180,6 +4196,7 @@ msgstr ""
4180
  #: classes/gateways/class.pmprogateway_braintree.php:354
4181
  #: classes/gateways/class.pmprogateway_braintree.php:356
4182
  #: classes/gateways/class.pmprogateway_braintree.php:418
 
4183
  #: classes/gateways/class.pmprogateway_stripe.php:449
4184
  #: classes/gateways/class.pmprogateway_stripe.php:450
4185
  #: classes/gateways/class.pmprogateway_stripe.php:460
@@ -4195,11 +4212,11 @@ msgstr ""
4195
  #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:244
4196
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
4197
  #: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
4198
- #: pages/billing.php:312 pages/billing.php:314 pages/billing.php:337
4199
- #: pages/checkout.php:459 pages/checkout.php:503 pages/checkout.php:519
4200
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
4201
- #: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
4202
- #: pages/checkout.php:577 pages/checkout.php:580
4203
  msgid "Card Number"
4204
  msgstr ""
4205
 
@@ -4212,6 +4229,7 @@ msgstr ""
4212
  #: classes/gateways/class.pmprogateway_braintree.php:391
4213
  #: classes/gateways/class.pmprogateway_braintree.php:393
4214
  #: classes/gateways/class.pmprogateway_braintree.php:455
 
4215
  #: classes/gateways/class.pmprogateway_stripe.php:486
4216
  #: classes/gateways/class.pmprogateway_stripe.php:487
4217
  #: classes/gateways/class.pmprogateway_stripe.php:497
@@ -4236,7 +4254,7 @@ msgid "CVV"
4236
  msgstr ""
4237
 
4238
  #: classes/gateways/class.pmprogateway_braintree.php:484
4239
- #: classes/gateways/class.pmprogateway_stripe.php:639 pages/billing.php:353
4240
  #: pages/checkout.php:493
4241
  #: classes/gateways/class.pmprogateway_braintree.php:341
4242
  #: classes/gateways/class.pmprogateway_braintree.php:354
@@ -4246,6 +4264,7 @@ msgstr ""
4246
  #: classes/gateways/class.pmprogateway_braintree.php:392
4247
  #: classes/gateways/class.pmprogateway_braintree.php:394
4248
  #: classes/gateways/class.pmprogateway_braintree.php:456
 
4249
  #: classes/gateways/class.pmprogateway_stripe.php:487
4250
  #: classes/gateways/class.pmprogateway_stripe.php:488
4251
  #: classes/gateways/class.pmprogateway_stripe.php:498
@@ -4271,7 +4290,7 @@ msgid "what's this?"
4271
  msgstr ""
4272
 
4273
  #: classes/gateways/class.pmprogateway_braintree.php:491
4274
- #: classes/gateways/class.pmprogateway_stripe.php:646 pages/checkout.php:78
4275
  #: pages/checkout.php:500
4276
  #: classes/gateways/class.pmprogateway_braintree.php:351
4277
  #: classes/gateways/class.pmprogateway_braintree.php:364
@@ -4282,6 +4301,7 @@ msgstr ""
4282
  #: classes/gateways/class.pmprogateway_braintree.php:404
4283
  #: classes/gateways/class.pmprogateway_braintree.php:450
4284
  #: classes/gateways/class.pmprogateway_braintree.php:466
 
4285
  #: classes/gateways/class.pmprogateway_stripe.php:497
4286
  #: classes/gateways/class.pmprogateway_stripe.php:498
4287
  #: classes/gateways/class.pmprogateway_stripe.php:508
@@ -4314,19 +4334,25 @@ msgstr ""
4314
  #: classes/gateways/class.pmprogateway_braintree.php:524
4315
  #: classes/gateways/class.pmprogateway_braintree.php:526
4316
  #: classes/gateways/class.pmprogateway_braintree.php:541
 
 
4317
  #: classes/gateways/class.pmprogateway_braintree.php:616
4318
  #: classes/gateways/class.pmprogateway_braintree.php:623
 
4319
  #: classes/gateways/class.pmprogateway_braintree.php:781
4320
  #: classes/gateways/class.pmprogateway_braintree.php:782
 
4321
  #: classes/gateways/class.pmprogateway_braintree.php:886
4322
  #: classes/gateways/class.pmprogateway_braintree.php:887
4323
  #: classes/gateways/class.pmprogateway_braintree.php:906
4324
  #: classes/gateways/class.pmprogateway_braintree.php:907
 
 
4325
  msgid "Payment error: Please contact the webmaster (braintree-load-error)"
4326
  msgstr ""
4327
 
4328
  #: classes/gateways/class.pmprogateway_braintree.php:554
4329
- #: classes/gateways/class.pmprogateway_stripe.php:1123
4330
  #: classes/gateways/class.pmprogateway_braintree.php:61
4331
  #: classes/gateways/class.pmprogateway_braintree.php:406
4332
  #: classes/gateways/class.pmprogateway_braintree.php:419
@@ -4337,6 +4363,7 @@ msgstr ""
4337
  #: classes/gateways/class.pmprogateway_braintree.php:459
4338
  #: classes/gateways/class.pmprogateway_braintree.php:513
4339
  #: classes/gateways/class.pmprogateway_braintree.php:528
 
4340
  #: classes/gateways/class.pmprogateway_stripe.php:53
4341
  #: classes/gateways/class.pmprogateway_stripe.php:1011
4342
  #: classes/gateways/class.pmprogateway_stripe.php:1025
@@ -4366,6 +4393,7 @@ msgstr ""
4366
  #: classes/gateways/class.pmprogateway_braintree.php:518
4367
  #: classes/gateways/class.pmprogateway_braintree.php:589
4368
  #: classes/gateways/class.pmprogateway_braintree.php:596
 
4369
  msgid "Error during settlement:"
4370
  msgstr ""
4371
 
@@ -4380,11 +4408,13 @@ msgstr ""
4380
  #: classes/gateways/class.pmprogateway_braintree.php:527
4381
  #: classes/gateways/class.pmprogateway_braintree.php:598
4382
  #: classes/gateways/class.pmprogateway_braintree.php:605
 
4383
  msgid "Error during charge:"
4384
  msgstr ""
4385
 
4386
  #: classes/gateways/class.pmprogateway_braintree.php:731
4387
  #: classes/gateways/class.pmprogateway_braintree.php:690
 
4388
  #, php-format
4389
  msgid "Failed to update customer: %s"
4390
  msgstr ""
@@ -4401,6 +4431,7 @@ msgstr ""
4401
  #: classes/gateways/class.pmprogateway_braintree.php:619
4402
  #: classes/gateways/class.pmprogateway_braintree.php:702
4403
  #: classes/gateways/class.pmprogateway_braintree.php:703
 
4404
  msgid "Failed to update customer."
4405
  msgstr ""
4406
 
@@ -4416,6 +4447,7 @@ msgstr ""
4416
  #: classes/gateways/class.pmprogateway_braintree.php:667
4417
  #: classes/gateways/class.pmprogateway_braintree.php:750
4418
  #: classes/gateways/class.pmprogateway_braintree.php:751
 
4419
  msgid "Failed to create customer."
4420
  msgstr ""
4421
 
@@ -4431,6 +4463,7 @@ msgstr ""
4431
  #: classes/gateways/class.pmprogateway_braintree.php:674
4432
  #: classes/gateways/class.pmprogateway_braintree.php:757
4433
  #: classes/gateways/class.pmprogateway_braintree.php:758
 
4434
  msgid "Error creating customer record with Braintree:"
4435
  msgstr ""
4436
 
@@ -4447,6 +4480,7 @@ msgstr ""
4447
  #: classes/gateways/class.pmprogateway_braintree.php:774
4448
  #: classes/gateways/class.pmprogateway_braintree.php:862
4449
  #: classes/gateways/class.pmprogateway_braintree.php:863
 
4450
  msgid "Error subscribing customer to plan with Braintree:"
4451
  msgstr ""
4452
 
@@ -4463,6 +4497,7 @@ msgstr ""
4463
  #: classes/gateways/class.pmprogateway_braintree.php:789
4464
  #: classes/gateways/class.pmprogateway_braintree.php:877
4465
  #: classes/gateways/class.pmprogateway_braintree.php:878
 
4466
  msgid "Failed to subscribe with Braintree:"
4467
  msgstr ""
4468
 
@@ -4504,6 +4539,9 @@ msgstr ""
4504
  #: classes/gateways/class.pmprogateway_braintree.php:939
4505
  #: classes/gateways/class.pmprogateway_braintree.php:945
4506
  #: classes/gateways/class.pmprogateway_braintree.php:946
 
 
 
4507
  #: classes/gateways/class.pmprogateway_stripe.php:343
4508
  #: classes/gateways/class.pmprogateway_stripe.php:344
4509
  #: classes/gateways/class.pmprogateway_stripe.php:351
@@ -4661,6 +4699,7 @@ msgstr ""
4661
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
4662
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
4663
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
 
4664
  msgid "PayPal Settings"
4665
  msgstr ""
4666
 
@@ -4674,6 +4713,7 @@ msgstr ""
4674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
4675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
4676
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
 
4677
  msgid ""
4678
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
4679
  "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
@@ -4693,6 +4733,7 @@ msgstr ""
4693
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
4694
  #: classes/gateways/class.pmprogateway_paypalexpress.php:150
4695
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
 
4696
  msgid "Gateway Account Email"
4697
  msgstr ""
4698
 
@@ -4709,6 +4750,7 @@ msgstr ""
4709
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
4710
  #: classes/gateways/class.pmprogateway_paypalexpress.php:158
4711
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
 
4712
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
4713
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
4714
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
@@ -4728,6 +4770,7 @@ msgstr ""
4728
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
4729
  #: classes/gateways/class.pmprogateway_paypalexpress.php:166
4730
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
 
4731
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4732
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
4733
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
@@ -4745,6 +4788,7 @@ msgstr ""
4745
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4746
  #: classes/gateways/class.pmprogateway_paypalexpress.php:174
4747
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
 
4748
  msgid "API Signature"
4749
  msgstr ""
4750
 
@@ -4766,6 +4810,7 @@ msgstr ""
4766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4767
  #: classes/gateways/class.pmprogateway_paypalexpress.php:193
4768
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
4769
  msgid "IPN Handler URL"
4770
  msgstr ""
4771
 
@@ -4787,6 +4832,7 @@ msgstr ""
4787
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4788
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4789
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
 
4790
  #: pages/checkout.php:263 pages/checkout.php:286 pages/checkout.php:288
4791
  #: pages/checkout.php:295 pages/checkout.php:300 pages/checkout.php:302
4792
  #: pages/checkout.php:309 pages/checkout.php:312 pages/checkout.php:675
@@ -4804,6 +4850,7 @@ msgstr ""
4804
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4805
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4806
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
 
4807
  #: pages/checkout.php:598 pages/checkout.php:681 pages/checkout.php:688
4808
  #: pages/checkout.php:691 pages/checkout.php:704 pages/checkout.php:707
4809
  #: pages/checkout.php:713 pages/checkout.php:718 pages/checkout.php:722
@@ -4823,6 +4870,7 @@ msgstr ""
4823
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4824
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4825
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
 
4826
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4827
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4828
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
@@ -4856,6 +4904,7 @@ msgstr ""
4856
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4857
  #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4858
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
 
4859
  msgid ""
4860
  "Please contact the site owner or cancel your subscription from within PayPal "
4861
  "to make sure you are not charged going forward."
@@ -4903,6 +4952,7 @@ msgstr ""
4903
  #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4904
  #: paid-memberships-pro.php:134
4905
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
 
4906
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4907
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4908
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
@@ -4913,11 +4963,13 @@ msgstr ""
4913
 
4914
  #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4915
  #: classes/gateways/class.pmprogateway_paypalstandard.php:157
 
4916
  msgid ""
4917
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
4918
  "settings."
4919
  msgstr ""
4920
 
 
4921
  #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4922
  msgid "User requested cancellation"
4923
  msgstr ""
@@ -4957,6 +5009,26 @@ msgid "Stripe Settings"
4957
  msgstr ""
4958
 
4959
  #: classes/gateways/class.pmprogateway_stripe.php:261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4960
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
4961
  #: adminpages/paymentsettings.php:286
4962
  #: classes/gateways/class.pmprogateway_stripe.php:153
@@ -4972,23 +5044,11 @@ msgstr ""
4972
  msgid "Secret Key"
4973
  msgstr ""
4974
 
4975
- #: classes/gateways/class.pmprogateway_stripe.php:269
4976
- #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
4977
- #: adminpages/paymentsettings.php:294
4978
- #: classes/gateways/class.pmprogateway_stripe.php:161
4979
- #: classes/gateways/class.pmprogateway_stripe.php:162
4980
- #: classes/gateways/class.pmprogateway_stripe.php:172
4981
- #: classes/gateways/class.pmprogateway_stripe.php:194
4982
- #: classes/gateways/class.pmprogateway_stripe.php:196
4983
- #: classes/gateways/class.pmprogateway_stripe.php:197
4984
- #: classes/gateways/class.pmprogateway_stripe.php:208
4985
- #: classes/gateways/class.pmprogateway_stripe.php:210
4986
- #: classes/gateways/class.pmprogateway_stripe.php:237
4987
- #: classes/gateways/class.pmprogateway_stripe.php:269
4988
- msgid "Publishable Key"
4989
  msgstr ""
4990
 
4991
- #: classes/gateways/class.pmprogateway_stripe.php:277
4992
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
4993
  #: adminpages/paymentsettings.php:432
4994
  #: classes/gateways/class.pmprogateway_stripe.php:169
@@ -5004,7 +5064,7 @@ msgstr ""
5004
  msgid "Show Billing Address Fields"
5005
  msgstr ""
5006
 
5007
- #: classes/gateways/class.pmprogateway_stripe.php:284
5008
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
5009
  #: classes/gateways/class.pmprogateway_stripe.php:176
5010
  #: classes/gateways/class.pmprogateway_stripe.php:177
@@ -5022,7 +5082,7 @@ msgid ""
5022
  "verification in the Stripe dashboard settings.</strong>"
5023
  msgstr ""
5024
 
5025
- #: classes/gateways/class.pmprogateway_stripe.php:292
5026
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
5027
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
5028
  #: classes/gateways/class.pmprogateway_stripe.php:184
@@ -5038,12 +5098,12 @@ msgstr ""
5038
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
5039
  msgstr ""
5040
 
5041
- #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5042
  #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5043
  msgid "Security Code (CVC)"
5044
  msgstr ""
5045
 
5046
- #: classes/gateways/class.pmprogateway_stripe.php:710
5047
  #: classes/gateways/class.pmprogateway_stripe.php:703
5048
  #: classes/gateways/class.pmprogateway_stripe.php:710
5049
  #, php-format
@@ -5052,7 +5112,7 @@ msgid ""
5052
  "have been deleted."
5053
  msgstr ""
5054
 
5055
- #: classes/gateways/class.pmprogateway_stripe.php:717
5056
  #: classes/gateways/class.pmprogateway_stripe.php:567
5057
  #: classes/gateways/class.pmprogateway_stripe.php:568
5058
  #: classes/gateways/class.pmprogateway_stripe.php:578
@@ -5069,7 +5129,7 @@ msgstr ""
5069
  msgid "Subscription Updates"
5070
  msgstr ""
5071
 
5072
- #: classes/gateways/class.pmprogateway_stripe.php:721
5073
  #: classes/gateways/class.pmprogateway_stripe.php:571
5074
  #: classes/gateways/class.pmprogateway_stripe.php:572
5075
  #: classes/gateways/class.pmprogateway_stripe.php:582
@@ -5088,7 +5148,7 @@ msgid ""
5088
  "at predefined times. Be sure to click Update Profile after making changes."
5089
  msgstr ""
5090
 
5091
- #: classes/gateways/class.pmprogateway_stripe.php:723
5092
  #: classes/gateways/class.pmprogateway_stripe.php:573
5093
  #: classes/gateways/class.pmprogateway_stripe.php:574
5094
  #: classes/gateways/class.pmprogateway_stripe.php:584
@@ -5107,7 +5167,7 @@ msgid ""
5107
  "at predefined times. Be sure to click Update User after making changes."
5108
  msgstr ""
5109
 
5110
- #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:364
5111
  #: classes/gateways/class.pmprogateway_stripe.php:578
5112
  #: classes/gateways/class.pmprogateway_stripe.php:579
5113
  #: classes/gateways/class.pmprogateway_stripe.php:589
@@ -5123,18 +5183,19 @@ msgstr ""
5123
  #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:294
5124
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
5125
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
5126
- #: pages/billing.php:363 pages/billing.php:370 pages/billing.php:391
5127
- #: pages/billing.php:396 pages/billing.php:400 pages/billing.php:405
 
5128
  msgid "Update"
5129
  msgstr ""
5130
 
5131
- #: classes/gateways/class.pmprogateway_stripe.php:1119
5132
  #: classes/gateways/class.pmprogateway_stripe.php:1119
5133
  #: classes/gateways/class.pmprogateway_stripe.php:1172
5134
  msgid "Payment error: Please contact the webmaster (stripe-load-error)"
5135
  msgstr ""
5136
 
5137
- #: classes/gateways/class.pmprogateway_stripe.php:1357
5138
  #: classes/gateways/class.pmprogateway_stripe.php:190
5139
  #: classes/gateways/class.pmprogateway_stripe.php:192
5140
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -5160,7 +5221,7 @@ msgstr ""
5160
  msgid "Error creating customer record with Stripe:"
5161
  msgstr ""
5162
 
5163
- #: classes/gateways/class.pmprogateway_stripe.php:1416
5164
  #: classes/gateways/class.pmprogateway_stripe.php:1275
5165
  #: classes/gateways/class.pmprogateway_stripe.php:1303
5166
  #: classes/gateways/class.pmprogateway_stripe.php:1313
@@ -5176,7 +5237,7 @@ msgstr ""
5176
  msgid "Error getting subscription with Stripe:"
5177
  msgstr ""
5178
 
5179
- #: classes/gateways/class.pmprogateway_stripe.php:1572
5180
  #: classes/gateways/class.pmprogateway_stripe.php:278
5181
  #: classes/gateways/class.pmprogateway_stripe.php:279
5182
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -5210,7 +5271,7 @@ msgstr ""
5210
  msgid "Error creating plan with Stripe:"
5211
  msgstr ""
5212
 
5213
- #: classes/gateways/class.pmprogateway_stripe.php:1603
5214
  #: classes/gateways/class.pmprogateway_stripe.php:294
5215
  #: classes/gateways/class.pmprogateway_stripe.php:295
5216
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -5239,7 +5300,7 @@ msgstr ""
5239
  msgid "Error subscribing customer to plan with Stripe:"
5240
  msgstr ""
5241
 
5242
- #: classes/gateways/class.pmprogateway_stripe.php:1698
5243
  #: classes/gateways/class.pmprogateway_stripe.php:769
5244
  #: classes/gateways/class.pmprogateway_stripe.php:770
5245
  #: classes/gateways/class.pmprogateway_stripe.php:780
@@ -5256,7 +5317,7 @@ msgstr ""
5256
  msgid "Could not cancel the old subscription. Updates have not been processed."
5257
  msgstr ""
5258
 
5259
- #: classes/gateways/class.pmprogateway_stripe.php:1801
5260
  #: classes/gateways/class.pmprogateway_stripe.php:383
5261
  #: classes/gateways/class.pmprogateway_stripe.php:389
5262
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -5282,7 +5343,7 @@ msgstr ""
5282
  msgid "Could not cancel old subscription."
5283
  msgstr ""
5284
 
5285
- #: classes/gateways/class.pmprogateway_stripe.php:1818
5286
  #: classes/gateways/class.pmprogateway_stripe.php:1533
5287
  #: classes/gateways/class.pmprogateway_stripe.php:1534
5288
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -5305,7 +5366,7 @@ msgstr ""
5305
  msgid "Could not find the customer."
5306
  msgstr ""
5307
 
5308
- #: classes/gateways/class.pmprogateway_stripe.php:1978
5309
  #: classes/gateways/class.pmprogateway_stripe.php:1836
5310
  #: classes/gateways/class.pmprogateway_stripe.php:1837
5311
  #: classes/gateways/class.pmprogateway_stripe.php:1847
@@ -5315,7 +5376,7 @@ msgstr ""
5315
  msgid "Error: "
5316
  msgstr ""
5317
 
5318
- #: classes/gateways/class.pmprogateway_stripe.php:1991
5319
  #: classes/gateways/class.pmprogateway_stripe.php:1849
5320
  #: classes/gateways/class.pmprogateway_stripe.php:1850
5321
  #: classes/gateways/class.pmprogateway_stripe.php:1860
@@ -7223,7 +7284,7 @@ msgstr ""
7223
  msgid "and"
7224
  msgstr ""
7225
 
7226
- #: includes/functions.php:2034 includes/functions.php:1319
7227
  #: includes/functions.php:1341 includes/functions.php:1361
7228
  #: includes/functions.php:1372 includes/functions.php:1375
7229
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -7240,7 +7301,7 @@ msgstr ""
7240
  msgid "Sign Up for !!name!! Now"
7241
  msgstr ""
7242
 
7243
- #: includes/functions.php:2040 includes/functions.php:1325
7244
  #: includes/functions.php:1347 includes/functions.php:1367
7245
  #: includes/functions.php:1378 includes/functions.php:1381
7246
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -7257,7 +7318,7 @@ msgstr ""
7257
  msgid "Please specify a level id."
7258
  msgstr ""
7259
 
7260
- #: includes/functions.php:2047 includes/functions.php:2047
7261
  #, php-format
7262
  msgid "Level #%s not found."
7263
  msgstr ""
@@ -7334,6 +7395,7 @@ msgstr ""
7334
  #: includes/license.php:302 includes/updates/upgrade_1_9_4.php:27
7335
  #: includes/license.php:274 includes/license.php:279 includes/license.php:289
7336
  #: includes/license.php:292 includes/license.php:302
 
7337
  msgid "Dismiss"
7338
  msgstr ""
7339
 
@@ -7476,14 +7538,14 @@ msgid ""
7476
  "register to read."
7477
  msgstr ""
7478
 
7479
- #: includes/updates/upgrade_1_9_4.php:26
7480
  msgid ""
7481
  "We have detected that you are using a custom checkout page template for Paid "
7482
  "Memberships Pro. This was recently changed and may need to be updated in "
7483
  "order to display correctly."
7484
  msgstr ""
7485
 
7486
- #: includes/updates/upgrade_1_9_4.php:27
7487
  msgid ""
7488
  "If you notice UI issues after upgrading, <a href=\"https://www."
7489
  "paidmembershipspro.com/add-ons/table-layout-plugin-pages/\">see this free "
@@ -7492,46 +7554,50 @@ msgid ""
7492
  msgstr ""
7493
 
7494
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7495
- #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
 
7496
  #, php-format
7497
  msgid "Logged in as <strong>%s</strong>."
7498
  msgstr ""
7499
 
7500
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7501
- #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
 
7502
  msgid "logout"
7503
  msgstr ""
7504
 
7505
- #: pages/billing.php:45 pages/cancel.php:61 pages/invoice.php:89
7506
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7507
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7508
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7509
  #: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
7510
- #: pages/billing.php:44 pages/cancel.php:52 pages/cancel.php:60
7511
- #: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:109
7512
- #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:43
7513
- #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
7514
- #: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
7515
- #: shortcodes/pmpro_account.php:128
7516
  msgid "Level"
7517
  msgstr ""
7518
 
7519
  #: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
7520
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7521
- #: pages/billing.php:32 pages/billing.php:46
7522
  msgid "Membership Fee"
7523
  msgstr ""
7524
 
7525
  #: pages/billing.php:51 pages/account.php:18 pages/billing.php:22
7526
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7527
- #: pages/billing.php:36 pages/billing.php:50 pages/levels.php:70
 
7528
  #, php-format
7529
  msgid "%s every %d %s."
7530
  msgstr ""
7531
 
7532
  #: pages/billing.php:53 pages/account.php:20 pages/billing.php:24
7533
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7534
- #: pages/billing.php:38 pages/billing.php:52 pages/levels.php:66
 
7535
  #, php-format
7536
  msgid "%s per %s."
7537
  msgstr ""
@@ -7539,13 +7605,13 @@ msgstr ""
7539
  #: pages/billing.php:63 pages/account.php:25 pages/account.php:29
7540
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7541
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7542
- #: pages/billing.php:62
7543
  msgid "Duration"
7544
  msgstr ""
7545
 
7546
  #: pages/billing.php:81 pages/billing.php:39 pages/billing.php:43
7547
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7548
- #: pages/billing.php:57 pages/billing.php:80
7549
  msgid ""
7550
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
7551
  "paypal.com\">login to PayPal here</a> to update your billing information."
@@ -7554,149 +7620,149 @@ msgstr ""
7554
  #: pages/billing.php:108 pages/checkout.php:279 pages/billing.php:65
7555
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7556
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7557
- #: pages/billing.php:107 pages/billing.php:110 pages/checkout.php:279
7558
- #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
7559
- #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
7560
- #: pages/checkout.php:326 pages/checkout.php:328 pages/checkout.php:333
7561
- #: pages/checkout.php:336
7562
  msgid "First Name"
7563
  msgstr ""
7564
 
7565
  #: pages/billing.php:112 pages/checkout.php:283 pages/billing.php:69
7566
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7567
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7568
- #: pages/billing.php:111 pages/billing.php:114 pages/checkout.php:283
7569
- #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
7570
- #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
7571
- #: pages/checkout.php:330 pages/checkout.php:332 pages/checkout.php:337
7572
- #: pages/checkout.php:340
7573
  msgid "Last Name"
7574
  msgstr ""
7575
 
7576
  #: pages/billing.php:116 pages/checkout.php:287 pages/billing.php:73
7577
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7578
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7579
- #: pages/billing.php:115 pages/billing.php:118 pages/checkout.php:287
7580
- #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
7581
- #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
7582
- #: pages/checkout.php:334 pages/checkout.php:336 pages/checkout.php:341
7583
- #: pages/checkout.php:344
7584
  msgid "Address 1"
7585
  msgstr ""
7586
 
7587
  #: pages/billing.php:120 pages/checkout.php:291 pages/billing.php:77
7588
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7589
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7590
- #: pages/billing.php:119 pages/billing.php:122 pages/checkout.php:291
7591
- #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
7592
- #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
7593
- #: pages/checkout.php:338 pages/checkout.php:340 pages/checkout.php:345
7594
- #: pages/checkout.php:348
7595
  msgid "Address 2"
7596
  msgstr ""
7597
 
7598
  #: pages/billing.php:130 pages/checkout.php:298 pages/billing.php:87
7599
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7600
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7601
- #: pages/billing.php:129 pages/billing.php:132 pages/checkout.php:298
7602
- #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
7603
- #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
7604
- #: pages/checkout.php:348 pages/checkout.php:350 pages/checkout.php:355
7605
- #: pages/checkout.php:358
7606
  msgid "City"
7607
  msgstr ""
7608
 
7609
  #: pages/billing.php:134 pages/checkout.php:302 pages/billing.php:91
7610
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7611
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7612
- #: pages/billing.php:133 pages/billing.php:136 pages/checkout.php:302
7613
- #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
7614
- #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
7615
- #: pages/checkout.php:352 pages/checkout.php:354 pages/checkout.php:359
7616
- #: pages/checkout.php:362
7617
  msgid "State"
7618
  msgstr ""
7619
 
7620
  #: pages/billing.php:138 pages/checkout.php:306 pages/billing.php:95
7621
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7622
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7623
- #: pages/billing.php:137 pages/billing.php:140 pages/checkout.php:306
7624
- #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
7625
- #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
7626
- #: pages/checkout.php:356 pages/checkout.php:358 pages/checkout.php:363
7627
- #: pages/checkout.php:366
7628
  msgid "Postal Code"
7629
  msgstr ""
7630
 
7631
  #: pages/billing.php:147 pages/checkout.php:311 pages/billing.php:104
7632
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7633
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7634
- #: pages/billing.php:146 pages/billing.php:149 pages/checkout.php:311
7635
- #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
7636
- #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
7637
- #: pages/checkout.php:365 pages/checkout.php:367 pages/checkout.php:372
7638
- #: pages/checkout.php:375
7639
  msgid "City, State Zip"
7640
  msgstr ""
7641
 
7642
  #: pages/billing.php:200 pages/checkout.php:348 pages/billing.php:157
7643
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7644
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7645
- #: pages/billing.php:199 pages/billing.php:202 pages/checkout.php:348
7646
- #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
7647
- #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
7648
- #: pages/checkout.php:418 pages/checkout.php:420 pages/checkout.php:425
7649
- #: pages/checkout.php:428
7650
  msgid "Country"
7651
  msgstr ""
7652
 
7653
  #: pages/billing.php:225 pages/checkout.php:364 pages/billing.php:182
7654
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7655
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7656
- #: pages/billing.php:224 pages/billing.php:227 pages/checkout.php:364
7657
- #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
7658
- #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
7659
- #: pages/checkout.php:443 pages/checkout.php:445 pages/checkout.php:450
7660
- #: pages/checkout.php:453
7661
  msgid "Phone"
7662
  msgstr ""
7663
 
7664
  #: pages/billing.php:236 pages/checkout.php:197 pages/checkout.php:379
7665
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7666
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7667
- #: pages/billing.php:215 pages/billing.php:235 pages/billing.php:238
7668
- #: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:207
7669
- #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
7670
- #: pages/checkout.php:220 pages/checkout.php:227 pages/checkout.php:230
7671
- #: pages/checkout.php:379 pages/checkout.php:436 pages/checkout.php:438
7672
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
7673
- #: pages/checkout.php:455 pages/checkout.php:457 pages/checkout.php:460
7674
- #: pages/checkout.php:464 pages/checkout.php:467
7675
  msgid "E-mail Address"
7676
  msgstr ""
7677
 
7678
  #: pages/billing.php:240 pages/checkout.php:386 pages/billing.php:197
7679
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7680
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7681
- #: pages/billing.php:239 pages/billing.php:242 pages/checkout.php:386
7682
- #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
7683
- #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
7684
- #: pages/checkout.php:466 pages/checkout.php:469 pages/checkout.php:473
7685
- #: pages/checkout.php:476
7686
  msgid "Confirm E-mail"
7687
  msgstr ""
7688
 
7689
  #: pages/billing.php:263 pages/billing.php:217 pages/billing.php:221
7690
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7691
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7692
- #: pages/billing.php:262 pages/billing.php:270
7693
  msgid "Credit Card Information"
7694
  msgstr ""
7695
 
7696
  #: pages/billing.php:264 pages/billing.php:217 pages/billing.php:221
7697
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7698
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7699
- #: pages/billing.php:263 pages/billing.php:271
7700
  #, php-format
7701
  msgid "We accept %s"
7702
  msgstr ""
@@ -7704,8 +7770,8 @@ msgstr ""
7704
  #: pages/billing.php:381 pages/billing.php:309 pages/billing.php:313
7705
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7706
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
7707
- #: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
7708
- #: pages/billing.php:417 pages/billing.php:422
7709
  msgid ""
7710
  "This subscription is not recurring. So you don't need to update your billing "
7711
  "information."
@@ -7923,7 +7989,7 @@ msgstr ""
7923
  msgid "Print"
7924
  msgstr ""
7925
 
7926
- #: pages/confirmation.php:52 pages/confirmation.php:112 pages/invoice.php:27
7927
  #: pages/confirmation.php:45 pages/confirmation.php:46
7928
  #: pages/confirmation.php:52 pages/confirmation.php:102
7929
  #: pages/confirmation.php:104 pages/confirmation.php:112
@@ -7937,29 +8003,34 @@ msgstr ""
7937
  msgid "Membership Expires"
7938
  msgstr ""
7939
 
7940
- #: pages/confirmation.php:61 pages/invoice.php:90 pages/confirmation.php:61
7941
- #: pages/confirmation.php:63 pages/confirmation.php:65
7942
- #: pages/confirmation.php:71 pages/invoice.php:50 pages/invoice.php:52
7943
- #: pages/invoice.php:90 pages/invoice.php:107 pages/invoice.php:109
7944
- #: pages/invoice.php:110
7945
- msgid "Total Billed"
7946
- msgstr ""
7947
-
7948
- #: pages/confirmation.php:82 pages/invoice.php:61 pages/account.php:105
7949
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
7950
  #: pages/confirmation.php:69 pages/confirmation.php:82 pages/invoice.php:48
7951
  #: pages/invoice.php:50 pages/invoice.php:61
7952
  msgid "Payment Method"
7953
  msgstr ""
7954
 
7955
- #: pages/confirmation.php:83 pages/invoice.php:62 pages/confirmation.php:80
7956
  #: pages/confirmation.php:82 pages/confirmation.php:83
7957
  #: pages/confirmation.php:88 pages/invoice.php:62 pages/invoice.php:67
7958
  #: pages/invoice.php:69
7959
  msgid "ending in"
7960
  msgstr ""
7961
 
7962
- #: pages/confirmation.php:100 pages/confirmation.php:97
 
 
 
 
 
 
 
 
 
 
 
 
 
7963
  #: pages/confirmation.php:100 pages/confirmation.php:103
7964
  #, php-format
7965
  msgid ""
@@ -7967,20 +8038,20 @@ msgid ""
7967
  "sent to %s."
7968
  msgstr ""
7969
 
7970
- #: pages/confirmation.php:113 pages/confirmation.php:103
7971
  #: pages/confirmation.php:105 pages/confirmation.php:113
7972
  #: pages/confirmation.php:116
7973
  msgid "Pending"
7974
  msgstr ""
7975
 
7976
- #: pages/confirmation.php:121 pages/invoice.php:121 pages/confirmation.php:111
7977
  #: pages/confirmation.php:113 pages/confirmation.php:121
7978
  #: pages/confirmation.php:124 pages/invoice.php:121 pages/invoice.php:139
7979
  #: pages/invoice.php:141
7980
  msgid "View Your Membership Account &rarr;"
7981
  msgstr ""
7982
 
7983
- #: pages/confirmation.php:123 pages/confirmation.php:113
7984
  #: pages/confirmation.php:115 pages/confirmation.php:123
7985
  #: pages/confirmation.php:126
7986
  msgid ""
@@ -7988,17 +8059,17 @@ msgid ""
7988
  "site owner."
7989
  msgstr ""
7990
 
7991
- #: pages/invoice.php:88 pages/invoice.php:88 pages/invoice.php:106
7992
  #: pages/invoice.php:108
7993
  msgid "Invoice #"
7994
  msgstr ""
7995
 
7996
- #: pages/invoice.php:114 pages/invoice.php:114 pages/invoice.php:132
7997
  #: pages/invoice.php:134
7998
  msgid "No invoices found."
7999
  msgstr ""
8000
 
8001
- #: pages/invoice.php:125 pages/invoice.php:125 pages/invoice.php:143
8002
  #: pages/invoice.php:145
8003
  msgid "&larr; View All Invoices"
8004
  msgstr ""
@@ -8081,7 +8152,7 @@ msgid ""
8081
  "moments."
8082
  msgstr ""
8083
 
8084
- #: preheaders/billing.php:145 preheaders/checkout.php:322
8085
  #: preheaders/billing.php:145 preheaders/billing.php:258
8086
  #: preheaders/billing.php:265 preheaders/billing.php:266
8087
  #: preheaders/billing.php:270 preheaders/billing.php:273
@@ -8094,7 +8165,7 @@ msgstr ""
8094
  msgid "Please complete all required fields."
8095
  msgstr ""
8096
 
8097
- #: preheaders/billing.php:148 preheaders/checkout.php:330
8098
  #: preheaders/billing.php:148 preheaders/billing.php:263
8099
  #: preheaders/billing.php:268 preheaders/billing.php:269
8100
  #: preheaders/billing.php:273 preheaders/billing.php:276
@@ -8107,7 +8178,7 @@ msgstr ""
8107
  msgid "Your email addresses do not match. Please try again."
8108
  msgstr ""
8109
 
8110
- #: preheaders/billing.php:151 preheaders/checkout.php:335
8111
  #: preheaders/billing.php:151 preheaders/billing.php:268
8112
  #: preheaders/billing.php:271 preheaders/billing.php:272
8113
  #: preheaders/billing.php:276 preheaders/billing.php:279
@@ -8120,14 +8191,14 @@ msgstr ""
8120
  msgid "The email address entered is in an invalid format. Please try again."
8121
  msgstr ""
8122
 
8123
- #: preheaders/billing.php:155 preheaders/billing.php:155
8124
  #: preheaders/billing.php:274 preheaders/billing.php:275
8125
  #: preheaders/billing.php:276 preheaders/billing.php:280
8126
  #: preheaders/billing.php:283 preheaders/billing.php:295
8127
  msgid "All good!"
8128
  msgstr ""
8129
 
8130
- #: preheaders/billing.php:222 preheaders/billing.php:222
8131
  #: preheaders/billing.php:340 preheaders/billing.php:345
8132
  #: preheaders/billing.php:346 preheaders/billing.php:350
8133
  #: preheaders/billing.php:353 preheaders/billing.php:370
@@ -8135,7 +8206,7 @@ msgstr ""
8135
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
8136
  msgstr ""
8137
 
8138
- #: preheaders/billing.php:228 preheaders/billing.php:228
8139
  #: preheaders/billing.php:347 preheaders/billing.php:351
8140
  #: preheaders/billing.php:352 preheaders/billing.php:356
8141
  #: preheaders/billing.php:359 preheaders/billing.php:378
@@ -8785,10 +8856,6 @@ msgid ""
8785
  "been sent to %s."
8786
  msgstr ""
8787
 
8788
- #: pages/invoice.php:80 pages/invoice.php:82
8789
- msgid "Coupon"
8790
- msgstr ""
8791
-
8792
  #: pages/invoice.php:120 pages/invoice.php:122
8793
  msgid "View Invoice"
8794
  msgstr ""
6
  msgstr ""
7
  "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
+ "POT-Creation-Date: 2017-12-07 19:45-0500\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
  "Last-Translator: \n"
12
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
539
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
540
  #: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
541
  #: adminpages/paymentsettings.php:236
542
+ #: classes/gateways/class.pmprogateway_stripe.php:297 includes/profile.php:125
543
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
544
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
545
  #: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
618
 
619
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
620
  #: adminpages/paymentsettings.php:237
621
+ #: classes/gateways/class.pmprogateway_stripe.php:298 includes/profile.php:126
622
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
623
  #: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
624
  #: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
883
 
884
  #: adminpages/discountcodes.php:483
885
  #: classes/gateways/class.pmprogateway_braintree.php:459
886
+ #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:317
887
  #: pages/checkout.php:463 adminpages/discountcodes.php:367
888
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
889
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
896
  #: classes/gateways/class.pmprogateway_braintree.php:359
897
  #: classes/gateways/class.pmprogateway_braintree.php:361
898
  #: classes/gateways/class.pmprogateway_braintree.php:423
899
+ #: classes/gateways/class.pmprogateway_braintree.php:459
900
  #: classes/gateways/class.pmprogateway_stripe.php:454
901
  #: classes/gateways/class.pmprogateway_stripe.php:455
902
  #: classes/gateways/class.pmprogateway_stripe.php:465
912
  #: classes/gateways/class.pmprogateway_stripe.php:613 pages/billing.php:249
913
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
914
  #: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
915
+ #: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
916
+ #: pages/checkout.php:463 pages/checkout.php:508 pages/checkout.php:524
917
+ #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
918
+ #: pages/checkout.php:562 pages/checkout.php:571 pages/checkout.php:575
919
+ #: pages/checkout.php:582 pages/checkout.php:585
920
  msgid "Expiration Date"
921
  msgstr ""
922
 
1008
 
1009
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1010
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1011
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1012
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1013
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1014
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1041
 
1042
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1043
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1044
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1045
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1046
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1047
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1074
 
1075
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1076
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1077
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1078
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1079
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1080
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1107
 
1108
  #: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
1109
  #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
1110
+ #: classes/gateways/class.pmprogateway_stripe.php:687
1111
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
1112
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
1113
  #: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
1329
  msgid "Starts"
1330
  msgstr ""
1331
 
1332
+ #: adminpages/discountcodes.php:722 adminpages/memberslist.php:183
1333
  #: adminpages/reports/login.php:167 includes/profile.php:122
1334
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
1335
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
1654
  msgstr ""
1655
 
1656
  #: adminpages/membershiplevels.php:406
1657
+ #: classes/gateways/class.pmprogateway_stripe.php:785
1658
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1659
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1660
  #: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
1723
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1724
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1725
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1726
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:137
1727
  msgid "Note"
1728
  msgstr ""
1729
 
1842
  #: adminpages/orders.php:807 pages/account.php:44 pages/billing.php:295
1843
  #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1844
  #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1845
+ #: pages/billing.php:364 pages/billing.php:365 pages/billing.php:371
1846
+ #: pages/billing.php:392 pages/billing.php:397 pages/billing.php:401
1847
+ #: pages/billing.php:406 pages/cancel.php:71 pages/cancel.php:83
1848
+ #: pages/cancel.php:84 shortcodes/pmpro_account.php:70
1849
+ #: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
1850
  msgid "Cancel"
1851
  msgstr ""
1852
 
1884
  msgstr ""
1885
 
1886
  #: adminpages/membershiplevels.php:666 pages/cancel.php:62
1887
+ #: pages/confirmation.php:81 pages/invoice.php:63
1888
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1889
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1890
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
2066
  msgstr ""
2067
 
2068
  #: adminpages/memberslist.php:170 pages/billing.php:104 pages/checkout.php:275
2069
+ #: pages/confirmation.php:66 pages/invoice.php:48
2070
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
2071
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2072
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
2073
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
2074
  #: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
2075
+ #: pages/billing.php:103 pages/billing.php:104 pages/checkout.php:275
2076
+ #: pages/checkout.php:298 pages/checkout.php:300 pages/checkout.php:302
2077
+ #: pages/checkout.php:311 pages/checkout.php:314 pages/checkout.php:317
2078
+ #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:326
2079
+ #: pages/checkout.php:329 pages/confirmation.php:59 pages/confirmation.php:61
2080
  #: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
2081
  #: pages/invoice.php:48
2082
  msgid "Billing Address"
2113
  msgid "Ended"
2114
  msgstr ""
2115
 
2116
+ #: adminpages/memberslist.php:179
2117
+ msgid "Cancelled"
2118
+ msgstr ""
2119
+
2120
+ #: adminpages/memberslist.php:181
2121
+ msgid "Expired"
2122
+ msgstr ""
2123
+
2124
+ #: adminpages/memberslist.php:266 adminpages/reports/login.php:232
2125
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2126
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2127
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
2130
  msgid "No members found."
2131
  msgstr ""
2132
 
2133
+ #: adminpages/memberslist.php:266 adminpages/reports/login.php:232
2134
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
2135
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
2136
  #: adminpages/memberslist.php:262 adminpages/reports/login.php:210
2184
  #: adminpages/orders.php:195 adminpages/orders.php:245
2185
  #: adminpages/orders.php:317 adminpages/orders.php:321
2186
  #: adminpages/orders.php:346 adminpages/orders.php:352
2187
+ #: adminpages/orders.php:362 classes/class.memberorder.php:746
2188
  msgid "Order"
2189
  msgstr ""
2190
 
2273
  msgstr ""
2274
 
2275
  #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2276
+ #: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
2277
+ #: pages/invoice.php:74 adminpages/orders.php:304 adminpages/orders.php:354
2278
+ #: adminpages/orders.php:426 adminpages/orders.php:455
2279
+ #: adminpages/orders.php:481 adminpages/orders.php:512
2280
+ #: adminpages/orders.php:523 adminpages/templates/orders-email.php:60
2281
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
2282
  #: pages/invoice.php:80
2283
  msgid "Tax"
2292
 
2293
  #: adminpages/orders.php:546 adminpages/orders.php:1145
2294
  #: adminpages/templates/orders-email.php:64
2295
+ #: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
2296
+ #: pages/invoice.php:78 adminpages/orders.php:320 adminpages/orders.php:370
2297
+ #: adminpages/orders.php:442 adminpages/orders.php:471
2298
+ #: adminpages/orders.php:504 adminpages/orders.php:535
2299
+ #: adminpages/orders.php:546 adminpages/orders.php:602
2300
+ #: adminpages/orders.php:905 adminpages/orders.php:915
2301
+ #: adminpages/orders.php:942 adminpages/orders.php:971
2302
+ #: adminpages/orders.php:1108 adminpages/orders.php:1139
2303
+ #: adminpages/orders.php:1145 adminpages/templates/orders-email.php:64
2304
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
2305
  #: pages/invoice.php:84
2306
  msgid "Total"
2329
 
2330
  #: adminpages/orders.php:574
2331
  #: classes/gateways/class.pmprogateway_braintree.php:446
2332
+ #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:275
2333
  #: pages/checkout.php:423 adminpages/orders.php:339 adminpages/orders.php:389
2334
  #: adminpages/orders.php:461 adminpages/orders.php:490
2335
  #: adminpages/orders.php:532 adminpages/orders.php:563
2343
  #: classes/gateways/class.pmprogateway_braintree.php:344
2344
  #: classes/gateways/class.pmprogateway_braintree.php:406
2345
  #: classes/gateways/class.pmprogateway_braintree.php:441
2346
+ #: classes/gateways/class.pmprogateway_braintree.php:446
2347
  #: classes/gateways/class.pmprogateway_stripe.php:408
2348
  #: classes/gateways/class.pmprogateway_stripe.php:409
2349
  #: classes/gateways/class.pmprogateway_stripe.php:419
2359
  #: classes/gateways/class.pmprogateway_stripe.php:573 pages/billing.php:234
2360
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
2361
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
2362
+ #: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
2363
+ #: pages/billing.php:294 pages/checkout.php:423 pages/checkout.php:493
2364
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
2365
+ #: pages/checkout.php:517 pages/checkout.php:525 pages/checkout.php:527
2366
+ #: pages/checkout.php:534 pages/checkout.php:537
2367
  msgid "Card Type"
2368
  msgstr ""
2369
 
2429
  #: adminpages/orders.php:917 adminpages/orders.php:944
2430
  #: adminpages/orders.php:973 adminpages/orders.php:1110
2431
  #: adminpages/orders.php:1141 adminpages/orders.php:1147
2432
+ #: classes/class.memberorder.php:747
2433
  msgid "Gateway"
2434
  msgstr ""
2435
 
2487
  #: adminpages/orders.php:483 adminpages/orders.php:555
2488
  #: adminpages/orders.php:584 adminpages/orders.php:664
2489
  #: adminpages/orders.php:695 adminpages/orders.php:706
2490
+ #: classes/class.memberorder.php:748
2491
  msgid "Subscription Transaction ID"
2492
  msgstr ""
2493
 
2499
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2500
  msgstr ""
2501
 
2502
+ #: adminpages/orders.php:721 adminpages/orders.php:1150 pages/invoice.php:100
2503
  #: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
2504
  #: adminpages/orders.php:492 adminpages/orders.php:493
2505
  #: adminpages/orders.php:565 adminpages/orders.php:594
2671
  msgstr ""
2672
 
2673
  #: adminpages/orders.php:1144 includes/init.php:244 includes/profile.php:36
2674
+ #: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
2675
+ #: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
 
2676
  #: adminpages/orders.php:914 adminpages/orders.php:941
2677
  #: adminpages/orders.php:970 adminpages/orders.php:1107
2678
  #: adminpages/orders.php:1138 adminpages/orders.php:1144 includes/init.php:214
3076
  #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
3077
  #: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
3078
  #: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
3079
+ #: pages/billing.php:100 pages/billing.php:120 pages/billing.php:121
3080
+ #: pages/billing.php:123
3081
  msgid "optional"
3082
  msgstr ""
3083
 
3484
  msgstr ""
3485
 
3486
  #: adminpages/templates/orders-email.php:56
3487
+ #: adminpages/templates/orders-print.php:85 pages/confirmation.php:91
3488
+ #: pages/invoice.php:73 adminpages/templates/orders-email.php:56
3489
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
3490
  #: pages/invoice.php:79
3491
  msgid "Subtotal"
3522
  #: classes/class.memberorder.php:706 classes/class.memberorder.php:716
3523
  #: classes/class.memberorder.php:719 classes/class.memberorder.php:720
3524
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:740
3525
+ #: classes/class.memberorder.php:743 includes/cleanup.php:24
3526
  #, php-format
3527
  msgid ""
3528
  "There was an error canceling the subscription for user with ID=%s. You will "
3530
  "active."
3531
  msgstr ""
3532
 
3533
+ #: classes/class.memberorder.php:744 classes/class.memberorder.php:744
3534
  msgid "User Email"
3535
  msgstr ""
3536
 
3537
+ #: classes/class.memberorder.php:745 classes/class.memberorder.php:745
3538
  msgid "User Display Name"
3539
  msgstr ""
3540
 
3571
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3572
  #: classes/class.pmproemail.php:698
3573
  #: classes/gateways/class.pmprogateway_braintree.php:489
3574
+ #: classes/gateways/class.pmprogateway_stripe.php:660 pages/checkout.php:70
3575
  #: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
3576
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3577
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3602
  #: classes/gateways/class.pmprogateway_braintree.php:402
3603
  #: classes/gateways/class.pmprogateway_braintree.php:448
3604
  #: classes/gateways/class.pmprogateway_braintree.php:464
3605
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3606
  #: classes/gateways/class.pmprogateway_stripe.php:495
3607
  #: classes/gateways/class.pmprogateway_stripe.php:496
3608
  #: classes/gateways/class.pmprogateway_stripe.php:506
4082
  msgstr ""
4083
 
4084
  #: classes/gateways/class.pmprogateway_braintree.php:313
4085
+ #: classes/gateways/class.pmprogateway_stripe.php:305
4086
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
4087
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
4088
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
4121
  msgstr ""
4122
 
4123
  #: classes/gateways/class.pmprogateway_braintree.php:434
4124
+ #: classes/gateways/class.pmprogateway_stripe.php:577 pages/checkout.php:411
4125
  #: classes/gateways/class.pmprogateway_braintree.php:270
4126
  #: classes/gateways/class.pmprogateway_braintree.php:283
4127
  #: classes/gateways/class.pmprogateway_braintree.php:285
4131
  #: classes/gateways/class.pmprogateway_braintree.php:321
4132
  #: classes/gateways/class.pmprogateway_braintree.php:383
4133
  #: classes/gateways/class.pmprogateway_braintree.php:429
4134
+ #: classes/gateways/class.pmprogateway_braintree.php:434
4135
  #: classes/gateways/class.pmprogateway_stripe.php:387
4136
  #: classes/gateways/class.pmprogateway_stripe.php:388
4137
  #: classes/gateways/class.pmprogateway_stripe.php:398
4153
  msgstr ""
4154
 
4155
  #: classes/gateways/class.pmprogateway_braintree.php:435
4156
+ #: classes/gateways/class.pmprogateway_stripe.php:578 pages/checkout.php:412
4157
  #: classes/gateways/class.pmprogateway_braintree.php:270
4158
  #: classes/gateways/class.pmprogateway_braintree.php:283
4159
  #: classes/gateways/class.pmprogateway_braintree.php:285
4163
  #: classes/gateways/class.pmprogateway_braintree.php:322
4164
  #: classes/gateways/class.pmprogateway_braintree.php:384
4165
  #: classes/gateways/class.pmprogateway_braintree.php:430
4166
+ #: classes/gateways/class.pmprogateway_braintree.php:435
4167
  #: classes/gateways/class.pmprogateway_stripe.php:387
4168
  #: classes/gateways/class.pmprogateway_stripe.php:388
4169
  #: classes/gateways/class.pmprogateway_stripe.php:398
4186
  msgstr ""
4187
 
4188
  #: classes/gateways/class.pmprogateway_braintree.php:455
4189
+ #: classes/gateways/class.pmprogateway_stripe.php:625 pages/billing.php:313
4190
  #: pages/checkout.php:459
4191
  #: classes/gateways/class.pmprogateway_braintree.php:303
4192
  #: classes/gateways/class.pmprogateway_braintree.php:316
4196
  #: classes/gateways/class.pmprogateway_braintree.php:354
4197
  #: classes/gateways/class.pmprogateway_braintree.php:356
4198
  #: classes/gateways/class.pmprogateway_braintree.php:418
4199
+ #: classes/gateways/class.pmprogateway_braintree.php:455
4200
  #: classes/gateways/class.pmprogateway_stripe.php:449
4201
  #: classes/gateways/class.pmprogateway_stripe.php:450
4202
  #: classes/gateways/class.pmprogateway_stripe.php:460
4212
  #: classes/gateways/class.pmprogateway_stripe.php:609 pages/billing.php:244
4213
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
4214
  #: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
4215
+ #: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
4216
+ #: pages/billing.php:337 pages/checkout.php:459 pages/checkout.php:503
4217
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
4218
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
4219
+ #: pages/checkout.php:570 pages/checkout.php:577 pages/checkout.php:580
4220
  msgid "Card Number"
4221
  msgstr ""
4222
 
4229
  #: classes/gateways/class.pmprogateway_braintree.php:391
4230
  #: classes/gateways/class.pmprogateway_braintree.php:393
4231
  #: classes/gateways/class.pmprogateway_braintree.php:455
4232
+ #: classes/gateways/class.pmprogateway_braintree.php:483
4233
  #: classes/gateways/class.pmprogateway_stripe.php:486
4234
  #: classes/gateways/class.pmprogateway_stripe.php:487
4235
  #: classes/gateways/class.pmprogateway_stripe.php:497
4254
  msgstr ""
4255
 
4256
  #: classes/gateways/class.pmprogateway_braintree.php:484
4257
+ #: classes/gateways/class.pmprogateway_stripe.php:655 pages/billing.php:353
4258
  #: pages/checkout.php:493
4259
  #: classes/gateways/class.pmprogateway_braintree.php:341
4260
  #: classes/gateways/class.pmprogateway_braintree.php:354
4264
  #: classes/gateways/class.pmprogateway_braintree.php:392
4265
  #: classes/gateways/class.pmprogateway_braintree.php:394
4266
  #: classes/gateways/class.pmprogateway_braintree.php:456
4267
+ #: classes/gateways/class.pmprogateway_braintree.php:484
4268
  #: classes/gateways/class.pmprogateway_stripe.php:487
4269
  #: classes/gateways/class.pmprogateway_stripe.php:488
4270
  #: classes/gateways/class.pmprogateway_stripe.php:498
4290
  msgstr ""
4291
 
4292
  #: classes/gateways/class.pmprogateway_braintree.php:491
4293
+ #: classes/gateways/class.pmprogateway_stripe.php:662 pages/checkout.php:78
4294
  #: pages/checkout.php:500
4295
  #: classes/gateways/class.pmprogateway_braintree.php:351
4296
  #: classes/gateways/class.pmprogateway_braintree.php:364
4301
  #: classes/gateways/class.pmprogateway_braintree.php:404
4302
  #: classes/gateways/class.pmprogateway_braintree.php:450
4303
  #: classes/gateways/class.pmprogateway_braintree.php:466
4304
+ #: classes/gateways/class.pmprogateway_braintree.php:491
4305
  #: classes/gateways/class.pmprogateway_stripe.php:497
4306
  #: classes/gateways/class.pmprogateway_stripe.php:498
4307
  #: classes/gateways/class.pmprogateway_stripe.php:508
4334
  #: classes/gateways/class.pmprogateway_braintree.php:524
4335
  #: classes/gateways/class.pmprogateway_braintree.php:526
4336
  #: classes/gateways/class.pmprogateway_braintree.php:541
4337
+ #: classes/gateways/class.pmprogateway_braintree.php:550
4338
+ #: classes/gateways/class.pmprogateway_braintree.php:567
4339
  #: classes/gateways/class.pmprogateway_braintree.php:616
4340
  #: classes/gateways/class.pmprogateway_braintree.php:623
4341
+ #: classes/gateways/class.pmprogateway_braintree.php:657
4342
  #: classes/gateways/class.pmprogateway_braintree.php:781
4343
  #: classes/gateways/class.pmprogateway_braintree.php:782
4344
+ #: classes/gateways/class.pmprogateway_braintree.php:822
4345
  #: classes/gateways/class.pmprogateway_braintree.php:886
4346
  #: classes/gateways/class.pmprogateway_braintree.php:887
4347
  #: classes/gateways/class.pmprogateway_braintree.php:906
4348
  #: classes/gateways/class.pmprogateway_braintree.php:907
4349
+ #: classes/gateways/class.pmprogateway_braintree.php:927
4350
+ #: classes/gateways/class.pmprogateway_braintree.php:947
4351
  msgid "Payment error: Please contact the webmaster (braintree-load-error)"
4352
  msgstr ""
4353
 
4354
  #: classes/gateways/class.pmprogateway_braintree.php:554
4355
+ #: classes/gateways/class.pmprogateway_stripe.php:1139
4356
  #: classes/gateways/class.pmprogateway_braintree.php:61
4357
  #: classes/gateways/class.pmprogateway_braintree.php:406
4358
  #: classes/gateways/class.pmprogateway_braintree.php:419
4363
  #: classes/gateways/class.pmprogateway_braintree.php:459
4364
  #: classes/gateways/class.pmprogateway_braintree.php:513
4365
  #: classes/gateways/class.pmprogateway_braintree.php:528
4366
+ #: classes/gateways/class.pmprogateway_braintree.php:554
4367
  #: classes/gateways/class.pmprogateway_stripe.php:53
4368
  #: classes/gateways/class.pmprogateway_stripe.php:1011
4369
  #: classes/gateways/class.pmprogateway_stripe.php:1025
4393
  #: classes/gateways/class.pmprogateway_braintree.php:518
4394
  #: classes/gateways/class.pmprogateway_braintree.php:589
4395
  #: classes/gateways/class.pmprogateway_braintree.php:596
4396
+ #: classes/gateways/class.pmprogateway_braintree.php:630
4397
  msgid "Error during settlement:"
4398
  msgstr ""
4399
 
4408
  #: classes/gateways/class.pmprogateway_braintree.php:527
4409
  #: classes/gateways/class.pmprogateway_braintree.php:598
4410
  #: classes/gateways/class.pmprogateway_braintree.php:605
4411
+ #: classes/gateways/class.pmprogateway_braintree.php:639
4412
  msgid "Error during charge:"
4413
  msgstr ""
4414
 
4415
  #: classes/gateways/class.pmprogateway_braintree.php:731
4416
  #: classes/gateways/class.pmprogateway_braintree.php:690
4417
+ #: classes/gateways/class.pmprogateway_braintree.php:731
4418
  #, php-format
4419
  msgid "Failed to update customer: %s"
4420
  msgstr ""
4431
  #: classes/gateways/class.pmprogateway_braintree.php:619
4432
  #: classes/gateways/class.pmprogateway_braintree.php:702
4433
  #: classes/gateways/class.pmprogateway_braintree.php:703
4434
+ #: classes/gateways/class.pmprogateway_braintree.php:743
4435
  msgid "Failed to update customer."
4436
  msgstr ""
4437
 
4447
  #: classes/gateways/class.pmprogateway_braintree.php:667
4448
  #: classes/gateways/class.pmprogateway_braintree.php:750
4449
  #: classes/gateways/class.pmprogateway_braintree.php:751
4450
+ #: classes/gateways/class.pmprogateway_braintree.php:791
4451
  msgid "Failed to create customer."
4452
  msgstr ""
4453
 
4463
  #: classes/gateways/class.pmprogateway_braintree.php:674
4464
  #: classes/gateways/class.pmprogateway_braintree.php:757
4465
  #: classes/gateways/class.pmprogateway_braintree.php:758
4466
+ #: classes/gateways/class.pmprogateway_braintree.php:798
4467
  msgid "Error creating customer record with Braintree:"
4468
  msgstr ""
4469
 
4480
  #: classes/gateways/class.pmprogateway_braintree.php:774
4481
  #: classes/gateways/class.pmprogateway_braintree.php:862
4482
  #: classes/gateways/class.pmprogateway_braintree.php:863
4483
+ #: classes/gateways/class.pmprogateway_braintree.php:903
4484
  msgid "Error subscribing customer to plan with Braintree:"
4485
  msgstr ""
4486
 
4497
  #: classes/gateways/class.pmprogateway_braintree.php:789
4498
  #: classes/gateways/class.pmprogateway_braintree.php:877
4499
  #: classes/gateways/class.pmprogateway_braintree.php:878
4500
+ #: classes/gateways/class.pmprogateway_braintree.php:918
4501
  msgid "Failed to subscribe with Braintree:"
4502
  msgstr ""
4503
 
4539
  #: classes/gateways/class.pmprogateway_braintree.php:939
4540
  #: classes/gateways/class.pmprogateway_braintree.php:945
4541
  #: classes/gateways/class.pmprogateway_braintree.php:946
4542
+ #: classes/gateways/class.pmprogateway_braintree.php:966
4543
+ #: classes/gateways/class.pmprogateway_braintree.php:979
4544
+ #: classes/gateways/class.pmprogateway_braintree.php:986
4545
  #: classes/gateways/class.pmprogateway_stripe.php:343
4546
  #: classes/gateways/class.pmprogateway_stripe.php:344
4547
  #: classes/gateways/class.pmprogateway_stripe.php:351
4699
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
4700
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
4701
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
4702
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:132
4703
  msgid "PayPal Settings"
4704
  msgstr ""
4705
 
4713
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
4714
  #: classes/gateways/class.pmprogateway_paypalexpress.php:145
4715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
4716
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:137
4717
  msgid ""
4718
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
4719
  "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
4733
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
4734
  #: classes/gateways/class.pmprogateway_paypalexpress.php:150
4735
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
4736
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:142
4737
  msgid "Gateway Account Email"
4738
  msgstr ""
4739
 
4750
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
4751
  #: classes/gateways/class.pmprogateway_paypalexpress.php:158
4752
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
4753
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:150
4754
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
4755
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
4756
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4770
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
4771
  #: classes/gateways/class.pmprogateway_paypalexpress.php:166
4772
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
4773
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:158
4774
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
4775
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
4776
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
4788
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4789
  #: classes/gateways/class.pmprogateway_paypalexpress.php:174
4790
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
4791
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:166
4792
  msgid "API Signature"
4793
  msgstr ""
4794
 
4810
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4811
  #: classes/gateways/class.pmprogateway_paypalexpress.php:193
4812
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
4813
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:174
4814
  msgid "IPN Handler URL"
4815
  msgstr ""
4816
 
4832
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4833
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4834
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
4835
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:229
4836
  #: pages/checkout.php:263 pages/checkout.php:286 pages/checkout.php:288
4837
  #: pages/checkout.php:295 pages/checkout.php:300 pages/checkout.php:302
4838
  #: pages/checkout.php:309 pages/checkout.php:312 pages/checkout.php:675
4850
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4851
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4852
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
4853
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:234
4854
  #: pages/checkout.php:598 pages/checkout.php:681 pages/checkout.php:688
4855
  #: pages/checkout.php:691 pages/checkout.php:704 pages/checkout.php:707
4856
  #: pages/checkout.php:713 pages/checkout.php:718 pages/checkout.php:722
4870
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4871
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4872
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
4873
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:234
4874
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4875
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4876
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
4904
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4905
  #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4906
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
4907
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:575
4908
  msgid ""
4909
  "Please contact the site owner or cancel your subscription from within PayPal "
4910
  "to make sure you are not charged going forward."
4952
  #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4953
  #: paid-memberships-pro.php:134
4954
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4955
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:71
4956
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4957
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4958
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
4963
 
4964
  #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4965
  #: classes/gateways/class.pmprogateway_paypalstandard.php:157
4966
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:177
4967
  msgid ""
4968
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
4969
  "settings."
4970
  msgstr ""
4971
 
4972
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4973
  #: classes/gateways/class.pmprogateway_paypalstandard.php:559
4974
  msgid "User requested cancellation"
4975
  msgstr ""
5009
  msgstr ""
5010
 
5011
  #: classes/gateways/class.pmprogateway_stripe.php:261
5012
+ #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
5013
+ #: adminpages/paymentsettings.php:294
5014
+ #: classes/gateways/class.pmprogateway_stripe.php:161
5015
+ #: classes/gateways/class.pmprogateway_stripe.php:162
5016
+ #: classes/gateways/class.pmprogateway_stripe.php:172
5017
+ #: classes/gateways/class.pmprogateway_stripe.php:194
5018
+ #: classes/gateways/class.pmprogateway_stripe.php:196
5019
+ #: classes/gateways/class.pmprogateway_stripe.php:197
5020
+ #: classes/gateways/class.pmprogateway_stripe.php:208
5021
+ #: classes/gateways/class.pmprogateway_stripe.php:210
5022
+ #: classes/gateways/class.pmprogateway_stripe.php:237
5023
+ #: classes/gateways/class.pmprogateway_stripe.php:269
5024
+ msgid "Publishable Key"
5025
+ msgstr ""
5026
+
5027
+ #: classes/gateways/class.pmprogateway_stripe.php:269
5028
+ msgid "Your Publishable Key appears incorrect."
5029
+ msgstr ""
5030
+
5031
+ #: classes/gateways/class.pmprogateway_stripe.php:277
5032
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
5033
  #: adminpages/paymentsettings.php:286
5034
  #: classes/gateways/class.pmprogateway_stripe.php:153
5044
  msgid "Secret Key"
5045
  msgstr ""
5046
 
5047
+ #: classes/gateways/class.pmprogateway_stripe.php:285
5048
+ msgid "Your Secret Key appears incorrect."
 
 
 
 
 
 
 
 
 
 
 
 
5049
  msgstr ""
5050
 
5051
+ #: classes/gateways/class.pmprogateway_stripe.php:293
5052
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
5053
  #: adminpages/paymentsettings.php:432
5054
  #: classes/gateways/class.pmprogateway_stripe.php:169
5064
  msgid "Show Billing Address Fields"
5065
  msgstr ""
5066
 
5067
+ #: classes/gateways/class.pmprogateway_stripe.php:300
5068
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
5069
  #: classes/gateways/class.pmprogateway_stripe.php:176
5070
  #: classes/gateways/class.pmprogateway_stripe.php:177
5082
  "verification in the Stripe dashboard settings.</strong>"
5083
  msgstr ""
5084
 
5085
+ #: classes/gateways/class.pmprogateway_stripe.php:308
5086
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
5087
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
5088
  #: classes/gateways/class.pmprogateway_stripe.php:184
5098
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
5099
  msgstr ""
5100
 
5101
+ #: classes/gateways/class.pmprogateway_stripe.php:654 pages/checkout.php:492
5102
  #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:492
5103
  msgid "Security Code (CVC)"
5104
  msgstr ""
5105
 
5106
+ #: classes/gateways/class.pmprogateway_stripe.php:726
5107
  #: classes/gateways/class.pmprogateway_stripe.php:703
5108
  #: classes/gateways/class.pmprogateway_stripe.php:710
5109
  #, php-format
5112
  "have been deleted."
5113
  msgstr ""
5114
 
5115
+ #: classes/gateways/class.pmprogateway_stripe.php:733
5116
  #: classes/gateways/class.pmprogateway_stripe.php:567
5117
  #: classes/gateways/class.pmprogateway_stripe.php:568
5118
  #: classes/gateways/class.pmprogateway_stripe.php:578
5129
  msgid "Subscription Updates"
5130
  msgstr ""
5131
 
5132
+ #: classes/gateways/class.pmprogateway_stripe.php:737
5133
  #: classes/gateways/class.pmprogateway_stripe.php:571
5134
  #: classes/gateways/class.pmprogateway_stripe.php:572
5135
  #: classes/gateways/class.pmprogateway_stripe.php:582
5148
  "at predefined times. Be sure to click Update Profile after making changes."
5149
  msgstr ""
5150
 
5151
+ #: classes/gateways/class.pmprogateway_stripe.php:739
5152
  #: classes/gateways/class.pmprogateway_stripe.php:573
5153
  #: classes/gateways/class.pmprogateway_stripe.php:574
5154
  #: classes/gateways/class.pmprogateway_stripe.php:584
5167
  "at predefined times. Be sure to click Update User after making changes."
5168
  msgstr ""
5169
 
5170
+ #: classes/gateways/class.pmprogateway_stripe.php:744 pages/billing.php:364
5171
  #: classes/gateways/class.pmprogateway_stripe.php:578
5172
  #: classes/gateways/class.pmprogateway_stripe.php:579
5173
  #: classes/gateways/class.pmprogateway_stripe.php:589
5183
  #: classes/gateways/class.pmprogateway_stripe.php:728 pages/billing.php:294
5184
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
5185
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
5186
+ #: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
5187
+ #: pages/billing.php:391 pages/billing.php:396 pages/billing.php:400
5188
+ #: pages/billing.php:405
5189
  msgid "Update"
5190
  msgstr ""
5191
 
5192
+ #: classes/gateways/class.pmprogateway_stripe.php:1135
5193
  #: classes/gateways/class.pmprogateway_stripe.php:1119
5194
  #: classes/gateways/class.pmprogateway_stripe.php:1172
5195
  msgid "Payment error: Please contact the webmaster (stripe-load-error)"
5196
  msgstr ""
5197
 
5198
+ #: classes/gateways/class.pmprogateway_stripe.php:1373
5199
  #: classes/gateways/class.pmprogateway_stripe.php:190
5200
  #: classes/gateways/class.pmprogateway_stripe.php:192
5201
  #: classes/gateways/class.pmprogateway_stripe.php:199
5221
  msgid "Error creating customer record with Stripe:"
5222
  msgstr ""
5223
 
5224
+ #: classes/gateways/class.pmprogateway_stripe.php:1432
5225
  #: classes/gateways/class.pmprogateway_stripe.php:1275
5226
  #: classes/gateways/class.pmprogateway_stripe.php:1303
5227
  #: classes/gateways/class.pmprogateway_stripe.php:1313
5237
  msgid "Error getting subscription with Stripe:"
5238
  msgstr ""
5239
 
5240
+ #: classes/gateways/class.pmprogateway_stripe.php:1588
5241
  #: classes/gateways/class.pmprogateway_stripe.php:278
5242
  #: classes/gateways/class.pmprogateway_stripe.php:279
5243
  #: classes/gateways/class.pmprogateway_stripe.php:286
5271
  msgid "Error creating plan with Stripe:"
5272
  msgstr ""
5273
 
5274
+ #: classes/gateways/class.pmprogateway_stripe.php:1619
5275
  #: classes/gateways/class.pmprogateway_stripe.php:294
5276
  #: classes/gateways/class.pmprogateway_stripe.php:295
5277
  #: classes/gateways/class.pmprogateway_stripe.php:302
5300
  msgid "Error subscribing customer to plan with Stripe:"
5301
  msgstr ""
5302
 
5303
+ #: classes/gateways/class.pmprogateway_stripe.php:1714
5304
  #: classes/gateways/class.pmprogateway_stripe.php:769
5305
  #: classes/gateways/class.pmprogateway_stripe.php:770
5306
  #: classes/gateways/class.pmprogateway_stripe.php:780
5317
  msgid "Could not cancel the old subscription. Updates have not been processed."
5318
  msgstr ""
5319
 
5320
+ #: classes/gateways/class.pmprogateway_stripe.php:1817
5321
  #: classes/gateways/class.pmprogateway_stripe.php:383
5322
  #: classes/gateways/class.pmprogateway_stripe.php:389
5323
  #: classes/gateways/class.pmprogateway_stripe.php:410
5343
  msgid "Could not cancel old subscription."
5344
  msgstr ""
5345
 
5346
+ #: classes/gateways/class.pmprogateway_stripe.php:1834
5347
  #: classes/gateways/class.pmprogateway_stripe.php:1533
5348
  #: classes/gateways/class.pmprogateway_stripe.php:1534
5349
  #: classes/gateways/class.pmprogateway_stripe.php:1535
5366
  msgid "Could not find the customer."
5367
  msgstr ""
5368
 
5369
+ #: classes/gateways/class.pmprogateway_stripe.php:1994
5370
  #: classes/gateways/class.pmprogateway_stripe.php:1836
5371
  #: classes/gateways/class.pmprogateway_stripe.php:1837
5372
  #: classes/gateways/class.pmprogateway_stripe.php:1847
5376
  msgid "Error: "
5377
  msgstr ""
5378
 
5379
+ #: classes/gateways/class.pmprogateway_stripe.php:2007
5380
  #: classes/gateways/class.pmprogateway_stripe.php:1849
5381
  #: classes/gateways/class.pmprogateway_stripe.php:1850
5382
  #: classes/gateways/class.pmprogateway_stripe.php:1860
7284
  msgid "and"
7285
  msgstr ""
7286
 
7287
+ #: includes/functions.php:2033 includes/functions.php:1319
7288
  #: includes/functions.php:1341 includes/functions.php:1361
7289
  #: includes/functions.php:1372 includes/functions.php:1375
7290
  #: includes/functions.php:1385 includes/functions.php:1394
7301
  msgid "Sign Up for !!name!! Now"
7302
  msgstr ""
7303
 
7304
+ #: includes/functions.php:2039 includes/functions.php:1325
7305
  #: includes/functions.php:1347 includes/functions.php:1367
7306
  #: includes/functions.php:1378 includes/functions.php:1381
7307
  #: includes/functions.php:1391 includes/functions.php:1400
7318
  msgid "Please specify a level id."
7319
  msgstr ""
7320
 
7321
+ #: includes/functions.php:2046 includes/functions.php:2047
7322
  #, php-format
7323
  msgid "Level #%s not found."
7324
  msgstr ""
7395
  #: includes/license.php:302 includes/updates/upgrade_1_9_4.php:27
7396
  #: includes/license.php:274 includes/license.php:279 includes/license.php:289
7397
  #: includes/license.php:292 includes/license.php:302
7398
+ #: includes/updates/upgrade_1_9_4.php:27
7399
  msgid "Dismiss"
7400
  msgstr ""
7401
 
7538
  "register to read."
7539
  msgstr ""
7540
 
7541
+ #: includes/updates/upgrade_1_9_4.php:26 includes/updates/upgrade_1_9_4.php:26
7542
  msgid ""
7543
  "We have detected that you are using a custom checkout page template for Paid "
7544
  "Memberships Pro. This was recently changed and may need to be updated in "
7545
  "order to display correctly."
7546
  msgstr ""
7547
 
7548
+ #: includes/updates/upgrade_1_9_4.php:27 includes/updates/upgrade_1_9_4.php:27
7549
  msgid ""
7550
  "If you notice UI issues after upgrading, <a href=\"https://www."
7551
  "paidmembershipspro.com/add-ons/table-layout-plugin-pages/\">see this free "
7554
  msgstr ""
7555
 
7556
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7557
+ #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
7558
+ #: pages/billing.php:28
7559
  #, php-format
7560
  msgid "Logged in as <strong>%s</strong>."
7561
  msgstr ""
7562
 
7563
  #: pages/billing.php:27 pages/billing.php:14 pages/billing.php:23
7564
+ #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
7565
+ #: pages/billing.php:28
7566
  msgid "logout"
7567
  msgstr ""
7568
 
7569
+ #: pages/billing.php:45 pages/cancel.php:61 pages/invoice.php:102
7570
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7571
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7572
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7573
  #: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
7574
+ #: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
7575
+ #: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
7576
+ #: pages/invoice.php:109 pages/levels.php:13 pages/levels.php:35
7577
+ #: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
7578
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
7579
+ #: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
7580
  msgid "Level"
7581
  msgstr ""
7582
 
7583
  #: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
7584
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7585
+ #: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
7586
  msgid "Membership Fee"
7587
  msgstr ""
7588
 
7589
  #: pages/billing.php:51 pages/account.php:18 pages/billing.php:22
7590
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7591
+ #: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
7592
+ #: pages/levels.php:70
7593
  #, php-format
7594
  msgid "%s every %d %s."
7595
  msgstr ""
7596
 
7597
  #: pages/billing.php:53 pages/account.php:20 pages/billing.php:24
7598
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7599
+ #: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
7600
+ #: pages/levels.php:66
7601
  #, php-format
7602
  msgid "%s per %s."
7603
  msgstr ""
7605
  #: pages/billing.php:63 pages/account.php:25 pages/account.php:29
7606
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7607
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7608
+ #: pages/billing.php:62 pages/billing.php:63
7609
  msgid "Duration"
7610
  msgstr ""
7611
 
7612
  #: pages/billing.php:81 pages/billing.php:39 pages/billing.php:43
7613
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7614
+ #: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
7615
  msgid ""
7616
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
7617
  "paypal.com\">login to PayPal here</a> to update your billing information."
7620
  #: pages/billing.php:108 pages/checkout.php:279 pages/billing.php:65
7621
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7622
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7623
+ #: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
7624
+ #: pages/checkout.php:279 pages/checkout.php:305 pages/checkout.php:307
7625
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
7626
+ #: pages/checkout.php:324 pages/checkout.php:326 pages/checkout.php:328
7627
+ #: pages/checkout.php:333 pages/checkout.php:336
7628
  msgid "First Name"
7629
  msgstr ""
7630
 
7631
  #: pages/billing.php:112 pages/checkout.php:283 pages/billing.php:69
7632
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7633
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7634
+ #: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
7635
+ #: pages/checkout.php:283 pages/checkout.php:309 pages/checkout.php:311
7636
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
7637
+ #: pages/checkout.php:328 pages/checkout.php:330 pages/checkout.php:332
7638
+ #: pages/checkout.php:337 pages/checkout.php:340
7639
  msgid "Last Name"
7640
  msgstr ""
7641
 
7642
  #: pages/billing.php:116 pages/checkout.php:287 pages/billing.php:73
7643
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7644
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7645
+ #: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
7646
+ #: pages/checkout.php:287 pages/checkout.php:313 pages/checkout.php:315
7647
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
7648
+ #: pages/checkout.php:332 pages/checkout.php:334 pages/checkout.php:336
7649
+ #: pages/checkout.php:341 pages/checkout.php:344
7650
  msgid "Address 1"
7651
  msgstr ""
7652
 
7653
  #: pages/billing.php:120 pages/checkout.php:291 pages/billing.php:77
7654
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7655
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7656
+ #: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
7657
+ #: pages/checkout.php:291 pages/checkout.php:317 pages/checkout.php:319
7658
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
7659
+ #: pages/checkout.php:336 pages/checkout.php:338 pages/checkout.php:340
7660
+ #: pages/checkout.php:345 pages/checkout.php:348
7661
  msgid "Address 2"
7662
  msgstr ""
7663
 
7664
  #: pages/billing.php:130 pages/checkout.php:298 pages/billing.php:87
7665
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7666
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7667
+ #: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
7668
+ #: pages/checkout.php:298 pages/checkout.php:327 pages/checkout.php:329
7669
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
7670
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:350
7671
+ #: pages/checkout.php:355 pages/checkout.php:358
7672
  msgid "City"
7673
  msgstr ""
7674
 
7675
  #: pages/billing.php:134 pages/checkout.php:302 pages/billing.php:91
7676
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7677
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7678
+ #: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
7679
+ #: pages/checkout.php:302 pages/checkout.php:331 pages/checkout.php:333
7680
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
7681
+ #: pages/checkout.php:350 pages/checkout.php:352 pages/checkout.php:354
7682
+ #: pages/checkout.php:359 pages/checkout.php:362
7683
  msgid "State"
7684
  msgstr ""
7685
 
7686
  #: pages/billing.php:138 pages/checkout.php:306 pages/billing.php:95
7687
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7688
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7689
+ #: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
7690
+ #: pages/checkout.php:306 pages/checkout.php:335 pages/checkout.php:337
7691
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
7692
+ #: pages/checkout.php:354 pages/checkout.php:356 pages/checkout.php:358
7693
+ #: pages/checkout.php:363 pages/checkout.php:366
7694
  msgid "Postal Code"
7695
  msgstr ""
7696
 
7697
  #: pages/billing.php:147 pages/checkout.php:311 pages/billing.php:104
7698
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7699
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7700
+ #: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
7701
+ #: pages/checkout.php:311 pages/checkout.php:344 pages/checkout.php:346
7702
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
7703
+ #: pages/checkout.php:363 pages/checkout.php:365 pages/checkout.php:367
7704
+ #: pages/checkout.php:372 pages/checkout.php:375
7705
  msgid "City, State Zip"
7706
  msgstr ""
7707
 
7708
  #: pages/billing.php:200 pages/checkout.php:348 pages/billing.php:157
7709
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7710
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7711
+ #: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
7712
+ #: pages/checkout.php:348 pages/checkout.php:397 pages/checkout.php:399
7713
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
7714
+ #: pages/checkout.php:416 pages/checkout.php:418 pages/checkout.php:420
7715
+ #: pages/checkout.php:425 pages/checkout.php:428
7716
  msgid "Country"
7717
  msgstr ""
7718
 
7719
  #: pages/billing.php:225 pages/checkout.php:364 pages/billing.php:182
7720
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7721
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7722
+ #: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
7723
+ #: pages/checkout.php:364 pages/checkout.php:422 pages/checkout.php:424
7724
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
7725
+ #: pages/checkout.php:441 pages/checkout.php:443 pages/checkout.php:445
7726
+ #: pages/checkout.php:450 pages/checkout.php:453
7727
  msgid "Phone"
7728
  msgstr ""
7729
 
7730
  #: pages/billing.php:236 pages/checkout.php:197 pages/checkout.php:379
7731
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7732
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7733
+ #: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
7734
+ #: pages/billing.php:238 pages/checkout.php:197 pages/checkout.php:204
7735
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
7736
+ #: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
7737
+ #: pages/checkout.php:230 pages/checkout.php:379 pages/checkout.php:436
7738
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:449
7739
+ #: pages/checkout.php:453 pages/checkout.php:455 pages/checkout.php:457
7740
+ #: pages/checkout.php:460 pages/checkout.php:464 pages/checkout.php:467
7741
  msgid "E-mail Address"
7742
  msgstr ""
7743
 
7744
  #: pages/billing.php:240 pages/checkout.php:386 pages/billing.php:197
7745
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7746
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7747
+ #: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
7748
+ #: pages/checkout.php:386 pages/checkout.php:445 pages/checkout.php:447
7749
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
7750
+ #: pages/checkout.php:464 pages/checkout.php:466 pages/checkout.php:469
7751
+ #: pages/checkout.php:473 pages/checkout.php:476
7752
  msgid "Confirm E-mail"
7753
  msgstr ""
7754
 
7755
  #: pages/billing.php:263 pages/billing.php:217 pages/billing.php:221
7756
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7757
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7758
+ #: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
7759
  msgid "Credit Card Information"
7760
  msgstr ""
7761
 
7762
  #: pages/billing.php:264 pages/billing.php:217 pages/billing.php:221
7763
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7764
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7765
+ #: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
7766
  #, php-format
7767
  msgid "We accept %s"
7768
  msgstr ""
7770
  #: pages/billing.php:381 pages/billing.php:309 pages/billing.php:313
7771
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7772
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
7773
+ #: pages/billing.php:381 pages/billing.php:387 pages/billing.php:408
7774
+ #: pages/billing.php:413 pages/billing.php:417 pages/billing.php:422
7775
  msgid ""
7776
  "This subscription is not recurring. So you don't need to update your billing "
7777
  "information."
7989
  msgid "Print"
7990
  msgstr ""
7991
 
7992
+ #: pages/confirmation.php:52 pages/confirmation.php:123 pages/invoice.php:27
7993
  #: pages/confirmation.php:45 pages/confirmation.php:46
7994
  #: pages/confirmation.php:52 pages/confirmation.php:102
7995
  #: pages/confirmation.php:104 pages/confirmation.php:112
8003
  msgid "Membership Expires"
8004
  msgstr ""
8005
 
8006
+ #: pages/confirmation.php:79 pages/invoice.php:61 pages/account.php:105
 
 
 
 
 
 
 
 
8007
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
8008
  #: pages/confirmation.php:69 pages/confirmation.php:82 pages/invoice.php:48
8009
  #: pages/invoice.php:50 pages/invoice.php:61
8010
  msgid "Payment Method"
8011
  msgstr ""
8012
 
8013
+ #: pages/confirmation.php:80 pages/invoice.php:62 pages/confirmation.php:80
8014
  #: pages/confirmation.php:82 pages/confirmation.php:83
8015
  #: pages/confirmation.php:88 pages/invoice.php:62 pages/invoice.php:67
8016
  #: pages/invoice.php:69
8017
  msgid "ending in"
8018
  msgstr ""
8019
 
8020
+ #: pages/confirmation.php:88 pages/invoice.php:70 pages/invoice.php:103
8021
+ #: pages/confirmation.php:61 pages/confirmation.php:63
8022
+ #: pages/confirmation.php:65 pages/confirmation.php:71 pages/invoice.php:50
8023
+ #: pages/invoice.php:52 pages/invoice.php:90 pages/invoice.php:107
8024
+ #: pages/invoice.php:109 pages/invoice.php:110
8025
+ msgid "Total Billed"
8026
+ msgstr ""
8027
+
8028
+ #: pages/confirmation.php:94 pages/invoice.php:76 pages/invoice.php:80
8029
+ #: pages/invoice.php:82
8030
+ msgid "Coupon"
8031
+ msgstr ""
8032
+
8033
+ #: pages/confirmation.php:111 pages/confirmation.php:97
8034
  #: pages/confirmation.php:100 pages/confirmation.php:103
8035
  #, php-format
8036
  msgid ""
8038
  "sent to %s."
8039
  msgstr ""
8040
 
8041
+ #: pages/confirmation.php:124 pages/confirmation.php:103
8042
  #: pages/confirmation.php:105 pages/confirmation.php:113
8043
  #: pages/confirmation.php:116
8044
  msgid "Pending"
8045
  msgstr ""
8046
 
8047
+ #: pages/confirmation.php:132 pages/invoice.php:134 pages/confirmation.php:111
8048
  #: pages/confirmation.php:113 pages/confirmation.php:121
8049
  #: pages/confirmation.php:124 pages/invoice.php:121 pages/invoice.php:139
8050
  #: pages/invoice.php:141
8051
  msgid "View Your Membership Account &rarr;"
8052
  msgstr ""
8053
 
8054
+ #: pages/confirmation.php:134 pages/confirmation.php:113
8055
  #: pages/confirmation.php:115 pages/confirmation.php:123
8056
  #: pages/confirmation.php:126
8057
  msgid ""
8059
  "site owner."
8060
  msgstr ""
8061
 
8062
+ #: pages/invoice.php:101 pages/invoice.php:88 pages/invoice.php:106
8063
  #: pages/invoice.php:108
8064
  msgid "Invoice #"
8065
  msgstr ""
8066
 
8067
+ #: pages/invoice.php:127 pages/invoice.php:114 pages/invoice.php:132
8068
  #: pages/invoice.php:134
8069
  msgid "No invoices found."
8070
  msgstr ""
8071
 
8072
+ #: pages/invoice.php:138 pages/invoice.php:125 pages/invoice.php:143
8073
  #: pages/invoice.php:145
8074
  msgid "&larr; View All Invoices"
8075
  msgstr ""
8152
  "moments."
8153
  msgstr ""
8154
 
8155
+ #: preheaders/billing.php:147 preheaders/checkout.php:322
8156
  #: preheaders/billing.php:145 preheaders/billing.php:258
8157
  #: preheaders/billing.php:265 preheaders/billing.php:266
8158
  #: preheaders/billing.php:270 preheaders/billing.php:273
8165
  msgid "Please complete all required fields."
8166
  msgstr ""
8167
 
8168
+ #: preheaders/billing.php:150 preheaders/checkout.php:330
8169
  #: preheaders/billing.php:148 preheaders/billing.php:263
8170
  #: preheaders/billing.php:268 preheaders/billing.php:269
8171
  #: preheaders/billing.php:273 preheaders/billing.php:276
8178
  msgid "Your email addresses do not match. Please try again."
8179
  msgstr ""
8180
 
8181
+ #: preheaders/billing.php:153 preheaders/checkout.php:335
8182
  #: preheaders/billing.php:151 preheaders/billing.php:268
8183
  #: preheaders/billing.php:271 preheaders/billing.php:272
8184
  #: preheaders/billing.php:276 preheaders/billing.php:279
8191
  msgid "The email address entered is in an invalid format. Please try again."
8192
  msgstr ""
8193
 
8194
+ #: preheaders/billing.php:157 preheaders/billing.php:155
8195
  #: preheaders/billing.php:274 preheaders/billing.php:275
8196
  #: preheaders/billing.php:276 preheaders/billing.php:280
8197
  #: preheaders/billing.php:283 preheaders/billing.php:295
8198
  msgid "All good!"
8199
  msgstr ""
8200
 
8201
+ #: preheaders/billing.php:224 preheaders/billing.php:222
8202
  #: preheaders/billing.php:340 preheaders/billing.php:345
8203
  #: preheaders/billing.php:346 preheaders/billing.php:350
8204
  #: preheaders/billing.php:353 preheaders/billing.php:370
8206
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
8207
  msgstr ""
8208
 
8209
+ #: preheaders/billing.php:230 preheaders/billing.php:228
8210
  #: preheaders/billing.php:347 preheaders/billing.php:351
8211
  #: preheaders/billing.php:352 preheaders/billing.php:356
8212
  #: preheaders/billing.php:359 preheaders/billing.php:378
8856
  "been sent to %s."
8857
  msgstr ""
8858
 
 
 
 
 
8859
  #: pages/invoice.php:120 pages/invoice.php:122
8860
  msgid "View Invoice"
8861
  msgstr ""
pages/confirmation.php CHANGED
@@ -29,7 +29,7 @@
29
 
30
  //check instructions
31
  if($pmpro_invoice->gateway == "check" && !pmpro_isLevelFree($pmpro_invoice->membership_level))
32
- $confirmation_message .= wpautop(pmpro_getOption("instructions"));
33
 
34
  /**
35
  * All devs to filter the confirmation message.
@@ -57,9 +57,6 @@
57
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
58
  <li><strong><?php _e('Discount Code', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
59
  <?php } ?>
60
- <?php if($pmpro_invoice->total) { ?>
61
- <li><strong><?php _e('Total Billed', 'paid-memberships-pro' );?>:</strong> <?php echo pmpro_formatPrice($pmpro_invoice->total);?></li>
62
- <?php } ?>
63
  <?php do_action("pmpro_invoice_bullets_bottom", $pmpro_invoice); ?>
64
  </ul>
65
  <hr />
@@ -87,10 +84,24 @@
87
  <?php echo $pmpro_invoice->payment_type?>
88
  <?php } ?>
89
 
90
- <div class="pmpro_invoice-membership-level">
91
- <strong><?php _e('Membership Level', 'paid-memberships-pro' );?></strong>
92
- <p><?php echo $pmpro_invoice->membership_level->name?></p>
93
- </div> <!-- end pmpro_invoice-membership-level -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  </div> <!-- end pmpro_invoice -->
95
  <hr />
96
  <?php
29
 
30
  //check instructions
31
  if($pmpro_invoice->gateway == "check" && !pmpro_isLevelFree($pmpro_invoice->membership_level))
32
+ $confirmation_message .= wpautop(wp_unslash( pmpro_getOption("instructions") ) );
33
 
34
  /**
35
  * All devs to filter the confirmation message.
57
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
58
  <li><strong><?php _e('Discount Code', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
59
  <?php } ?>
 
 
 
60
  <?php do_action("pmpro_invoice_bullets_bottom", $pmpro_invoice); ?>
61
  </ul>
62
  <hr />
84
  <?php echo $pmpro_invoice->payment_type?>
85
  <?php } ?>
86
 
87
+ <div class="pmpro_invoice-total">
88
+ <strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
89
+ <p><?php if($pmpro_invoice->total != '0.00') { ?>
90
+ <?php if(!empty($pmpro_invoice->tax)) { ?>
91
+ <?php _e('Subtotal', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->subtotal);?><br />
92
+ <?php _e('Tax', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->tax);?><br />
93
+ <?php if(!empty($pmpro_invoice->couponamount)) { ?>
94
+ <?php _e('Coupon', 'paid-memberships-pro' );?>: (<?php echo pmpro_formatPrice($pmpro_invoice->couponamount);?>)<br />
95
+ <?php } ?>
96
+ <strong><?php _e('Total', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->total);?></strong>
97
+ <?php } else { ?>
98
+ <?php echo pmpro_formatPrice($pmpro_invoice->total);?>
99
+ <?php } ?>
100
+ <?php } else { ?>
101
+ <small class="pmpro_grey"><?php echo pmpro_formatPrice(0);?></small>
102
+ <?php } ?></p>
103
+ </div> <!-- end pmpro_invoice-total -->
104
+
105
  </div> <!-- end pmpro_invoice -->
106
  <hr />
107
  <?php
pages/invoice.php CHANGED
@@ -66,10 +66,23 @@
66
  <?php echo $pmpro_invoice->payment_type?>
67
  <?php } ?>
68
 
69
- <div class="pmpro_invoice-membership-level">
70
- <strong><?php _e('Membership Level', 'paid-memberships-pro' );?></strong>
71
- <p><?php echo $pmpro_invoice->membership_level->name?></p>
72
- </div> <!-- end pmpro_invoice-membership-level -->
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  </div> <!-- end pmpro_invoice -->
74
  <hr />
75
  <?php
66
  <?php echo $pmpro_invoice->payment_type?>
67
  <?php } ?>
68
 
69
+ <div class="pmpro_invoice-total">
70
+ <strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
71
+ <p><?php if($pmpro_invoice->total != '0.00') { ?>
72
+ <?php if(!empty($pmpro_invoice->tax)) { ?>
73
+ <?php _e('Subtotal', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->subtotal);?><br />
74
+ <?php _e('Tax', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->tax);?><br />
75
+ <?php if(!empty($pmpro_invoice->couponamount)) { ?>
76
+ <?php _e('Coupon', 'paid-memberships-pro' );?>: (<?php echo pmpro_formatPrice($pmpro_invoice->couponamount);?>)<br />
77
+ <?php } ?>
78
+ <strong><?php _e('Total', 'paid-memberships-pro' );?>: <?php echo pmpro_formatPrice($pmpro_invoice->total);?></strong>
79
+ <?php } else { ?>
80
+ <?php echo pmpro_formatPrice($pmpro_invoice->total);?>
81
+ <?php } ?>
82
+ <?php } else { ?>
83
+ <small class="pmpro_grey"><?php echo pmpro_formatPrice(0);?></small>
84
+ <?php } ?></p>
85
+ </div> <!-- end pmpro_invoice-total -->
86
  </div> <!-- end pmpro_invoice -->
87
  <hr />
88
  <?php
paid-memberships-pro.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
- Version: 1.9.4.1
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  Text Domain: paid-memberships-pro
@@ -15,7 +15,7 @@ Domain Path: /languages
15
  */
16
 
17
  // version constant
18
- define( 'PMPRO_VERSION', '1.9.4.1' );
19
  define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
20
  define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
21
 
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
+ Version: 1.9.4.2
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  Text Domain: paid-memberships-pro
15
  */
16
 
17
  // version constant
18
+ define( 'PMPRO_VERSION', '1.9.4.2' );
19
  define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
20
  define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
21
 
preheaders/billing.php CHANGED
@@ -5,7 +5,6 @@ global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipco
5
 
6
  if($current_user->ID)
7
  $current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID);
8
- $gateway = pmpro_getOption("gateway");
9
 
10
  //need to be secure?
11
  global $besecure, $show_paypal_link;
@@ -28,6 +27,9 @@ if (empty($user_order->gateway)) {
28
  $besecure = pmpro_getOption("use_ssl");
29
  }
30
 
 
 
 
31
  //action to run extra code for gateways/etc
32
  do_action( 'pmpro_billing_preheader' );
33
 
5
 
6
  if($current_user->ID)
7
  $current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID);
 
8
 
9
  //need to be secure?
10
  global $besecure, $show_paypal_link;
27
  $besecure = pmpro_getOption("use_ssl");
28
  }
29
 
30
+ // Set the gateway, ideally using the gateway used to pay for the last order (if it exists)
31
+ $gateway = !empty( $user_order->gateway ) ? $user_order->gateway : pmpro_getOption("gateway");
32
+
33
  //action to run extra code for gateways/etc
34
  do_action( 'pmpro_billing_preheader' );
35
 
preheaders/checkout.php CHANGED
@@ -326,7 +326,7 @@ if ( $submit && $pmpro_msgt != "pmpro_error" ) {
326
  $pmpro_error_fields[] = "password";
327
  $pmpro_error_fields[] = "password2";
328
  }
329
- if ( ! empty( $bemail ) && $bemail != $bconfirmemail ) {
330
  pmpro_setMessage( __( "Your email addresses do not match. Please try again.", 'paid-memberships-pro' ), "pmpro_error" );
331
  $pmpro_error_fields[] = "bemail";
332
  $pmpro_error_fields[] = "bconfirmemail";
326
  $pmpro_error_fields[] = "password";
327
  $pmpro_error_fields[] = "password2";
328
  }
329
+ if ( strcasecmp($bemail, $bconfirmemail) !== 0 ) {
330
  pmpro_setMessage( __( "Your email addresses do not match. Please try again.", 'paid-memberships-pro' ), "pmpro_error" );
331
  $pmpro_error_fields[] = "bemail";
332
  $pmpro_error_fields[] = "bconfirmemail";
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: strangerstudios
3
  Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
4
  Requires at least: 4
5
- Tested up to: 4.8.3
6
- Stable tag: 1.9.4.1
7
 
8
  Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
9
 
@@ -129,14 +129,28 @@ Not sure? You can find out by doing a bit a research.
129
 
130
  == Changelog ==
131
 
132
- = 1.9.4.1 =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  * BUG FIX: Fixed serious bug where payment fields weren't showing up for the Braintree gateway.
134
  * BUG FIX: Fixed issue where Braintree webhook notifications were failing. We now allow the Braintree library to sanitize the incoming data since our sanitizing efforts were breaking the validation.
135
  * BUG FIX/ENHANCEMENT: The webhook URL given for Braintree now goes through admin-ajax.php instead of a direct link to a php file within our plugin.
136
  * BUG FIX/ENHANCEMENT: Updates to the Recaptcha library. (Thanks, Corin Simpson-Bryars)
137
  * ENHANCEMENT: Made the cancelation failed error email easier to read.
138
 
139
- = 1.9.4 =
140
  * BUG FIX: Fixed issue where PayPal was not working for amounts over $1000.
141
  * BUG FIX: Non-decimal currencies now handled correctly with Stripe.
142
  * BUG FIX: Fixed issue where updating a Stripe subscription from the edit user page could cancel the subscription once the webhook fired.
@@ -175,7 +189,7 @@ up the lines of text.
175
  * ENHANCEMENT: Added Portuguese language files. (Thanks, Secundino Correia)
176
  * ENHANCEMENT: Updated plugin admin pages with better links to documentation and support.
177
 
178
- = 1.9.3 =
179
  * SECURITY: Fixed sanitization of inputs and added nonces in several places to protect against XSS attacks.
180
  * BUG FIX: Showing correct error message when trying to update a PMPro Plus add on with a Core license installed.
181
  * BUG FIX: Fixed issue where subscription and payment transaction IDs were not being saved correctly when copying an order in the dashboard. (Thanks, Pippin Williamson)
@@ -184,15 +198,15 @@ up the lines of text.
184
  * ENHANCEMENT: Added a pmpro_sanitize_with_safelist() function that is used to sanitize inputs that have a limited number of exact options.
185
  * ENHANCEMENT: Updated the pmpro_setOption() and pmpro_getParam() functions to take a new last parameter $sanitize_function, which defaults to 'sanitize_text_field'.
186
 
187
- = 1.9.2.2 =
188
  * BUG FIX: Fixed warnings on the Network Dashboard's sites page.
189
  * BUG FIX: Skipping update scripts that require the Stripe library if the system doesn't support the minimum requirements for the Stripe API. This avoids warnings and errors during upgrade.
190
 
191
- = 1.9.2.1 =
192
  * BUG FIX: Fixed issues with activation on single sites.
193
  * BUG FIX: Starting PHP sessions earlier to fix issues with PayPal/PayPal Express checkouts.
194
 
195
- = 1.9.2 =
196
  * BUG FIX: Fixed issue where Braintree checkouts were failing with a CVV error when existing users checked out.
197
  * BUG FIX: Fixed issue loading the Stripe library in PHP 5.6.
198
  * BUG FIX: Member List CSV export was ignoring search parameter.
@@ -205,13 +219,13 @@ up the lines of text.
205
  * ENHANCEMENT: Improved performance via PHP $_SESSION management improvements. We now only open the session before we set session vars and close the session when we are finished with it.
206
  * ENHANCEMENT: Added to code to stop network activation of Paid Memberships Pro. (Thanks, Paul Barthmaier)
207
 
208
- = 1.9.1 =
209
  * BUG FIX: Fixed the code checking if the Stripe library is already loaded to compatability issues with other plugins bundling the Stripe API library.
210
  * BUG FIX: Cancel code now properly uses preg_replace when sanitizing the list of level ids to cancel.
211
  * FIX/ENHANCEMENT: Removed test/doc code from Stripe and Braintree libraries.
212
  * ENHANCEMENT: Now pausing the license nag for the first week of use and removed the "invalid" error if no key is being used.
213
 
214
- = 1.9 =
215
  * BUG: Fixed issue with cancelling 2Checkout recurring subscriptions. Now using the payment_transaction_id to find/cancel the sale's recurring subscription since no subscription_transaction_id is being saved.
216
  * BUG: Fixed issue where old membership levels were not listed correctly in the cancellation email. (Thanks, Mike from Migrating Eye)
217
  * BUG: Fixed issue where "custom trial" values were not saving for discount codes.
2
  Contributors: strangerstudios
3
  Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
4
  Requires at least: 4
5
+ Tested up to: 4.9.1
6
+ Stable tag: 1.9.4.2
7
 
8
  Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
9
 
129
 
130
  == Changelog ==
131
 
132
+ = 1.9.4.2 - 2017-12-07 =
133
+ * BUG FIX: Avoid double-encoding the API version in PayPal Standard gateway
134
+ * BUG FIX: The update billing page now checks the gateway of the user's last order instead of the default gateway settings in case multiple gateways are in use or the default gateway has changed.
135
+ * BUG FIX: Fixed bug where discount codes were not being applied properly if the pmpro_default_level custom field was set and used on a page.
136
+ * BUG FIX: Credit card expiration emails were being to sent to members with PayPal Express orders.
137
+ * BUG FIX: Now correctly unslashing instructions for the check gateway.
138
+ * BUG FIX: Fixed issue with creating pages from the page settings page.
139
+ * BUG FIX/ENHANCEMENT: Improved submit button and processing message position for default and RTL on checkout page.
140
+ * BUG FIX/ENHANCEMENT: Added invoice total and total billed breakdown back to confirmation and invoice single views.
141
+ * BUG FIX/ENHANCEMENT: Avoid double-encoding the PayPal API version number
142
+ * ENHANCEMENT: Improved submit button and processing message position for default and RTL on checkout page.
143
+ * ENHANCEMENT: Switched order of Publishable and Secret Key fields and added validation check.
144
+ * ENHANCEMENT: Conditionally update members list headings for expired, cancelled, or old members.
145
+
146
+ = 1.9.4.1 - 2017-10-31 =
147
  * BUG FIX: Fixed serious bug where payment fields weren't showing up for the Braintree gateway.
148
  * BUG FIX: Fixed issue where Braintree webhook notifications were failing. We now allow the Braintree library to sanitize the incoming data since our sanitizing efforts were breaking the validation.
149
  * BUG FIX/ENHANCEMENT: The webhook URL given for Braintree now goes through admin-ajax.php instead of a direct link to a php file within our plugin.
150
  * BUG FIX/ENHANCEMENT: Updates to the Recaptcha library. (Thanks, Corin Simpson-Bryars)
151
  * ENHANCEMENT: Made the cancelation failed error email easier to read.
152
 
153
+ = 1.9.4 - 2017-10-26 =
154
  * BUG FIX: Fixed issue where PayPal was not working for amounts over $1000.
155
  * BUG FIX: Non-decimal currencies now handled correctly with Stripe.
156
  * BUG FIX: Fixed issue where updating a Stripe subscription from the edit user page could cancel the subscription once the webhook fired.
189
  * ENHANCEMENT: Added Portuguese language files. (Thanks, Secundino Correia)
190
  * ENHANCEMENT: Updated plugin admin pages with better links to documentation and support.
191
 
192
+ = 1.9.3 - 2017-07-06 =
193
  * SECURITY: Fixed sanitization of inputs and added nonces in several places to protect against XSS attacks.
194
  * BUG FIX: Showing correct error message when trying to update a PMPro Plus add on with a Core license installed.
195
  * BUG FIX: Fixed issue where subscription and payment transaction IDs were not being saved correctly when copying an order in the dashboard. (Thanks, Pippin Williamson)
198
  * ENHANCEMENT: Added a pmpro_sanitize_with_safelist() function that is used to sanitize inputs that have a limited number of exact options.
199
  * ENHANCEMENT: Updated the pmpro_setOption() and pmpro_getParam() functions to take a new last parameter $sanitize_function, which defaults to 'sanitize_text_field'.
200
 
201
+ = 1.9.2.2 - 2017-06-13 =
202
  * BUG FIX: Fixed warnings on the Network Dashboard's sites page.
203
  * BUG FIX: Skipping update scripts that require the Stripe library if the system doesn't support the minimum requirements for the Stripe API. This avoids warnings and errors during upgrade.
204
 
205
+ = 1.9.2.1 - 2017-06-05 =
206
  * BUG FIX: Fixed issues with activation on single sites.
207
  * BUG FIX: Starting PHP sessions earlier to fix issues with PayPal/PayPal Express checkouts.
208
 
209
+ = 1.9.2 - 2017-06-03 =
210
  * BUG FIX: Fixed issue where Braintree checkouts were failing with a CVV error when existing users checked out.
211
  * BUG FIX: Fixed issue loading the Stripe library in PHP 5.6.
212
  * BUG FIX: Member List CSV export was ignoring search parameter.
219
  * ENHANCEMENT: Improved performance via PHP $_SESSION management improvements. We now only open the session before we set session vars and close the session when we are finished with it.
220
  * ENHANCEMENT: Added to code to stop network activation of Paid Memberships Pro. (Thanks, Paul Barthmaier)
221
 
222
+ = 1.9.1 - 2017-05-11 =
223
  * BUG FIX: Fixed the code checking if the Stripe library is already loaded to compatability issues with other plugins bundling the Stripe API library.
224
  * BUG FIX: Cancel code now properly uses preg_replace when sanitizing the list of level ids to cancel.
225
  * FIX/ENHANCEMENT: Removed test/doc code from Stripe and Braintree libraries.
226
  * ENHANCEMENT: Now pausing the license nag for the first week of use and removed the "invalid" error if no key is being used.
227
 
228
+ = 1.9 - 2017-04-26 =
229
  * BUG: Fixed issue with cancelling 2Checkout recurring subscriptions. Now using the payment_transaction_id to find/cancel the sale's recurring subscription since no subscription_transaction_id is being saved.
230
  * BUG: Fixed issue where old membership levels were not listed correctly in the cancellation email. (Thanks, Mike from Migrating Eye)
231
  * BUG: Fixed issue where "custom trial" values were not saving for discount codes.
scheduled/crons.php CHANGED
@@ -168,7 +168,7 @@ function pmpro_cron_credit_card_expiring_warnings()
168
  //make sure they are using a credit card type billing method for their current membership level (check the last order)
169
  $last_order = new MemberOrder();
170
  $last_order->getLastMemberOrder($euser->ID);
171
- if(empty($last_order->accountnumber) && 'XXXXXXXXXXXXXXXX' != $last_order->accountnumber)
172
  continue;
173
 
174
  //okay send them an email
168
  //make sure they are using a credit card type billing method for their current membership level (check the last order)
169
  $last_order = new MemberOrder();
170
  $last_order->getLastMemberOrder($euser->ID);
171
+ if(empty($last_order->accountnumber) || (!empty($last_order->accountnumber) && 'XXXXXXXXXXXXXXXX' == $last_order->accountnumber))
172
  continue;
173
 
174
  //okay send them an email